/* ===== Attractions ===== */
 
.ww-attractions{
    padding:100px 0;
    background:#fff;
}
 
.ww-attractions-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}
 
.ww-attraction-card{
    background:#fff;
    border:1px solid #ECECEC;
    border-radius:22px;
    padding:30px;
    transition:.35s ease;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}
 
.ww-attraction-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}
 
.ww-attraction-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#132238;
}
 
.ww-attraction-card p{
    color:#556070;
    line-height:1.8;
}
 
.ww-attraction-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:#EAF8EF;
    color:#2E8B57;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:24px;
}