.wd-section{
    padding:40px 0;
    font-family:Arial, Helvetica, sans-serif;
}

.wd-container{
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* TEXT SIDE */

.wd-title{
    font-size:42px;
    line-height:1.2;
    margin-bottom:30px;
}

.wd-description{
    color:#57534e;
    font-size:18px;
    line-height:1.7;
    margin-bottom:20px;
}

.wd-description p{
    margin-bottom:20px;
}

.wd-features h4{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:20px;
    color:#292524;
}

.wd-features ul{
    list-style:none;
    padding:0;
    margin:0 0 40px 0;
}

.wd-features li{
    display:flex;
    gap:10px;
    margin-bottom: 0;
    color:#57534e;
}

.wd-section p {
    margin-bottom: 10px;
}

.wd-features strong{
    color:#292524;
}

.wd-bullet{
    color:#8b572a;
    margin-top:2px;
}

/* BUTTON */

.wd-button{
    display:inline-block;
    background:#8b572a;
    color:#fff;
    padding:16px 40px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    border-radius:6px;
    transition:0.3s;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.wd-button:hover{
    background:#704622;
    color: #fff;
}

/* GALLERY */

.wd-gallery{
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.wd-col{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.wd-col-offset{
    padding-top:60px;
}

.wd-gallery img{
    width:100%;
    object-fit:cover;
    border-radius:8px;
    box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

.wd-col img:nth-child(1){
    height:320px;
}

.wd-col img:nth-child(2){
    height:260px;
}

/* CENTER IMAGE */

.wd-overlay{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none;
}

.wd-overlay-inner{
    background:white;
    padding:8px;
    border-radius:50%;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

.wd-overlay-inner img{
    width:130px;
    height:130px;
    border-radius:50%;
    border:4px solid white;
}

/* RESPONSIVE */

@media(max-width:900px){

    .wd-container{
        grid-template-columns:1fr;
    }

    .wd-gallery{
        margin-top:40px;
    }

}