/* Sezione con sfondo mare */
.timeline-section {
    position: relative;
    background: url("/wp-content/themes/shyps/images/bg-intro.jpg") no-repeat -200px center;
    min-height: 800px;
    background-attachment: fixed;
    padding-top: 8rem;
    padding-bottom: 2rem;
    height: 100%;
}

/* leggera overlay per leggere meglio il testo */
.timeline-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 40, 80, 0.35);
}

.timeline-container {
    position: relative;
    z-index: 1; /* sopra l’overlay */
}

/* linea verticale centrale */
.timeline {
    position: relative;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #fff;
    transform: translateX(-50%);
}

/* singolo step */
.timeline-item {
    position: relative;
    margin: 0px 0;
}

/* pallino sulla linea */
.timeline-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4);
}

.timeline-card {
}

.timeline-card img {
    /*float: left;*/
    width: 150px;
}

.uno {
    float: left;
    position: relative;
}

.tre {
    float: left;
    position: relative;
}

.due {
    position: relative;
    padding: 1rem;
    float: left;
    width: 180px
}

.quattro {
    float: left;
    position: relative;
    width: 180px;
    padding: 0.8rem;
}

.timeline-card h3 {
    margin-top: 0.3rem;
    font-size: 1.4rem;
}

.timeline-card h3 a {
    color: #ffffff !important;
}

.timeline-card h3 a:hover {
    color: #38a7df !important;
}

/* freccia in fondo */
/*.timeline-arrow {
 position: absolute;
left: 50%;
bottom: 0;
transform: translateX(-50%);
width: 0;
height: 0;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-top: 10px solid #fff;
}*/
.timeline-arrow {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    background-image: url("/wp-content/uploads/2026/01/timeline-freccia.png");
    background-repeat: no-repeat;
    background-position: bottom;
    width: 50px;
    height: 25px;
}

/* mobile: le colonne vanno tutte a larghezza piena */
@media (max-width: 767.98px) {
    .timeline::before {
        left: 8px;
    }

    .timeline-item::before {
        left: 8px;
        transform: translate(-50%, -50%);
    }

    .timeline-card {
        margin-left: 32px;
    }

    .text-md-end {
        text-align: left !important;
    }

    .timeline-card img {
        width: 98px;
        margin-top: 1rem;
    }

    .timeline-arrow {
        left: 2.5%;
    }
}

@media (max-width: 320px) {
    .timeline-card h3 {
        font-size: 1rem;
    }

    .quattro, .due {
        width: 140px;
        padding: 0.8rem;
    }
}