/**
 * Front Page Styles
 * Tenuta Bally Theme - Homepage
 */

/* ==========================================================================
   Front Page Layout
   ========================================================================== */

/* Override Storefront container constraints */
.tb-front-page {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
}

/* Remove Storefront header margin on home page */
.home.page:not(.page-template-template-homepage) .site-header {
    margin-bottom: 0;
}

/* Remove mobile body padding for fullscreen hero pages */
@media (max-width: 768px) {
    body.tb-fullscreen-hero {
        padding-top: 0;
    }
}

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

/* Hide Breadcrumbs */
.tb-front-page .storefront-breadcrumb {
    display: none;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.tb-btn {
    display: inline-block;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.tb-btn--outline {
    background: #000;
    border: 1px solid #000;
    color: #fff;
}

.tb-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #000;
    color: #fff;
}

.tb-btn--gold {
    background: var(--tb-accent-color, #dda759);
    border: 1px solid var(--tb-accent-color, #dda759);
    color: #fff;
}

.tb-btn--gold:hover {
    background: #c9923f;
    border-color: #c9923f;
    color: #fff;
}

.tb-btn--primary {
    background: var(--tb-accent-color, #dda759);
    color: #fff;
    border: 1px solid var(--tb-accent-color, #dda759);
}

.tb-btn--primary:hover {
    background: #c9923f;
    border-color: #c9923f;
    color: #fff;
}

.tb-btn--text {
    background: transparent;
    color: var(--tb-accent-color, #dda759);
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.tb-btn--text:hover {
    border-bottom-color: var(--tb-accent-color, #dda759);
    color: var(--tb-accent-color, #dda759);
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */

.tb-hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tb-hero-slider__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.tb-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.tb-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.tb-hero-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.tb-hero-slide.is-active .tb-hero-slide__bg {
    transform: scale(1.05);
}

.tb-hero-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(201, 109, 0, 0.4), rgba(47, 29, 27, 0.1));
}

.tb-hero-slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 768px;
    padding: 2rem;
}

.tb-hero-slide__headline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 3.125rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.tb-hero-slide__subtitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.875rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin: 0 0 1.25rem;
}

.tb-hero-slide__ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Navigation Dots */
.tb-hero-slider__nav {
    position: absolute;
    bottom: 6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.tb-hero-slider__dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    opacity: 0.5;
}

.tb-hero-slider__dot:hover,
.tb-hero-slider__dot.is-active {
    opacity: 1;
}

/* Scroll Indicator */
.tb-hero-slider__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.tb-hero-slider__scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.tb-hero-slider__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scroll-indicator 2s infinite;
}

@keyframes scroll-indicator {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ==========================================================================
   Feature Cards
   ========================================================================== */

.tb-feature-cards {
    background: #fff;
    padding: 65px 2rem 60px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tb-feature-cards__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1242px;
    margin: 0 auto;
}

.tb-feature-card {
    padding-top: 35px;
}

.tb-feature-card__image {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
}

.tb-feature-card__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.tb-feature-card__image:hover img {
    transform: scale(1.05);
}

.tb-feature-card__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.tb-feature-card__title a {
    color: var(--tb-primary-color, #1a1a1a);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tb-feature-card__title a:hover {
    color: var(--tb-accent-color, #dda759);
}

.tb-feature-card__text {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #000;
    margin: 4px 0 35px;
    padding-bottom: 14px;
}

.tb-feature-card__link {
    display: inline-block;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tb-accent-color, #dda759);
    text-decoration: none;
    border-bottom: 1px solid var(--tb-accent-color, #dda759);
    padding-bottom: 2px;
    transition: opacity 0.3s ease;
}

.tb-feature-card__link:hover {
    opacity: 0.8;
    color: var(--tb-accent-color, #dda759);
}

/* ==========================================================================
   Wine Slider
   ========================================================================== */

.tb-wine-slider {
    background: #000;
    padding: 35px 0 70px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.tb-wine-slider__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Lora', Georgia, serif;
    font-size: 15rem;
    font-weight: 400;
    color: #181818;
    white-space: nowrap;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
    line-height: 1;
}

.tb-wine-slider__track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    z-index: 1;
}

.tb-wine-slider__track::-webkit-scrollbar {
    display: none;
}

.tb-wine-slide {
    flex: 0 0 33.333%;
    min-width: 400px;
    scroll-snap-align: center;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 70px 20px 0;
}

.tb-wine-slide__tilt {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 50%;
    height: 65%;
    background: #1a1a1a;
    z-index: 0;
}

.tb-wine-slide__image {
    position: relative;
    z-index: 2;
    width: 45%;
    max-width: 200px;
}

.tb-wine-slide__image img {
    width: 100%;
    height: auto;
    display: block;
}

.tb-wine-slide__caption {
    position: relative;
    z-index: 2;
    flex: 1;
    padding-left: 20px;
    padding-top: 80px;
}

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

.tb-wine-slide__type {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.8;
    margin: 14px 0;
}

.tb-wine-slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.tb-wine-slider__prev,
.tb-wine-slider__next {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.tb-wine-slider__prev:hover,
.tb-wine-slider__next:hover {
    opacity: 1;
}

.tb-wine-slider__dots {
    display: flex;
    gap: 10px;
}

.tb-wine-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tb-wine-slider__dot.is-active,
.tb-wine-slider__dot:hover {
    opacity: 1;
    background: #fff;
}

/* ==========================================================================
   About Section
   ========================================================================== */

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

.tb-home-about__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8e0d5 100%);
    z-index: 0;
}

.tb-home-about__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1242px;
    margin: 0 auto;
    padding: 0 15px;
}

.tb-home-about__left {
    padding: 200px 35px 35px 15px;
}

.tb-home-about__right {
    padding: 200px 15px 200px 35px;
}

.tb-home-about__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0 0 0.5rem;
}

.tb-home-about__subtitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0 0 15px;
    padding-left: 60px;
    position: relative;
}

.tb-home-about__subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: var(--tb-accent-color, #dda759);
}

.tb-home-about__subtitle em {
    font-style: italic;
}

.tb-home-about__illustration {
    margin-top: 35px;
}

.tb-home-about__illustration img {
    width: 100%;
    max-width: 591px;
    height: auto;
}

.tb-home-about__highlight {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin: 0 0 30px;
    padding: 0;
    border: none;
    font-style: normal;
}

.tb-home-about__highlight em {
    font-style: italic;
}

.tb-home-about__text {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.875rem;
    line-height: 1.8;
    color: #000;
    margin: 0 0 35px;
}

.tb-home-about__text p {
    margin: 0;
    padding: 14px 0;
}

.tb-home-about__text p:first-child {
    padding-top: 0;
}

.tb-home-about__text em {
    font-style: italic;
}

.tb-btn--dark {
    display: inline-block;
    background: #000;
    color: #fff;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 40px 9px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tb-btn--dark:hover {
    background: var(--tb-accent-color, #dda759);
    color: #fff;
}

/* ==========================================================================
   Terroir Section
   ========================================================================== */

.tb-terroir {
    position: relative;
    background: #f8f6f3;
    padding: 50px 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tb-terroir__header {
    text-align: center;
    max-width: 970px;
    margin: 0 auto;
    padding: 0 120px;
}

.tb-terroir__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0 0 10px;
}

.tb-terroir__subtitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    margin: 10px 0 35px;
}

.tb-terroir__masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1000px;
    margin: 50px auto 0;
    padding: 0 120px;
}

.tb-terroir__column {
    padding: 0 15px;
}

.tb-terroir__column--left,
.tb-terroir__column--right {
    padding-top: 80px;
}

.tb-terroir__item {
    text-align: center;
    margin-bottom: 35px;
}

.tb-terroir__item-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0 0 15px;
}

.tb-terroir__divider {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--tb-accent-color, #dda759);
    margin: 0 auto 20px;
}

.tb-terroir__item img {
    width: 100%;
    height: auto;
    display: block;
}

.tb-terroir__img--tall {
    /* Taller images in center and right columns */
}

.tb-terroir__footer {
    text-align: center;
    padding: 50px 0 0;
}

.tb-terroir__heraldry {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    display: block;
}

.tb-terroir__cta-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0 0 10px;
}

.tb-terroir__cta-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin: 0;
}

.tb-terroir__cta-text em {
    font-style: italic;
}

/* ==========================================================================
   Visit CTA Section
   ========================================================================== */

.tb-visit-cta {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
}

.tb-visit-cta__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tb-visit-cta__video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
}

.tb-visit-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.tb-visit-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

.tb-visit-cta__content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 35px 15px;
    max-width: 621px;
    margin-left: calc((100% - 1242px) / 2 + 15px);
}

.tb-visit-cta__label {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
}

.tb-visit-cta__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 5rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    margin: 0;
}

.tb-visit-cta__text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 20px;
}

.tb-visit-cta__buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tb-btn--white-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 40px 7px;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.tb-btn--white-outline:hover {
    background: #fff;
    color: #000;
}

/* ==========================================================================
   News Section
   ========================================================================== */

.tb-home-news {
    background: #fff;
    padding: 5rem 2rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.tb-home-news__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.tb-home-news__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--tb-primary-color, #1a1a1a);
    margin: 0 0 0.5rem;
}

.tb-home-news__subtitle {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.tb-home-news__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.tb-news-card {
    background: #f8f6f3;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tb-news-card:hover {
    transform: translateY(-5px);
}

.tb-news-card__image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.tb-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tb-news-card:hover .tb-news-card__image img {
    transform: scale(1.05);
}

.tb-news-card__title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    padding: 1.25rem 1.25rem 0.5rem;
}

.tb-news-card__title a {
    color: var(--tb-primary-color, #1a1a1a);
    text-decoration: none;
}

.tb-news-card__title a:hover {
    color: var(--tb-accent-color, #dda759);
}

.tb-news-card__date {
    display: block;
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 0.85rem;
    color: #888;
    padding: 0 1.25rem 1.25rem;
}

.tb-home-news__cta {
    text-align: center;
}

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */

@media (max-width: 991px) {
    .tb-hero-slide__headline {
        font-size: 2.25rem;
    }

    .tb-feature-cards {
        padding: 40px 1.5rem;
    }

    .tb-feature-cards__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .tb-feature-card {
        padding-top: 20px;
    }

    .tb-wine-slider__bg-text {
        font-size: 8rem;
    }

    .tb-wine-slide {
        flex: 0 0 50%;
        min-width: 350px;
    }

    .tb-home-about__grid {
        grid-template-columns: 1fr;
    }

    .tb-home-about__left {
        padding: 80px 20px 40px;
    }

    .tb-home-about__right {
        padding: 40px 20px 80px;
    }

    .tb-home-about__illustration {
        max-width: 400px;
        margin: 35px auto 0;
    }

    .tb-terroir__header {
        padding: 0 20px;
    }

    .tb-terroir__masonry {
        padding: 0 20px;
    }

    .tb-terroir__column--left,
    .tb-terroir__column--right {
        padding-top: 40px;
    }

    .tb-home-news__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */

@media (max-width: 767px) {
    .tb-hero-slide__headline {
        font-size: 1.75rem;
    }

    .tb-hero-slide__welcome {
        font-size: 0.85rem;
    }

    .tb-hero-slider__nav {
        bottom: 5rem;
    }

    .tb-feature-cards {
        padding: 30px 1rem;
    }

    .tb-feature-cards__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .tb-feature-card {
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eee;
    }

    .tb-feature-card:last-child {
        border-bottom: none;
    }

    .tb-feature-card__text {
        margin-bottom: 20px;
    }

    .tb-wine-slider {
        padding: 25px 0 50px;
    }

    .tb-wine-slider__bg-text {
        font-size: 4rem;
    }

    .tb-wine-slide {
        flex: 0 0 100%;
        min-width: 300px;
        padding: 50px 15px 0;
    }

    .tb-wine-slide__name {
        font-size: 1.75rem;
    }

    .tb-wine-slide__tilt {
        top: 50px;
        left: 15px;
    }

    .tb-terroir__title,
    .tb-visit-cta__title,
    .tb-home-news__title {
        font-size: 2rem;
    }

    .tb-home-about__left {
        padding: 50px 1rem 30px;
    }

    .tb-home-about__right {
        padding: 30px 1rem 50px;
    }

    .tb-home-about__title {
        font-size: 1.75rem;
    }

    .tb-home-about__subtitle {
        font-size: 1.25rem;
        padding-left: 45px;
    }

    .tb-home-about__subtitle::before {
        width: 35px;
    }

    .tb-home-about__highlight {
        font-size: 1.25rem;
    }

    .tb-home-about__illustration {
        max-width: 300px;
    }

    .tb-terroir {
        padding: 3rem 1rem;
    }

    .tb-terroir__masonry {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .tb-terroir__column--left,
    .tb-terroir__column--right {
        padding-top: 0;
    }

    .tb-terroir__subtitle {
        font-size: 1.15rem;
    }

    .tb-terroir__item-title {
        font-size: 1.25rem;
    }

    .tb-terroir__cta-title {
        font-size: 1.75rem;
    }

    .tb-terroir__cta-text {
        font-size: 1.15rem;
    }

    .tb-terroir__heraldry {
        width: 150px;
        height: 150px;
    }

    .tb-visit-cta {
        min-height: 70vh;
    }

    .tb-visit-cta__video {
        display: none;
    }

    .tb-visit-cta__content {
        margin-left: 1rem;
        padding: 2rem 1rem;
    }

    .tb-visit-cta__title {
        font-size: 2.5rem;
    }

    .tb-visit-cta__text {
        font-size: 1.15rem;
    }

    .tb-home-news {
        padding: 3rem 1rem;
    }

    .tb-home-news__grid {
        grid-template-columns: 1fr;
    }
}
