/* ====================================================
   1. HEIGHT LOGIC (Copied from main.css #owl-example1)
   ==================================================== */

/* Desktop (Line 132 of main.css) */
#sonf-clone-slider .owl-item {
    height: 95vh; 
    width: 100vw;
    float: left;
}

/* Tablet/Laptop (Line 1152 of main.css) */
@media only screen and (max-width: 1200px) {
    #sonf-clone-slider .owl-item {
        height: 800px;
    }
}

/* Mobile (Line 1252 of main.css) */
@media only screen and (max-width: 767px) {
    #sonf-clone-slider .owl-item {
        height: 525px;
    }
}

/* Ensure Slide fills the Item */
#sonf-clone-slider .owl-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center center;
}

/* ====================================================
   2. WHITE CARD STYLING
   ==================================================== */
/* Center the content */
.sonf_slider .slide-content-wrap {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex;
    align-items: center; /* Vertical Center */
    justify-content: center; /* Horizontal Center */
    pointer-events: none; /* Let clicks pass to arrows */
}

.sonf_slider .sonf-white-card {
    background-color: #ffffff;
    padding: 70px 50px;
    width: 650px;
    max-width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    pointer-events: auto; /* Enable clicks */
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

/* Typography (Sonnenhof Style) */
.sonf_slider .top-small {
    font-family: inherit !important; color: #41413b !important;
    font-size: 13px; font-weight: bold !important;
    text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 25px; margin-top: 0;
}

.sonf_slider .main-big {
    font-family: inherit !important; color: #b9ab96 !important;
    font-size: 46px; font-weight: 400;
    line-height: 1.25; margin-bottom: 40px; margin-top: 0;
}

.sonf_slider a {
    font-family: inherit !important; color: #b9ab96 !important;
    font-size: 13px !important;
    text-transform: uppercase; letter-spacing: 2px;
    text-decoration: none; border-bottom: 1px solid #b9ab96;
    padding-bottom: 6px; font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .sonf_slider .main-big { font-size: 32px; margin-bottom: 20px; }
    .sonf_slider .sonf-white-card { padding: 40px 20px; }
}