/* ==========================================================
   MAMGOC Website V2
   05-journey.css
========================================================== */

.journeys-v2{
    padding:7rem 0;
    background:var(--white);
}

.section-heading.center{
    max-width:820px;
    margin:0 auto 4rem;
    text-align:center;
}

.section-kicker{
    color:#d49a16;
    text-transform:uppercase;
    letter-spacing:.22em;
    font-size:.78rem;
    font-weight:900;
    margin-bottom:.9rem;
}

.section-heading h2{
    margin-bottom:1.2rem;
}

.section-heading p{
    font-size:1.08rem;
}

.journey-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.journey-card-v2{
    padding:34px;
    border-radius:var(--radius-lg);
    background:var(--white);
    border:1px solid var(--gray-200);
    box-shadow:var(--shadow);
    transition:var(--transition);
}

.journey-card-v2:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
    border-color:rgba(37,99,235,.25);
}

.journey-icon-v2{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#fff7d6;
    margin-bottom:1.5rem;
    font-size:1.5rem;
}

.journey-card-v2 h3{
    margin-bottom:.8rem;
}

.journey-card-v2 p{
    margin-bottom:1.6rem;
}

.journey-link{
    color:var(--secondary);
    font-weight:800;
}

.journey-link:hover{
    color:var(--secondary-hover);
}
