:root {
    /* Brand colors */
    --color-bg: #f6f1ea;
    --color-white: #ffffff;
    --color-surface-soft: #f8fafc;
    --color-surface-blue: #f8fbff;

    --color-text: #0f172a;
    --color-heading: #0b1324;
    --color-navy: #0b1f3a;
    --color-muted: #475569;
    --color-muted-light: #64748b;

    --color-primary: #1b4d72;
    --color-primary-dark: #163f5d;

    --color-accent: #e57a2f;
    --color-accent-hover: #d96f27;
    --color-accent-active: #c76322;
    --color-accent-text: #c95f1f;

    /* Borders and translucent text */
    --color-border: #e4eaf2;
    --color-border-light: #e8edf4;
    --border-subtle: rgba(15, 23, 42, 0.06);
    --border-default: rgba(15, 23, 42, 0.08);
    --border-strong: rgba(15, 23, 42, 0.10);

    --text-muted-62: rgba(15, 23, 42, 0.62);
    --text-muted-68: rgba(15, 23, 42, 0.68);
    --text-muted-70: rgba(15, 23, 42, 0.70);
    --text-muted-78: rgba(15, 23, 42, 0.78);
    --text-strong-85: rgba(15, 23, 42, 0.85);
    --text-strong-88: rgba(15, 23, 42, 0.88);

    /* Component tokens */
    --radius-sm: 12px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 22px;
    --radius-pill: 999px;

    --shadow: 0 12px 40px rgba(15, 23, 42, 0.10);
    --shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.08);

    /* Backwards-compatible aliases */
    --bg: var(--color-bg);
    --surface: var(--color-white);
    --text: var(--color-text);
    --muted: var(--color-muted);
    --primary: var(--color-primary);
    --primary-600: var(--color-primary-dark);
    --accent: var(--color-accent);
    --radius: var(--radius-lg);

    --bs-body-font-size: 1rem;
}


/* =====================================================
   BASE AND COMPONENT STYLES
   ===================================================== */

body{
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    color: var(--text);
    background: var(--bg);
}

a{
    text-decoration: none;
}

.container{
    /*max-width: 1140px;*/
    max-width: 1400px;
}

.container-text {
    border: 1px solid #e6e9ed;
    border-left: 4px solid #f97316;
    background: #e9ecef36;
    border-radius: 14px;
    padding: 1.3rem 1.4rem;
    box-shadow: 0 1px 2px rgba(23, 21, 18, .06), 0 2px 8px rgba(23, 21, 18, .05);
}

.site-header{
    background: rgba(246, 241, 234, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    position: relative;
    z-index: 2000;
}

.site-header .navbar{
    position: relative;
    z-index: 2000;
}

.navbar .dropdown-menu{
    z-index: 2100;
}

/* =====================================================
   MAIN NAVIGATION / MULTILEVEL DROPDOWN
   ===================================================== */

.navbar .dropdown-menu {
    z-index: 2100;
    min-width: 190px;
    margin-top: 0;
    padding: 8px 0;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}


/* -----------------------------------------------------
   Untermenüs
   ----------------------------------------------------- */

.dropdown-submenu {
    position: relative;
}


/* Untermenü rechts neben dem Elternmenü positionieren */

.dropdown-submenu > .dropdown-menu {
    position: absolute;
    top: -8px;
    left: calc(100% - 1px);
    margin: 0;

    display: none;
}


/* Untermenü bei Hover anzeigen */

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}


/* Elternlinks mit Untermenü */

.submenu-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* Pfeil nach rechts */

.submenu-arrow {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(15, 23, 42, 0.45);
    transition: transform 0.15s ease;
}

.dropdown-submenu:hover > .submenu-parent .submenu-arrow {
    transform: translateX(2px);
    color: var(--primary);
}


/* Hover */

.navbar .dropdown-item {
    padding: 8px 16px;
    white-space: nowrap;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(27, 77, 114, 0.08);
    color: var(--primary);
}


/* -----------------------------------------------------
   Oberstes Dropdown bereits per Hover öffnen
   Desktop only
   ----------------------------------------------------- */

@media (min-width: 992px) {

    .navbar .nav-dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu > .submenu-menu {
        position: absolute;
        top: -8px;
        left: calc(100% - 1px);
        display: none;
        margin: 0;
    }

    .dropdown-submenu:hover > .submenu-menu {
        display: block;
    }

    .submenu-row {
        display: flex;
        align-items: center;
    }

    .submenu-row > .dropdown-item {
        flex: 1;
    }

    .submenu-toggle {
        border: 0;
        background: transparent;
        padding: 8px 12px;
        color: var(--text-muted-62);
        pointer-events: none;
    }

    .navbar-expand-lg .navbar-nav {
        margin-left: 100px;
    }

}


.navbar-brand{
    letter-spacing: -0.2px;
}

.form-select {
    font-size: 0.875rem;
    padding: .25rem .5rem;
}

.brand-dot{
    color: var(--accent);
}

.btn-primary{
    --bs-btn-bg: var(--accent);
    --bs-btn-border-color: var(--accent);
    --bs-btn-hover-bg: var(--color-accent-hover);
    --bs-btn-hover-border-color: var(--color-accent-hover);
    --bs-btn-active-bg: var(--color-accent-active);
    --bs-btn-active-border-color: var(--color-accent-active);
}

.btn-outline-primary{
    --bs-btn-color: var(--primary);
    --bs-btn-border-color: rgba(27, 77, 114, 0.35);
    --bs-btn-hover-bg: rgba(27, 77, 114, 0.08);
    --bs-btn-hover-border-color: rgba(27, 77, 114, 0.55);
    --bs-btn-hover-color: var(--primary);
    --bs-btn-active-bg: rgba(27, 77, 114, 0.14);
    --bs-btn-active-border-color: rgba(27, 77, 114, 0.65);
    --bs-btn-active-color: var(--primary);
}

.teaser-card {
    box-shadow: none!important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #6c757d; /* grau */
    border-radius: 50%;
    width: 80px;
    height: 80px;
    background-size: 60%; /* Pfeil etwas kleiner */
    background-position: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.carousel-control-prev { left: -80px; }
.carousel-control-next { right: -80px; }


.col-image { position:relative; box-shadow: 0px 5px 15px rgba(0,0,0,.5); }
.col-image .img-overlay-bottom { position: absolute; bottom:0px; width: 100%; height:25px; background:rgba(0,0,0,0.4); color: var(--color-white); font-size:0.75rem; padding: 5px; text-align:right; }

.col-image-right { margin: 0 0 30px 30px; float: right; }
.col-image-left { margin: 0 30px 30px 0; float: left; }


.more-text { display: none; }
.read-more { color: #0a58ca; text-decoration: underline; cursor: pointer; }

.hero{
    position: relative;
    width: 100%;
    max-width: 2000px;
    margin-inline: auto;
    position: relative;
    padding: 84px 0 56px;
    overflow: hidden;
}

.hero-media{
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    display: block;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(1200px 500px at 50% 35%, rgba(255,255,255,0.10), rgba(0,0,0,0.40));
}

.hero-content{
    position: relative;
    z-index: 2;
    color: var(--color-white);
}

.hero-box { background: rgba(0,0,0,0.3); padding: 20px; margin-bottom: 30px; }

.search-card{
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border-subtle);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: 18px;
    text-align: left;
}

.search-card .error{ border: 2px solid red!important; background-color: #fff3f3; }

.search-card .form-label{
    font-size: 0.75rem;
    color: var(--text-muted-70);
    margin-bottom: 0.1rem;
}

.search-card .form-control,
.search-card .form-select{
    border-radius: 12px;
    border-color: var(--border-strong);
}

.search-card .form-control:focus,
.search-card .form-select:focus{
    border-color: rgba(229, 122, 47, 0.55);
    box-shadow: 0 0 0 0.25rem rgba(229, 122, 47, 0.20);
}

.search-cta{
    border-radius: 14px;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.search-options {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 6px;
}

.search-options .form-check-label {
    font-weight: 500;
}

/* Advanced Filters (details/summary, ohne JS) */
.advanced-filters{
    margin-top: 6px;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.72);
    overflow: hidden;
}

.advanced-filters__toggle{
    list-style: none;
    cursor: pointer;
    padding: 12px 14px;
    font-weight: 900;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.advanced-filters__toggle::-webkit-details-marker{
    display: none;
}

.advanced-filters__icon{
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(27, 77, 114, 0.10);
    color: var(--primary);
    transform: rotate(0deg);
    transition: transform 160ms ease;
}

.advanced-filters[open] .advanced-filters__icon{
    transform: rotate(90deg);
}

.advanced-filters__content{
    padding: 12px 14px 14px;
    border-top: 1px solid var(--border-subtle);
}

.advanced-filters__content .form-check-label { font-size: 0.8rem; }

.filter-box{
    border: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.85);
    border-radius: var(--radius);
    padding: 12px;
}

.filter-box__title{
    font-weight: 900;
    color: var(--text-strong-88);
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.filter-options{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
}

.advanced-filters__actions{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.advanced-filters__note{
    margin-top: 8px;
    color: rgba(15, 23, 42, 0.60);
    font-weight: 600;
    font-size: 0.92rem;
}


.popular-chips{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.popular-label{
    color: rgba(15, 23, 42, 0.65);
    font-size: 0.9rem;
    margin-right: 6px;
}

.chip{
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(27, 77, 114, 0.08);
    border: 1px solid rgba(27, 77, 114, 0.10);
    color: var(--primary);
    font-size: 0.9rem;
}

.chip:hover{
    background: rgba(27, 77, 114, 0.12);
    border-color: rgba(27, 77, 114, 0.18);
}

.section{
    padding: 30px 0;
}

.section-description { line-height: 1.6; font-size: 1.125rem; }

.box-infos { width: 500px; float: right; margin: 0 0 30px 30px; }

.section-alt{
    background: rgba(255,255,255,0.55);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-head{
    margin-bottom: 26px;
}

.section-title{
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--color-heading);
    margin-bottom: 8px;
    font-size: 2rem;
}

.section-subtitle{
    color: var(--text-muted-68);
    margin: 0 auto;
    max-width: 680px;
}

.tile{
    position: relative;
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 200px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
}

.tile-media{
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.tile-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    display: block;
}

.tile-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.55));
}

.tile-body{
    position: relative;
    z-index: 2;
    padding: 18px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tile-title{
    color: var(--color-white);
    font-weight: 800;
    font-size: 1.6rem;
    margin: 0;
    text-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.tile-meta{
    margin: 6px 0 0;
    color: rgba(255,255,255,0.92);
    font-size: 0.95rem;
}

.tile:hover{
    transform: translateY(-2px);
    transition: transform 180ms ease;
}


.theme-card{
    display: block;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.theme-media{
    height: 200px;
    overflow: hidden;
}

.theme-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.theme-body{
    padding: 14px 14px 16px;
}

.theme-title{
    font-weight: 800;
    letter-spacing: -0.2px;
    color: var(--color-heading);
}

.theme-meta{
    color: rgba(15, 23, 42, 0.65);
    margin-top: 3px;
    font-size: 0.95rem;
}

.theme-card:hover{
    transform: translateY(-2px);
    transition: transform 180ms ease;
}


.trustbar{
    padding: 22px 0;
    background: rgba(246, 241, 234, 0.85);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.trust-item{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.trust-icon{
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: rgba(229, 122, 47, 0.16);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.trust-text{
    color: var(--text-strong-85);
    font-weight: 600;
    line-height: 1.15;
}

.trust-muted{
    color: var(--text-muted-62);
    font-weight: 600;
}

.lead-muted{
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.65;
}

.info-card{
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 18px;
    position: sticky;
    top: 20px;
}

.info-title{
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.info-text{
    color: var(--text-muted-70);
}

.internal-links{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.internal-link{
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(27, 77, 114, 0.08);
    border: 1px solid rgba(27, 77, 114, 0.10);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.internal-link:hover{
    background: rgba(27, 77, 114, 0.12);
}

.final-cta{
    margin-top: 48px;
    text-align: center;
    background: rgba(255,255,255,0.70);
    border: 1px solid var(--border-subtle);
    border-radius: calc(var(--radius) + 10px);
    box-shadow: var(--shadow-soft);
    padding: 32px 18px;
}

.final-cta-title{
    font-weight: 900;
    letter-spacing: -0.4px;
    margin-bottom: 8px;
}

.final-cta-subtitle{
    color: var(--text-muted-70);
    margin-bottom: 18px;
}

.final-cta-note{
    margin-top: 10px;
    color: rgba(15, 23, 42, 0.60);
    font-size: 0.92rem;
}

.site-footer{
    padding: 28px 0;
    background: rgba(15, 23, 42, 0.92);
    color: rgba(255,255,255,0.88);
}

.site-footer a { color:#fff; font-weight: bold; }

.footer-brand{
    font-weight: 800;
    letter-spacing: -0.2px;
}

.footer-note{
    color: rgba(255,255,255,0.70);
    margin-top: 4px;
    font-size: 0.95rem;
}

.footer-links{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.footer-links a{
    color: rgba(255,255,255,0.78);
    font-weight: 600;
}

.footer-links a:hover{
    color: var(--color-white);
}


/* ===== Category page helpers ===== */

.hero--category{
    padding: 78px 0 52px;
}


/* Breadcrumbs */
.breadcrumbs{
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 0.95rem;
}

.breadcrumbs a{
    color: rgba(255,255,255,0.92);
}

.breadcrumbs a:hover{
    color: var(--color-white);
}

.breadcrumbs-sep{
    color: rgba(255,255,255,0.70);
}

/* Region tiles: extra subtle premium touch */
.tile--region .tile-title{
    font-size: 1.55rem;
}

/* Region tile images */
.tile-media--istria{
    background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1400&q=80");
}

.tile-media--dalmatia{
    background-image: url("https://images.unsplash.com/photo-1504512485720-7d83a16ee930?auto=format&fit=crop&w=1400&q=80");
}

.tile-media--pula{
    background-image: url("https://images.unsplash.com/photo-1526481280695-3c687fd5432c?auto=format&fit=crop&w=1400&q=80");
}

.tile-media--rovinj{
    background-image: url("https://images.unsplash.com/photo-1520975916090-3105956dac38?auto=format&fit=crop&w=1400&q=80");
}

.tile-media--split{
    background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=1400&q=80");
}

.tile-media--zadar{
    background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1400&q=80");
}

/* "Weiterlesen" (details/summary) */
.readmore{
    margin-top: 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border-subtle);
    background: rgba(255,255,255,0.70);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.readmore-toggle{
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.readmore-toggle::-webkit-details-marker{
    display: none;
}

.readmore-icon{
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: rgba(27, 77, 114, 0.10);
    color: var(--primary);
    transform: rotate(0deg);
    transition: transform 160ms ease;
}

.readmore[open] .readmore-icon{
    transform: rotate(90deg);
}

.readmore-content{
    padding: 0 16px 16px;
    border-top: 1px solid var(--border-subtle);
}

/* Info list inside info-card */
.info-list{
    display: grid;
    gap: 10px;
}

.info-row{
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(27, 77, 114, 0.06);
    border: 1px solid rgba(27, 77, 114, 0.08);
}

.info-label{
    color: var(--text-muted-70);
    font-weight: 700;
}

.info-value{
    color: var(--text-strong-88);
    font-weight: 800;
}

/* Teaser cards (for "Aktuell verfügbar" area) */
.teaser-card{
    display: block;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.teaser-media{
    height: 190px;
    overflow: hidden;
}

.teaser-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.teaser-body{
    padding: 14px 14px 16px;
}

.teaser-title{
    font-weight: 900;
    letter-spacing: -0.2px;
    color: var(--color-heading);
    font-size: 0.875rem;
}

.teaser-meta{
    color: rgba(15, 23, 42, 0.65);
    margin-top: 3px;
    font-size: 0.95rem;
}

.teaser-card:hover{
    transform: translateY(-2px);
    transition: transform 180ms ease;
}

.teaser-media--istria{
    background-image: url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=1400&q=80");
}
.teaser-media--pula{
    background-image: url("https://images.unsplash.com/photo-1526481280695-3c687fd5432c?auto=format&fit=crop&w=1400&q=80");
}
.teaser-media--zadar{
    background-image: url("https://images.unsplash.com/photo-1504512485720-7d83a16ee930?auto=format&fit=crop&w=1400&q=80");
}


/* ===== Region page (results + filters + listings) ===== */

.hero--region{
    padding: 76px 0 46px;
}

.search-card--compact{
    padding: 16px;
}

/* Results section */
.section-results{
    padding-top: 44px;
}

.section-text h2, .section-text-not-white h2 { font-size: 1.5rem; }
.section-text h3, .section-text-not-white h3 { font-size: 1.125rem; }
.section-text h4, .section-text-not-white h4 { font-size: 1rem; }

.results-toolbar{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.results-count{
    font-weight: 900;
    letter-spacing: -0.2px;
    font-size: 1.25rem;
    color: var(--color-heading);
}

.results-hint{
    color: var(--text-muted-62);
    font-weight: 600;
    margin-top: 2px;
}

.results-toolbar-right{
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.results-control{
    min-width: 210px;
}

.results-label{
    font-size: 0.85rem;
    color: var(--text-muted-70);
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

.results-filter-btn{
    display: none;
}

/* Filter card */
.filter-card{
    background: rgba(255,255,255,0.90);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    padding: 16px;
    position: sticky;
    top: 18px;
}
.filter-card .filter-more-details summary { font-size: 0.8rem; }

.filter-card--offcanvas{
    position: static;
    box-shadow: none;
    border-color: var(--border-default);
    background: rgba(255,255,255,0.92);
}

.filter-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 12px;
}

.filter-title{
    font-size: 1.15rem;
    font-weight: 900;
    margin: 0;
}

.filter-reset{
    color: var(--text-muted-62);
    font-weight: 800;
    padding: 0;
    text-decoration: none;
}

.filter-reset:hover{
    color: rgba(15, 23, 42, 0.82);
    text-decoration: underline;
}

.filter-group{
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-strong);
}

.filter-group:last-of-type{
    border-bottom: none;
}

.filter-group-title{
    font-weight: 900;
    color: var(--text-strong-88);
    font-size: 0.9rem;
}

.filter-small{
    color: rgba(15, 23, 42, 0.60);
    font-weight: 900;
    margin-top: 0;
    font-size: 0.7rem;
}

.filter-actions{
    padding-top: 12px;
}

.filter-price-row,
.filter-guests-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.filter-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
}

.filter-check-grid .form-check {
    margin-bottom: 0;
    min-width: 0;
}

.filter-check-grid .form-check-label {
    font-size: 0.9rem;
    line-height: 1.3;
}

.filter-check-grid-more {
    display: none;
    margin-top: 8px;
}

.filter-check-grid-more.is-open {
    display: grid;
}

.filter-more-toggle {
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--bs-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

.filter-more-arrow {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.filter-more-toggle.is-open .filter-more-arrow {
    transform: rotate(180deg);
}

.form-check-label{
    color: var(--text-muted-78);
    font-weight: 600;
}

.section-text { background-color: var(--color-white); padding: 30px 0; }
.section-text-not-white { padding: 30px 0; }

.section-text .accordion-button { font-weight: bold; }
.section-text .accordion-button:not(.collapsed) { background-color: var(--bg); }

#accordionFAQ { margin: 30px 0; }

/* Kurzinfos */
.destination-overview {
    color: var(--color-navy);
}

.overview-box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 12px 35px rgba(20, 45, 90, 0.08);
}

.overview-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-grid-4-columns {
    grid-template-columns: repeat(4, 1fr)!important;
}

.info-card{
    background:var(--color-white);
    border:1px solid var(--color-border-light);
    border-radius:16px;
    padding:28px 20px;
    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    min-height:180px;

    box-shadow:0 6px 18px rgba(20,45,90,.05);
    transition:.25s;
}

.info-card:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(20,45,90,.10);
}

.info-card i{
    font-size:2.7rem;
    margin-bottom:18px;
}

.info-card span{
    font-size:.95rem;
    font-weight:600;
    color:#5b6779;
    margin-bottom:6px;
}

.info-card strong{
    font-size:1.1rem;
    font-weight:700;
    color:#183153;
}

.rating-box {
    height: 100%;
    background: #f6f9fd;
    border: 1px solid #e1e8f2;
    border-radius: 18px;
    padding: 26px;
}

.rating-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.rating-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #e5ebf2;
}

.rating-row:last-child {
    border-bottom: 0;
}

.rating-row span {
    color: #263b56;
}

.rating-row strong {
    white-space: nowrap;
    color: #f5a400;
    letter-spacing: 1px;
}

.rating-title{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
}

.rating-title i{
    width:22px;
    text-align:center;
    font-size:1.1rem;
}

.rating-stars{
    color:#f5b301;
    letter-spacing:2px;
    font-size:1rem;
}

/* Quick-Fact-Farben: ausreichend kräftig auf hellem Hintergrund */
.text-yellow { color: #d99a00; }
.text-gold { color: #c58a00; }
.text-amber { color: #d97706; }
.text-blue { color: #1976d2; }
.text-cyan { color: #0891b2; }
.text-navy { color: #315b9d; }
.text-light-blue { color: #0288a7; }
.text-teal { color: #0f8f83; }
.text-purple { color: #7c3aed; }
.text-violet { color: #9333ea; }
.text-orange { color: #e85d04; }
.text-coral { color: #e55353; }
.text-indigo { color: #4f46e5; }
.text-green { color: #27875f; }
.text-lime { color: #5a9418; }
.text-emerald { color: #07845c; }
.text-red { color: #dc3f4f; }
.text-pink { color: #db2777; }
.text-brown { color: #9a6735; }
.text-slate { color: #64748b; }
.text-gray { color: #6b7280; }

/*
 * Highlight-Farben
 * Icons: 12 % Hintergrunddeckung und etwas kräftigere Vordergrundfarbe.
 * Badges: 14 % Hintergrunddeckung und dunklere Schrift für gute Lesbarkeit.
 */
.icon-yellow, .badge-yellow { --highlight-rgb: 217 154 0; --highlight-icon: #d99a00; --highlight-badge: #946600; }
.icon-gold, .badge-gold { --highlight-rgb: 197 138 0; --highlight-icon: #c58a00; --highlight-badge: #8a6100; }
.icon-amber, .badge-amber { --highlight-rgb: 217 119 6; --highlight-icon: #d97706; --highlight-badge: #a94707; }
.icon-blue, .badge-blue { --highlight-rgb: 25 118 210; --highlight-icon: #1976d2; --highlight-badge: #1556a0; }
.icon-cyan, .badge-cyan { --highlight-rgb: 8 145 178; --highlight-icon: #0891b2; --highlight-badge: #0e6f86; }
.icon-navy, .badge-navy { --highlight-rgb: 49 91 157; --highlight-icon: #315b9d; --highlight-badge: #294a7e; }
.icon-teal, .badge-teal { --highlight-rgb: 15 143 131; --highlight-icon: #0f8f83; --highlight-badge: #0f6f67; }
.icon-green, .badge-green { --highlight-rgb: 39 135 95; --highlight-icon: #27875f; --highlight-badge: #1e6b4b; }
.icon-lime, .badge-lime { --highlight-rgb: 90 148 24; --highlight-icon: #5a9418; --highlight-badge: #477612; }
.icon-brown, .badge-brown { --highlight-rgb: 154 103 53; --highlight-icon: #9a6735; --highlight-badge: #754c27; }
.icon-purple, .badge-purple { --highlight-rgb: 124 58 237; --highlight-icon: #7c3aed; --highlight-badge: #6425c7; }
.icon-violet, .badge-violet { --highlight-rgb: 147 51 234; --highlight-icon: #9333ea; --highlight-badge: #7522bd; }
.icon-orange, .badge-orange { --highlight-rgb: 232 93 4; --highlight-icon: #e85d04; --highlight-badge: #b94706; }
.icon-coral, .badge-coral { --highlight-rgb: 229 83 83; --highlight-icon: #e55353; --highlight-badge: #b9363f; }
.icon-pink, .badge-pink { --highlight-rgb: 219 39 119; --highlight-icon: #db2777; --highlight-badge: #ad185c; }
.icon-red, .badge-red { --highlight-rgb: 220 63 79; --highlight-icon: #dc3f4f; --highlight-badge: #ad2838; }
.icon-indigo, .badge-indigo { --highlight-rgb: 79 70 229; --highlight-icon: #4f46e5; --highlight-badge: #3d35b7; }
.icon-slate, .badge-slate { --highlight-rgb: 100 116 139; --highlight-icon: #64748b; --highlight-badge: #48566a; }
.icon-emerald, .badge-emerald { --highlight-rgb: 7 132 92; --highlight-icon: #07845c; --highlight-badge: #066747; }

.icon-yellow, .icon-gold, .icon-amber, .icon-blue, .icon-cyan,
.icon-navy, .icon-teal, .icon-green, .icon-lime, .icon-brown,
.icon-purple, .icon-violet, .icon-orange, .icon-coral, .icon-pink,
.icon-red, .icon-indigo, .icon-slate, .icon-emerald {
    background: rgb(var(--highlight-rgb) / 0.12);
    color: var(--highlight-icon);
}

.badge-yellow, .badge-gold, .badge-amber, .badge-blue, .badge-cyan,
.badge-navy, .badge-teal, .badge-green, .badge-lime, .badge-brown,
.badge-purple, .badge-violet, .badge-orange, .badge-coral, .badge-pink,
.badge-red, .badge-indigo, .badge-slate, .badge-emerald {
    background: rgb(var(--highlight-rgb) / 0.14);
    color: var(--highlight-badge);
}

/* Highlights */
.destination-highlights {
    color: var(--color-navy);
}

.highlight-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.highlight-item {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(20, 45, 90, 0.05);
    transition: all 0.25s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(20, 45, 90, 0.09);
}

.highlight-item[open] {
    box-shadow: 0 16px 38px rgba(20, 45, 90, 0.12);
}

.highlight-item summary {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    cursor: pointer;
    list-style: none;
}

.highlight-item summary::-webkit-details-marker {
    display: none;
}

.highlight-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.65rem;
}

.highlight-text {
    flex: 1;
    min-width: 0;
}

.highlight-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
}

.highlight-text h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 4px;
}

.highlight-text p {
    color: var(--color-muted-light);
    font-size: 0.95rem;
    line-height: 1.45;
    margin: 0;
}

.highlight-arrow {
    color: var(--color-muted-light);
    font-size: 0.95rem;
    transition: transform 0.25s ease;
}

.highlight-item[open] .highlight-arrow {
    transform: rotate(180deg);
}

.highlight-body {
    padding: 0 22px 24px 102px;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.highlight-body p {
    margin: 0 0 14px;
}

.highlight-body ul {
    margin: 0;
    padding-left: 18px;
}

.highlight-body li {
    margin-bottom: 6px;
}


/* Freizeitmöglichkeiten */
.activity-section {
    color: var(--color-navy);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-heading p {
    color: var(--color-muted-light);
    font-size: 1.05rem;
    margin: 0;
}

.activity-accordion {
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 12px 34px rgba(20, 45, 90, 0.07);
}

.activity-item {
    border-bottom: 1px solid var(--color-border-light);
    background: var(--color-white);
}

.activity-item:last-child {
    border-bottom: 0;
}

.activity-item summary {
    display: grid;
    grid-template-columns: 56px 1fr 32px;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    cursor: pointer;
    list-style: none;
}

.activity-item summary::-webkit-details-marker {
    display: none;
}

.activity-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-icon i {
    font-size: 1.3rem;
}

.activity-title {
    font-size: 1.05rem;
    font-weight: 700;
}

.activity-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-navy);
    font-size: 0.95rem;
    transition: transform 0.2s ease;
}

.activity-item[open] .activity-arrow {
    transform: rotate(45deg);
}

.activity-body {
    padding: 0 24px 22px 98px;
    color: var(--color-muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.activity-body p {
    margin: 0;
}

.activity-item[open] {
    background: var(--color-surface-blue);
}

.activity-item[open] summary {
    background: var(--color-surface-blue);
}

/* Welche Region passt zu wem? */
/* =====================================================
   Welche Region passt zu wem?
   ===================================================== */

.region-match {
    color: var(--color-navy);
}

.region-match-box {
    background: var(--color-surface-soft);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}

/* Überschrift */

.section-heading {
    max-width: 760px;
    margin: 0 auto 35px;
}

.section-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.section-heading p {
    color: var(--color-muted-light);
    margin: 0;
    font-size: 1.05rem;
}

/* Liste */

.match-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Karte */

.match-row {

    --match-color: #3b82f6;

    display: grid;
    grid-template-columns: 60px 1fr 240px 24px;
    gap: 18px;
    align-items: center;

    padding: 20px 24px;

    background: var(--color-white);

    border: 1px solid var(--color-border);
    border-left: 5px solid var(--match-color);
    border-radius: 18px;

    text-decoration: none;

    transition: all .25s ease;

    box-shadow: 0 6px 20px rgba(15,23,42,.04);

}

.match-row:hover {

    transform: translateY(-2px);

    box-shadow: 0 14px 35px var(--border-default);

    text-decoration: none;

}

/* Icon */

.match-icon {

    width: 50px;
    height: 50px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--match-color);

    flex-shrink: 0;

}

.match-icon i {

    color: var(--color-white);

    font-size: 1.25rem;

    line-height: 1;

}

/* Text */

.match-text strong {

    display: block;

    color: var(--color-navy);

    font-size: 1.05rem;

    font-weight: 700;

    margin-bottom: 5px;

}

.match-text small {

    display: block;

    color: var(--color-muted-light);

    font-size: .92rem;

    line-height: 1.5;

}

/* Orte */

.match-tags{

    display:flex;

    flex-wrap:wrap;

    justify-content:flex-end;

    gap:8px;

}

.match-tags a,
.match-tags span{

    display:inline-flex;

    align-items:center;

    padding:6px 12px;

    border-radius:999px;

    background:rgba(59,130,246,.08);

    color:var(--match-color);

    font-size:.85rem;

    font-weight:600;

    text-decoration:none;

    transition:.2s;

}

.match-tags a:hover{

    background:var(--match-color);

    color:var(--color-white);

}

/* Pfeil */

.match-arrow {

    color: var(--match-color);

    text-align: right;

    transition: .2s;

}

.match-row:hover .match-arrow{

    transform: translateX(4px);

}

/* Farben */

.match-purple{
    --match-color:#8b5cf6;
}

.match-green{
    --match-color:#22c55e;
}

.match-pink{
    --match-color:#ec4899;
}

.match-yellow {
    --match-color: #ffeb6f;
}

.match-orange{
    --match-color:#f97316;
}

.match-blue{
    --match-color:#2563eb;
}

.match-teal{
    --match-color:#14b8a6;
}


.listings-grid {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-gutter: stable;
    display: grid;
    gap: 14px;
}

.listing-card{
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.listing-media{
    width: 300px;
    aspect-ratio: 3 / 2;
    background: none;
    position: relative;
}



.listing-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.listing-body{
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.listing-top{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.listing-location{
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-top: -8px;
    font-size: 0.8rem;
    color: var(--text-muted-68);
}

.listing-title{
    font-weight: 900;
    letter-spacing: -0.2px;
    margin: 0;
    font-size: 1rem;
    color: var(--color-heading);
}

.listing-sub{
    color: var(--text-muted-68);
    font-weight: 600;
    font-size: 0.875rem;
}

.listing-price{
    text-align: right;
    min-width: 84px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(229, 122, 47, 0.10);
    border: 1px solid rgba(229, 122, 47, 0.18);
}

.listing-price-mobile {
    position: absolute;
    bottom: 6px;
    right: 6px;
    width: 140px;
    text-align: right;
    padding: 4px 6px;
    border-radius: 14px;
    background: rgba(229, 122, 47, 0.50);
    border: 1px solid rgba(229, 122, 47, 0.4);
    color: rgba(15, 23, 42, 0.70);
    color: #f3efef;
}

.listing-from{
    color: rgba(15, 23, 42, 0.60);
    font-weight: 800;
    font-size: 0.85rem;
    line-height: 1;
}

.listing-amount{
    color: var(--color-accent-text);
    font-weight: 1000;
    font-size: 1.25rem;
    line-height: 1.05;
    letter-spacing: -0.4px;
    margin-top: 4px;
}

.listing-per{
    color: rgba(15, 23, 42, 0.60);
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 2px;
}

.listing-meta{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.listing-badge{
    background: rgba(27, 77, 114, 0.08) !important;
    border: 1px solid rgba(27, 77, 114, 0.10);
    color: var(--primary) !important;
    font-weight: 800;
    margin-top: 6px;
}

.listing-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.results-pagination{
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.section-countries-list {
    padding: 56px 0 24px;
}

.country-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.country-list-item {
    background: var(--color-white);
    border: 1px solid var(--border-default);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.country-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px var(--border-default);
}

.country-list-image-link {
    display: block;
}

.country-list-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.country-list-content {
    padding: 4px 2px;
}

.country-list-title {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.2;
    font-weight: 700;
}

.country-list-title a {
    color: var(--color-text);
    text-decoration: none;
}

.country-list-title a:hover {
    color: #0b5ed7;
}

.country-list-text {
    margin: 0 0 12px;
    color: var(--color-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    /*max-width: 760px;*/
}

.country-list-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0b5ed7;
    text-decoration: none;
}

.country-list-link:hover {
    text-decoration: underline;
}


/* Mobile / Tablet adjustments */


/* =====================================================
   RESPONSIVE BREAKPOINTS
   All media queries are collected here.
   ===================================================== */

/* Tablets */
@media (max-width: 991.98px) {
    .carousel-control-prev { left: -40px; }
    .carousel-control-next { right: -40px; }

    .hero{
        padding: 72px 0 42px;
    }

    .search-card{
        padding: 14px;
    }

    .info-card{
        position: static;
    }

    .footer-links{
        justify-content: flex-start;
    }

    .hero--category{
        padding: 70px 0 44px;
    }

    .highlight-list {
        grid-template-columns: 1fr;
    }

    .listings-grid {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-toolbar{
        align-items: center;
    }

    .results-control{
        min-width: 190px;
    }

    .results-filter-btn{
        display: inline-flex;
    }

    .listing-media{
        width: 100%;
        min-height: 180px;
    }

    .listing-image{
        width: 100%;
        height: 180px;
        min-height: 180px;
    }

    .filter-card{
        position: static;
    }

    .filter-check-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .dropdown-submenu {
        position: static;
    }

    .submenu-row {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .submenu-row > .dropdown-item {
        flex: 1;
    }

    .submenu-toggle {
        width: 44px;
        height: 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        border: 0;
        background: transparent;

        color: var(--primary);

        cursor: pointer;
    }

    .submenu-toggle span {
        display: inline-block;
        font-size: 1.25rem;
        transition: transform 0.2s ease;
    }

    .submenu-toggle[aria-expanded="true"] span {
        transform: rotate(90deg);
    }

    .dropdown-submenu > .submenu-menu {
        position: static;

        display: none;

        margin: 0;
        padding: 0 0 0 16px;

        border: 0;
        border-radius: 0;
        box-shadow: none;

        background: transparent;
    }

    .dropdown-submenu > .submenu-menu.is-open {
        display: block;
    }

    /* dritte Ebene etwas stärker einrücken */
    .dropdown-submenu
    .dropdown-submenu
    > .submenu-menu {
        padding-left: 16px;
    }

}

/* Smartphones */
@media (max-width: 575.98px) {
    .carousel-control-prev { left: -10px; }
    .carousel-control-next { right: -10px; }

    .filter-options{
        grid-template-columns: 1fr;
    }

    .advanced-filters__actions{
        justify-content: stretch;
    }

    .advanced-filters__actions .btn{
        width: 100%;
    }

    .section-title{
        font-size: 1.6rem;
    }

    .tile{
        min-height: 150px;
    }

    .trust-item{
        justify-content: flex-start;
    }

    .section-heading h2 {
        font-size: 1.55rem;
    }

    .activity-item summary {
        grid-template-columns: 46px 1fr 26px;
        gap: 14px;
        padding: 18px;
    }

    .activity-icon {
        width: 42px;
        height: 42px;
    }

    .activity-icon i {
        font-size: 1.15rem;
    }

    .activity-title {
        font-size: 1rem;
    }

    .activity-body {
        padding: 0 18px 20px 78px;
        font-size: 0.94rem;
    }

    .highlight-item summary {
        align-items: flex-start;
        padding: 18px;
        gap: 14px;
    }

    .highlight-icon {
        width: 52px;
        height: 52px;
    }

    .highlight-icon i {
        font-size: 1.4rem;
    }

    .highlight-body {
        padding: 0 18px 20px 84px;
    }

    .overview-box {
        padding: 22px;
        border-radius: 18px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .rating-row {
        font-size: 0.9rem;
    }

    .results-toolbar{
        flex-direction: column;
        align-items: flex-start;
    }

    .results-toolbar-right{
        width: 100%;
    }

    .results-control{
        flex: 1;
        min-width: 0;
    }

    .results-filter-btn{
        width: 100%;
        justify-content: center;
    }

    .listing-top{
        flex-direction: column;
    }

    .listing-price{
        text-align: left;
        width: fit-content;
    }

    .listing-media {
        aspect-ratio: initial;
    }

    .filter-check-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets */
@media (max-width:991px) {
    .region-match-box{

        padding:30px;

    }

    .match-row{

        grid-template-columns:60px 1fr 24px;

    }

    .match-destinations{

        grid-column:2 / 4;

        text-align:left;

        margin-top:5px;

    }
}

/* Smartphones */
@media (max-width:575px) {
    .region-match-box{

        padding:22px;

        border-radius:18px;

    }

    .section-heading h2{

        font-size:1.55rem;

    }

    .match-row{

        grid-template-columns:48px 1fr 20px;

        gap:14px;

        padding:16px;

    }

    .match-icon{

        width:42px;
        height:42px;

    }

    .match-icon i{

        font-size:1rem;

    }

    .match-text strong{

        font-size:1rem;

    }

    .match-text small{

        font-size:.88rem;

    }

    .match-destinations{

        font-size:.9rem;

    }
}

/* Tablets Hochformat */
@media (max-width: 767.98px) {
    .section-countries-list {
        padding: 30px 0 12px;
    }

    .country-list-item {
        padding: 14px;
        border-radius: 18px;
    }

    .country-list-title {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .country-list-text {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .country-list {
        gap: 14px;
    }

    .listing-card{
        grid-template-columns: 1fr;
    }
}