/*
===========================================
Wander Wise Pro
Single Experience
===========================================
*/
 
.ww-experience-hero{
    position:relative;
    min-height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    color:#fff;
}
 
.ww-hero-image{
    position:absolute;
    inset:0;
    z-index:1;
}
 
.ww-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}
 
.ww-hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.45),
        rgba(0,0,0,.65)
    );
    display:flex;
    align-items:center;
    z-index:2;
}
 
.ww-experience-hero .ww-container{
    position:relative;
    z-index:3;
}
 
.ww-experience-hero h1{
    color:#fff;
    font-size:64px;
    margin-bottom:20px;
}
 
.ww-subtitle{
    color:#fff;
    font-size:22px;
    max-width:720px;
    opacity:.95;
}
 
.ww-facts-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:-70px;
    position:relative;
    z-index:5;
}
 
.ww-fact-card{
    background:#fff;
    border-radius:22px;
    padding:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    transition:.3s;
}
 
.ww-fact-card:hover{
    transform:translateY(-8px);
}
 
.ww-fact-card h4{
    margin-bottom:12px;
    color:var(--primary);
    font-size:18px;
}
 
.ww-fact-card p{
    margin:0;
    color:#475569;
}
 
.ww-content{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    font-size:18px;
}
 
.ww-content h2,
.ww-content h3{
    margin-top:50px;
    margin-bottom:20px;
}
 
.ww-content img{
    width:100%;
    border-radius:20px;
    margin:40px 0;
}
 
.ww-section-heading{
    text-align:center;
    margin-bottom:60px;
}
 
.ww-section-heading h2{
    margin-bottom:12px;
}
 
.ww-section-heading p{
    max-width:700px;
    margin:auto;
}
 
.ww-experience-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:32px;
}
 
@media(max-width:991px){
 
.ww-experience-hero{
    min-height:60vh;
}
 
.ww-experience-hero h1{
    font-size:44px;
}
 
.ww-subtitle{
    font-size:18px;
}
 
.ww-facts-grid{
    grid-template-columns:repeat(2,1fr);
    margin-top:40px;
}
 
}
 
@media(max-width:768px){
 
.ww-experience-hero{
    min-height:55vh;
}
 
.ww-experience-hero h1{
    font-size:34px;
}
 
.ww-subtitle{
    font-size:16px;
}
 
.ww-facts-grid{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:30px;
}
 
.ww-content{
    font-size:16px;
}
 
}

.ww-highlights-grid{
 
display:grid;
 
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
 
gap:24px;
 
margin-top:50px;
 
}
 
.ww-highlight-card{
 
background:#fff;
 
padding:26px;
 
border-radius:18px;
 
box-shadow:0 10px 35px rgba(0,0,0,.06);
 
font-weight:600;
 
transition:.3s;
 
}
 
.ww-highlight-card:hover{
 
transform:translateY(-6px);
 
}

.ww-single-meta{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
    list-style:none;
    padding:0;
    margin:35px 0;
}
 
.ww-single-meta li{
    list-style:none;
    background:#f8f9fb;
    border-radius:14px;
    padding:15px 18px;
    font-weight:600;
}