﻿/********** Foundation **********/
:root {
    --primary: #133260;
    --secondary: #af1600;
    --light: #F5F8F2;
    --dark: #252C30;
    --rating-star: #198754;
    --surface-card: #FFFFFF;
    --surface-soft: linear-gradient(180deg, rgba(19, 50, 96, .03), rgba(255, 255, 255, .97));
    --surface-soft-alt: linear-gradient(180deg, rgba(19, 50, 96, .03), rgba(255, 255, 255, .96));
    --border-soft: 1px solid rgba(19, 50, 96, .08);
    --shadow-soft: 0 1.25rem 3rem rgba(0, 0, 0, .06);
    --shadow-card: 0 1.25rem 2.5rem rgba(0, 0, 0, .07);
    --shadow-card-sm: 0 .8rem 1.8rem rgba(0, 0, 0, .04);
    --bs-primary: #133260;
    --bs-primary-rgb: 19, 50, 96;
    --bs-info: #133260;
    --bs-info-rgb: 19, 50, 96;
    --bs-link-color: #133260;
    --bs-link-hover-color: #0f284d;
}


/*** Typography ***/
body {
    color: #344150;
    font-family: "Funnel Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.76;
    letter-spacing: .004em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    color: var(--dark);
    font-family: "Funnel Sans", sans-serif;
    font-weight: 680;
    line-height: 1;
    letter-spacing: -.024em;
    text-wrap: balance;
}

p,
li,
.btn,
.navbar .navbar-nav .nav-link,
.btn-footer-link,
.breadcrumb-item,
.breadcrumb-item a {
    font-family: "Funnel Sans", sans-serif;
}

p,
li {
    font-size: 1rem;
    line-height: 1.8;
}

.display-1,
.display-2,
.display-3,
.display-4 {
    line-height: .96;
    letter-spacing: -.028em;
}

.display-5,
.display-6 {
    line-height: .98;
    letter-spacing: -.022em;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title .display-5,
.section-title .display-6 {
    margin-bottom: 0;
}

.section-title .display-6 {
    font-size: clamp(1.7rem, 1.22rem + 1.28vw, 2.48rem);
    line-height: 1.02;
}

h2,
.h2 {
    font-size: clamp(2rem, 1.4rem + 1.7vw, 3rem);
    letter-spacing: -.02em;
}

h3,
.h3 {
    font-size: clamp(1.45rem, 1.2rem + .85vw, 2.05rem);
    font-weight: 600;
    letter-spacing: -.015em;
}

.lead,
.index-feature-lead,
.lodge-section-intro p {
    font-size: 1.04rem;
    line-height: 1.84;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


/*** Loading State ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Buttons ***/
.btn {
    transition: .5s;
    font-weight: 560;
    letter-spacing: .012em;
    border-width: 1px;
    box-shadow: none;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: var(--light);
    background: #0f284d;
    border-color: #0f284d;
    box-shadow: none;
}

.btn-outline-primary {
    color: var(--primary);
    background: transparent;
    border-color: rgba(19, 50, 96, .26);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: var(--light);
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
}

.btn-light {
    color: var(--primary);
    background: var(--surface-card);
    border-color: #FFFFFF;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    color: var(--primary);
    background: rgba(255, 255, 255, .92);
    border-color: rgba(255, 255, 255, .92);
    box-shadow: none;
}

.btn-outline-light {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, .7);
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active {
    color: var(--primary);
    background: var(--surface-card);
    border-color: #FFFFFF;
    box-shadow: none;
}

.btn-link {
    color: var(--primary);
}

.btn-link:hover,
.btn-link:focus {
    color: #0f284d;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border-radius: 50rem;
    font-weight: 600;
    letter-spacing: .016em;
}

.btn-summary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9.5rem;
    padding: .8rem 1.2rem !important;
    margin: .35rem .45rem 0 0 !important;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .018em;
    background: rgba(19, 50, 96, .02);
    border-color: rgba(19, 50, 96, .18);
}

.btn-summary-action:hover,
.btn-summary-action:focus,
.btn-summary-action:active {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Global Header ***/
.sticky-top {
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    transition: background-color .35s ease, box-shadow .35s ease;
}

.sticky-top.is-scrolled {
    background: rgba(255, 255, 255, .98);
}

.navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
}

.navbar .navbar-nav .nav-link {
    margin-right: 32px;
    padding: 25px 0;
    color: var(--dark);
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .045em;
    font-variant-caps: small-caps;
    text-transform: none;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-nav .nav-link:last-child {
    margin-right: 0;
}
`r`n
@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: 126px;
        height: 100px;
    }

    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}
`r`n`r`n
/*** Homepage Hero ***/

.homepage-hero {
    min-height: 0;
}

.homepage-hero {
    --homepage-header-offset: 86px;
}

.homepage-hero-stage,
.homepage-hero-stage .homepage-hero-frame,
.homepage-hero-stage .homepage-hero-media,
.homepage-hero-stage img {
    height: calc(100dvh - var(--homepage-header-offset));
    min-height: 0;
}

.homepage-hero-stage,
.homepage-hero-stage .homepage-hero-frame,
.homepage-hero-stage .homepage-hero-media {
    position: relative;
    overflow: hidden;
}

.homepage-hero-stage img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.homepage-hero-overlay {
    inset: 0;
    display: flex;
    align-items: center;
    background: rgba(19, 50, 96, .7);
    z-index: 1;
    position: absolute;
}

.homepage-hero-overlay .container,
.homepage-hero-overlay .row {
    height: 100%;
}

.homepage-hero-overlay .col-xl-7,
.homepage-hero-overlay .col-lg-8,
.homepage-hero-overlay .col-lg-7 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.homepage-hero-copy-column {
    text-align: left !important;
    justify-content: center;
}

.homepage-hero-overlay .homepage-hero-copy-column {
    gap: 2.1rem !important;
}

.homepage-hero-copy-column > * {
    text-align: left !important;
}

.hero-kicker {
    margin-top: 0;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .12em;
    font-variant-caps: all-small-caps;
    text-transform: none;
}

.hero-lead {
    max-width: 38rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1.04rem;
    font-weight: 400;
    line-height: 1.82;
    letter-spacing: 0;
    font-variant-caps: normal;
}

.homepage-hero-overlay h1 {
    max-width: 15ch;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0 !important;
    font-size: clamp(3.2rem, 2.3rem + 3.2vw, 5.9rem);
    font-weight: 700;
    line-height: .92;
    letter-spacing: -.034em;
    text-wrap: balance;
}

.homepage-hero-overlay .btn {
    min-width: 240px;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: none;
    padding-top: .82rem;
    padding-bottom: .82rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: .65rem;
}

.hero-editorial-card {
    padding: 1.5rem;
    max-width: 24rem;
    margin-left: auto;
    color: #FFFFFF;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 1.75rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 1.1rem 2.4rem rgba(0, 0, 0, .16);
}

.hero-card-kicker {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    font-variant-caps: all-small-caps;
}

.hero-card-list {
    display: grid;
    gap: .8rem;
    margin-bottom: 1rem;
}

.hero-card-item {
    display: block;
    padding: .95rem 1rem;
    color: #FFFFFF;
    text-decoration: none;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.2rem;
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.hero-card-item strong {
    display: block;
    margin-bottom: .3rem;
    font-size: 1rem;
}

.hero-card-item span {
    display: block;
    color: rgba(255, 255, 255, .76);
    font-size: .92rem;
    line-height: 1.55;
}

.hero-card-item:hover {
    transform: translateY(-2px);
    color: #FFFFFF;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
}

.hero-trust-strip {
    display: none;
}

@media (max-width: 768px) {
    .homepage-hero {
        --homepage-header-offset: 96px;
    }

    .homepage-hero-stage,
    .homepage-hero-stage .homepage-hero-frame,
    .homepage-hero-stage .homepage-hero-media {
        height: calc(100dvh - var(--homepage-header-offset));
        min-height: 500px;
    }
    
    .homepage-hero-stage img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .homepage-hero-overlay .col-xl-7,
    .homepage-hero-overlay .col-lg-8,
    .homepage-hero-overlay .col-lg-7 {
        align-items: center;
        gap: 1.4rem;
    }

    .homepage-hero-copy-column,
    .homepage-hero-copy-column > * {
        text-align: center !important;
    }

    .homepage-hero-overlay p {
        font-size: .78rem;
        letter-spacing: .14em;
    }

    .homepage-hero-overlay h1 {
        max-width: 9.5ch;
        font-size: clamp(2.4rem, 1.9rem + 3vw, 3.5rem);
        line-height: .98;
    }

    .homepage-hero-overlay .btn {
        min-width: 0;
        font-size: .82rem;
        letter-spacing: .1em;
    }

    .hero-actions {
        justify-content: center;
        gap: .8rem;
    }

    .homepage-hero-overlay .homepage-hero-copy-column {
        gap: 1.35rem !important;
    }

    .hero-kicker {
        font-size: .82rem;
        text-align: center;
    }

    .hero-lead {
        max-width: 30rem;
        font-size: .94rem;
        text-align: center;
    }

    .hero-editorial-card {
        padding: 1.2rem;
        max-width: none;
        margin-left: 0;
    }
}

.page-header {
    background: linear-gradient(rgba(19, 50, 96, .7), rgba(19, 50, 96, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}

.hero-shell {
    position: relative;
    margin-bottom: 0;
    overflow: hidden;
}

.hero-shell-copy {
    position: relative;
    z-index: 1;
}

.hero-shell-kicker {
    margin-bottom: 1rem;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .18em;
    font-variant-caps: all-small-caps;
}

.hero-shell-lead {
    margin-bottom: 0;
    font-size: 1.03rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .82);
}

.subpage-hero {
    background:
        linear-gradient(rgba(19, 50, 96, .82), rgba(19, 50, 96, .82)),
        radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 28%),
        url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.subpage-hero-lead {
    max-width: 42rem;
}

.lodge-hero {
    margin-bottom: 1.2rem;
    padding: 4rem 0 3.5rem;
    background:
        linear-gradient(90deg, rgba(11, 28, 55, .58) 0%, rgba(11, 28, 55, .42) 34%, rgba(11, 28, 55, .14) 66%, rgba(11, 28, 55, .06) 100%),
        radial-gradient(circle at top right, rgba(255, 255, 255, .14), transparent 30%),
        linear-gradient(135deg, rgba(19, 50, 96, .88), rgba(15, 40, 77, .86));
}

.lodge-page {
    padding-top: 1.5rem !important;
}

.lodge-hero::before {
    content: "";
    position: absolute;
    inset: -1.75rem;
    background:
        linear-gradient(135deg, rgba(19, 50, 96, .52), rgba(15, 40, 77, .48)),
        url(../img/hero1.jpeg) center center / cover no-repeat;
    filter: blur(5px);
    transform: scale(1.02);
    opacity: .92;
}

.lodge-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, .24), transparent);
}

.lodge-hero-copy {
    max-width: 100%;
}

.lodge-hero-copy h1 {
    color: #FFFFFF;
    line-height: .95;
}

.hero-shell-emblem,
.lodge-hero-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.lodge-hero-emblem {
    width: min(100%, 260px);
    aspect-ratio: 1 / 1;
    min-height: 0;
    margin-left: auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, .18), transparent 55%),
        rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, .18);
}

.lodge-hero-emblem img {
    display: block;
    max-width: 230px;
    max-height: 230px;
    padding: 1rem;
    border-radius: 1.5rem;
    background: var(--surface-card);
    object-fit: contain;
}

@media (min-width: 992px) {
    .lodge-hero .row {
        --bs-gutter-x: 2rem;
    }

    .lodge-hero .col-lg-7 {
        flex: 0 0 62%;
        width: 62%;
    }

    .lodge-hero .col-lg-5 {
        flex: 0 0 38%;
        width: 38%;
    }
}

.panel-shell {
    padding: 2.5rem;
    border: var(--border-soft);
    border-radius: 2rem;
    box-shadow: var(--shadow-soft);
}

.panel-shell-alt {
    background: var(--surface-soft-alt);
}

.panel-shell-soft {
    background: var(--surface-soft);
}

.panel-summary {
    position: sticky;
    top: 120px;
    padding: 1.75rem;
    color: #FFFFFF;
    background: linear-gradient(160deg, #133260, #214a84);
    border-radius: 1.75rem;
    box-shadow: 0 1rem 2.4rem rgba(19, 50, 96, .2);
}

.panel-summary-kicker,
.panel-card-kicker {
    margin-bottom: .9rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .16em;
    font-variant-caps: all-small-caps;
}

.panel-summary-kicker {
    color: rgba(255, 255, 255, .72);
}

.panel-summary h2 {
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    font-size: 1.55rem;
    line-height: 1.28;
}

.panel-summary-list {
    display: grid;
    gap: 1rem;
}

.panel-summary-item {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, .16);
}

.panel-summary-label {
    display: block;
    margin-bottom: .3rem;
    color: rgba(255, 255, 255, .66);
    font-size: .8rem;
    letter-spacing: .12em;
    font-variant-caps: all-small-caps;
}

.panel-summary-item strong,
.panel-summary-item a {
    color: #FFFFFF;
}

.panel-card {
    padding: 1.85rem 1.9rem;
    background: var(--surface-card);
    border: var(--border-soft);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-card-sm);
}

.panel-card-kicker {
    color: var(--primary);
}

.panel-card h3 {
    margin-bottom: .95rem;
    font-size: 1.45rem;
    line-height: 1.3;
}

.panel-card p:last-child {
    margin-bottom: 0;
}

.impressum-content {
    display: grid;
    gap: 1.35rem;
}

@media (max-width: 991.98px) {
    .panel-shell {
        padding: 1.5rem;
    }

    .panel-summary {
        position: static;
    }
}

.directory-header {
    background:
        linear-gradient(rgba(19, 50, 96, .82), rgba(19, 50, 96, .82)),
        radial-gradient(circle at top right, rgba(255, 255, 255, .18), transparent 28%),
        url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.directory-kicker {
    margin-bottom: 1rem;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .18em;
    font-variant-caps: all-small-caps;
}

.directory-header-lead {
    max-width: 44rem;
    margin-bottom: 0;
    font-size: 1.03rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .82);
}

.directory-content {
    display: grid;
    gap: 1.35rem;
}

.directory-content > .panel-card h3 {
    margin-bottom: 1rem;
}

.directory-link-list {
    display: grid;
    gap: .75rem;
}

.directory-link-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .95rem 1rem;
    color: #253242;
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
    border: var(--border-soft);
    border-radius: 1rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.directory-link-item span {
    line-height: 1.5;
}

.directory-link-item i {
    flex: 0 0 auto;
    color: var(--primary);
}

.directory-link-item:hover {
    transform: translateY(-2px);
    color: #253242;
    border-color: rgba(19, 50, 96, .16);
    box-shadow: 0 .8rem 1.6rem rgba(0, 0, 0, .06);
}

@media (max-width: 991.98px) {
}


/*** Article Pages ***/
.article-content {
    display: grid;
    gap: 1.35rem;
}

.article-content > .panel-card h3,
.article-mini-card h3 {
}

.article-figure {
    margin: 0;
    overflow: hidden;
    background: var(--surface-card);
    border: var(--border-soft);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-card-sm);
}

.article-figure img {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}

.article-figure figcaption {
    padding: 1rem 1.4rem 1.2rem;
    color: #5d6975;
    font-size: .95rem;
    line-height: 1.7;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

.article-mini-card {
    padding: 1.65rem 1.7rem;
    background: rgba(19, 50, 96, .04);
    border: var(--border-soft);
    border-radius: 1.5rem;
}

.article-mini-card p:last-child {
    margin-bottom: 0;
}

.article-points {
    display: grid;
    gap: 1rem;
}

.article-point {
    padding: 1rem 0 0;
    border-top: 1px solid rgba(19, 50, 96, .08);
}

.article-point:first-child {
    padding-top: 0;
    border-top: 0;
}

.article-point strong {
    display: block;
    margin-bottom: .35rem;
    color: var(--dark);
    font-size: 1rem;
}

.article-point p {
    margin-bottom: 0;
}

.article-source-card .btn {
    min-width: 230px;
}

.lodge-summary {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 1rem;
    padding: 1.25rem;
    color: #FFFFFF;
    border-radius: 1.75rem;
    background: linear-gradient(180deg, #173c74, #102846);
    box-shadow: 0 1rem 2.4rem rgba(19, 50, 96, .2);
}

.lodge-summary-brand,
.lodge-summary-panel {
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
}

.lodge-summary-brand {
    padding: 1.6rem 1.25rem;
}

.lodge-summary-logo {
    display: block;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

.lodge-summary-panel {
    padding: 1.2rem 1.15rem;
}

.lodge-summary-facts {
    display: grid;
    gap: .85rem;
}

.lodge-summary-item {
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.lodge-summary-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.lodge-summary-logo-old {
    display: block;
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
}

.lodge-summary .text-primary {
    color: #FFFFFF !important;
}

.lodge-summary-item p,
.lodge-summary-legacy p {
    margin-top: 0;
    margin-bottom: 0;
}

.lodge-summary strong {
    color: #FFFFFF;
}

.lodge-summary-generic > p,
.lodge-summary-generic > div:not(.lodge-summary-actions) {
    margin: 0 !important;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, .06);
}

.lodge-summary-generic > p img,
.lodge-summary-generic > div:not(.lodge-summary-actions) img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.lodge-summary-generic > .btn,
.lodge-summary-generic > a.btn {
    margin: 0 !important;
}

.lodge-summary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: .15rem;
}

.lodge-summary-actions .btn-summary-action {
    flex: 1 1 100%;
    min-width: 100%;
    width: 100%;
    margin: 0 !important;
}

.lodge-summary-actions-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lodge-summary-actions-two .btn-summary-action {
    min-width: 0;
    width: 100%;
}

.lodge-summary-actions-three .btn-summary-action {
    flex: 1 1 calc(50% - .3rem);
    min-width: calc(50% - .3rem);
}

.lodge-summary-actions-three .btn-summary-action:last-child {
    flex-basis: 100%;
    min-width: 100%;
}

.lodge-summary-actions .btn-summary-action {
    color: #FFFFFF;
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .28);
}

.lodge-summary-actions .btn-summary-action:hover,
.lodge-summary-actions .btn-summary-action:focus,
.lodge-summary-actions .btn-summary-action:active {
    color: var(--primary);
    background: var(--surface-card);
    border-color: #FFFFFF;
}

.lodge-content {
    display: grid;
    gap: 1.35rem;
}

.lodge-card {
    padding-top: .95rem;
}

.lodge-card .section-title {
    margin-bottom: 1.5rem;
}

.lodge-card .section-title h2 {
    margin-bottom: 0;
}

.lodge-card > p,
.lodge-card .lodge-rating-summary p,
.lodge-card .lodge-organization-item p {
    margin-top: 0;
}

.lodge-rating-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .55rem;
    font-size: 1.05rem;
    line-height: 1.4;
    letter-spacing: 0;
}

.lodge-rating-stars {
    display: inline-flex;
    align-items: center;
    gap: .12rem;
}

.lodge-rating-stars i {
    flex: 0 0 auto;
    font-size: 1.12rem;
}

.lodge-rating-value {
    font-weight: 600;
    white-space: nowrap;
}

.lodge-rating-summary {
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border: var(--border-soft);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(19, 50, 96, .04), rgba(255, 255, 255, .88));
}

.lodge-checklist {
    display: grid;
    gap: .95rem;
    padding-left: 1.35rem;
}

.lodge-checklist li {
    margin-bottom: 0;
}

.lodge-checklist-detailed {
    gap: .8rem;
    padding-left: 0;
    list-style: none;
}

.lodge-checklist-detailed li {
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: .9rem;
    align-items: start;
    padding: 1rem 1.1rem;
    border: var(--border-soft);
    border-radius: 1rem;
    background: rgba(19, 50, 96, .03);
}

.lodge-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary);
    background: rgba(19, 50, 96, .08);
    border-radius: 999px;
    font-size: .95rem;
}

.lodge-check-copy {
    display: block;
    min-width: 0;
}

.lodge-inline-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.lodge-inline-link:hover,
.lodge-inline-link:focus {
    color: var(--secondary);
}

.lodge-organization {
    display: grid;
    gap: 1rem;
}

.lodge-organization-item {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1.15rem 1.2rem;
    border: var(--border-soft);
    border-radius: 1.1rem;
    background: linear-gradient(180deg, rgba(19, 50, 96, .03), rgba(255, 255, 255, .92));
}

.lodge-organization-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    color: var(--primary);
    background: rgba(19, 50, 96, .08);
    border-radius: 999px;
    font-size: .95rem;
}

.lodge-organization-item p {
    margin-bottom: 0;
}

.lodge-list-grid .store-item {
    min-height: 100%;
    padding-top: 1.1rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(19, 50, 96, .025));
}

.lodge-list-grid .store-item .img-fluid {
    display: block;
    width: 104px;
    height: 104px;
    max-width: none;
    margin: 0 auto .45rem;
    padding: 0;
    object-fit: contain;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.lodge-list-grid .store-item h6 {
    margin: 0 -1.5rem .6rem !important;
    padding: 0 1.5rem .8rem;
    color: var(--dark);
    font-size: 1.02rem;
    line-height: 1.32;
    min-height: 2.7em;
    border-bottom: 1px solid rgba(19, 50, 96, .1);
}

.lodge-list-grid .store-item p {
    margin-bottom: 0;
}

.lodge-list-grid .store-item .p-4 {
    padding-top: .35rem !important;
}

.lodge-list-meta {
    display: grid;
    gap: .32rem;
    justify-items: center;
}

.lodge-list-meta-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    font-size: .8rem;
    font-weight: 600;
    line-height: 1.35;
    color: #5a6672;
}

.lodge-list-meta-item i {
    color: var(--primary);
    font-size: .78rem;
}

.lodge-order-grid .store-item .img-fluid {
    width: 128px;
}

.lodge-order-grid .store-item {
    padding-top: 0;
    background: linear-gradient(180deg, rgba(19, 50, 96, .035), rgba(255, 255, 255, 1));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: flex-start;
}

.lodge-order-grid .store-item .p-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    padding: 0 1.45rem 1.45rem !important;
    text-align: center;
}

.lodge-order-grid .store-item .img-fluid {
    width: 120px;
    height: 120px;
    margin: 1.1rem auto 0;
    object-fit: contain;
}

.lodge-order-grid .store-item h6 {
    margin: 0 !important;
    padding: 0;
    min-height: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: transparent;
    line-height: 1.45;
}

.lodge-order-grid .store-item .lodge-order-title {
    display: block;
    width: 100%;
    margin: 0;
    padding: .95rem 1.15rem;
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: .02em;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0;
    align-self: stretch;
}

.lodge-order-grid .store-item .lodge-order-meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: .42rem .78rem;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
    background: rgba(19, 50, 96, .08);
    border-radius: 999px;
}

.lodge-card .accordion-item {
    overflow: hidden;
    border: var(--border-soft);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(19, 50, 96, .03), rgba(255, 255, 255, .98));
    box-shadow: 0 14px 34px rgba(19, 50, 96, .06);
}

.lodge-card .accordion-button {
    padding: 1rem 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(19, 50, 96, .04);
    box-shadow: none;
}

.lodge-card .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
}

.lodge-card .accordion-button:focus {
    border-color: rgba(19, 50, 96, .18);
    box-shadow: 0 0 0 .2rem rgba(19, 50, 96, .12);
}

.lodge-card .accordion-button::after {
    width: .95rem;
    height: .95rem;
    background-size: .95rem;
    filter: saturate(0) brightness(.55);
}

.lodge-card .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.lodge-card .accordion-body {
    padding: 1.1rem 1.2rem 1.2rem;
    background: var(--surface-card);
}

.lodge-card .accordion-body ol {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.lodge-card .accordion-body li + li {
    margin-top: .45rem;
}

@media (max-width: 991.98px) {
    .lodge-hero {
        padding: 3.2rem 0 2.8rem;
    }

    .lodge-hero-copy {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .lodge-hero-emblem {
        width: min(100%, 210px);
        padding: 1.5rem;
        margin-right: auto;
    }

    .lodge-hero-emblem img {
        max-width: 180px;
        max-height: 180px;
        padding: .85rem;
    }

    .lodge-shell {
        padding: 1.5rem;
    }

    .lodge-summary {
        position: static;
    }

}

@media (max-width: 767.98px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title p {
    margin-top: 0;
    margin-bottom: .75rem;
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .05em;
    font-variant-caps: small-caps;
    text-transform: none;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(
        to right,
        var(--primary) 0 calc(50% - 14px),
        transparent calc(50% - 14px) calc(50% + 14px),
        var(--primary) calc(50% + 14px) 100%
    );
}

.section-title::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 40px;
    bottom: -19px;
    left: calc(25% - 20px);
    background: url("../img/tocke.png") center center / contain no-repeat;
    background-size: 18px auto;
    border-radius: 999px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 20px);
}


/*** Ratings ***/
.rating-star-filled,
.fa-star.text-success,
.fa-star-half.text-success,
.fa-star-half-alt.text-success,
.index-list-rating i:not(.rating-empty):not(.rating-star-empty) {
    color: var(--rating-star) !important;
}

.rating-star-empty,
.rating-empty {
    color: #cbd3da !important;
}

.text-rating-positive,
.text-greenx {
    color: var(--rating-star) !important;
}

.text-center.mb-3 .rating-star-filled,
.text-center.mb-3 .rating-star-empty,
.text-center.mb-3 .fa-star.text-success,
.text-center.mb-3 .fa-star-half.text-success,
.text-center.mb-3 .fa-star-half-alt.text-success,
.text-center.mb-3 .rating-empty,
.index-list-rating i {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .08em;
}

p .rating-star-filled,
p .rating-star-empty,
p .fa-star.text-success,
p .fa-star-half.text-success,
p .fa-star-half-alt.text-success,
p .rating-empty {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .08em;
}


/*** Editorial Carousel ***/
.product {
    background: linear-gradient(rgba(19, 50, 96, .04), rgba(19, 50, 96, .04));
}

/*** Index Feature ***/
.video {
    background: linear-gradient(rgba(19, 50, 96, .85), rgba(19, 50, 96, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.index-feature {
    position: relative;
    padding: 3rem;
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, .2), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, .2);
}

.index-feature-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: .45rem .85rem;
    color: #FFFFFF;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
}

.index-feature-lead {
    max-width: 36rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, .86);
    font-size: 1.05rem;
    line-height: 1.8;
}

.index-feature-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.index-metric-card {
    min-width: 160px;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.25rem;
}

.index-metric-value {
    display: block;
    margin-bottom: .25rem;
    color: #FFFFFF;
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
}

.index-metric-label {
    color: rgba(255, 255, 255, .8);
    font-size: .92rem;
}

.index-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.index-feature-panel {
    padding: 2rem;
    background: rgba(255, 255, 255, .96);
    border-radius: 1.75rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .18);
}

.index-criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.index-criteria-card {
    height: 100%;
    padding: 1.2rem;
    background: linear-gradient(180deg, var(--surface-card), #f4f7fb);
    border: var(--border-soft);
    border-radius: 1.25rem;
}

.index-criteria-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: .9rem;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 50%;
}

.index-criteria-card h3 {
    margin-bottom: .55rem;
    font-size: 1.05rem;
}

.index-criteria-card p {
    margin-bottom: 0;
    color: #5d6975;
    font-size: .94rem;
    line-height: 1.65;
}

.index-rating-strip {
    display: grid;
    gap: .85rem;
}

.index-rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: .95rem 1.1rem;
    border-radius: 1rem;
    font-size: .94rem;
}

.index-rating-item strong {
    color: var(--dark);
}

.index-rating-item span {
    color: #5d6975;
    text-align: right;
}

.index-rating-positive {
    background: rgba(25, 135, 84, .12);
}

.index-rating-neutral {
    background: rgba(255, 193, 7, .16);
}

.index-rating-warning {
    background: rgba(175, 22, 0, .1);
}

@media (max-width: 991.98px) {
    .index-feature {
        padding: 2rem;
    }

    .index-criteria-grid {
        grid-template-columns: 1fr;
    }
}

.index-page-intro {
    padding: 3rem;
    border: var(--border-soft);
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(19, 50, 96, .04), rgba(255, 255, 255, .92));
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, .06);
}

.index-page-kicker {
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.index-page-lead {
    margin-bottom: 1.25rem;
    color: #253242;
    font-size: 1.12rem;
    line-height: 1.88;
}

.index-summary-card {
    height: 100%;
    padding: 2rem;
    border-radius: 1.6rem;
    background: var(--surface-card);
    border: var(--border-soft);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .06);
}

.index-summary-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.index-summary-metric {
    padding: 1rem 1.1rem;
    border-radius: 1.2rem;
    background: rgba(19, 50, 96, .05);
}

.index-summary-metric strong {
    display: block;
    margin-bottom: .2rem;
    color: var(--primary);
    font-family: "Funnel Sans", sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.index-summary-metric span {
    color: #51606f;
    font-size: .92rem;
}

.index-group {
    max-width: 60rem;
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.index-group-copy {
    max-width: 55rem;
    margin-bottom: 1.75rem;
}

.index-list {
    display: grid;
    gap: 1rem;
}

.index-list-item {
    position: relative;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
    padding: 1.25rem 1.35rem;
    border-radius: 1.4rem;
    background: var(--surface-card);
    border: var(--border-soft);
    box-shadow: 0 .9rem 1.8rem rgba(0, 0, 0, .05);
}

.index-list-logo {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 96px;
    height: 100%;
    min-height: 96px;
    padding: .1rem 0;
}

.index-list-logo img {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    transform: none;
}

.index-list-body {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: .5rem;
    padding-top: 0;
}

.index-list-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: .7rem;
    margin-bottom: 0;
}

.index-list-title {
    color: var(--primary);
    font-family: "Funnel Sans", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.08;
    max-width: calc(100% - 9rem);
}

.index-list-title:hover {
    color: var(--secondary);
}

.index-list-meta {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.38;
    color: #5a6672;
}

.index-list-meta i {
    margin-right: .4rem;
    color: var(--secondary);
}

.index-list-rating {
    color: #198754;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .08em;
}

.index-type-badge,
.lodge-badge {
    font-weight: 700;
    text-transform: uppercase;
}

.index-type-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 7rem;
    padding: .72rem 1rem .66rem;
    border-radius: 0 1.4rem 0 1rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .22);
}

.status-tone-muska {
    color: #133260;
    background: rgba(19, 50, 96, .12);
}

.status-tone-zenska {
    color: #7a1f4d;
    background: rgba(214, 51, 132, .14);
}

.status-tone-mjesovita {
    color: #7a4d00;
    background: rgba(255, 193, 7, .22);
}

@media (max-width: 991.98px) {
    .index-page-intro {
        padding: 2rem;
    }
}

@media (max-width: 767.98px) {
    .index-summary-metrics {
        grid-template-columns: 1fr;
    }

    .index-list-item {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .index-list-logo {
        width: 72px;
        height: 72px;
        min-height: 72px;
    }

    .index-list-title {
        font-size: 1.45rem;
        max-width: calc(100% - 7.5rem);
    }
}

@media (max-width: 575.98px) {
    .index-feature-panel {
        padding: 1.25rem;
    }

    .index-rating-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .index-rating-item span {
        text-align: left;
    }
}


/*** Content Cards ***/
.content-card .store-overlay {
    position: static;
    width: 100%;
    display: flex;
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
    background: transparent;
    border-top: 1px solid rgba(19, 50, 96, .08);
    opacity: 1;
    transition: transform .3s ease;
}

.lodge-section-intro {
    margin-bottom: 2.5rem;
}

.lodge-rating-legend {
    color: #5d6975;
    font-size: .95rem;
    line-height: 1.7;
}

.content-card,
.lodge-list-grid .store-item,
.lodge-order-grid .store-item {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--surface-card);
    border: var(--border-soft);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    padding-top: 1.8rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.lodge-order-grid .store-item {
    padding-top: 0;
}

.content-card:hover,
.lodge-list-grid .store-item:hover,
.lodge-order-grid .store-item:hover {
    transform: translateY(-6px);
    border-color: rgba(19, 50, 96, .14);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .1);
}

.content-card .p-4 {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .8rem;
}

.content-card .img-fluid {
    width: 190px;
    max-width: 72%;
    margin: 0 auto;
}

.content-card .text-center.mb-3 {
    margin-bottom: .3rem !important;
}

.content-card h4 {
    margin-bottom: 0 !important;
    font-size: 1.35rem;
}

.content-card .p-4 > p:last-child {
    margin-bottom: 0;
    color: #5d6975;
    line-height: 1.72;
}

.content-card .btn,
.lodge-list-grid .store-item .btn,
.lodge-order-grid .store-item .btn {
    margin: 0 !important;
}

.btn-card-cta {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    width: auto;
    padding: .95rem 0 0;
    color: var(--dark);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: .95rem;
    font-weight: 650;
    letter-spacing: .01em;
}

.btn-card-cta i {
    font-size: .85rem;
    transition: transform .25s ease;
}

.btn-card-cta:hover,
.btn-card-cta:focus {
    color: var(--primary);
    background: transparent;
    border: 0;
    box-shadow: none;
}

.btn-card-cta:hover i,
.btn-card-cta:focus i {
    transform: translateX(4px);
}

.lodge-badge {
    display: inline-flex;
    align-self: center;
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .8rem;
    letter-spacing: .04em;
}

.lodge-section-intro .text-primary {
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.lodge-section-intro {
    margin-bottom: 2rem;
}

#lodge .content-card .p-4 {
    gap: .7rem;
}

#lodge .content-card h4 {
    margin-top: .2rem;
    margin-bottom: .15rem !important;
    min-height: 1.6em;
    line-height: 1.14;
}

#lodge .content-card .p-4 > p:last-child {
    flex: 1;
    font-size: .98rem;
    margin-top: .1rem;
}

#lodge .content-card .store-overlay {
    padding-top: .1rem;
}

#lodge .content-card {
    padding-top: 1.2rem;
}

.lodge-rating-legend {
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, .82);
    border: var(--border-soft);
    border-radius: 1rem;
}

.product .section-title {
    margin-bottom: 4rem;
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.product-store-item {
    padding-top: 0;
    text-align: left !important;
    background: var(--surface-card);
    border-radius: 1.5rem !important;
    overflow: hidden;
}

.product-store-item > img {
    display: block;
    width: 100%;
    height: 235px;
    object-fit: cover;
    margin-bottom: 0;
    border-radius: 1.5rem 1.5rem 0 0 !important;
}

.product-store-item:first-child > img {
    object-position: center top;
}

.product-store-item .p-4 {
    padding: .45rem 1.5rem 1.2rem !important;
    text-align: left;
    background: var(--surface-card);
}

.product-store-item h4 {
    margin-top: .55rem;
    margin-bottom: .24rem !important;
    font-size: 1.18rem;
    line-height: 1.2;
}

.product-store-item p {
    margin-top: 0;
    margin-bottom: 0;
    color: #5d6975;
    line-height: 1.68;
}

.product-store-item .store-overlay {
    background: var(--surface-card);
}

@media (max-width: 991.98px) {
    .editorial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .editorial-grid {
        grid-template-columns: 1fr;
    }
}

.status-tone-regularna {
    color: #198754;
    background: rgba(25, 135, 84, .15);
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.btn-footer-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    transition: .3s;
}

.btn-footer-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.btn-footer-link:hover {
    color: var(--light);
    letter-spacing: .5px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: #133260;
}

.copyright a:hover {
    color: #FFFFFF !important;
}




