.dich-hero {
    overflow: hidden;
}

.dich-hero-title {
    left: 38%;
    position: absolute;
    top: 16%;
    z-index: 1;
    max-width: 60%;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.55);
    font-size: clamp(1.75rem, 3.5vw, 3.5rem);
    line-height: 1.15;
}

.dich-phase {
    letter-spacing: 0.12em;
    font-weight: 600;
}

.dich-cta-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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-title {
        left: 50%;
        transform: translateX(-50%);
        max-width: 90%;
        text-align: center;
    }

    .dich-timeline {
        padding: 1rem 0;
    }

    .dich-timeline::before {
        display: none;
    }
}
