/* Vacation Rentals Section Styles */
/* Matching design from strandkorb-dahme.de */

/* Section title "Genießen Sie Ihren Urlaub..." – match Preisübersicht style */
.elementor-element-cf9b203 .elementor-heading-title {
    font-size: 30px !important;
    font-style: italic !important;
    font-weight: 700 !important;
    color: #54595f !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.2;
}

/* Section Container */
.vacation-rental-section .elementor-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Vertically center */
    max-width: 1100px !important;
    /* Force width matches site */
    margin: 35px auto;
}

/* Base Column Styles */
.vacation-rental-section .elementor-column {
    position: relative;
    display: flex;
}

.vacation-rental-section .elementor-widget-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    /* padding handled inside or removed */
}

/* DESKTOP LAYOUT (min-width: 768px for simplicity, matching common breakpoints) */
@media (min-width: 768px) {

    /* Image Column (Left) */
    .vacation-rental-section .elementor-col-66 {
        width: 60%;
        /* Adjusted to match visual proportion approx */
        z-index: 0;
    }

    /* Text Column (Right) - The Card */
    .vacation-rental-section .elementor-col-33 {
        width: 40%;
        margin-left: -99px;
        /* The Magic Overlap */
        z-index: 10;
    }

    .vacation-rental-section .elementor-col-33 .elementor-widget-wrap {
        background-color: #ffffff;
        box-shadow: 0 5px 50px 0 rgba(33, 33, 33, 0.15);
        padding: 44px 44px 60px 44px !important;
        border-radius: 3px;
        /* Subtle radius per browser agent */
    }
}

/* MOBILE LAYOUT */
@media (max-width: 767px) {
    .vacation-rental-section .elementor-container {
        flex-direction: column;
        padding: 0 15px;
    }

    .vacation-rental-section .elementor-col-66,
    .vacation-rental-section .elementor-col-33 {
        width: 100%;
        margin: 0;
        /* Reset margin */
    }

    .vacation-rental-section .elementor-col-33 {
        margin-top: -50px;
        /* Slight overlap on mobile too? Or stacked. */
        z-index: 10;
        padding: 0 15px;
    }

    .vacation-rental-section .elementor-col-33 .elementor-widget-wrap {
        background-color: #ffffff;
        box-shadow: 0 5px 20px 0 rgba(33, 33, 33, 0.1);
        padding: 30px 30px 45px 30px !important;
    }
}


/* --- CONTEN STYLING --- */

/* Typography Defaults for this section */
.vacation-rental-section {
    font-family: 'Lato', sans-serif;
}

/* Headings: "Seemöve", "Schwalbennest" */
.vacation-rental-section h1,
.vacation-rental-section h2,
.vacation-rental-section h3,
.vacation-rental-section h4 {
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #4A5868;
    margin: 10px 0 24px 0;
    text-align: center;
    line-height: 1.2;
}

/* Description Text */
.vacation-rental-section .elementor-widget-text-editor {
    text-align: center;
}

.vacation-rental-section .elementor-widget-text-editor p,
.vacation-rental-section .elementor-widget-text-editor span {
    font-family: 'Lato', sans-serif;
    font-size: 17px !important;
    font-style: italic;
    font-weight: 400;
    color: #4A5868 !important;
    /* Force color match */
    line-height: 1.6;
}

/* Icon List */
.vacation-rental-section .elementor-icon-list-items {
    justify-content: center;
    gap: 16px;
    margin-bottom: 5px;
}

.vacation-rental-section .elementor-icon-list-item {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    color: #4A5868;
}

.vacation-rental-section .elementor-icon-list-icon svg {
    width: 16px;
    height: 16px;
    fill: #4A5868;
    margin-right: 5px;
}

/* Button "Direkt zur Buchungsseite" */
.vacation-rental-section .elementor-button {
    background-color: #9DBBDF;
    /* The specific blue */
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-style: italic;
    font-weight: 400;
    /* reset bold */
    padding: 12px 30px;
    border-radius: 3px;
    margin-top: 15px;
    box-shadow: none;
    /* Original doesn't seem to have heavy shadow */
}

.vacation-rental-section .elementor-button:hover {
    background-color: #89aacc;
    /* Slight darken */
    transform: none;
    /* Keep it simple like original */
}

/* Image Styling */
.vacation-rental-section img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: none;
    /* Reset my previous shadow */
    border-radius: 0;
    /* Reset radius if any */
}

/* Hide the "Buchungen per Mail oder" spacer text if needed, 
   or style it to match. It's usually small text above button */
.vacation-rental-section .elementor-widget-text-editor span[style*="color: #4a5868"] {
    font-size: 17px;
    font-style: italic;
}