/* === Global design moved from includes/header.php === */
/* --- GLOBAL DESIGN SYSTEM --- */
        :root { --col-p: #004d40; --col-s: #f4f7f6; --col-a: #c49a6c; --col-t: #333; --col-bg: #fff; --font-h: 'Playfair Display', serif; --font-b: 'Montserrat', sans-serif; }
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@400;700&display=swap');
        
        body { margin: 0; padding: 0; font-family: var(--font-b); color: var(--col-t); background: var(--col-bg); overflow-x: hidden; }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* NAV */
        nav { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.05); position: fixed; width: 100%; top: 0; z-index: 1000; height: 90px; }
        .nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; height: 100%; padding: 0 30px; }
        .logo { font-family: var(--font-h); color: var(--col-p); font-size: 2rem; font-weight: 800; letter-spacing: 1px; text-decoration: none; text-transform: uppercase; }
        .logo span { color: var(--col-a); }
        
        .nav-links { display: flex; gap: 30px; height: 100%; align-items: center; }
        .nav-item-wrapper { position: relative; height: 100%; display: flex; align-items: center; }
        
        .nav-item { text-decoration: none; color: var(--col-p); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 10px 0; transition: color 0.3s; cursor: pointer; }
        .nav-item:hover, .nav-item.active { color: var(--col-a); }
        .nav-item.active { border-bottom: 2px solid var(--col-a); }
        .has-dropdown::after { content: '▾'; margin-left: 5px; color: var(--col-a); font-size: 0.8em; }
        
        /* DROPDOWNS */
        .dropdown-menu { display: none; position: absolute; top: 90px; left: -20px; background: #fff; min-width: 280px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); border-top: 4px solid var(--col-a); padding: 0; border-radius: 0 0 8px 8px; max-height: 85vh; overflow-y: auto; }
        .wide-dropdown { min-width: 550px; display: none; flex-direction: row; flex-wrap: wrap; }
        .nav-item-wrapper:hover .dropdown-menu { display: block; animation: fadeInUp 0.2s ease forwards; }
        .nav-item-wrapper:hover .wide-dropdown { display: flex; }
        
        .cat-group { padding: 15px 0; border-bottom: 1px solid #f0f0f0; width: 100%; }
        .wide-dropdown .cat-group { width: 50%; border-right: 1px solid #f0f0f0; border-bottom: none; }
        .wide-dropdown .cat-group:nth-child(even) { border-right: none; }
        
        .cat-title { padding: 5px 25px; font-size: 0.75rem; text-transform: uppercase; color: #999; font-weight: 700; margin-bottom: 5px; display: block; letter-spacing: 1px; }
        .dropdown-link { display: flex; align-items: center; padding: 8px 25px; color: #444; text-decoration: none; font-size: 0.95rem; transition: all 0.2s; }
        .dropdown-link:hover { background: #fcfcfc; color: var(--col-p); padding-left: 30px; font-weight: 600; }
        .icon-space { margin-right: 10px; width: 20px; text-align: center; font-size: 1.1rem; }
        
        /* HEADER ACTIONS */
        .header-actions { display: flex; gap: 15px; align-items: center; }
        
        .btn-submit { background-color: var(--col-a); color: #fff; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 0.9rem; display: flex; align-items: center; gap: 8px; transition: transform 0.3s; }
        .btn-submit:hover { background-color: #b08d60; transform: translateY(-2px); }

        .btn-login { background-color: var(--col-p); color: #fff; padding: 12px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: transform 0.3s; }
        .btn-login.outline { background: white; color: var(--col-p); border: 2px solid var(--col-p); padding: 10px 23px; }
        .btn-login:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,77,64,0.2); }
        
        @media (max-width: 992px) { .nav-links, .header-actions { display: none; } }
        .hidden { display: none !important; }

/* === Original assets/css/style.css === */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap");

.sl-page {
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

/* Animation (umbenannt, damit sie nicht kollidiert) */
@keyframes sl-fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* HERO */

.sl-hero {
    margin-top: 90px;
    height: 80vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    background-color: #004d40;
    background-image:
        linear-gradient(rgba(0, 50, 40, 0.5), rgba(0, 50, 40, 0.7)),
        url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=2073&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.sl-hero-title {
    font-family: "Dancing Script", cursive;
    font-size: clamp(3.5rem, 8vw, 6rem);
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: sl-fadeInUp 1s ease-out;
}

.sl-hero-sub {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    animation: sl-fadeInUp 1.2s ease-out;
}

/* SUCHE */

.sl-search-bar {
    background: #ffffff;
    padding: 10px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    animation: sl-fadeInUp 1.4s ease-out;
    flex-wrap: wrap;
}

.sl-search-group {
    flex: 1;
    padding: 5px 20px;
    border-right: 1px solid #eee;
    min-width: 150px;
}

.sl-search-group:last-of-type {
    border-right: none;
}

.sl-search-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    display: block;
    text-align: left;
    margin-bottom: 3px;
}

.sl-search-input,
.sl-search-select {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    outline: none;
}

.sl-btn-search-hero {
    background-color: var(--col-a);
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.sl-btn-search-hero:hover {
    background-color: var(--col-p);
    transform: scale(1.05);
}

/* SECTIONS & LAYOUT */

.sl-section {
    padding: 80px 20px;
}

.sl-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sl-text-center {
    text-align: center;
}

.sl-section-title {
    font-family: var(--font-h);
    font-size: 2.5rem;
    color: var(--col-p);
    margin-bottom: 15px;
}

.sl-lead {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* INTRO GRID */

.sl-intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    text-align: left;
}

.sl-intro-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--col-a);
    transition: transform 0.3s;
}

.sl-intro-card:hover {
    transform: translateY(-5px);
}

.sl-intro-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.sl-intro-title {
    font-family: var(--font-h);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--col-p);
}

.sl-intro-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.sl-intro-link {
    color: var(--col-a);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

/* CATEGORY GRID */

.sl-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.sl-cat-card {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: white;
    display: block;
    background-size: cover;
    background-position: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sl-cat-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.3s;
}

.sl-cat-card:hover .sl-cat-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 77, 64, 0.9),
        rgba(0, 77, 64, 0.3)
    );
}

.sl-cat-title {
    font-family: var(--font-h);
    font-size: 1.5rem;
    margin: 0;
}

.sl-cat-sub {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* EVENTS */

.sl-event-row {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: 0.2s;
    text-decoration: none;
    color: inherit;
}

.sl-event-row:hover {
    transform: translateX(5px);
    border-color: var(--col-a);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.sl-event-img-small {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.sl-event-date-badge {
    background: var(--col-s);
    color: var(--col-p);
    padding: 10px 15px;
    text-align: center;
    margin: 0 20px;
    border-radius: 8px;
    min-width: 70px;
}

.sl-event-day {
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.sl-event-month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
}

.sl-event-info {
    flex: 1;
    padding: 15px 0;
}

.sl-event-title {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    color: var(--col-p);
    font-family: var(--font-h);
}

.sl-event-loc {
    color: #888;
    font-size: 0.9rem;
}

.sl-event-arrow {
    padding: 0 30px;
    font-size: 1.5rem;
    color: var(--col-a);
}

/* PARTNER BANNER */

.sl-partner-banner {
    background-image:
        linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.7)),
        url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?q=80&w=2070&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 80px 40px;
    color: white;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sl-partner-content {
    max-width: 600px;
    text-align: left;
}

.sl-btn-partner-cta {
    background: var(--col-a);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: 0.3s;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(196, 154, 108, 0.4);
}

.sl-btn-partner-cta:hover {
    background: white;
    color: var(--col-p);
    transform: translateY(-2px);
}

.sl-partner-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
}

.sl-partner-card-title {
    color: var(--col-p);
    display: block;
    margin-bottom: 5px;
}

.sl-partner-card-body {
    font-size: 0.8rem;
}

.sl-partner-card-highlight {
    color: green;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .sl-search-bar {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-radius: 20px;
    }

    .sl-search-group {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .sl-btn-search-hero {
        width: 100%;
        border-radius: 10px;
        margin: 0;
    }

    .sl-event-img-small {
        display: none;
    }

    .sl-partner-banner {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }

    .sl-partner-content {
        text-align: center;
        margin-bottom: 30px;
    }
}

/* ============================
   WELLNESS-SEITE (sl-well-*)
   ============================ */

.sl-well-hero {
    background: #81ecec;
    color: #004d40;
    padding: 80px 0;
    text-align: center;
    margin-top: 90px; /* Platz für fixen Header */
}

.sl-well-hero-title {
    margin: 0;
    font-size: 2.5rem;
    font-family: var(
        --font-h,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif
    );
}

.sl-well-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.sl-well-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.sl-well-card-link {
    text-decoration: none;
    color: inherit;
}

.sl-well-card {
    background: white;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition:
        box-shadow 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
}

.sl-well-card:hover {
    border-color: #004d40;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.sl-well-card-title {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-family: var(
        --font-h,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif
    );
    color: #004d40;
}

.sl-well-card-location {
    margin: 0 0 12px 0;
    color: #555;
    font-size: 0.95rem;
}

.sl-well-card-cta {
    color: #004d40;
    font-weight: bold;
    font-size: 0.95rem;
}

/* Responsive Tweaks für Wellness */
@media (max-width: 600px) {
    .sl-well-hero {
        padding: 60px 0;
    }

    .sl-well-hero-title {
        font-size: 2rem;
    }
}

/* ============================
   VERLEIH & MOBILITÄT (sl-rent-*)
   ============================ */

.sl-rent-hero {
    margin-top: 90px;
    height: 40vh;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e67e22;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1571068316344-75bc76f77890?q=80&w=2070&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.sl-rent-hero-title {
    font-family: "Dancing Script", cursive;
    font-size: 4rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sl-rent-hero-sub {
    font-family: var(
        --font-b,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif
    );
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.sl-rent-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Filter */

.sl-rent-filter-form {
    display: flex;
    gap: 20px;
    padding: 30px;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    align-items: flex-end;
}

.sl-rent-filter-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sl-rent-filter-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--col-p);
    font-size: 0.9rem;
}

.sl-rent-filter-select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: white;
}

.sl-rent-submit-btn {
    background-color: var(--col-a);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 42px;
}

.sl-rent-reset-btn {
    background-color: #eee;
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    height: 42px;
}

/* Grid & Cards */

.sl-rent-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.sl-rent-card-link {
    text-decoration: none;
    color: inherit;
}

.sl-rent-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.sl-rent-card:hover {
    transform: translateY(-5px);
    border-color: var(--col-a);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.sl-rent-card-img {
    height: 200px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
}

.sl-rent-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sl-rent-card-title {
    font-family: var(--font-h);
    color: var(--col-p);
    font-size: 1.5rem;
    margin: 0 0 5px 0;
}

.sl-rent-card-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.sl-rent-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sl-rent-card-footer {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
    color: var(--col-p);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sl-rent-card-cta {
    font-weight: 600;
}

/* Keine Ergebnisse */

.sl-rent-no-results {
    text-align: center;
    padding: 50px 0;
    color: #777;
}

/* Responsive */

@media (max-width: 768px) {
    .sl-rent-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .sl-rent-hero-title {
        font-size: 3rem;
    }

    .sl-rent-container {
        margin: 40px auto;
    }
}
/* ============================
   VERLEIH & MOBILITÄT (sl-rent-*)
   ============================ */

.sl-rent-hero {
    margin-top: 90px;
    height: 40vh;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e67e22;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1571068316344-75bc76f77890?q=80&w=2070&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.sl-rent-hero-title {
    font-family: "Dancing Script", cursive;
    font-size: 4rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.sl-rent-hero-sub {
    font-family: var(--font-b, system-ui, Arial, sans-serif);
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 5px;
}

.sl-rent-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* FILTER */

.sl-rent-filter-form {
    display: flex;
    gap: 20px;
    padding: 30px;
    margin-bottom: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    align-items: flex-end;
}

.sl-rent-filter-group {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sl-rent-filter-label {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--col-p);
    font-size: 0.9rem;
}

.sl-rent-filter-select {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
    background: white;
}

.sl-rent-submit-btn {
    background-color: var(--col-a);
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 42px;
}

.sl-rent-reset-btn {
    background-color: #eee;
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    height: 42px;
}

/* GRID & CARDS */

.sl-rent-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.sl-rent-card-link {
    text-decoration: none;
    color: inherit;
}

.sl-rent-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.sl-rent-card:hover {
    transform: translateY(-5px);
    border-color: var(--col-a);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.sl-rent-card-img {
    height: 200px;
    background-color: #f5f5f5;
    background-size: cover;
    background-position: center;
}

.sl-rent-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sl-rent-card-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 15px;
}

.sl-rent-card-title {
    font-family: var(--font-h);
    color: var(--col-p);
    font-size: 1.5rem;
    margin: 0 0 5px 0;
}

.sl-rent-card-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.sl-rent-card-footer {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
    color: var(--col-p);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sl-rent-card-cta {
    font-weight: 600;
}

/* NO RESULTS */

.sl-rent-no-results {
    text-align: center;
    padding: 50px 0;
    color: #777;
    font-size: 1.1rem;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .sl-rent-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .sl-rent-hero-title {
        font-size: 3rem;
    }
}



/* === Index.php helper utility classes (modernization) === */
.sl-search-group-wide { flex: 1.5; }

.sl-section-alt { background: #fcfcfc; }
.sl-section-muted { background: #f4f7f6; }

.sl-container-narrow { max-width: 800px; }

.sl-mb-0 { margin-bottom: 0; }
.sl-mb-15 { margin-bottom: 15px; }
.sl-mb-30 { margin-bottom: 30px; }
.sl-mb-40 { margin-bottom: 40px; }

.sl-mt-20 { margin-top: 20px; }

.sl-text-muted { color: #666; }
.sl-text-soft { color: #888; }

.sl-section-tight { padding-top: 0; padding-bottom: 80px; }

.sl-text-on-dark { color: #fff; }
.sl-text-on-dark-soft { color: rgba(255, 255, 255, 0.9); }

.sl-link-strong {
    color: var(--col-p);
    font-weight: 700;
    text-decoration: none;
}

.sl-link-strong:hover {
    text-decoration: underline;
}
