/**
 * About Page Styles
 * Tenuta Bally Theme - Chi Siamo / About Us
 */

/* ==========================================================================
   About Page Layout
   ========================================================================== */

.tb-about-page {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

.tb-about-page .site-main {
    padding: 0;
    max-width: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.tb-about-hero {
    position: relative;
    min-height: calc(100vh - var(--tb-topbar-height, 40px));
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hide breadcrumbs on pages with fullscreen hero */
.tb-header-transparent .storefront-breadcrumb {
    display: none;
}

.tb-about-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
}

.tb-about-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.tb-about-hero__pretitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tb-about-hero__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #fff;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tb-about-hero__title em {
    font-style: italic;
}

.tb-about-hero__subtitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.tb-about-hero__subtitle em {
    font-style: italic;
}

.tb-about-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.tb-about-hero__scroll:hover {
    opacity: 1;
}

.tb-about-hero__scroll span {
    margin-bottom: 0.5rem;
}

.tb-about-hero__scroll i {
    font-size: 1.2rem;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

/* ==========================================================================
   Tagline Section
   ========================================================================== */

.tb-about-tagline {
    padding: 5rem 2rem;
    background: #fff;
}

.tb-about-tagline__text {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--tb-heading-color, #1a1a1a);
    text-align: left;
}

.tb-about-tagline__text em {
    font-style: italic;
}

/* ==========================================================================
   Block Section (Parallax + Two-Column Text)
   ========================================================================== */

.tb-about-block {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tb-about-block__parallax {
    height: 400px;
    overflow: hidden;
    position: relative;
    width: 80%;
}

.tb-about-block__parallax-inner {
    position: absolute;
    top: -80%;
    left: 0;
    right: 0;
    height: 160%;
    background-size: cover;
    background-position: center 30%;
    will-change: transform;
}

.tb-about-block__content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    padding: 5rem 10%;
}

.tb-about-block__title h3 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-heading-color, #1a1a1a);
    margin: 0;
}

.tb-about-block__text p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-heading-color, #1a1a1a);
    margin: 0 0 1.5rem;
}

.tb-about-block__text p:last-child {
    margin-bottom: 0;
}

/* ==========================================================================
   Split Section (Image Left 63%, Text Right 37%)
   ========================================================================== */

.tb-about-split {
    display: grid;
    grid-template-columns: 63% 37%;
    min-height: 450px;
}

/* When inside transition wrapper, don't need full-width override */
.tb-about-transition-wrapper .tb-about-split {
    width: 100%;
    margin-left: 0;
}

.tb-about-split__image {
    position: relative;
    overflow: hidden;
}

.tb-about-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 1s ease-out, opacity 0.8s ease-out;
}

.tb-about-split__image.is-visible img {
    transform: translateX(0);
    opacity: 1;
}

.tb-about-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 5rem 3rem 3rem;
    background: #fff;
}

/* When inside transition wrapper */
.tb-about-transition-wrapper .tb-about-split__content {
    background: transparent;
}

.tb-about-split__pretitle,
.tb-about-split__title,
.tb-about-split__text {
    transition: color 0.6s ease;
}

.tb-about-split__pretitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--tb-text-color, #555);
    margin: 0 0 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tb-about-split__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-heading-color, #1a1a1a);
    margin: 0 0 1.5rem;
}

.tb-about-split__text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-text-color, #555);
    margin: 0;
}

/* ==========================================================================
   Intro Section
   ========================================================================== */

.tb-about-intro {
    padding: 5rem 2rem;
    background: #fafafa;
}

.tb-about-intro__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tb-about-intro__content p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--tb-text-color, #555);
    margin: 0;
}

/* ==========================================================================
   Content Sections
   ========================================================================== */

.tb-about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.tb-about-section__image {
    position: relative;
    overflow: hidden;
}

.tb-about-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tb-about-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background: #fff;
}

.tb-about-section__content h2 {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--tb-heading-color, #1a1a1a);
    margin: 0 0 1.5rem;
    line-height: 1.3;
}

.tb-about-section__content p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--tb-text-color, #555);
    margin: 0 0 1rem;
}

.tb-about-section__content p:last-child {
    margin-bottom: 0;
}

/* Reverse layout (image on right) */
.tb-about-section--reverse {
    direction: rtl;
}

.tb-about-section--reverse > * {
    direction: ltr;
}

/* Alternating backgrounds */
.tb-about-section:nth-child(even) .tb-about-section__content {
    background: #fafafa;
}

/* ==========================================================================
   Quote Section
   ========================================================================== */

.tb-about-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    padding: 6rem 4rem;
    background: var(--tb-primary-color, #1a1a1a);
}

.tb-about-quote__portrait {
    flex-shrink: 0;
}

.tb-about-quote__portrait img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    filter: grayscale(30%);
}

.tb-about-quote__text {
    max-width: 600px;
    margin: 0;
    padding: 0;
    border: none;
}

.tb-about-quote__text p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
}

.tb-about-quote__text cite {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1rem;
    font-style: normal;
    color: var(--tb-accent-color, #dda759);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .tb-about-hero {
        min-height: calc(100vh - var(--tb-topbar-height, 40px));
        background-attachment: scroll;
    }

    .tb-about-hero__title {
        font-size: 2.5rem;
    }

    .tb-about-hero__subtitle {
        font-size: 1.2rem;
    }

    .tb-about-tagline__text {
        font-size: 2rem;
    }

    .tb-about-block__content {
        grid-template-columns: 1fr;
        padding: 3rem 5%;
    }

    .tb-about-split {
        grid-template-columns: 1fr;
    }

    .tb-about-split__image {
        height: 300px;
    }

    .tb-about-split__image img {
        object-position: top;
    }

    .tb-about-split__content {
        padding: 3rem 2rem;
    }

    .tb-about-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .tb-about-section--reverse {
        direction: ltr;
    }

    .tb-about-section__image {
        height: 300px;
    }

    .tb-about-section__content {
        padding: 3rem 2rem;
    }

    .tb-about-quote {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 4rem 2rem;
    }

    .tb-about-quote__portrait img {
        width: 150px;
        height: 150px;
    }

    .tb-about-quote__text p {
        font-size: 1.25rem;
    }
}

@media (max-width: 575px) {
    .tb-about-hero {
        min-height: calc(100vh - var(--tb-topbar-height, 40px));
    }

    .tb-about-hero__title {
        font-size: 2rem;
    }

    .tb-about-hero__subtitle {
        font-size: 1.1rem;
    }

    .tb-about-tagline {
        padding: 3rem 1.5rem;
    }

    .tb-about-tagline__text {
        font-size: 1.5rem;
    }

    .tb-about-intro {
        padding: 3rem 1.5rem;
    }

    .tb-about-intro__content p {
        font-size: 1.1rem;
    }

    .tb-about-section__image {
        height: 250px;
    }

    .tb-about-section__content {
        padding: 2.5rem 1.5rem;
    }

    .tb-about-section__content h2 {
        font-size: 1.75rem;
    }

    .tb-about-section__content p {
        font-size: 1rem;
    }

    .tb-about-quote {
        padding: 3rem 1.5rem;
    }

    .tb-about-quote__portrait img {
        width: 120px;
        height: 120px;
    }

    .tb-about-quote__text p {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Intro Section (White Background with Tagline + Text)
   ========================================================================== */

.tb-about-intro-section {
    padding: 5rem 2rem;
    background: #fff;
}

.tb-about-intro-section__content {
    max-width: 900px;
    margin: 0 auto;
}

.tb-about-intro-section__tagline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-heading-color, #1a1a1a);
    margin: 0 0 2rem;
}

.tb-about-intro-section__tagline em {
    font-style: italic;
}

.tb-about-intro-section__text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-text-color, #555);
    margin: 0;
}

/* ==========================================================================
   Full-Width Transition Image
   ========================================================================== */

.tb-about-transition-image {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    line-height: 0;
}

.tb-about-transition-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.tb-about-transition-image--full img {
    max-height: none;
}

/* ==========================================================================
   Legacy Section (Dark Background)
   ========================================================================== */

/* ==========================================================================
   Transition Wrapper (Light/Dark on Scroll)
   ========================================================================== */

.tb-about-transition-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #fff;
    transition: background-color 0.6s ease;
}

.tb-about-transition-wrapper.is-dark {
    background: var(--tb-primary-color, #1a1a1a);
}

/* Text color transitions for dark mode */
.tb-about-transition-wrapper.is-dark .tb-about-split__pretitle,
.tb-about-transition-wrapper.is-dark .tb-about-split__title,
.tb-about-transition-wrapper.is-dark .tb-about-split__text,
.tb-about-transition-wrapper.is-dark .tb-about-heraldry__text {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.6s ease;
}

.tb-about-transition-wrapper.is-dark .tb-about-heraldry__background {
    opacity: 0.3;
}

.tb-about-legacy {
    padding: 6rem 2rem;
}

.tb-about-legacy__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    align-items: start;
}

.tb-about-legacy__content {
    padding-right: 2rem;
}

.tb-about-legacy__pretitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tb-about-legacy__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: #fff;
    margin: 0 0 1.5rem;
}

.tb-about-legacy__text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.tb-about-legacy__portrait {
    display: flex;
    justify-content: flex-end;
}

.tb-about-legacy__portrait img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(30%);
}

.tb-about-legacy__quote {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}

.tb-about-legacy__quote::before {
    content: """;
    font-size: 8rem;
    font-family: 'EB Garamond', Georgia, serif;
    color: #ccc;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 0;
    opacity: 0.25;
    line-height: 1;
}

.tb-about-legacy__quote blockquote {
    margin: 0;
    padding: 0;
    border: none;
    position: relative;
    z-index: 1;
}

.tb-about-legacy__quote blockquote p {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 1.5rem;
}

.tb-about-legacy__quote cite {
    display: block;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    text-align: right;
    color: rgba(255, 255, 255, 0.9);
}

.tb-about-legacy__quote cite span {
    display: block;
}

.tb-about-legacy__quote cite .tb-about-legacy__author {
    font-weight: bold;
}

.tb-about-legacy__quote cite .tb-about-legacy__role {
    color: var(--tb-accent-color, #dda759);
}

/* ==========================================================================
   Heraldry/Resilience Section
   ========================================================================== */

.tb-about-heraldry {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

/* When inside transition wrapper */
.tb-about-transition-wrapper .tb-about-heraldry {
    background: transparent;
    width: 100%;
    margin-left: 0;
}

.tb-about-heraldry__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0.15;
    pointer-events: none;
}

.tb-about-heraldry__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.tb-about-heraldry__grapes {
    flex-shrink: 0;
}

.tb-about-heraldry__grapes img {
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    will-change: transform;
}

.tb-about-heraldry__text-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 800px;
}

.tb-about-heraldry__coat-of-arms {
    position: absolute;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: auto;
    opacity: 0.85;
    z-index: 0;
}

.tb-about-heraldry__text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-heading-color, #1a1a1a);
    margin: 0;
    max-width: 550px;
    position: relative;
    z-index: 1;
    transition: color 0.6s ease;
}

.tb-about-heraldry__background {
    transition: opacity 0.6s ease;
}

/* ==========================================================================
   Production Section
   ========================================================================== */

.tb-about-production {
    padding: 5rem 2rem;
    background: #fff;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.tb-about-production__pretitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--tb-text-color, #555);
    margin: 0 0 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tb-about-production__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-heading-color, #1a1a1a);
    margin: 0 0 1.5rem;
}

.tb-about-production__text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5em;
    color: var(--tb-text-color, #555);
    margin: 0;
}

/* ==========================================================================
   Responsive - New Sections
   ========================================================================== */

@media (max-width: 991px) {
    /* Keep same font sizes as block section (2.25rem titles, 1.5rem text) */

    .tb-about-legacy__main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .tb-about-legacy__content {
        padding-right: 0;
    }

    .tb-about-legacy__portrait {
        justify-content: center;
        order: -1;
    }

    .tb-about-legacy__portrait img {
        width: 200px;
        height: 250px;
    }

    .tb-about-legacy__quote {
        padding-left: 60px;
    }

    .tb-about-legacy__quote::before {
        font-size: 6rem;
    }

    .tb-about-heraldry__content {
        flex-direction: column;
        text-align: center;
    }

    .tb-about-heraldry__grapes img {
        width: 200px;
        height: auto;
    }

    .tb-about-heraldry__text-wrapper {
        max-width: 100%;
    }

    .tb-about-heraldry__coat-of-arms {
        position: static;
        transform: none;
        width: 200px;
        margin: 2rem auto 0;
        display: block;
    }

    .tb-about-heraldry__text {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .tb-about-intro-section {
        padding: 3rem 1.5rem;
    }

    /* Match block section font sizes: 2.25rem titles, 1.5rem text */
    .tb-about-intro-section__tagline {
        font-size: 2.25rem;
    }

    .tb-about-intro-section__text {
        font-size: 1.5rem;
    }

    .tb-about-legacy {
        padding: 4rem 1.5rem;
    }

    .tb-about-legacy__title {
        font-size: 2.25rem;
    }

    .tb-about-legacy__text {
        font-size: 1.5rem;
    }

    .tb-about-legacy__quote {
        padding-left: 0;
    }

    .tb-about-legacy__quote::before {
        display: none;
    }

    .tb-about-legacy__quote blockquote p {
        font-size: 2rem;
    }

    .tb-about-legacy__quote cite {
        font-size: 1.5rem;
    }

    .tb-about-split__title {
        font-size: 2.25rem;
    }

    .tb-about-split__text {
        font-size: 1.5rem;
    }

    .tb-about-heraldry {
        padding: 4rem 1.5rem;
    }

    .tb-about-heraldry__grapes img {
        width: 150px;
        height: auto;
    }

    .tb-about-heraldry__text {
        font-size: 1.5rem;
    }

    .tb-about-heraldry__coat-of-arms {
        width: 150px;
    }

    .tb-about-production {
        padding: 3rem 1.5rem;
    }

    .tb-about-production__title {
        font-size: 2.25rem;
    }

    .tb-about-production__text {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   Image Slider (Flickity)
   ========================================================================== */

.tb-about-slider {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 4rem 0;
    background: #f5f5f5;
}

.tb-about-slider__carousel {
    max-width: 1400px;
    margin: 0 auto;
}

.tb-about-slider__item {
    width: 70%;
    max-width: 740px;
    margin: 0 1rem;
    position: relative;
}

.tb-about-slider__item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.tb-about-slider__caption {
    display: block;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.1rem;
    color: var(--tb-heading-color, #1a1a1a);
    text-align: center;
    padding: 1rem 0;
}

/* Flickity Overrides */
.tb-about-slider .flickity-prev-next-button {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tb-about-slider .flickity-prev-next-button:hover {
    background: #fff;
}

.tb-about-slider .flickity-prev-next-button .arrow {
    fill: var(--tb-heading-color, #1a1a1a);
}

.tb-about-slider .flickity-prev-next-button.previous {
    left: 20px;
}

.tb-about-slider .flickity-prev-next-button.next {
    right: 20px;
}

.tb-about-slider .flickity-page-dots {
    bottom: -30px;
}

.tb-about-slider .flickity-page-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
}

.tb-about-slider .flickity-page-dots .dot.is-selected {
    background: var(--tb-accent-color, #dda759);
}

@media (max-width: 991px) {
    .tb-about-slider__item {
        width: 80%;
    }

    .tb-about-slider .flickity-prev-next-button {
        width: 36px;
        height: 36px;
    }

    .tb-about-slider .flickity-prev-next-button.previous {
        left: 10px;
    }

    .tb-about-slider .flickity-prev-next-button.next {
        right: 10px;
    }
}

@media (max-width: 575px) {
    .tb-about-slider {
        padding: 3rem 0;
    }

    .tb-about-slider__item {
        width: 85%;
        margin: 0 0.5rem;
    }

    .tb-about-slider__caption {
        font-size: 1rem;
    }
}
