/*==================================
Facts & Travel Essentials
==================================*/

.ww-destination-facts{

    padding:90px 0;

    background:#ffffff;

}

.ww-section-title{

    font-size:42px;

    font-weight:700;

    color:var(--text);

    margin-bottom:12px;

}

.ww-section-subtitle{

    font-size:17px;

    color:var(--muted);

    max-width:700px;

    margin-bottom:50px;

    line-height:1.8;

}

.ww-sub-section-title{

    font-size:28px;

    font-weight:700;

    color:var(--text);

    margin:50px 0 30px;

}

.ww-facts-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:26px;

    margin-top:30px;

}

.ww-fact-card{

    display:flex;

    align-items:center;

    gap:22px;

    padding:26px;

    background:#fff;

    border-radius:22px;

    border:1px solid var(--line);

    border-left:5px solid var(--primary);

    box-shadow:0 10px 30px rgba(15,23,42,.06);

    transition:all .35s ease;

    min-height:125px;

}

.ww-fact-card:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 55px rgba(15,23,42,.12);

}

.ww-fact-icon{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    flex-shrink:0;

}

.ww-fact-icon svg{

    width:28px;

    height:28px;

}

.ww-fact-label{

    display:block;

    font-size:12px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.8px;

    color:var(--muted);

    margin-bottom:8px;

}

.ww-fact-content{

    flex:1;

}

.ww-fact-content strong{

    display:block;

    font-size:20px;

    font-weight:600;

    color:var(--text);

    line-height:1.5;

}

@media(max-width:768px){

    .ww-destination-facts{

        padding:60px 0;

    }

    .ww-section-title{

        font-size:32px;

    }

    .ww-sub-section-title{

        font-size:24px;

    }

    .ww-facts-grid{

        grid-template-columns:1fr;

        gap:18px;

    }

    .ww-fact-card{

        padding:20px;

        min-height:auto;

    }

    .ww-fact-icon{

        width:54px;

        height:54px;

    }

    .ww-fact-icon svg{

        width:24px;

        height:24px;

    }

    .ww-fact-content strong{

        font-size:18px;

    }

}