/* ============================================
   MAIN CONTENT
   ============================================ */

.main-content {
    background-color: var(--color-background);
}

/* ============================================
   SECTION BASE STYLES
   ============================================ */

.section {
    padding: clamp(3rem, 8vw, 4rem) 0;
}

.container {
    max-width: var(--max-width-content);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 2rem);
}

/* Base Section Variants */
.section--gallery {
    background-color: var(--color-background);
}

.section--booking-process {
    background-color: var(--color-background-alt);
    border-radius: 20px;
}

.section--location {
    background-color: var(--color-background);
    padding-bottom: 5em;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section__header {
    text-align: center;
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    font-family: var(--font-jost);
}

.section__title::after {
    content: '';
    display: block;
    width: clamp(40px, 8vw, 60px);
    height: 3px;
    background-color: var(--color-primary);
    margin: var(--spacing-sm) auto 0;
}

/* ============================================
   ABOUT (BASE CONTENT STYLES)
   ============================================ */

.about__content {
    max-width: var(--max-width-text);
    margin: 0 auto;
    text-align: left;
}

.about__content p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.about__intro {
    font-size: clamp(1.05rem, 2vw, 1.2rem) !important;
    color: var(--color-text-light);
    font-weight: 300;
}

.about__highlight {
    background-color: var(--color-background-alt);
    border-left: 4px solid var(--color-primary);
    padding: clamp(1rem, 3vw, 2rem);
    margin: var(--spacing-lg) 0;
    border-radius: var(--border-radius);
}

.about__highlight p {
    margin-bottom: 0;
}

.about__closing {
    font-weight: 500;
    color: var(--color-secondary);
}

/* ============================================
   TREATMENTS OVERVIEW (BASE CONTENT)
   ============================================ */

.treatments-overview__content {
    max-width: var(--max-width-text);
    margin: 0 auto;
    text-align: center;
}

.treatments-overview__content p {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 3rem);
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
    border: none;
    cursor: pointer;
}

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

.btn--primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-carousel__inner {
    position: relative;
    overflow: hidden;
}

.gallery-carousel__item {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.gallery-carousel__item--active {
    display: block;
    opacity: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(1rem, 2vw, 2rem);
    padding: var(--spacing-sm);
}

.gallery-grid__item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
}

.gallery-grid__item:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.gallery-grid__media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Indicators */
.gallery-carousel__indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.gallery-carousel__indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-carousel__indicator--active {
    background-color: var(--color-primary);
    width: 32px;
    border-radius: 6px;
}

/* ============================================
   BOOKING PROCESS
   ============================================ */

.booking-steps {
    max-width: var(--max-width-text);
    margin: 0 auto;
    list-style: none;
    counter-reset: step-counter;
}

.booking-steps__item {
    position: relative;
    padding-left: clamp(3rem, 8vw, 4rem);
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
    counter-increment: step-counter;
}

.booking-steps__item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    width: clamp(35px, 5vw, 40px);
    height: clamp(35px, 5vw, 40px);
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-process__footer {
    text-align: center;
    margin-top: clamp(2rem, 5vw, 3rem);
}

/* ============================================
   LOCATION
   ============================================ */

.location-map {
    width: 100%;
    height: clamp(300px, 50vw, 450px);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.location-map__iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   UTILITIES
   ============================================ */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .gallery-grid__item:hover,
    .btn--primary:hover {
        transform: none;
    }
}

/* ============================================
   PRINT
   ============================================ */

@media print {
    .hero,
    .services-marquee,
    .gallery-carousel,
    .location-map {
        display: none;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .section {
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .container {
        padding: 0 1rem;
    }

    .about__highlight {
        padding: 1rem;
    }
}

/* ============================================
   CONSULTATION SECTION (Overlay Style)
   ============================================ */
/* ============================================
   CONSULTATION SECTION
   ============================================ */

.section--consultation {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 650px;
    overflow: hidden;
    background-color: #f0f0f0;
    padding: 0;
}

.consultation-layout {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.consultation__image-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.consultation__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.consultation__info-box {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 18%;
    transform: translate(-50%, -50%);
    background-color: #efe5d6ed;
    padding: 3rem;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.consultation__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.consultation__text p {
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

/* ============================================
   TABLET (769px–1024px)
   Same overlay style as desktop, box just
   shifts to centre rather than left-of-centre
   ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
    .section--consultation,
    .consultation-layout {
        min-height: 520px;
    }

    .consultation__info-box {
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 420px;
        padding: 2.5rem;
    }

    .consultation__title {
        font-size: 2rem;
    }

    .consultation__text p {
        font-size: 1rem;
    }
}

/* ============================================
   MOBILE (768px and below)
   Full-bleed image, semi-transparent overlay
   box centred over the image
   ============================================ */

@media (max-width: 768px) {
    .section--consultation {
        min-height: 480px;
        padding: 0;
    }

    .consultation-layout {
        position: relative;
        min-height: 480px;
    }

    /* Image fills everything */
    .consultation__image-side {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .consultation__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    /* Box centred over the image */
    .consultation__info-box {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        border-radius: 0;
        background-color: #32323294;
        text-align: center;
        z-index: 3;
        max-width: 100%;
    }

    .consultation__title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
        margin-top: 3em;
        color: #fff;
    }

    .consultation__text p {
        font-size: 1.2rem;
        line-height: 1.7;
        color: #fff;
    }
}


/* ============================================
   LARGE SCREENS (1440px+)
   ============================================ */

@media (min-width: 1440px) {
    .section--consultation,
    .consultation-layout {
        min-height: 700px;
    }

    .consultation__info-box {
        max-width: 500px;
        padding: 3.5rem;
    }
}

@media (min-width: 1920px) {
    .consultation__info-box {
        left: 22%;
        max-width: 560px;
    }
}

/* ============================================
   PROFESSIONAL ABOUT SECTION
   ============================================ */

.section--about {
    background-color: #ffffff;
    padding: clamp(4rem, 8vw, 6rem) 0;
    width: 80vw;
    max-width: 80vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -40vw;
    margin-right: -40vw;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    width: 100vw;
    max-width: 80vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -40vw;
    margin-right: -40vw;
}

/* --- LEFT SIDE: Content --- */

.about__subtitle {
    display: block;
    color: var(--color-primary);
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.about__title {
    font-family: var(--font-jost);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.about__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.about__text strong {
    color: var(--color-secondary); /* Make names stand out */
    font-weight: 600;
}

/* --- Highlight Box (The "We're Growing" part) --- */
.about__highlight-box {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #fdfbf7; /* Very light beige */
    border-left: 4px solid var(--color-primary); /* Gold accent bar */
    border-radius: 4px;
}

.about__highlight-box h3 {
    font-family: var(--font-jost);
    font-size: 1.25rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.about__highlight-box p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 0;
}

/* --- RIGHT SIDE: Image --- */
.about__visual {
    position: relative;
}

.about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transition: transform 0.4s ease;
}

.about__visual:hover .about__image {
    transform: scale(1.01);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .about-layout {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 3rem;
        text-align: center; /* Center text on mobile */
    }

    .about__content {
        text-align: center;
        order: 2; /* Text goes second on mobile */
    }

    .about__visual {
        order: 1; /* Image goes first on mobile (visual impact) */
    }

    .about__highlight-box {
        text-align: left; /* Keep highlight box left aligned for readability */
    }
}

/* ============================================
   PROFESSIONAL TREATMENTS OVERVIEW
   ============================================ */

.section--treatments-overview {
    background-color: #ffffff; /* Clean white background */
    padding: clamp(4rem, 8vw, 6rem) 0; /* Generous vertical spacing */
}

.treatments-layout {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% Image, 50% Text */
    gap: clamp(3rem, 6vw, 6rem); /* Large gap for professional look */
    align-items: center;
}

/* --- LEFT SIDE: Image --- */
.treatments__visual {
    position: relative;
}

.treatments__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    /* Professional shadow to lift the image */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
    transition: transform 0.4s ease;
}

.treatments__visual:hover .treatments__image {
    transform: scale(1.01); /* Subtle movement on hover */
}

/* Small badge in corner of image (adds detail) */
.treatments__badge {
    position: absolute;
    top: 20px;
    left: -20px;
    background-color: var(--color-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    font-family: var(--font-montserrat);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- RIGHT SIDE: Content --- */
.treatments__content {
    text-align: left; /* Left aligned text is easier to read and looks more modern */
}

.treatments__subtitle {
    display: block;
    color: var(--color-primary);
    font-family: var(--font-montserrat);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.treatments__title {
    font-family: var(--font-jost); /* Or your serif font */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.treatments__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* --- Highlights List --- */
.treatments__highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

.treatments__highlights li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-text);
    font-family: var(--font-montserrat);
    font-weight: 500;
}

.treatments__highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2rem;
    top: -3px;
}

/* --- Button Styling --- */
.btn--treatments {
    display: inline-block;
    background-color: var(--color-secondary); /* Dark Grey/Black */
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-family: var(--font-montserrat);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-radius: 4px; /* Slightly sharper corners for professional look */
}

.btn--treatments:hover {
    background-color: var(--color-primary); /* Gold on hover */
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .treatments-layout {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 3rem;
        text-align: center; /* Center content on mobile */
    }

    .treatments__content {
        text-align: center;
    }

    .treatments__highlights {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .treatments__highlights li::before {
        display: none; /* Remove dots on mobile for simpler look */
    }

    .treatments__badge {
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
    }
}

/* ============================================
   MISC
   ============================================ */

.instagram-feed {
    position: relative;
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
    padding: 0 clamp(1rem, 3vw, 2.5rem);
    box-sizing: border-box;
    padding-bottom: 3em;
}

.lightwidget-widget {
    display: block;
}


/* ============================================
   TREATMENTS INTERACTIVE EXPLORER
   ============================================ */

.section--treatments-overview .section__header {
    margin-bottom: 2rem;
}

/* --- Scrolling Pill Strip --- */
.tx-strip-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background-color: var(--color-background-alt, #fdfbf7);
    border-radius: 50px;
    padding: 8px 10px;
}

.tx-strip__arrow {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.tx-strip__arrow:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.tx-strip__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tx-strip__arrow:disabled:hover {
    background: transparent;
    color: var(--color-primary);
}

.tx-strip__viewport {
    flex: 1;
    overflow: hidden;
    padding: 3px 0;
}

.tx-strip__track {
    display: flex;
    gap: 8px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* --- Pill Buttons --- */
.tx-pill {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-secondary);
    font-family: var(--font-montserrat);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tx-pill:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.tx-pill--active {
    background-color: var(--color-primary);
    color: #fff;
}

/* --- Explorer Container --- */
.tx-explorer {
    background-color: #fdfbf7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

/* --- Slide Viewport --- */
.tx-slides-viewport {
    overflow: hidden;
    width: 100%;
}

.tx-slides-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* --- Individual Slide --- */
.tx-slide {
    min-width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
    max-height: 500px;
}

.tx-slide--no-image {
    grid-template-columns: 1fr;
}

.tx-slide--has-video {
    grid-template-columns: 3fr 2fr;
    min-height: 500px;
    max-height: 500px;
}

.tx-slide--has-video .tx-slide__image-panel {
    max-height: 500px;
    overflow: hidden;
}

.tx-slide__content {
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.tx-slide__treatment-name {
    display: block;
    color: var(--color-primary);
    font-family: var(--font-montserrat);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.2rem;
}

.tx-slide__heading {
    font-family: var(--font-jost);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--color-secondary);
    line-height: 1.2;
    margin: 0 0 1rem 0;
}

.tx-slide__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-light);
}

.tx-slide__body p {
    margin: 0 0 0.75rem 0;
}

.tx-slide__body p:last-child {
    margin-bottom: 0;
}

.tx-slide__body ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0 0 0;
}

.tx-slide__body li {
    margin-bottom: 0.4rem;
}

/* --- Slide Image Panel --- */
.tx-slide__image-panel {
    position: relative;
    overflow: hidden;
}

.tx-slide__image-panel img,
.tx-slide__image-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tx-slide__image-panel--placeholder {
    background: linear-gradient(135deg, #efe5d6 0%, #f7f0e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Navigation --- */
.tx-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.25rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    background-color: #fdfbf7;
}

.tx-nav__arrow {
    background: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.tx-nav__arrow:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.tx-nav__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.tx-nav__arrow:disabled:hover {
    background: transparent;
    color: var(--color-primary);
}

.tx-nav__dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tx-nav__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d9cfc4;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.tx-nav__dot--active {
    background-color: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* --- CTA --- */
.tx-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .tx-slides-track {
        align-items: flex-start;
    }

    .tx-slide {
        grid-template-columns: 1fr;
        min-height: auto;
        max-height: none;
    }

    .tx-slide--has-video {
        max-height: none;
    }

    .tx-slide__content {
        justify-content: flex-start;
        padding: 1.5rem 1.25rem;
    }

    .tx-slide__image-panel {
        height: 220px;
        order: -1;
    }

    .tx-slide--has-video .tx-slide__image-panel {
        max-height: 220px;
    }

    .tx-strip-wrapper {
        border-radius: 12px;
    }

    .tx-strip__arrow {
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }

    .tx-pill {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 480px) {
    .tx-strip-wrapper {
        padding: 6px 6px;
        gap: 0.35rem;
    }

    .tx-strip__arrow {
        width: 28px;
        height: 28px;
    }

    .tx-pill {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }
}