.dich-hero {
    position: relative;
    overflow: hidden;
}

.dich-hero-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 16%;
    z-index: 1;
    text-align: center;
    max-width: 60%;
    color: #fff;
    background: rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(3px);
    padding: 1.25rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.dich-hero-title {
    font-size: clamp(1.75rem, 3.5vw, 3.5rem);
    line-height: 1.15;
}

.dich-hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.25rem);
    line-height: 1.4;
    text-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.dich-phase {
    letter-spacing: 0.12em;
    font-weight: 600;
}

.dich-timeline {
    --dich-line-scale: 1;
    position: relative;
    padding: 1.5rem 0;
}

.dich-timeline::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%) scaleY(var(--dich-line-scale));
    transform-origin: bottom;
    background-color: #ed8422;
    background-color: rgba(var(--bs-primary-rgb, 237, 132, 34), 0.55);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
    pointer-events: none;
    will-change: transform;
    z-index: 2;
}

@media (min-width: 768px) {
    .dich-side-left {
        padding-right: 3rem;
    }

    .dich-side-right {
        padding-left: 3rem;
    }
}

@media (max-width: 767.98px) {
    .dich-hero-content {
        left: 50%;
        transform: translate(-50%, -50%);
        top: 50%;
        max-width: 92%;
        padding: 1rem 1.1rem;
        border-radius: 14px;
    }

    .dich-hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .dich-timeline {
        padding: 1rem 0;
    }

    .dich-timeline::before {
        display: none;
    }
}

@media (max-width: 600px) {
    .dich-hero-content {
        width: 96%;
        max-width: 96%;
    }
}

@media (max-width: 360px) {
    .dich-hero-subtitle {
        display: none;
    }
}
