/* ==========================================================================
   COMPONENTS INDEX — PM ESSENCE THEME
   ==========================================================================

   1. HEADER COMPONENTS
      1.1  Header Default
      1.2  Header Lang Switcher
      1.3  Header Responsive

   2. MENU MOBILE
      2.1  Menu Mobile

   2. FOOTER COMPONENTS
      2.1  Footer Base
      2.2  Footer Layout Columns
      2.3  Footer Menus
      2.4  Footer Social Icons
      2.5  Footer Branding
      2.6  Footer Legal Text

   3. BUTTONS
      3.1  Base Button
      3.2  Primary Button
      3.3  Secondary Button
      3.4  Outline Button
      3.5  Ghost Button
      3.6  Button Sizes
      3.7  Button States

   4. CARDS
      4.1  Card Base
      4.2  Card Shadow Variants
      4.3  Card With Image
      4.4  Card Listing
      4.5  Card Amenities

   5. FORMS
      5.1  Input Base
      5.2  Selects
      5.3  Textareas
      5.4  Labels & Messages
      5.5  Form Layouts

   6. NAVIGATION COMPONENTS
      6.1  Breadcrumb
      6.2  Pagination
      6.3  Tabs
      6.4  Accordion

   7. MEDIA COMPONENTS
      7.1  Sliders
      7.2  Video Wrappers
      7.3  Lazy Images

   8. MISC COMPONENTS
      8.1  Badges & Pills
      8.2  Tags
      8.3  Modals
      8.4  Tooltips
      8.5  Alerts / Notifications

   ========================================================================= */

/* ==========================================================================
   1. HEADER COMPONENTS
   ========================================================================== */

/* 1.1 Header Base
   -------------------------------------------------------------------------- */

.pm-header {
    width: 100%;
    position: relative;
    z-index: 999;
}

.pm-header .menu-open {
    background: white;
    transition: background-color 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    /*border-bottom: 1px solid rgba(12, 12, 12, 0.25) !important;*/
    box-shadow: 0 2px 4px 0 rgba(50, 50, 105, 0.08);

}


.pm-header .navbar {
    padding: 1.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 1;
}

.pm-header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.pm-header--default .navbar {
    background-color: #000;
}

.pm-header__logo {
    width: 90px;
    height: auto;
}

.pm-header__logo .navbar-brand {
    padding: 0;
    margin: 0;
}

.pm-header__logo .site-logo {
    display: block;
    width: 100%;
    height: auto;
}

.pm-header__logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pm-header__menu {
    display: none;
}

.pm-header__menu .pm-navbar .menu-item {
    margin-right: 32px;
}

.pm-header__menu .pm-navbar .menu-item:last-child {
    margin-right: 0;
}

.pm-header__menu .pm-navbar .menu-item.current_page_item > a {
    font-weight: var(--fw-medium);
}

.pm-header__menu .pm-navbar .menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    font-size: 0.875rem;
    font-weight: var(--fw-light);
    text-decoration: none;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.pm-header__menu .pm-navbar .menu-item > a:hover {
    color: var(--pm-primary-900);
}

.nav-item-dark {
    color: #000 !important;
}

/* Estado activo */
/*.pm-header__menu .current-menu-item > a,*/
/*.pm-header__menu .current-menu-ancestor > a {*/
/*    color: var(--pm-primary);*/
/*}*/

/* 1.2 Header Lang Switcher
   -------------------------------------------------------------------------- */

.pm-lang-switcher {
    position: relative;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-right: 1rem;
}

.pm-lang-switcher .lang-dark{
    color: #000;
}


.pm-lang-switcher__current {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 0;
    color: #fff;
    cursor: pointer;
    letter-spacing: 2px;
}

.pm-lang-switcher__caret {
    display: inline-block;
    transform: rotate(0deg);
    transition: transform .2s ease;
}

.pm-lang-switcher.is-open .pm-lang-switcher__caret {
    transform: rotate(-180deg);
}

.trigger-filters svg,
.trigger-experiences svg {
    display: inline-block;
    transform: rotate(0deg);
    transition: transform .2s ease;
}

.trigger-filters.is-open svg,
.trigger-experiences.is-open svg,
body.is-where-to-stay-open .trigger-filters svg,
body.is-experiences-open .trigger-experiences svg {
    transform: rotate(-180deg);
}

.pm-lang-switcher__list {
    position: absolute;
    right: 0;
    top: calc(100% + 20px);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    background: #fff;
    min-width: 120px;
    text-align: left;
    display: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
}

.pm-lang-switcher__current.is-open-black {
    color: black;
}

.pm-lang-switcher.is-open .pm-lang-switcher__list {
    display: block;
}

.pm-lang-switcher__item a {
    display: block;
    padding: 10px 24px;
    color: var(--pm-secondary-900) !important;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: var(--fw-light);
    letter-spacing: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
}

.pm-lang-switcher__item a:hover {
    color: var(--pm-primary-900) !important;
    background: rgba(0, 0, 0, 0.04);
}

.pm-lang-switcher__item.is-active a {
    font-weight: var(--fw-medium);
    opacity: 1;
    cursor: default;
    pointer-events: none;
}

/* 1.3 Header Burger Button
   -------------------------------------------------------------------------- */
.pm-header__menu-mobile {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #fff;
}

.pm-header__menu-mobile:hover {
    color: #000;
}

.icon--hamburger {
    width: 32px;
    height: 16px;
}

/* 1.4 Header Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
    .pm-header__menu .pm-navbar .menu-item {
        margin-right: 32px;
    }
}


@media (min-width: 1200px) {

    .pm-header__menu .pm-navbar .menu-item > a {
        font-size: 0.875rem;
    }

    .pm-header .navbar {
        padding: 0.5rem 0;
    }

    .pm-lang-switcher {
        font-size: 0.875rem;
        margin-right: 0;
    }
}

@media (min-width: 992px) {
    .pm-header__menu {
        display: block;
    }
    .pm-header__menu-mobile {
        display: none;
    }
}

@media (min-width: 772px) {


}

/* 1.5 Submenús nativos del nav de escritorio
   --------------------------------------------------------------------------
   WP añade .menu-item-has-children al padre y .sub-menu al <ul> hijo.
   El toggle (clase .is-open) lo gestiona initDesktopSubmenus() en main.js.
   -------------------------------------------------------------------------- */

.pm-navbar-desktop .menu-item-has-children {
    position: relative;
}

/* Chevron junto al enlace padre — usa currentColor, hereda color del link */
.pm-navbar-desktop .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 7px;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

/* Color dorado en hover — el chevron hereda automáticamente */
.pm-navbar-desktop .menu-item-has-children > a:hover {
    color: var(--pm-primary-900);
}

.pm-navbar-desktop .menu-item-has-children.is-open > a::after {
    transform: rotate(225deg) translateY(2px);
}

/* Dropdown */
.pm-navbar-desktop .sub-menu {
    display: none;
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    background: #fff;
    min-width: 200px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 9999;
}

.pm-navbar-desktop .menu-item-has-children.is-open > .sub-menu {
    display: block;
}

.pm-navbar-desktop .sub-menu .menu-item {
    margin: 0 !important;
}

.pm-navbar-desktop .sub-menu .menu-item > a {
    display: block !important;
    padding: 10px 24px !important;
    color: var(--pm-secondary-900) !important;
    font-size: 0.8125rem !important;
    font-weight: var(--fw-light) !important;
    letter-spacing: 2px;
    white-space: nowrap;
    text-transform: uppercase;
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.pm-navbar-desktop .sub-menu .menu-item > a:hover {
    color: var(--pm-primary-900) !important;
    background: rgba(0, 0, 0, 0.04);
}

.pm-navbar-desktop .sub-menu .menu-item.current-menu-item > a {
    font-weight: var(--fw-medium) !important;
}

/* ==========================================================================
   END HEADER COMPONENTS
   ========================================================================== */

/* ==========================================================================
   2. MENU
   ========================================================================== */

/* 2.1 Menu Mobile
   -------------------------------------------------------------------------- */
.pm-menu-mobile__logo {
    max-width: 92px;
}

.pm-menu-mobile__logo a .site-logo-dark {
    display: block;
    width: 100%;
    height: auto;
}

.pm-menu-mobile__logo a .site-logo-dark img {
    display: block;
    width: 100%;
    height: auto;
}

.pm-menu-mobile__header{
    z-index: 20;
    padding: 1.9rem 1rem;
    box-shadow: 0 2px 4px 0 rgba(50, 50, 105, 0.08);
}

.pm-menu-mobile__nav .navbar {
    padding: 0;
}

.pm-menu-mobile__nav {
    margin: 48px 0 32px;
}

.pm-menu-mobile__content{
    position: relative;
    padding: 16px;
    flex: 1;
    overflow: hidden;
}

.pm-menu-mobile__scroll {
    overflow-y: auto;
}

.pm-menu-mobile__footer {
    margin-top: 48px;
}

.pm-menu-mobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    z-index: 1500;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out, visibility 0s linear 0.35s;
}

.pm-menu-mobile.-is-active {
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.35s ease-in-out, visibility 0s linear 0s;
}

.pm-menu-mobile__nav .pm-navbar-mobile .menu-item > a {
    color: var(--pm-secondary-900);
    font-size: 20px;
    font-weight: var(--fw-regular);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pm-menu-mobile__nav .pm-navbar-mobile .menu-item {
    margin-bottom: 24px;
}

.pm-menu-mobile__nav .pm-navbar-mobile .menu-item:last-child {
    margin-bottom: 0;
}

.pm-menu-mobile__nav .pm-navbar-mobile .menu-item.current_page_item > a {
    color: var(--pm-primary-900);
    font-weight: var(--fw-semibold);
}

.decorative-sun {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 110px;
    z-index: -10;
}

.pm-menu-mobile__footer .social-links h4,
.pm-menu-mobile__footer .weather-now h4 {
    font-family: var(--pm-font-secondary);
    font-size: 16px;
    font-style: italic;
    font-weight: var(--fw-medium);
    color: var(--pm-secondary-900);
}

.pm-menu-mobile__footer .weather-now h4{
    margin-bottom: 8px;
}

.pm-menu-mobile__footer .social-links h4{
    margin-bottom: 16px;
}

.weather-now .weather-now__content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 50px;
    background: #E5E0D1;
}

.weather-now .weather-now__content span {
    font-size: 16px;
    font-weight: var(--fw-medium);
}

/* 2.2 Menu Experiences Mobile
   -------------------------------------------------------------------------- */
.pm-menu-experiences {
    position: absolute;
    inset: 0;
    background: #fff;
    padding: 1rem;
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.pm-menu-experiences__content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.pm-menu-experiences__content h4 {
    color: var(--pm-secondary-900);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--fw-regular);
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pm-menu-experiences__content p {
    color: var(--pm-secondary-900);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    line-height: normal;
    letter-spacing: 1px;
}

.back-arrow-menu-experiences {
    cursor: pointer;
    width: fit-content;
    padding: 0.5rem 0;
}

.pm-menu-experiences.is-open {
    transform: translateX(0);
}

/* 2.3 Menu Where To Stay Mobile
   -------------------------------------------------------------------------- */
.pm-where-to-stay {
    position: absolute;
    inset: 0;
    background: #fff;
    padding: 1rem;
    z-index: 10;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.where-to-stay__content {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.where-to-stay__content h4 {
    color: var(--pm-secondary-900);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--fw-regular);
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.where-to-stay__content p {
    color: var(--pm-secondary-900);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    line-height: normal;
    letter-spacing: 1px;
}

.back-arrow-where-to-stay {
    cursor: pointer;
    width: fit-content;
    padding: 0.5rem 0;
}

.pm-where-to-stay.is-open {
    transform: translateX(0);
}

.hotel-card__image-wrapper {
    cursor: pointer;
    height: 200px;
    border-radius: 0.5rem;
    border: 1px solid #E5E5E5;
    overflow: hidden;
    position: relative;
}

.hotel-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    z-index: 0;
}

html:not(.is-touch) .hotel-card__image-wrapper:hover .hotel-card__image {
    transform: scale(1.06);
    will-change: transform;
}

/* Gradiente blanco superior */
.hotel-card__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 53.7%, rgb(255, 255, 255) 92.2%);
    pointer-events: none;
    z-index: 1;
}

/* Logo encima de la imagen y el gradiente */
.hotel-card__logo-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
}

.hotel-card__logo-wrapper .hotel-card__logo {
    width: 95px;
    height: auto;
    display: block;
    object-fit: contain;
}

.hotel-card__logo {
    width: 100%;
    max-width: 100%;
    height: auto;

}

@media (min-width: 768px) {
    .hotel-card__logo {
        max-width: 100%;
    }
    .hotel-card__logo-wrapper .hotel-card__logo {
        width: 104px;
    }
}

/* 2.4 Mega Panel
   -------------------------------------------------------------------------- */

.mega-panel {
    position: fixed;
    overflow: hidden;
    max-height: 0;
    transition:
            max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1),
            transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    background: #ffffff;
    will-change: transform, max-height;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
}

.mega-panel__inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 90px;
    padding: 32px 40px;
}

.mega-panel__inner .mega-panel__headline {
    color: #050505;
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    line-height: normal;
    letter-spacing: 1px;
    margin: 0;
}


.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 10;
}

/* 2.5 Experience Card — zoom hover
   -------------------------------------------------------------------------- */
.cover-cc-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.experience-card__image-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 162px;
    border-radius: 0.5rem;
}

.experience-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    z-index: 0;
}

html:not(.is-touch) .experience-card__image-wrapper:hover .experience-card__image {
    transform: scale(1.06);
    will-change: transform;
}

/* Gradiente oscuro inferior para legibilidad del título */
.experience-card__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.experience-card__title-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    z-index: 2;
    text-align: center;
}

.experience-card__title {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: var(--fw-regular);
    line-height: normal;
    letter-spacing: 1px;
    margin: 0;
}

@media (min-width: 768px) {
    .experience-card__image-wrapper {
        height: 200px;
    }

    .experience-card__title {
        font-size: 16px;
    }
}

/* 2.6 Menu Experience Desktop
   -------------------------------------------------------------------------- */
body.is-experiences-open {
    overflow: hidden;
}

body.is-where-to-stay-open {
    overflow: hidden;
}

body.is-experiences-open .header-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.is-experiences-open .pm-header__menu .pm-navbar .menu-item > a {
    font-weight: var(--fw-light);
    color: black;
}

body.is-experiences-open .pm-header__menu .pm-navbar .menu-item > a:hover {
    color: var(--pm-primary-900) !important;
}

body.is-experiences-open .pm-header__menu .pm-navbar .menu-item.current_page_item > a {
    font-weight: var(--fw-medium);
}

/* 2.6 Menu Where To Stay Desktop
   -------------------------------------------------------------------------- */
body.is-where-to-stay-open .header-overlay {
    opacity: 1;
    pointer-events: auto;
}

body.is-where-to-stay-open .pm-header__menu .pm-navbar .menu-item > a {
    font-weight: var(--fw-light);
    color: black;
}

body.is-where-to-stay-open .pm-header__menu .pm-navbar .menu-item > a:hover {
    color: var(--pm-primary-900) !important;
}


body.is-where-to-stay-open .pm-header__menu .pm-navbar .menu-item.current_page_item > a {
    font-weight: var(--fw-medium);
}

/* 2.7 Menu Desktop (slide-in panel)
   -------------------------------------------------------------------------- */
.pm-menu-desktop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    z-index: 1500;
    pointer-events: none;
    transform: translateX(-100%);
    transition: transform 0.35s ease-in-out;
}

.pm-menu-desktop.-is-active {
    pointer-events: auto;
    transform: translateX(0);
}

.pm-menu-desktop__header {
    padding: 16px;
    border-bottom: 1px solid #E5E5E5;
}

.pm-menu-desktop__content {
    position: relative;
    padding: 16px;
    flex: 1;
    overflow: hidden;
}

.pm-menu-desktop__scroll {
    overflow-y: auto;
}

.pm-menu-desktop__nav {
    margin: 48px 0 32px;
}

.pm-menu-desktop__nav .navbar {
    padding: 0;
}

.pm-menu-desktop__nav .pm-navbar-mobile .menu-item > a {
    color: var(--pm-secondary-900);
    font-size: 20px;
    font-weight: var(--fw-regular);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pm-menu-desktop__nav .pm-navbar-mobile .menu-item {
    margin-bottom: 24px;
}

.pm-menu-desktop__nav .pm-navbar-mobile .menu-item:last-child {
    margin-bottom: 0;
}

.pm-menu-desktop__nav .pm-navbar-mobile .menu-item.current_page_item > a {
    color: var(--pm-primary-900);
    font-weight: var(--fw-semibold);
}

.pm-menu-desktop__footer {
    margin-top: auto;
    margin-bottom: 48px;
}

.pm-menu-desktop__footer .social-links h4,
.pm-menu-desktop__footer .weather-now h4 {
    font-family: var(--pm-font-secondary);
    font-size: 16px;
    font-style: italic;
    font-weight: var(--fw-medium);
    color: var(--pm-secondary-900);
}

.pm-menu-desktop__footer .weather-now h4 {
    margin-bottom: 8px;
}

.pm-menu-desktop__footer .social-links h4 {
    margin-bottom: 16px;
}

.decorative-sun {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 110px;
}


/* ==========================================================================
   END MENU COMPONENTS
   ========================================================================== */


/* ==========================================================================
   3. Hero
   ========================================================================== */

.arrow-circle__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.arrow-circle__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.arrow-circle__icon .arrow {
    position: absolute;
    display: inline-flex;
    transition: transform 0.35s ease;
    transform: translateX(-10px);
}

.arrow-circle__icon .circle {
    display: inline-flex;
    transition: transform 0.35s ease;
}

.arrow-circle__link:hover .arrow {
    transform: translateX(0);
}

/* 3.1 Video Hero Wrapper
   -------------------------------------------------------------------------- */
.video-hero {
    position: relative;
    width: 100%;
    height: 50svh;
    overflow: hidden;
    display: flex;
    align-items: end;
    flex-shrink: 0;
}

.video-hero__poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

.video-hero__poster.is-fading {
    transition: opacity 0.8s ease;
}

.video-hero__poster.is-hidden {
    opacity: 0;
}

.video-hero__inner {
    display: flex;
    flex-direction: row;
}

.divider {
    width: 2px;
    height: auto;
    background-color: white;
    margin-right: 1rem;
}

.video-hero--overlap {
    margin-top: -80px;
}

.video-hero__media {
    position: absolute;
    inset: 0;
}

.video-hero__media video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-hero__iframe-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: all;
}

.video-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    z-index: 3;
    transition: opacity 0.3s ease;
}

.video-hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}


.video-hero__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 32px;
    z-index: 4;
    color: #fff;
}

.video-hero__title {
    font-family: var(--pm-font-secondary);
    font-size: 24px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.video-hero__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    line-height: normal;
    margin-bottom: 0.75rem;
}

.video-hero__button {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    line-height: normal;
}

.play-button {
    display: none;
}

.play-button .play-button__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    background: none;
    border: none;
    color: inherit;
    transition: color 0.2s ease, opacity 0.2s ease;
    cursor: pointer;
}

.play-button .play-button__inner .play-button__icon rect,
.play-button .play-button__inner .play-button__icon path {
    stroke: white;
    transition: stroke 0.2s ease;
}

.play-button .play-button__inner:hover .play-button__icon rect,
.play-button .play-button__inner:hover .play-button__icon path {
    stroke: var(--pm-primary-50);
}

.video-hero {
    overflow: hidden;
}

/* Mobile: watermark a la derecha, parcialmente recortado */
.video-hero__decorative-image-wrapper {
    position: relative;
    pointer-events: none;
}

.video-hero__decorative-image-wrapper .video-hero__decorative-image {
    position: absolute;
    right: 0;
    top: 200px;
    width: 280px;
    height: auto;
    transform: rotate(90deg);
    transform-origin: top right;
    z-index: -10;
}

/* Desktop: sin espacio en el DOM, imagen centrada sobre el borde del section */
@media (min-width: 992px) {
    .video-hero__decorative-image-wrapper {
        height: 0;
        overflow: visible;
        display: flex;
        justify-content: center;
        position: relative;
    }

    .video-hero__decorative-image-wrapper .video-hero__decorative-image {
        position: absolute;
        top: 0;
        right: auto;
        left: auto;
        width: 200px;
        transform: none;
        transform-origin: unset;
        opacity: 1;
    }

}

/* 3.2 HERO PLAY INTERACTION (JS STATES)
   -------------------------------------------------------------------------- */
.pm-header .navbar {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.pm-header--hidden {
    opacity: 0;
    transform: translateY(-100%);
}

.video-hero__information,
.divider {
    transition: opacity 0.3s ease;
}

.video-hero__information.is-hidden,
.divider.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button__icon-close {
    display: none;
}

.play-button__inner.is-playing {
    flex-direction: row-reverse;
}

.play-button__inner.is-playing .play-button__icon-play {
    display: none;
}

.play-button__inner.is-playing .play-button__icon-close {
    display: inline;
}

.play-button .play-button__inner:hover {
    color: var(--pm-primary-900);
}

.body-overflow-hidden {
    overflow: hidden;
}

@media (min-width: 992px) {

    .video-hero__content {
        margin-bottom: 90px;
    }

    .video-hero__title {
        font-size: 40px;
        margin-bottom: 1rem;
    }

    .video-hero__subtitle {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }

    .video-hero {
        height: 100svh;
    }

    .play-button {
        display: block;
    }
}

/* ==========================================================================
   END HERO COMPONENTS
   ========================================================================== */

/* ==========================================================================
   4. About Highlight Section
   ========================================================================== */
.about-highlights {
    padding-top: 92px;
    padding-bottom: 84px;
}

.about-highlight__icon {
    width: 56px;
}

.about-highlight__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-highlights__title {
    font-family: var(--pm-font-secondary);
    font-weight: var(--fw-medium);
    font-style: italic;
    font-size: 32px;
    letter-spacing: 2px;
    text-align: center;
    color: var(--pm-secondary-900);
}

.about-highlights__description {
    font-weight: var(--fw-light);
    font-size: 16px;
    text-align: start;
    color: var(--pm-secondary-900);
}

.about-highlight__item .about-highlight__label {
    font-weight: var(--fw-light);
    font-size: 16px;
    text-align: center;
    color: var(--pm-secondary-900);
}

@media (min-width: 768px) {
    .about-highlights__description {
        text-align: center;
    }
}

/* ==========================================================================
   END ABOUT HIGHLIGHT SECTION COMPONENTS
   ========================================================================== */

/* ==========================================================================
   5. Content Two Image Section
   ========================================================================== */
.content-two-image-section {
    padding-top: 85px;
    padding-bottom: 360px;
}
.content-two-image-section__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.content-two-image-section__image {
    max-width: 93%;
    width: 100%;
    height: 360px;
    margin-bottom: 1rem;
}
.content-two-image-section__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-two-image-section__decorative-image img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.content-two-image-section__decorative-image {
    position: absolute;
    right: 0;
    bottom: -220px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0 0.5rem 0.5rem;
    background: white;
}

.content-two-image-section__heading {
    font-family: var(--pm-font-secondary);
    font-weight: var(--fw-medium);
    font-style: italic;
    font-size: 28px;
    letter-spacing: 2px;
    text-align: start;
    color: var(--pm-secondary-900);
}

.content-two-image-section__description {
    /*max-width: 546px;*/
    font-weight: var(--fw-light);
    font-size: 16px;
}


.content-two-image-section__content{
    padding: 2rem;
}

@media (min-width: 576px) {
    .content-two-image-section__decorative-image {
        padding: 0.5rem;
    }
}


@media (min-width: 992px) {
    .content-two-image-section {
        padding-top: 128px;
        padding-bottom: 184px;
    }
    .content-two-image-section__image {
        max-width: 100%;
        width: 100%;
        height: 642px;
    }
    .content-two-image-section__heading {
        font-size: 32px;
    }
    .content-two-image-section__description {
        max-width: 100%;
    }

    .content-two-image-section__content{
        padding: 0;
    }

    .content-two-image-section__decorative-image {
        right: -15%;
        bottom: -80px;
    }
}

/* ==========================================================================
   END CONTENT TWO IMAGE SECTION COMPONENTS
   ========================================================================== */

/* ==========================================================================
   6. Primary Showcase Hero
   ========================================================================== */

/* ===== Base: estructura / media ===== */
.hotel-hero {
    position: relative;
    overflow: visible;
}

.hotel-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hotel-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}

.hotel-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hotel-hero__content {
    position: relative;
    z-index: 2;
    overflow: visible;
    /*padding: 0 1rem;*/
}

/* ===== Mobile (default) ===== */
.hotel-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    color: #fff;
    font-family: var(--pm-font-secondary);
    font-size: 16px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
}

.hotel-hero__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    max-width: 200px;
}

.hotel-hero__logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hotel-hero__wrapper {
    position: relative;
    top: 326px;
    background: #fff;

    display: flex;
    flex-direction: column-reverse;
    gap: 20px;

    padding: 24px 20px;
    box-shadow: 0 0 20px -3px rgba(0, 0, 0, 0.25);
    margin-bottom: 326px;
}

.hotel-hero__content-mobile {
    margin-bottom: 1rem;
}

.hotel-hero__description {
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    margin-top: 10px;
    margin-bottom: 14px;
    color: var(--pm-secondary-900);
    text-shadow: none;
}

.hotel-hero__cta {
    color: var(--pm-secondary-900);
}

/* Pills */
.hotel-hero__pills {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    margin: 1.25rem 0;
    gap: 0.5rem;
}

.hotel-hero__pill {
    border: 1px solid var(--pm-primary-10);
    color: var(--pm-secondary-900);
    border-radius: 32px;
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
}

/* CTA spacing */
.primary-showcase-hero__cta {
    margin-right: 0;
    margin-top: 1rem;
}

.primary-showcase-hero__contact {
    margin-top: 0 !important;
}

/* Dropdown */
.primary-showcase-hero__dropdown {
    position: relative;
    display: inline-block;
}

.primary-showcase-hero__dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

    font-size: 16px;
    padding: 8px 12px;
    line-height: 1.5;

    background-color: var(--pm-primary-50);
    border: 1px solid var(--pm-primary-50);
    color: #fff;
    cursor: pointer;
}

.primary-showcase-hero__dropdown-caret {
    display: block;
}

.primary-showcase-hero__dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    padding: 6px 0;
    z-index: 50;
    display: none;
}

.primary-showcase-hero__dropdown.is-open .primary-showcase-hero__dropdown-menu {
    display: block;
}

.primary-showcase-hero__dropdown-item {
    display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #323232;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.5px;
}

.primary-showcase-hero__dropdown-item:hover,
.primary-showcase-hero__dropdown-item:focus {
    background: rgba(0, 0, 0, 0.06);
    outline: none;
}

/* Button (mobile) */
.primary-showcase-hero__cta .btn-secondary {
    color: var(--pm-secondary-900);
    padding: 8px 12px;
    background-color: #fff;
}

/* ==========================================================================
   Desktop (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .hotel-hero {
        min-height: 100vh;
        display: flex;
        align-items: stretch;
    }

    .hotel-hero__content {
        padding: 0 2rem;
        padding-top: 152px;
        padding-bottom: 72px;
    }

    .hotel-hero__logo {
        justify-content: start;
        margin-bottom: 24px;
    }

    .hotel-hero__wrapper {
        position: static;
        top: 0;
        background: none;
        flex-direction: column;
        gap: 0;
        height: 100%;
        padding: 0;
        margin: 0;
        box-shadow: none;
        justify-content: space-between;
    }

    .hotel-hero__pills {
        display: none;
    }

    .hotel-hero__tags {
        justify-content: initial;
        margin: 0;
    }

    .hotel-hero__tag:not(:first-child)::before {
        content: " / ";
        margin-right: 6px;
    }

    .hotel-hero__description {
        color: #fff;
        text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    }

    .hotel-hero__cta {
        color: white;
    }

    .primary-showcase-hero__cta {
        margin-right: 1rem;
        margin-top: 0;
    }

    .primary-showcase-hero__cta .btn-secondary {
        color: #fff;
        padding: 8px 12px;
        background-color: transparent;
    }

    .primary-showcase-hero__cta .btn-secondary:hover {
        color: var(--pm-secondary-900);
        background-color: #fff;
        border-color: #fff;
        border-radius: 0;
        transition: background-color 0.25s ease;
    }

    .primary-showcase-hero__dropdown-toggle {
        border-color: #fff;
        background-color: #fff;
        color: var(--pm-secondary-900);
    }
}

/* ==========================================================================
   END PRIMARY SHOWCASE HERO COMPONENTS
   ========================================================================== */

/* ==========================================================================
   7. PM Text Block
   ========================================================================== */

/* ===== Base (Mobile default) ===== */
.pm-text-block {
    padding: 48px 0;
    margin: 12px 0;
}

.pm-text-block__heading {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    margin: 0;
    font-weight: var(--fw-regular);
    letter-spacing: 0.5px;
}

.pm-text-block__subheading {
    color: var(--pm-secondary-900);
    margin: 0 0 1rem 0;
    font-weight: var(--fw-medium);
    font-size: 18px;
}

.pm-text-block__text h1,
.pm-text-block__text h2,
.pm-text-block__text h3,
.pm-text-block__text h4,
.pm-text-block__text h5{
    color: #323232;
    font-family: var(--pm-font-secondary);
    font-size: 20px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
}


.pm-text-block__text p a {
    position: relative;
    border-bottom: none !important;
    padding-left: 0;
    padding-right: 0;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 0;
    color: var(--pm-secondary-900);
}

.pm-text-block__text p a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--pm-secondary-900);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pm-text-block__text p a:hover::after {
    transform: scaleX(0);
}

.pm-text-block__right {
    font-weight: var(--fw-light);
    font-size: 16px;
}

.pm-text-block__text p:last-child {
    margin-bottom: 0;
}

.pm-text-block__cta {
    margin-top: 16px;
}

/* ===== Variants (Mobile) ===== */
/* Columns */
.pm-text-block--columns .pm-text-block__heading {
    color: var(--pm-secondary-900);
    font-family: var(--pm-font-secondary);
    font-size: 24px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
}

.pm-text-block--columns .pm-text-block__right {
    border-left: 0;
    padding-left: 0;
}

/* Stacked (Vertical) */
.pm-text-block--stacked .pm-text-block__heading-wrap {
    margin-bottom: 24px;
}


.pm-text-block--stacked .pm-text-block__subheading {
    margin-bottom: 12px;
}

.pm-text-block--stacked .pm-text-block__body {
    font-size: 16px;
    font-weight: var(--fw-light);
}

/* Text Only */
.pm-text-block--textonly {
    margin: 0 !important;
}

.pm-text-block__text a {
    position: relative;
    border-bottom: none !important;
    padding-left: 0;
    padding-right: 0;
    width: fit-content;
    margin: 0;
    padding-bottom: 0;
}

.pm-text-block__text a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--pm-secondary-900);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.pm-text-block__text a:hover::after {
    transform: scaleX(0);
}

.pm-text-block__text-only {
    font-size: 16px;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
}

/* ==========================================================================
   Desktop (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .pm-text-block {
        margin: 80px 0;
    }

    .pm-text-block__subheading {
        font-size: 18px;
    }

    .pm-text-block__text h1,
    .pm-text-block__text h2,
    .pm-text-block__text h3,
    .pm-text-block__text h4,
    .pm-text-block__text h5{
        font-size: 24px;
    }

    .pm-text-block--columns .pm-text-block__heading {
        font-size: 32px !important;
        letter-spacing: 2px;
    }

    .pm-text-block--stacked .pm-text-block__heading {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .pm-text-block--no-decor .pm-text-block__heading {
        font-size: 24px;
    }

    .pm-text-block--columns .pm-text-block__inner {
        border-right: 1px solid rgba(0, 0, 0, 0.2);
    }
    .pm-text-block__decorative-image img {
        width: 154px;
        height: auto;
        object-fit: cover;
    }
}

/* ==========================================================================
   END PM TEXT BLOCK COMPONENTS
   ========================================================================== */

/* ==========================================================================
   8. Two Column Layout
   ========================================================================== */

/* ===== Mobile (default) ===== */
.two-column-layout {
    display: flex;
    flex-direction: column-reverse; /* Apilado en mobile */
    align-items: center;
}


.two-column-layout__content-variant-card {
    text-align: center;
    margin: 0 32px 42px;
    padding: 24px;
    box-shadow: 0px 0px 20px -3px rgba(0, 0, 0, 0.25);
    position: relative;
    top: -2rem;
    background: #fff;
    z-index: 1;
}

.two-column-layout__content-variant-inline {
    text-align: start;
    padding: 4rem 2rem;
}

.two-column-layout__content .two-column-layout__heading {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-size: 20px;
    letter-spacing: 2px;
}

.two-column-layout__content-description {
    text-align: start;
    font-size: 1rem;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
}

.two-column-layout__content-image {
    width: 100%;
    height: auto;
}

.two-column-layout__content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ==========================================================================
   Breakpoint (>= 556px)
   ========================================================================== */
@media (min-width: 556px) {
    .two-column-layout__content {
        min-height: 226px;
    }
}

/* ==========================================================================
   Desktop (>= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .two-column-layout {
        flex-direction: row;
        align-items: center;
        gap: 0;
        padding-bottom: 96px;
    }

    .two-column-layout__content {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        top: 0;
        align-content: center;
    }

    .two-column-layout__content .two-column-layout__heading {
        font-size: 32px;
    }

    .two-column-layout__content .two-column-layout__essence-heading {
        font-size: 32px;
    }

    .two-column-layout__content-variant-inline {
        text-align: center;
    }

    .two-column-layout__content-description {
        text-align: center;
    }

    .two-column-layout .col-image:not(:first-child):not(:last-child),
    .two-column-layout__content-image {
        position: static;
        top: 0;
    }

    .two-column-layout.is-left {
        flex-direction: row-reverse; /* CTA a la izquierda */
    }

    .two-column-layout.is-right {
        flex-direction: row; /* CTA a la derecha */
    }
}

/* ==========================================================================
   END TWO COLUMN LAYOUT COMPONENTS
   ========================================================================== */

/* ==========================================================================
   9. Hotels Parallax
   ========================================================================== */

/* =========================
   MOBILE FIRST (default)
   ========================= */
.hotels-parallax {
    padding-top: 80px;
    padding-bottom: 120px;
    overflow-x: hidden;
    overflow-y: visible;
}

.hotel-extraordinary-heading {
    margin-bottom: 32px;
}

.hotel-extraordinary-heading .hotel-extraordinary-heading__title {
    font-family: var(--pm-font-secondary);
    font-weight: var(--fw-medium);
    font-style: italic;
    font-size: 20px;
    letter-spacing: 2px;
    text-align: center;
}

.hotel-extraordinary-heading .underline {
    text-decoration: underline;
}

.hotel-extraordinary-heading p {
    font-weight: var(--fw-light);
    font-size: 16px;
}

.parallax-row--right,
.parallax-row--left {
    margin-bottom: 1rem;
}

/* Card */
.hotel-extraordinary-card__image-wrapper {
    display: flex;
    align-items: start;
    justify-content: center;
    cursor: pointer;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background-size: cover;
    position: relative;
}

.hotel-extraordinary-card__image-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(255, 255, 255, 0) 50%
    );
    pointer-events: none;
    z-index: 1;
}

.hotel-extraordinary-card__logo {
    width: 100%;
    max-width: 6.5rem;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Mobile: SIN parallax */
.parallax-row {
    transform: none;
}

/* Mobile: último centrado (cuando hay impares) */
.parallax-row > div:last-child {
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   DESKTOP (>= 768px) — Parallax ON
   ========================= */
@media (min-width: 768px) {
    .hotels-parallax {
        /* zona segura para desplazamiento lateral */
        --parallax-safe: 0;
        padding: 128px var(--parallax-safe) 216px;
    }

    .hotel-extraordinary-heading .hotel-extraordinary-heading__title {
        font-size: 32px;
        text-align: start;
    }

    .hotel-extraordinary-card__image-wrapper {
        aspect-ratio: 3 / 4;
    }

    .parallax-row {
        will-change: transform;
    }

    .parallax-row--right {
        margin-bottom: 2rem;
    }

    /* Desktop: sin centrado forzado */
    .parallax-row > div:last-child {
        margin-left: 0;
        margin-right: 0;
    }
}

/* =========================
   REDUCED MOTION
   ========================= */
@media (prefers-reduced-motion: reduce) {
    .parallax-row {
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   END HOTELS PARALLAX COMPONENTS
   ========================================================================== */

/* ==========================================================================
   10. Images Carousel — Classic
   ========================================================================== */

/* =========================
   MOBILE FIRST (default)
   ========================= */
.images-carousel.images-carousel--classic {
    padding-top: 20px;
    padding-bottom: 80px;
}

.images-carousel.images-carousel--classic .images-carousel__header {
    text-align: center;
}

.images-carousel.images-carousel--classic .images-carousel__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 20px;
    letter-spacing: 2px;
}

.images-carousel.images-carousel--classic .images-carousel__description p {
    text-align: start;
    font-size: 16px;
    font-weight: var(--fw-light);
}

.images-carousel.images-carousel--classic .images-carousel__media {
    margin-top: 3rem;
}

/* Slides */
.images-carousel.images-carousel--classic .images-carousel__image {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center;
}

.images-carousel.images-carousel--classic .images-carousel__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Caption */
.images-carousel.images-carousel--classic .images-carousel__caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1;

    color: #fff;
    font-size: 16px;
    font-weight: var(--fw-medium);
    line-height: 20px;

    padding: 2px 1rem;
    border-left: 2px solid #fff;
}

.images-carousel.images-carousel--classic .images-carousel__caption-title-variant {
    font-size: 16px;
    font-family: var(--pm-font-secondary);
    font-style: italic;
}

.images-carousel.images-carousel--classic .images-carousel__caption-text {
    margin: 0;
    font-size: 14px;
    font-weight: var(--fw-light);
}

/* Pagination (variant scoped) */
.images-carousel.images-carousel--classic .images-carousel__pagination {
    position: static;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.images-carousel.images-carousel--classic .images-carousel__pagination .swiper-pagination-bullet {
    width: 16px;
    height: 8px;
    background: #A9AAAA;
    opacity: 0.6;
    border-radius: 12px;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.images-carousel.images-carousel--classic .images-carousel__pagination .swiper-pagination-bullet-active {
    width: 32px;
    height: 8px;
    background: #CFAB76;
    opacity: 1;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* =========================
   DESKTOP (>= 768px)
   ========================= */
@media (min-width: 768px) {
    .images-carousel.images-carousel--classic {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .images-carousel.images-carousel--classic .images-carousel__title {
        font-size: 32px;
    }

    .images-carousel.images-carousel--classic .images-carousel__header {
        text-align: center;
    }
    .images-carousel.images-carousel--classic .images-carousel__description p {
        text-align: center;
    }

    .images-carousel.images-carousel--classic .images-carousel__caption-title-variant {
        font-size: 18px;
    }

    .images-carousel.images-carousel--classic .images-carousel__image {
        height: 580px;
    }
}

/* ==========================================================================
   END IMAGES CAROUSEL — CLASSIC COMPONENTS
   ========================================================================== */

/* ==========================================================================
   11. Images Carousel — Gallery Slider
   ========================================================================== */

/* =========================
   MOBILE FIRST (default)
   ========================= */
.images-carousel.images-carousel--gallery-slider {
    padding-top: 60px;
    padding-bottom: 80px;
}

.images-carousel.images-carousel--gallery-slider .images-carousel__header {
    text-align: center;
}

.images-carousel.images-carousel--gallery-slider .images-carousel__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 20px;
    letter-spacing: 2px;
}

.images-carousel.images-carousel--gallery-slider .images-carousel__description {
    font-size: 16px;
    font-weight: var(--fw-light);
    text-align: center;
}

.images-carousel.images-carousel--gallery-slider .images-carousel__media {
    margin-top: 3rem;
}

/* Slides */
.images-carousel.images-carousel--gallery-slider .images-carousel__image {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center;
}

/* Caption */
.images-carousel.images-carousel--gallery-slider .images-carousel__caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;

    color: #fff;
    font-size: 14px;
    font-weight: var(--fw-light);
    line-height: 20px;

    padding: 2px 1rem;
    border-left: 1px solid #fff;
}

.images-carousel.images-carousel--gallery-slider .images-carousel__caption-title {
    font-family: var(--pm-font-secondary);
    font-size: 18px;
    font-weight: var(--fw-medium);
    font-style: italic;
}

.images-carousel.images-carousel--gallery-slider
.images-carousel__caption-text {
    margin: 0;
}

/* Pagination (variant scoped) */
.images-carousel.images-carousel--gallery-slider .images-carousel__pagination {
    position: static;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.images-carousel.images-carousel--gallery-slider .images-carousel__pagination .swiper-pagination-bullet {
    width: 16px;
    height: 8px;
    background: #A9AAAA;
    opacity: 0.6;
    border-radius: 12px;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.images-carousel.images-carousel--gallery-slider .images-carousel__pagination .swiper-pagination-bullet-active {
    width: 32px;
    height: 8px;
    background: #CFAB76;
    opacity: 1;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

/* =========================
   DESKTOP (>= 768px)
   ========================= */
@media (min-width: 768px) {
    .images-carousel.images-carousel--gallery-slider {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .images-carousel.images-carousel--gallery-slider .images-carousel__title {
        font-size: 32px;
    }

    .images-carousel.images-carousel--gallery-slider
    .images-carousel__image {
        height: 580px;
    }
}

/* ==========================================================================
   END IMAGES CAROUSEL — GALLERY SLIDER COMPONENTS
   ========================================================================== */

/* ==========================================================================
   BLOG
   ========================================================================== */
/* 9.1 Blog Hero */
.blog-listing__featured-row {
    position: relative;
    min-height: 500px;
}
.blog-listing {
    padding: 56px 0 72px;
}

.blog-listing__intro {
    margin-bottom: 36px;
}

.blog-listing__heading {
    color: var(--pm-secondary-900);
    font-size: 20px;
    font-style: normal;
    font-weight: var(--fw-regular);
    line-height: normal;
    margin: 0;
    padding: 0;
}

.blog-listing__description {
    margin-top: 16px;
    color: var(--pm-secondary-900);
    font-size: 14px;
    line-height: 1.8;
}

.blog-listing__sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.blog-listing__sidebar-block {
    padding: 16px 12px;
}

.blog-listing__sidebar-block--panel {
    padding: 16px 12px;
    background: #FBFAF7;
}

.blog-listing__sidebar-title {
    margin: 0 0 18px;
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-medium);
    line-height: normal;
}

.blog-listing__categories,
.blog-listing__top-posts {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-listing__top-posts .blog-listing__top-posts-item:last-child {
    border-bottom: 0;
}

.blog-listing__top-posts-item {
    border-bottom: 1px solid rgba(50, 50, 50, 0.18);
}

.blog-listing__top-posts-link {
    padding: 12px 0 !important;
    position: relative;
}

.blog-listing__top-posts-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: black;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.25s ease;
}

.blog-listing__top-posts .blog-listing__top-posts-item:hover .blog-listing__top-posts-link {
    font-weight: var(--fw-regular);
}

.blog-listing__top-posts .blog-listing__top-posts-item:hover .blog-listing__top-posts-link::after {
    transform: scaleX(1);
}

.blog-listing__categories-link,
.blog-listing__top-posts-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    line-height: normal;
    color: black;
    text-decoration: none;
    transition: opacity 0.2s ease;
}


.blog-listing__categories-item.is-active .blog-listing__categories-link {
    font-weight: var(--fw-regular);
}

.blog-listing__categories-arrow {
    font-size: 18px;
    line-height: 1;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.blog-listing__categories-item.is-active .blog-listing__categories-arrow {
    opacity: 1;
    transform: translateX(0);
}

.blog-listing__newsletter-copy {
    margin-bottom: 18px;
    color: black;
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    line-height: normal;
}

.blog-listing__newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.blog-listing__newsletter-input {
    width: 100%;
    min-height: 40px;
    padding: 12px 4px;
    color: #323232;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(50, 50, 50, 0.18);
    border-radius: 0;
    box-shadow: none;
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-light);
    line-height: normal;
}

.blog-listing__newsletter-input::placeholder {
    color: #A5A5A5;
}

.blog-listing__newsletter-submit {
    color: black;
    border: 0;
    background: none;
}

.blog-listing__content {
    min-width: 0;
}

.blog-listing__featured-swiper-block {
    position: absolute;
    left: 0;
    right: calc(-50vw + 50%);
    margin-top: 8px;
    margin-bottom: 40px;
    overflow: hidden;
}

.blog-listing__featured-swiper {
    overflow: visible;
}

.blog-listing__featured-slide {
    width: min(44vw, 440px);
    height: auto;
}

.blog-listing__card {
    display: flex;
    flex-direction: row;
    min-height: 110px;
    border: 0;
    border-radius: 0;
    background: transparent;
    align-items: stretch;

}

.blog-listing__card.is-hidden {
    display: none;
}

[data-blog-listing-grid-item].is-hidden {
    display: none;
}

.blog-listing__card-media-link {
    display: block;
    flex: 0 0 132px;
    max-width: 132px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e6e1d8;
    align-self: flex-start;
    text-decoration: none;
}

.blog-listing__card-image,
.blog-listing__card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-listing__card-image--placeholder {
    background: linear-gradient(135deg, #d8d0c4 0%, #f0eae0 100%);
}

.blog-listing__card-content {
    width: 100%;
    flex: 1 1 auto;
    gap: 8px;
}

.blog-listing__card-taxonomy {
    font-family: var(--pm-font-secondary);
    color: var(--pm-secondary-900);
    font-size: 14px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: 28px; /* 200% */
    letter-spacing: 1px;
    margin: 0;
}

.blog-listing__card-title {
    color: var(--pm-secondary-900);
    font-size: 16px;
    font-style: normal;
    font-weight: var(--fw-regular);
    line-height: 20px;
    margin: 0;
}

.blog-listing__card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-listing__card-link {
    display: inline-block;
    color: #323232;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    align-self: flex-start;
}

.blog-listing__actions {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.blog-listing__load-more {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    border: 1px solid var(--pm-secondary-900);
    background: transparent;
    font-family: var(--pm-font-primary);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--pm-secondary-900);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.blog-listing__load-more:hover {
    background-color: var(--pm-secondary-900);
    color: #fff;
}

.blog-listing__empty {
    padding: 24px;
    background: rgba(255, 255, 255, 0.45);
    color: #323232;
}

.newsletter-subscribe-banner--blog {
    padding-bottom: 72px;
    background: #f7f4ef;
}

@media (min-width: 992px) {
    .blog-listing__featured-swiper-block {
        right: calc(-50vw + 69%);
    }

    .blog-listing {
        padding-top: 72px;
    }

    .blog-listing__sidebar-block--panel {
        position: sticky;
        top: 107px;
    }

    .blog-listing__heading {
        font-size: 26px;
        padding: 0 12px;
    }

    .blog-listing__sidebar-title {
        font-size: 20px;
    }

    .blog-listing__card-media-link {
        flex: 0 0 50%;
        max-width: 50%;
        aspect-ratio: 4 / 3;
    }


    .blog-listing__featured-slide {
        width: min(72vw, 440px);
    }
    .blog-listing__card {
        min-height: 168px;

    }

    .blog-listing__featured-slide {
        width: 84%;
    }
}


.blog-listing__swiper {
    position: relative;
    height: 450px;
}
.blog-listing__swiper-media{
    height: 100%;
}
.blog-listing__swiper-content.card-body{
    position: absolute;
    padding: 1rem;
    width: 90%;
    z-index: 20;
    bottom: 0;
    background: white;
}

.category-hero {
    padding: 122px 0 32px;
    background: var(--pm-primary-200);
}

.category-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.category-hero__subheading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.category-hero__subheading-line {
    width: 32px;
    height: 1px;
    background: #323232;
    flex: 0 0 auto;
}

.category-hero__subheading-label {
    color: #323232;
    font-size: 16px;
    font-weight: var(--fw-regular);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-hero__title {
    margin: 0;
    color: #323232;
    font-family: var(--pm-font-secondary);
    font-size: 32px;
    font-style: italic;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
}
.site-main--single-blog {
    padding-top: 134px;
    padding-bottom: 72px;
}

.single-blog-hero {
    margin-bottom: 56px;
}

.single-blog-hero__subheading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    justify-content: center;
}

.single-blog-hero__subheading-line {
    width: 32px;
    height: 1px;
    background: #323232;
    flex: 0 0 auto;
}

.single-blog-hero__subheading-line-two {
    display: block;
    width: 32px;
    height: 1px;
    background: #323232;
    flex: 0 0 auto;
}

.single-blog-hero__subheading-label {
    color: #323232;
    font-size: 16px;
    font-weight: var(--fw-regular);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-blog-hero__title {
    max-width: 100%;
    margin: 0 0 16px;
    color: #323232;
    font-family: var(--pm-font-secondary);
    font-size: 24px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
    text-align: center;
}

.single-blog-hero__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 32px;
    color: #999;
    font-size: 16px;
    line-height: 20px;
    font-weight: var(--fw-regular);
    justify-content: center;
}

.single-blog-hero__meta-line {
    width: 12px;
    height: 1px;
    background: #999;
    flex: 0 0 auto;
}

.single-blog-hero__favorite {
    margin-left: auto;
}

.single-blog-hero__media {
    overflow: hidden;
}

.single-blog-hero__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.single-blog-content {
    margin-bottom: 48px;
}

.single-blog-content h2,
.single-blog-content h3,
.single-blog-content h4,
.single-blog-content h5,
.single-blog-content h6{
    color: #323232;
    font-size: 20px;
    font-weight: var(--fw-medium);
    margin-bottom: 1.5rem;
}

#primary.site-main--blog .pm-text-block__text > :is(h1,h2,h3,h4,h5,h6):only-child {
    margin: 0;
}

.single-blog-content p {
    color: #323232;
    font-size: 16px;
    font-weight: var(--fw-regular);
}

.single-post-share-this {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 16px;
    background: #FFF;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.single-post-share-this label {
    color: #323232;
    text-align: center;
    font-family: var(--pm-font-secondary);
    font-size: 20px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: 20px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.single-blog-related {
    padding: 64px 0 56px;
}

.single-blog-related__title {
    margin: 0 0 24px;
    color: #323232;
    font-family: var(--pm-font-secondary);
    font-size: 26px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: 1.1;
    letter-spacing: 1px;
}

.single-blog-related__grid {
    row-gap: 28px;
}

.single-blog-related__item {
    margin-bottom: 0;
}

.single-blog-related__card {
    height: 100%;
    min-height: 148px;
}

.single-blog-related__media-link {
    flex: 0 0 38%;
    max-width: 38%;
}

.single-blog-related__content {
    padding: 16px 0 0 20px;
}

.single-blog-related__taxonomy {
    margin-bottom: 10px;
    line-height: 1.4;
}

.single-blog-related__card-title {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.35;
}

.single-blog-related__card-link {
    font-size: 15px;
}

.category-hero {
    padding: 167px 0 32px;
}

.category-hero__title {
    font-size: 28px;
}

@media (min-width: 992px) {
    .single-blog-hero__subheading {
        justify-content: start;
    }

    .single-blog-hero__subheading-line-two {
        display: none;
    }

    .site-main--single-blog {
        padding-top: 128px;
        padding-bottom: 96px;
    }

    .single-blog-hero__title {
        max-width: 820px;
        margin: 0 0 24px;
        font-size: 32px;
        text-align: start;
    }

    .single-blog-hero {
        margin-bottom: 72px;
    }

    .single-blog-hero__meta {
        flex-wrap: nowrap;
        gap: 12px;
        margin-bottom: 48px;
        justify-content: start;
    }

    .single-blog-hero__image {
        aspect-ratio: 16 / 7;
    }

    .single-blog-content {
        margin-bottom: 62px;
    }

    .single-blog-related {
        padding: 88px 0 72px;
    }

    .single-blog-related__title {
        font-size: 32px;
        margin-bottom: 28px;
    }

    .single-blog-related__content {
        padding: 4px 20px;
    }
}



/* ==========================================================================
   12. Content Accordion
   ========================================================================== */

/* ── Section ── */
.content-accordion {
    padding: 56px 0 72px;
    background-color: var(--pm-primary-100);
}

/* ── Header ── */
.content-accordion__header {
    text-align: center;
    margin-bottom: 48px;
}

.content-accordion__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 26px;
    letter-spacing: 2px;
    color: var(--pm-secondary-900);
    margin: 0;
}

/* ── List ── */
.content-accordion__list {
    max-width: 680px;
    margin: 0 auto;
}

/* ── Item ── */
.content-accordion__item {
    border-top: 1px solid var(--pm-secondary-900);
}

.content-accordion__item:last-child {
    border-bottom: 1px solid var(--pm-secondary-900);
}

.content-accordion__list .content-accordion__item:first-child {
    border-top: none;
}

/* ── Trigger ── */
.content-accordion__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: inherit;
}

.content-accordion__trigger:focus-visible {
    outline: 2px solid var(--pm-secondary-900);
    outline-offset: 2px;
}

/* ── Item heading ── */
.content-accordion__item-heading {
    font-size: 16px !important;
    font-weight: var(--fw-medium) !important;
    color: var(--pm-secondary-900) !important;
    margin: 0 !important;
    flex: 1 !important;
}

/* ── Chevron ── */
.content-accordion__chevron {
    flex-shrink: 0;
    color: var(--pm-secondary-900);
    transition: transform 0.25s ease;
    display: flex;
    align-items: center;
}

.content-accordion__trigger:not(.collapsed) .content-accordion__chevron {
    transform: rotate(180deg);
}

/* ── Body ── */
.content-accordion__body {
    padding: 0 0 20px;
    color: var(--pm-secondary-900);
    font-size: 16px;
    font-weight: var(--fw-light);
}

.content-accordion__body p {
    margin: 0;
}

@media (min-width: 992px) {
    .content-accordion {
        padding: 72px 0 96px;
    }

    .content-accordion__title {
        font-size: 32px;
    }
}

/* ==========================================================================
   13. Featured Article Banner
   ========================================================================== */

.featured-article-banner {
    display: block;
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Width variants */
.featured-article-banner--contained .featured-article-banner__inner {
    max-width: 1140px;
    margin: 0 auto;
}

.featured-article-banner--full {
    width: 100%;
}

/* Clickable wrapper */
.featured-article-banner__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Media */
.featured-article-banner__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.featured-article-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.featured-article-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.20);
    z-index: 2;
}

/* Content wrapper */
.featured-article-banner__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    padding: 40px 0 20px;
}

/* Content */
.featured-article-banner__content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    max-width: 640px;
    color: #fff;
    padding: 84px 28px;
    margin-bottom: 20px;
}

/* Label */
.featured-article-banner__label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* Title */
.featured-article-banner__title {
    font-family: var(--pm-font-secondary);
    font-weight: var(--fw-medium);
    font-style: italic;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Excerpt */
.featured-article-banner__excerpt {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

/* CTA */
.featured-article-banner__cta {
    display: inline-block;
    pointer-events: none;
}

@media (min-width: 767px) {
    .featured-article-banner {
        display: none;
    }
}

/* ==========================================================================
   14. Image Banner (Things & Events)
   ========================================================================== */

/* Mobile first */
.things-events {
    padding: 3.5rem 0;
}

.things-events__content {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.things-events__title {
    font-size: 20px;
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    margin: 0 0 .75rem;
    text-align: center;
}

.things-events__description {
    font-size: 16px;
    font-weight: var(--fw-light);
    margin: 0 auto 1.5rem;
    text-align: start;
}

.things-events__button {
    display: inline-block;
    margin-top: .25rem;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
}

.things-events__media {
    padding: 0;
    margin-top: 3rem;
}

.things-events__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* default 16:9 fallback */
}

.things-events__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@supports (aspect-ratio: 16 / 9) {
    .things-events__image-wrapper {
        padding-top: 0;
        aspect-ratio: 16 / 9;
    }
}

/* Height modifiers */
.things-events--compact  { padding: 2.5rem 0; }
.things-events--standard { padding: 3.5rem 0; }
.things-events--tall     { padding: 4.5rem 0; }

.things-events--compact  .things-events__image-wrapper { padding-top: 56.25%; }
.things-events--standard .things-events__image-wrapper { padding-top: 75%; }
.things-events--tall     .things-events__image-wrapper { padding-top: 80%; }

@supports (aspect-ratio: 4 / 3) {
    .things-events--compact  .things-events__image-wrapper { padding-top: 0; aspect-ratio: 16 / 9; }
    .things-events--standard .things-events__image-wrapper { padding-top: 0; aspect-ratio: 4 / 3; }
    .things-events--tall     .things-events__image-wrapper { padding-top: 0; aspect-ratio: 5 / 4; }
}

/* Desktop */
@media (min-width: 768px) {
    .things-events__media {
        padding: 0;
        margin-top: 3rem;
    }

    .things-events__content {
        align-items: center;
        text-align: center;
    }

    .things-events__title {
        font-size: 32px;
    }

    .things-events__description {
        text-align: center;
    }

    .things-events--compact  { padding: 3.5rem 0; }
    .things-events--standard { padding: 5rem 0; }
    .things-events--tall     { padding: 6.5rem 0; }

    @supports (aspect-ratio: 16 / 6) {
        .things-events--compact  .things-events__image-wrapper { aspect-ratio: 16 / 8; }
        .things-events--standard .things-events__image-wrapper { aspect-ratio: 16 / 9; }
        .things-events--tall     .things-events__image-wrapper { aspect-ratio: 16 / 10; }
    }

    @supports not (aspect-ratio: 16 / 6) {
        .things-events--compact  .things-events__image-wrapper { padding-top: 50%; }
        .things-events--standard .things-events__image-wrapper { padding-top: 56.25%; }
        .things-events--tall     .things-events__image-wrapper { padding-top: 62.5%; }
    }
}

/* ==========================================================================
   15. Newsletter Subscribe Banner
   ========================================================================== */

.newsletter-subscribe-banner__background {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.newsletter-subscribe-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.newsletter-subscribe-banner__content {
    position: relative;
    z-index: 2;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0;
}

.newsletter-subscribe-banner__inner {
    padding: 40px 0;
    max-width: 100%;
}

.newsletter-subscribe-banner__title {
    color: #fff;
    font-family: var(--pm-font-secondary);
    font-size: 24px;
    font-weight: var(--fw-medium);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.newsletter-subscribe-banner__description {
    color: #fff;
    font-size: 16px;
    font-weight: var(--fw-light);
    margin-bottom: 1.5rem;
}

.newsletter-subscribe-banner__form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
}

.newsletter-form__message--success {
    color: white;
    margin-top: 1rem;
}

.newsletter-subscribe-banner__input {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    background: white;
    font-size: 16px;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-800);
    border: none;
}

.newsletter-subscribe-banner__submit {
    height: 48px;
    background: transparent;
    color: #fff;
    border: 0;
}

@media (min-width: 768px) {
    .newsletter-subscribe-banner__background {
        min-height: 520px;
    }

    .newsletter-subscribe-banner__inner {
        padding: 3.5rem 0;
        max-width: 620px;
    }

    .newsletter-subscribe-banner__content {
        padding: 16px 0;
    }

    .newsletter-subscribe-banner__title {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .newsletter-subscribe-banner__form {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 75%;
    }

    .newsletter-subscribe-banner__input {
        flex: 1 1 260px;
    }
}

/* ==========================================================================
   16. Content Highlights
   ========================================================================== */

.content-highlights {
    padding: 64px 0;
}

.content-highlights__header {
    margin-bottom: 40px;
    padding: 0 32px;
}

.content-highlights__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--pm-secondary-900);
    margin: 0;
}

.content-highlights strong {
    font-weight: var(--fw-medium);
}

.content-highlights__title--left   { text-align: center; }
.content-highlights__title--center { text-align: center; }
.content-highlights__title--right  { text-align: center; }

.content-highlights__items {
    margin-bottom: 40px;
    padding: 0 32px;
}

.content-highlights__intro {
    padding: 0 32px;
}

.content-highlights__item {
    margin-bottom: 32px;
}

.content-highlights__item-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.content-highlights--essence .content-highlights__item-inner {
    flex-direction: column;
}

.content-highlights__item-icon {
    flex-shrink: 0;
    width: 40px;
}

.content-highlights__item-icon-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.content-highlights__item-body {
    flex: 1;
    min-width: 0;
}

.content-highlights__item-heading {
    font-family: var(--pm-font-primary);
    font-size: 16px;
    font-weight: var(--fw-medium);
    letter-spacing: 0.5px;
    color: var(--pm-secondary-900);
    margin: 0 0 8px;
}

.content-highlights__item-description {
    font-size: 16px;
    font-weight: var(--fw-light);
    line-height: 1.6;
    color: var(--pm-secondary-900);
}

.content-highlights__item-description p {
    margin: 0;
}

.content-highlights__intro {
    font-size: 16px;
    line-height: 1.7;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
    margin-bottom: 32px;
}

.content-highlights__intro h2,
.content-highlights__intro h3,
.content-highlights__intro h4,
.content-highlights__intro h5 {
    color: #323232;
    font-family: var(--pm-font-secondary);
    font-size: 20px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
}

.content-highlights__intro a {
    position: relative;
    border-bottom: none !important;
    color: var(--pm-secondary-900);
}

.content-highlights__intro a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform-origin: left;
    transition: transform 0.3s ease;
}

.content-highlights__intro a:hover::after {
    transform: scaleX(0);
}

.content-highlights__description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--pm-secondary-900);
    margin-bottom: 40px;
    padding: 0 32px;
}

.content-highlights__media {
    width: 100%;
    height: 304px;
    margin-top: 40px;
}

.content-highlights__media-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.content-highlights__description h2,
.content-highlights__description h3,
.content-highlights__description h4,
.content-highlights__description h5,
.content-highlights__description h6 {
    color: #323232;
    font-family: var(--pm-font-secondary);
    font-size: 20px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
}

.content-highlights__description a {
    position: relative;
    border-bottom: none !important;
    padding-left: 0;
    padding-right: 0;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 0;
    color: var(--pm-secondary-900);
}

.content-highlights__description a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--pm-secondary-900);
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.content-highlights__description a:hover::after {
    transform: scaleX(0);
}

@media (min-width: 992px) {
    .content-highlights {
        padding: 64px 0;
    }

    .content-highlights__header {
        padding: 0;
    }

    .content-highlights__intro {
        padding: 0;
    }

    .content-highlights__intro h2,
    .content-highlights__intro h3,
    .content-highlights__intro h4,
    .content-highlights__intro h5 {
        font-size: 24px;
    }

    .content-highlights__description h2,
    .content-highlights__description h3,
    .content-highlights__description h4,
    .content-highlights__description h5,
    .content-highlights__description h6 {
        font-size: 24px;
    }

    .content-highlights__items {
        padding: 0;
    }

    .content-highlights__description {
        padding: 0;
    }

    .content-highlights__title {
        font-size: 24px;
    }

    .content-highlights__item {
        margin-bottom: 0;
    }

    .content-highlights__media {
        width: 100%;
        height: 615px;
    }

    .content-highlights__title--left   { text-align: left; }
    .content-highlights__title--center { text-align: center; }
    .content-highlights__title--right  { text-align: right; }
}

/* ==========================================================================
   17. Content Showcase — Shared + Classic + Essence
   ========================================================================== */

/* ----- Shared rail (mobile-first) ----- */

.content-showcase__rail--desktop { display: none; }
.content-showcase__rail--mobile  { display: block; }

.content-showcase__tabs-swiper-wrap { margin-bottom: 18px; }

.content-showcase__tabs-swiper {
    position: relative;
    overflow: hidden;
}

.content-showcase__tabs-swiper::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: rgba(0, 0, 0, .15);
}

.content-showcase__rail--mobile .swiper-slide {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-showcase__rail--mobile .content-showcase__tab {
    width: 100%;
    padding: 10px 6px;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: var(--fw-light);
    cursor: pointer;
    transition: opacity .25s ease;
    color: var(--pm-secondary-900);
}

.content-showcase__rail--mobile .content-showcase__tab.is-active { opacity: 1; }

.content-showcase__underline {
    position: absolute;
    left: 0; bottom: 0;
    height: 2px;
    width: 1px;
    background: #111;
    transform: translate3d(18px, 0, 0) scaleX(40);
    transform-origin: left center;
    transition: transform .25s ease;
    z-index: 2;
}

.content-showcase__prev,
.content-showcase__next {
    width: 40px !important;
    height: 40px !important;
    color: rgba(0, 0, 0, .60) !important;
}

.content-showcase__prev::after,
.content-showcase__next::after { font-size: 18px !important; }

/* ----- Desktop shared rail ----- */
@media (min-width: 768px) {
    .content-showcase__rail--mobile  { display: none; }
    .content-showcase__rail--desktop { display: block; }

    .content-showcase__rail--desktop {
        position: relative;
        padding-left: 24px;
    }

    .content-showcase__rail--desktop::before {
        content: "";
        position: absolute;
        left: 10px; top: 10px; bottom: 10px;
        width: 1px;
        background: rgba(0, 0, 0, .15);
    }

    .content-showcase__indicator {
        display: block;
        position: absolute;
        left: 10px; top: 0;
        width: 2px; height: 32px;
        background: #111;
        transform: translateY(0);
        transition: transform .25s ease;
    }

    .content-showcase__rail--desktop .content-showcase__tab {
        display: block;
        padding: 8px 0;
        background: none;
        font-size: 16px;
        font-weight: var(--fw-light);
        color: var(--pm-secondary-900);
        border: 0;
        text-align: left;
        cursor: pointer;
        transition: opacity .25s ease;
    }

    .content-showcase__rail--desktop .content-showcase__tab.is-active {
        font-weight: var(--fw-medium);
    }
}

@media (min-width: 1024px) {
    .content-showcase__rail--desktop .content-showcase__tab {
        font-size: 20px;
        line-height: 32px;
    }
}

/* ----- Classic variant ----- */

.content-showcase--classic {
    position: relative;
    padding: 40px 0;
}

.content-showcase--classic .content-showcase__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-align: center;
}

.content-showcase--classic .content-showcase__description {
    font-size: 16px;
    color: var(--pm-secondary-900);
    font-weight: var(--fw-light);
    text-align: center;
}

.content-showcase--classic .content-showcase__description p{
    margin: 0 0 32px;
}

.content-showcase__exit {
    position: absolute;
    top: 16px; right: 16px;
    z-index: 50;
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,.2);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: none;
}

.content-showcase--classic.is-scrolllock-active .content-showcase__exit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.is-showcase-scrolllocked { overflow: hidden; }

.content-showcase__content { position: relative; min-width: 0; }

.content-showcase__swiper,
.content-showcase__swiper .swiper-wrapper,
.content-showcase__swiper .swiper-slide { width: 100%; }

.content-showcase__swiper { overflow: hidden; }

.content-showcase__slide {
    position: relative;
    padding-bottom: 20px;
}

.content-showcase__slide-media { position: relative; }

.content-showcase__slide-media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.content-showcase__slide-card {
    position: relative;
    margin: -26px auto 0;
    max-width: 92%;
    background: #fff;
    padding: 18px;
    box-shadow: 0 0 15px -3px rgba(0,0,0,.25);
    border-bottom: 3px solid #C8B18B;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.content-showcase__slide-text {
    font-size: 16px;
    color: var(--pm-secondary-900);
    font-weight: var(--fw-light);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin-bottom: 12px;
}

.content-showcase__slide-cta {
    font-weight: var(--fw-regular);
    padding: 0;
}

.content-showcase__pagination {
    position: static !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100% !important;
}

.content-showcase__pagination .swiper-pagination-bullet {
    flex-shrink: 0;
    width: 16px; height: 8px;
    background: #A9AAAA;
    opacity: 0.6;
    border-radius: 12px;
    margin: 0 !important;
    transition: width .25s cubic-bezier(.77,0,.175,1),
                background-color .25s cubic-bezier(.77,0,.175,1),
                opacity .25s cubic-bezier(.77,0,.175,1);
    touch-action: manipulation;
    cursor: pointer;
}

.content-showcase__pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: #CFAB76;
    opacity: 1;
}

@media (min-width: 768px) {
    .content-showcase--classic .content-showcase__title {
        font-size: 32px;
        text-align: left;
        margin-bottom: 16px;
    }

    .content-showcase--classic .content-showcase__description {
        text-align: start;
    }


    .content-showcase__slide { padding-bottom: 80px; }

    .content-showcase__slide-media img { height: 420px; }

    .content-showcase__slide-card {
        position: absolute;
        left: 24px; bottom: 24px;
        width: min(520px, 85%);
        margin-top: 0;
        max-width: none;
        box-shadow: 0 0 20px -3px rgba(0,0,0,.25);
    }

    .content-showcase__pagination { display: none; }
}

@media (min-width: 1024px) {
    .content-showcase--classic { padding: 60px 0; }

    .content-showcase__slide-media img { height: 520px; }

    .content-showcase__slide-card {
        left: 60px; bottom: 25px;
        width: min(620px, 80%);
        padding: 22px 22px 18px;
    }
}

/* ----- Essence variant ----- */

.content-showcase--essence {
    padding: 48px 0;
    margin: 12px 0;
}

.content-showcase__header { margin-bottom: 40px; }

.content-showcase--essence .content-showcase__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--pm-secondary-900);
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .content-showcase--header-left .content-showcase__title {
        font-size: 24px;
    }

    .content-showcase--header-center .content-showcase__title {
        font-size: 32px;
    }
}

.content-showcase__intro {
    font-size: 16px;
    font-weight: var(--fw-light);
    line-height: 1.7;
    color: var(--pm-secondary-900);
}

.content-showcase__media { position: relative; }

.content-showcase__media-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .content-showcase__media-img { height: 420px; }
}

@media (min-width: 992px) {
    .content-showcase--essence {
        margin: 40px 0;
    }



    .content-showcase__media-img { height: 520px; }
}

/* slide en essence: sin paddings */
.content-showcase--essence .content-showcase__slide {
    padding: 0;
}

/* slide-card en essence: siempre relative, nunca absolute */
.content-showcase--essence .content-showcase__slide-card {
    position: relative;
    width: 90%;
    left: auto;
    bottom: 25px;
    margin: 0 auto;
    max-width: none;
}

/* ----- Legacy (experiences-tabs) — mantener por compatibilidad ----- */
.experiences-tabs {
    position: relative;
    padding: 40px 0;
}

.experiences-exit {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 50;
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,.2);
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(6px);
    cursor: pointer;
    display: none;
}

.experiences-tabs.is-scrolllock-active .experiences-exit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

body.is-experiences-scrolllocked {
    overflow: hidden;
}

.experiences-swiper,
.experiences-swiper .swiper-slide {
    overflow: visible;
}

.experiences-tabs__nav { flex: 1; }

.experiences-tabs__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-align: center;
}

.experiences-tabs__rail--desktop { display: none; }
.experiences-tabs__rail--mobile  { display: block; }

.experiences-tabs__tabs-swiper { margin-bottom: 18px; }

.experiences-tabs-swiper {
    position: relative;
    overflow: hidden;
}

.experiences-tabs-swiper::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(0,0,0,.15);
}

.experiences-tabs__rail--mobile .swiper-slide {
    width: calc(100% / 3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.experiences-tabs__rail--mobile .experiences-tab {
    width: 100%;
    padding: 10px 6px;
    border: 0;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: var(--fw-light);
    cursor: pointer;
    transition: opacity .25s ease;
}

.experiences-tabs__rail--mobile .experiences-tab.is-active { opacity: 1; }

.experiences-tabs__underline {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 40px;
    background: #111;
    transform: translate3d(18px,0,0);
    transition: transform .25s ease, width .25s ease;
    z-index: 2;
}

.experiences-tabs__content {
    position: relative;
    min-width: 0;
}

.experiences-swiper,
.experiences-swiper .swiper-wrapper,
.experiences-swiper .swiper-slide {
    width: 100%;
}

.experiences-swiper { overflow: hidden; }

.experience-slide {
    position: relative;
    padding-bottom: 20px;
}

.experience-slide__media { position: relative; }

.experience-slide__media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.experience-slide__card {
    position: relative;
    margin: -26px auto 0;
    max-width: 92%;
    background: #fff;
    padding: 18px;
    box-shadow: 0 0 15px -3px rgba(0,0,0,.25);
    border-bottom: 3px solid #C8B18B;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.experience-slide__text {
    font-size: 16px;
    color: var(--pm-secondary-900);
    font-weight: var(--fw-light);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    margin-bottom: 12px;
}

.experience-slide__cta {
    font-weight: var(--fw-regular);
    padding: 0;
}

.underline {
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}

.experiences-content__prev,
.experiences-content__next {
    width: 40px !important;
    height: 40px !important;
    top: 44% !important;
    color: rgba(0,0,0,.60) !important;
}

.experiences-content__prev::after,
.experiences-content__next::after {
    font-size: 18px !important;
}

.experiences-content__pagination {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.experiences-content__pagination .swiper-pagination-bullet {
    flex-shrink: 0;
    width: 16px;
    height: 8px;
    background: #A9AAAA;
    opacity: 0.6;
    border-radius: 12px;
    margin: 0 !important;
    transition: width 0.25s cubic-bezier(0.77, 0, 0.175, 1),
                background-color 0.25s cubic-bezier(0.77, 0, 0.175, 1),
                opacity 0.25s cubic-bezier(0.77, 0, 0.175, 1);
    touch-action: manipulation;
    cursor: pointer;
}

.experiences-content__pagination .swiper-pagination-bullet-active {
    width: 32px;
    background: #CFAB76;
    opacity: 1;
}

@media (min-width: 768px) {
    .experience-slide {
        padding-bottom: 80px;
    }

    .experience-slide__card {
        box-shadow: 0 0 20px -3px rgba(0,0,0,.25);
    }

    .experiences-tabs__title {
        font-size: 32px;
        text-align: left;
        margin-bottom: 16px;
    }

    .experiences-tabs__rail--mobile  { display: none; }
    .experiences-tabs__rail--desktop { display: block; }

    .experiences-tabs__rail--desktop {
        position: relative;
        padding-left: 24px;
    }

    .experiences-tabs__rail--desktop::before {
        content: "";
        position: absolute;
        left: 10px;
        top: 10px;
        bottom: 10px;
        width: 1px;
        background: rgba(0,0,0,.15);
    }

    .experiences-tabs__indicator {
        display: block;
        position: absolute;
        left: 10px;
        top: 0;
        width: 2px;
        height: 32px;
        background: #111;
        transform: translateY(0);
        transition: transform .25s ease;
    }

    .experiences-tabs__rail--desktop .experiences-tab {
        display: block;
        padding: 8px 0;
        background: none;
        font-size: 16px;
        font-weight: var(--fw-light);
        color: var(--pm-secondary-900);
        border: 0;
        text-align: left;
        cursor: pointer;
        transition: opacity .25s ease;
    }

    .experiences-tabs__rail--desktop .experiences-tab.is-active {
        font-weight: var(--fw-medium);
    }

    .experience-slide__media img { height: 420px; }

    .experience-slide__card {
        position: absolute;
        left: 24px;
        bottom: 24px;
        width: min(520px, 85%);
        margin-top: 0;
        max-width: none;
    }

    .experiences-content__pagination { display: none; }
}

@media (min-width: 1024px) {
    .experiences-tabs { padding: 60px 0; }

    .experience-slide__media img { height: 520px; }

    .experience-slide__card {
        left: 60px;
        bottom: 25px;
        width: min(620px, 80%);
        padding: 22px 22px 18px;
    }

    .experiences-tabs__rail--desktop .experiences-tab {
        font-size: 20px;
        line-height: 32px;
    }
}

/* ==========================================================================
   18. Content Carousel — Classic
   ========================================================================== */

.content-carousel.content-carousel--classic {
    background: #FBFAF7;
    padding: 64px 0;
}

.content-carousel.content-carousel--classic .content-carousel__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.content-carousel.content-carousel--classic .content-carousel__heading {
    font-family: var(--pm-font-secondary);
    font-size: 24px;
    font-style: italic;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
    color: #323232;
}

.content-carousel.content-carousel--classic .content-carousel__pagination {
    position: static;
    margin: 12px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.content-carousel.content-carousel--classic
.content-carousel__pagination .swiper-pagination-bullet {
    width: 16px;
    height: 8px;
    background: #A9AAAA;
    opacity: 0.6;
    border-radius: 12px;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.content-carousel.content-carousel--classic
.content-carousel__pagination .swiper-pagination-bullet-active {
    width: 32px;
    height: 8px;
    background: #CFAB76;
    opacity: 1;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.content-carousel.content-carousel--classic .content-carousel-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
}

.content-carousel.content-carousel--classic .content-carousel-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f3f3f3;
}

.content-carousel.content-carousel--classic .content-carousel-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-carousel.content-carousel--classic .content-carousel-card__body {
    padding: 24px;
    text-align: center;
}

.content-carousel.content-carousel--classic .content-carousel-card__title {
    font-family: var(--pm-font-secondary);
    font-size: 20px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    color: #323232;
}

.content-carousel.content-carousel--classic .content-carousel-card__desc {
    color: #323232;
    text-align: center;
    font-size: 14px;
    font-weight: var(--fw-light);
    line-height: 20px;
}

.content-carousel.content-carousel--classic .content-carousel-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.content-carousel.content-carousel--classic .content-carousel-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(44,44,44,0.75);
}

.content-carousel.content-carousel--classic .content-carousel__meta-icon img,
.content-carousel.content-carousel--classic .content-carousel-card__meta-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.content-carousel.content-carousel--classic .content-carousel-card__actions {
    margin-top: 6px;
}

.content-carousel.content-carousel--classic .content-carousel-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid rgba(44,44,44,0.35);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2c2c2c;
    transition: all 200ms ease;
}

.content-carousel.content-carousel--classic .content-carousel-card__btn:hover {
    background: #2c2c2c;
    color: #fff;
}

@media (min-width: 991px) {
    .content-carousel.content-carousel--classic .content-carousel__heading {
        font-size: 32px;
    }
}

/* ==========================================================================
   19. Content Carousel — Essence
   ========================================================================== */

.content-carousel.content-carousel--essence {
    padding: 64px 0;
}

.content-carousel.content-carousel--essence .content-carousel__heading {
    font-family: var(--pm-font-secondary);
    font-size: 24px;
    font-style: italic;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
    color: #323232;
}

.content-carousel.content-carousel--essence .content-carousel__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.content-carousel.content-carousel--essence .swiper-wrapper {
    align-items: stretch;
}

.content-carousel.content-carousel--essence .swiper-slide {
    height: auto;
}

.content-carousel-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-carousel.content-carousel--essence .content-carousel__pagination {
    position: static;
    margin: 12px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.content-carousel.content-carousel--essence
.content-carousel__pagination .swiper-pagination-bullet {
    width: 16px;
    height: 8px;
    background: #A9AAAA;
    opacity: 0.6;
    border-radius: 12px;
    margin: 0 !important;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.content-carousel.content-carousel--essence
.content-carousel__pagination .swiper-pagination-bullet-active {
    width: 32px;
    height: 8px;
    background: #CFAB76;
    opacity: 1;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.content-carousel.content-carousel--essence .content-carousel-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.content-carousel.content-carousel--essence .content-carousel-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f3f3f3;
}

.content-carousel.content-carousel--essence .content-carousel-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-carousel.content-carousel--essence .content-carousel-card__body {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.content-carousel.content-carousel--essence .content-carousel-card__title {
    font-family: var(--pm-font-secondary);
    font-size: 20px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: 20px;
    letter-spacing: 1px;
    text-align: start;
    color: #323232;
}

.content-carousel.content-carousel--essence .content-carousel-card__desc {
    color: #323232;
    text-align: start;
    font-size: 14px;
    font-weight: var(--fw-light);
    line-height: 20px;
}

.content-carousel.content-carousel--essence .content-carousel-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.content-carousel.content-carousel--essence .content-carousel-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #323232;
    font-size: 14px;
    font-weight: var(--fw-light);
    line-height: 20px;
}

.content-carousel.content-carousel--essence .content-carousel__meta-icon img,
.content-carousel.content-carousel--essence .content-carousel-card__meta-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.content-carousel.content-carousel--essence .content-carousel-card__footer {
    margin-top: auto;
}

.content-carousel.content-carousel--essence .content-carousel-card__actions {
    margin-top: 6px;
}

.content-carousel.content-carousel--essence .content-carousel-card__btn {
    padding-bottom: 0;
    font-size: 14px;
}

@media (min-width: 991px) {
    .content-carousel.content-carousel--essence .content-carousel__heading {
        font-size: 32px;
    }
}

/* ==========================================================================
   20. Content Collection — Cascade
   ========================================================================== */

.content-collection {
    margin: 136px 0;
}

.content-collection__heading {
    font-family: var(--pm-font-secondary);
    font-size: 32px;
    font-style: italic;
    line-height: 1.2;
    font-weight: var(--fw-semibold);
    text-align: start;
}

.content-collection__heading--text-only {
    font-family: inherit;
    font-style: normal;
    font-size: 20px;
    font-weight: var(--fw-regular);
    color: #323232;
}

.content-collection__description {
    margin-top: 14px;
}

.content-collection__grid {
    margin-top: 48px;
    padding-top: 0;
}

.content-collection__card {
    width: 100%;
    max-width: 532px;
    margin-left: auto;
    margin-right: auto;
}

.content-collection__media {
    position: relative;
    overflow: hidden;
}

.content-collection__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.content-collection__media--overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

.content-collection__body {
    padding: 20px 10px 0;
    box-sizing: border-box;
}

.content-collection__card-heading {
    margin: 0 0 12px;
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-semibold);
    font-size: 28px;
    line-height: 1.2;
}

.content-collection__supporting-image {
    display: block;
    max-width: 108px;
    height: auto;
    margin: 0 0 14px;
}

.content-collection__card-description {
    font-family: var(--pm-font-primary);
    font-weight: var(--fw-light);
    font-size: 16px;
    line-height: 1.4;
}

.content-collection__supporting--absolute {
    position: absolute;
    right: 20px;
    bottom: 14px;
    z-index: 2;
    color: #FFF;
    text-align: right;
    font-family: var(--pm-font-secondary);
    font-size: 16px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: 20px;
}

.content-collection__grid > .content-collection__col:first-child {
    margin-top: 0;
}

.content-collection__grid > .content-collection__col {
    margin-top: 4rem;
}

@media (min-width: 991px) {
    .content-collection__image {
        min-height: 420px;
    }

    .content-collection__inner-heading {
        margin-bottom: 1rem;
    }
}

@media (min-width: 992px) {
    .content-collection__heading {
        text-align: center;
    }

    .content-collection__body {
        padding: 30px 30px 0;
    }

    .content-collection__grid > .content-collection__col--odd {
        margin-top: 40px;
    }

    .content-collection__grid > .content-collection__col--even {
        margin-top: 240px;
    }
}

/* ==========================================================================
   21. Content Collection — List variant
   ========================================================================== */

/*.pm-text-block--textonly {*/
/*    font-family: var(--pm-font-secondary);*/
/*    font-size: 32px;*/
/*    font-style: italic;*/
/*    font-weight: var(--fw-medium);*/
/*    text-align: start;*/
/*}*/
.content-collection__heading--list {
    color: var(--pm-secondary-900);
    text-align: start;
    font-family: var(--pm-font-secondary);
    font-size: 28px;
    font-style: italic;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
}

.content-collection__description--list {}

.content-collection__col--list {
    display: flex;
}

.content-collection__card--list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content-collection__media--list {}

.content-collection__image--list {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.content-collection__body--list {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px 16px 0;
}

.content-collection__card-heading--list {
    margin: 0 0 12px;
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 20px;
    letter-spacing: 1px;
}

.content-collection__card-description--list {
    flex: 1;
    font-family: var(--pm-font-primary);
    font-weight: var(--fw-light);
    font-size: 16px;
}

.content-collection__supporting-image--list {}

.content-collection__supporting--list {}

.content-collection__grid--list > .content-collection__col--list {
    margin-top: 20px;
}

@media (min-width: 992px) {
    .content-collection__heading--list {
        text-align: center;
        font-size: 32px;
    }
    .content-collection__grid--list > .content-collection__col--list {
        margin-bottom: 64px;
    }
    .content-collection__col--list:nth-child(odd),
    .content-collection__col--list:nth-child(even) {
        margin-top: 0;
    }
    .content-collection__image--list {
        min-height: 300px;
    }
}

/* ==========================================================================
   22. Content Collection — Dynamic
   ========================================================================== */

.content-collection__filters-mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-collection__filters {
    display: none;
}

.content-collection__description {
    font-size: 16px;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
}

.content-collection__pill {
    border-radius: 50px;
    border: 1px solid #E5E5E5;
    background: #fff;
    padding: 8px 12px;
    color: #323232;
    text-align: center;
    font-size: 16px;
    font-weight: var(--fw-light);
    cursor: grab;
    flex: 0 0 auto;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.content-collection__pill.is-active {
    background: #A89968;
    color: #fff;
    border-color: #A89968;
}

.content-collection__pills.is-dragging { cursor: grabbing; user-select: none; }
.content-collection__pills.is-dragging .content-collection__pill { pointer-events: none; }

.content-collection--dynamic-collection .content-collection__media {
    aspect-ratio: 4 / 3;
    max-height: 420px;
}

.content-collection--dynamic-collection .content-collection__wrapper-content-collection {
    margin-bottom: 3rem;
}

.content-collection--dynamic-collection .content-collection__image,
.content-collection--dynamic-collection .content-collection__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-collection__pills-wrap { position: relative; }

.content-collection__pills-wrap::before,
.content-collection__pills-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 36px;
    pointer-events: none;
    z-index: 2;
}

.content-collection__pills-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.content-collection__pills-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

.content-collection__filter-row {
    display: flex;
    align-items: center;
}

.content-collection__search-wrap {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #E5E5E5;
    border-radius: 2px;
    overflow: hidden;
}

.content-collection__search {
    width: 100%;
    display: flex;
    height: auto;
    padding: 12px 4px 12px 36px;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    border-radius: 2px;
    border: none;
}

.content-collection__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.content-collection__search:focus { border: none; outline: none; }

.content-collection__pills {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 36px;
}

.content-collection__pills::-webkit-scrollbar { display: none; }

.content-collection__pill-x {
    display: none;
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.content-collection__pill.is-active .content-collection__pill-x {
    display: inline-flex;
}

.content-collection__pill[data-filter-slug=""] .content-collection__pill-x {
    display: none !important;
}

.content-collection__filter-button-mobile {
    display: flex;
    flex-direction: column;
}

.content-collection__filter-button-mobile-bottom {
    position: fixed;
    left: 50%;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    background: var(--pm-primary-600);
}

.content-collection__filter-button-mobile-bottom.content-collection__filter-button {
    border: none;
    padding: 8px 12px;
    text-align: center;
    text-transform: uppercase;
    font-style: normal;
    flex: 0 0 auto;
    white-space: nowrap;
    color: #FFF;
    font-size: 18px;
    font-weight: var(--fw-regular);
    line-height: normal;
    letter-spacing: 2px;
}

@media (min-width: 991px) {
    .content-collection__filter-button-mobile-bottom { display: none !important; }

    .content-collection__filters-mobile { display: none; }

    .content-collection__filters { display: block; }

    .content-collection--dynamic-collection .content-collection__media {
        height: 420px;
        max-height: none;
        aspect-ratio: auto;
    }

    .content-collection__inner-heading { margin-bottom: 1rem; }
}

/* ==========================================================================
   22. Page Cover — Classic
   ========================================================================== */

.page-cover--variant-classic {
    position: relative;
    overflow: visible;
    display: flex;
    align-items: stretch;
    min-height: 50vh;
}

.page-cover--variant-classic .page-cover__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.page-cover--variant-classic .page-cover__media .page-cover__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-cover--variant-classic .page-cover__media .page-cover__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    object-position: top;
    will-change: transform;
}

.page-cover--variant-classic .page-cover__content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 32px;
    z-index: 3;
    color: #fff;
}

.page-cover--variant-classic .page-cover__heading {
    font-family: var(--pm-font-secondary);
    color: white;
    font-size: 24px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
    .page-cover--variant-classic {
        height: 75vh;
    }

    .page-cover--variant-classic .page-cover__media .page-cover__image {
        object-position: 36%;
    }

    .page-cover--variant-classic .page-cover__heading {
        font-size: 40px;
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   23. Page Cover — Essence
   ========================================================================== */

.page-cover--variant-essence {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    min-height: calc(100vh - 134px);
    margin-top: 134px;
}

.page-cover__heading {
    font-family: var(--pm-font-secondary);
    font-size: 24px;
    font-style: italic;
    font-weight: var(--fw-medium);
    line-height: normal;
    letter-spacing: 2px;
    margin: 0;
    color: var(--pm-secondary-900);
}

.page-cover__heading,
.page-cover__heading--text-only {
    text-align: center;
}

.page-cover--variant-essence .page-cover__image,
.page-cover--variant-essence .page-cover__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pm-text-block__decorative-image { display: none; }

.page-cover__essence-grid {
    align-items: flex-start;
}

.page-cover__essence-inner-left,
.page-cover__essence-inner-right {
    display: contents;
}

.page-cover__essence-heading {
    order: 1;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}

.page-cover__essence-media-a {
    order: 2;
    width: 100%;
    height: 304px;
}

.page-cover__essence-description strong {
    font-weight: var(--fw-medium);
}

.page-cover__essence-description {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 24px 32px 32px;
    font-size: 16px;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
}

.page-cover__essence-media-b {
    order: 4;
    width: 70%;
    height: 180px;
    margin: 0 0 0 auto;
}

@media (min-width: 992px) {
    .pm-text-block__decorative-image { display: block; }

    .page-cover--variant-essence {
        min-height: calc(100vh - 92px);
        margin-top: 92px;
        align-items: center;
        justify-content: center;
    }

    .page-cover__heading {
        font-size: 40px;
    }

    .page-cover__essence-grid {
        align-items: start;
    }

    .page-cover__essence-inner-left {
        display: flex;
        flex-direction: column;
        align-items: start;
        flex: 0 0 40%;
        gap: 40px;
        padding-top: 60px;
    }

    .page-cover__essence-inner-right {
        display: flex;
        flex-direction: column;
        align-items: start;
        flex: 1;
        height: 100%;
    }

    .page-cover__essence-heading    { order: unset; width: 80%; margin: 4rem auto; }
    .page-cover__essence-media-a    { order: unset; width: 100%; height: 420px; }
    .page-cover__essence-description{ order: unset; width: 80%; margin: 4rem auto 0; }
    .page-cover__essence-media-b    { order: unset; width: 100%; height: 326px; margin: 0; }
}

/* ==========================================================================
   24. Two Column Content — Essence
   ========================================================================== */

.two-column-layout--variant-essence {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.two-column-layout--variant-essence .two-column-layout__content-variant-card {
    text-align: center;
    margin: 0 32px 42px;
    padding: 24px;
    box-shadow: 0px 0px 20px -3px rgba(0, 0, 0, 0.25);
    position: relative;
    top: -2rem;
    background: #fff;
    z-index: 1;
}

.two-column-layout--variant-essence .two-column-layout__content-variant-inline {
    text-align: start;
    padding: 4rem 2rem;
}

.two-column-layout--variant-essence .two-column-layout__content .two-column-layout__heading-essence {
    color: var(--pm-secondary-900);
}

/* heading_font_style: primary | secondary */
.two-column-layout__heading-essence--font-primary {
    font-family: var(--pm-font-primary) !important;
    font-style: normal;
    font-weight: var(--fw-regular);
    font-size: 20px;
}

.two-column-layout__heading-essence--font-secondary {
    font-family: var(--pm-font-secondary) !important;
    font-style: italic;
    letter-spacing: 2px;
    font-weight: var(--fw-medium);
    font-size: 20px;
}

.two-column-layout--variant-essence .two-column-layout__content-description {
    text-align: start;
    font-size: 1rem;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
}

.two-column-layout--variant-essence .two-column-layout__content-description strong {
    font-weight: var(--fw-medium);
}

.two-column-layout--variant-essence .two-column-layout__content-image {
    width: 100%;
    height: auto;
}

.two-column-layout--variant-essence .two-column-layout__content-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 556px) {
    .two-column-layout--variant-essence .two-column-layout__content {
        min-height: 226px;
    }
}

@media (min-width: 992px) {

    .two-column-layout__heading-essence--font-primary {
        font-size: 18px;
    }

    .two-column-layout__heading-essence--font-secondary {
        font-size: 24px;
    }

    .two-column-layout--variant-essence {
        flex-direction: row;
        align-items: center;
        padding-bottom: 96px;
    }

    .two-column-layout--variant-essence .two-column-layout__content {
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: static;
        top: 0;
        align-content: center;
    }

    .two-column-layout--variant-essence .two-column-layout__content-image {
        position: static;
        top: 0;
    }

    .two-column-layout--variant-essence.is-left  { flex-direction: row-reverse; }
    .two-column-layout--variant-essence.is-right { flex-direction: row; }
}

/* Section header (shared: classic + essence) */
.two-column-layout__section-header {
    padding: 0 32px;
    margin-bottom: 2rem;
}

.two-column-layout__section-title {
    font-family: var(--pm-font-secondary);
    font-weight: var(--fw-regular);
    font-style: italic;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--pm-secondary-900);
    margin-bottom: 0.75rem;
}

.two-column-layout__section-description {
    font-weight: var(--fw-light);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pm-secondary-900);
}

.two-column-layout__section-description p {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .two-column-layout__section-header {
        margin-bottom: 2.5rem;
        padding: 0;
    }

    .two-column-layout__section-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   25. Content Widget
   ========================================================================== */

.content-widget {
    padding: 2rem 0;
}

.content-widget__header {
    margin-bottom: 2rem;
}

.content-widget__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 20px;
    color: var(--pm-secondary-900);
    margin-bottom: 0;
}

/* Card */
.content-widget__card {
    border: 1px solid #E5E5E5;
    padding: 1.25rem 1.25rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Top row: eyebrow + meta */
.content-widget__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.content-widget__eyebrow {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 16px;
    color: var(--pm-secondary-900);
    line-height: 20px;
    letter-spacing: 1px;
}

.content-widget__meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 0;
}

.content-widget__meta-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    opacity: 0.6;
}

.content-widget__meta-label {
    font-size: 16px;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
    line-height: 20px;
}

/* Large title */
.content-widget__card-title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-regular);
    font-size: 20px;
    color: var(--pm-secondary-800);
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Description */
.content-widget__card-description {
    font-family: var(--pm-font-primary);
    font-size: 16px;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
    line-height: 20px;
}

.content-widget__card-description strong {
    font-weight: var(--fw-medium);
}

.content-widget__card-description p {
    margin-bottom: 0.25rem;
}

.content-widget__card-description p:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .content-widget__title {
        font-size: 24px;
    }

    .content-widget__card-title {
        font-size: 24px;
    }
}

/* ==========================================================================
   26. Inline Notice
   ========================================================================== */

.inline-notice {
    padding: 1.5rem 0;
}

.inline-notice__inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    background-color: var(--pm-primary-200);
    border-radius: 4px;
    padding: 1.25rem 1.5rem;
}

.inline-notice__icon {
    width: 100px;
    height: auto;
}

.inline-notice__icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-notice__body {
    font-family: var(--pm-font-primary);
    font-size: 0.9375rem;
    font-weight: var(--fw-light);
    color: var(--pm-secondary-900);
    line-height: 1.6;
}

.inline-notice__body p {
    margin-bottom: 0;
}

.inline-notice__body a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inline-notice__body a:hover {
    opacity: 0.7;
}
@media (min-width: 992px) {
    .inline-notice__icon {
        width: 40px;
        height: auto;
    }
    .inline-notice__inner {
        gap: 1.5rem;
    }
}

/* ==========================================================================
   25. Legal Page
   ========================================================================== */

/* Hero */
.legal-hero {
    padding: 168px 0 32px;
    text-align: center;
    background-color: var(--pm-primary-200);
}

.legal-hero__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
    font-weight: var(--fw-medium);
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pm-secondary-900);
    margin-bottom: 20px;
}

.legal-hero__eyebrow-line {
    display: block;
    width: 32px;
    height: 1px;
    background: currentColor;
}

.legal-hero__title {
    font-family: var(--pm-font-secondary);
    font-style: italic;
    font-weight: var(--fw-medium);
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--pm-secondary-900);
    margin: 0;
}

/* Content */
.legal-content {
    padding: 48px 0 96px;
}

.legal-content__body {
    font-size: 16px;
    font-weight: var(--fw-light);
    line-height: 1.8;
    color: var(--pm-secondary-900);
}

.legal-content__body p {
    margin-bottom: 20px;
}

.legal-content__body p:last-child {
    margin-bottom: 0;
}

.legal-content__body h2,
.legal-content__body h3,
.legal-content__body h4 {
    font-weight: var(--fw-medium);
    font-size: 16px;
    margin: 32px 0 8px;
}

.legal-content__body strong {
    font-weight: var(--fw-medium);
}

.legal-content__body a {
    color: var(--pm-secondary-900);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (min-width: 992px) {
    .legal-hero {
        padding: 122px 0 32px;
    }

    .legal-hero__title {
        font-size: 32px;
    }

    .legal-content {
        padding: 64px 0 128px;
    }
}


.content-collection__load-more {
    display: flex;
    justify-content: center;
}

.content-collection__load-more .content-collection__load-more-btn{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 36px;
    border: 1px solid var(--pm-secondary-900);
    background: transparent;
    font-family: var(--pm-font-primary);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--pm-secondary-900);
    cursor: pointer;
}

.content-collection__load-more .content-collection__load-more-btn:hover {
    background-color: var(--pm-secondary-900);
    color: #fff;
}

/* ==========================================================================
   CONTENT FEATURE MEDIA BLOCK
   ========================================================================== */

.content-feature-media-block {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Header / título */
.content-feature-media-block__header {
    margin-bottom: 32px;
}

.content-feature-media-block__title {
    font-family: var(--pm-font-secondary);
    font-weight: var(--fw-medium);
    font-style: italic;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--pm-secondary-900);
    margin: 0;
}

/* Media: imagen */
.content-feature-media-block__image {
    width: 100%;
    height: auto;
    display: block;
}

/* Media: mapa (shortcode) */
.content-feature-media-block__map {
    width: 100%;
    overflow: hidden;
}

.content-feature-media-block__map > * {
    width: 100% !important;
    max-width: 100% !important;
}

/* ── Responsive ─────────────────────────────────────── */

@media (min-width: 768px) {
    .content-feature-media-block {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .content-feature-media-block__header {
        margin-bottom: 40px;
    }

    .content-feature-media-block__title {
        font-size: 24px;
    }
}


/* ─────────────────────────────────────────────────────────────────────────────
   reCAPTCHA — ocultar badge, mostrar aviso de privacidad requerido por Google
   ───────────────────────────────────────────────────────────────────────────── */
.grecaptcha-badge {
    visibility: hidden !important;
}

.recaptcha-notice {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.4;
    color: white;
}

.recaptcha-notice a {
    color: white;
    text-decoration: underline;
}

.recaptcha-notice a {
    text-decoration: underline;
}

/* ── Scroll-reveal animations — vanilla IntersectionObserver ──────────────────
   Estado inicial: invisible + desplazado hacia abajo (solo desktop).
   JS añade .is-animated cuando el elemento entra al viewport.
   En móvil los elementos son siempre visibles.
   ─────────────────────────────────────────────────────────────────────────── */
@media (min-width: 768px) {
    [data-anim] {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        transition-delay: 0.2s;
    }
    [data-anim].is-animated {
        opacity: 1;
        transform: translateY(0);
    }
}

.instagram-feed {
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .instagram-feed {
        padding-bottom: 100px;
    }
}

/* ==========================================================================
   BLOG SECTIONS — ACF flexible content blocks
   ========================================================================== */

/* blog-content-text-block */
.blog-text-block {
    margin: 1.5rem 0;
}

/* blog-content-image-block */
.blog-content-image-block {
    margin: 2rem 0;
}

.blog-content-image-block__image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* fallback 16:9 */
}

.blog-content-image-block__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@supports (aspect-ratio: 16 / 9) {
    .blog-content-image-block__image-wrapper {
        padding-top: 0;
        aspect-ratio: 16 / 9;
    }
}

/* blog-content-image-text-block */
.blog-content-image-text-block__row {
    row-gap: 32px;
}

.blog-content-image-text-block__media {
    overflow: hidden;
    background: #e7e2da;
    width: 100%;
    height: 250px;
}

.blog-content-image-text-block__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-content-image-text-block__title {
    margin: 0 0 28px;
    color: #323232;
    font-size: 20px;
    font-weight: var(--fw-medium);
    line-height: 1.35;
}

.blog-content-image-text-block__text,
.blog-content-image-text-block__text p {
    color: #323232;
    font-size: 16px;
    font-weight: var(--fw-regular);
    line-height: 1.5;
}

.blog-content-image-text-block__text p {
    margin-bottom: 24px;
}

.blog-content-image-text-block__text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .blog-content-image-text-block__media {
        height: 380px;
    }
}

@media (max-width: 991.98px) {

    .blog-content-image-text-block {
        margin: 56px 0;
    }

    .blog-content-image-text-block__content {
        padding-top: 0;
    }
}