/* ==========================================================================
   1. HEADER & GLOBAL COMPONENTS
   ========================================================================== */

/* Target the H2 directly since the class is on the tag itself */
h2.upcoming-shows {
    text-align: center !important;
    display: block !important;
    margin-top: 0px !important;       /* Pulls it down from the photo/buttons block above */
    margin-bottom: 40px !important;    /* Pushes the dark card section down below it */
}

/* Neutralize the default margins on Drupal's body field wrapper around the H2 */
.field--name-body.field--type-text-with-summary {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   2. TYPOGRAPHY & GLOBAL FONT OVERRIDES
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

ul.menu-main-menu a,
.menu-main-menu a,
ul.menu a {
  font-family: "Montserrat", sans-serif !important;
}

/* ==========================================================================
   3. GLOBAL BRANDED BUTTON OVERRIDES (Safely Scoped to Content Areas)
   ========================================================================== */

/* 1. Global Primary Buttons (Targeting explicit classes, ignoring bare system buttons) */
a.button, 
.block-content a.button,
.block-content button:not([class*="menu"]), 
input[type="submit"].button {
    display: inline-block !important;
    background-color: #20409A !important; /* Primary Brand Blue */
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    text-decoration: none !important;
    padding: 12px 32px !important;
    border-radius: 50px !important; /* Pill shape */
    border: 2px solid #20409A !important;
    transition: all 0.3s ease !important;
}

/* Primary Button Hover State */
a.button:hover, 
.block-content a.button:hover,
.block-content button:not([class*="menu"]):hover, 
input[type="submit"].button:hover {
    background-color: #1D3C5E !important; /* Dark Navy */
    border-color: #1D3C5E !important;
    color: #ffffff !important;
}

/* 2. Global Secondary Buttons */
a.button.secondary,
.block-content a.button.secondary,
input[type="submit"].button.secondary {
    background-color: #ffffff !important;
    color: #20409A !important;
    border: 2px solid #ffffff !important;

    /* Match the custom CTA buttons */
    transition: background-color 0.2s ease,
                transform 0.2s ease,
                box-shadow 0.2s ease !important;

    box-shadow: 0 4px 10px rgba(32, 64, 154, 0.2) !important;
}

/* Secondary Button Hover State */
a.button.secondary:hover,
.block-content a.button.secondary:hover,
input[type="submit"].button.secondary:hover {
    background-color: #CFDFFE !important;
    color: #20409A !important;
    border-color: #CFDFFE !important;

    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 64, 154, 0.35) !important;
}

/* ==========================================================================
   4. EQUAL HEIGHT SPONSOR CARDS LAYOUT GRID
   ========================================================================== */

/* 1. Force the columns row wrapper to align child heights evenly */
.layout-threecol-section {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important; /* Forces all columns to match the tallest one */
}

/* 2. Make sure the individual columns take up the full available vertical space */
.layout-threecol-section > .layout__region {
    display: flex !important;
    flex-direction: column !important;
}

/* 3. Force the card white containers inside the columns to stretch 100% down */
.layout-threecol-section .card.white {
    flex: 1 1 auto !important;
    height: 100% !important;
    margin-top: 0 !important; /* Resets individual offsets so they line up */
}

/* ==========================================================================
   5. UPCOMING SHOW EVENT CARDS
   ========================================================================== */

.event-card {
    background-color: #1D3C5E !important;
    color: #FFFFFF !important;
    border-radius: 14px !important;
    padding: 40px !important;
    text-align: center !important;
    box-shadow: 0 0 10px rgba(0,0,0,.12), 0 6px 12px rgba(0,0,0,.10), 0 16px 32px rgba(0,0,0,.12) !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    margin-bottom: 0px !important;
}

/* Card Title */
.event-card h3 {
    color: #FFFFFF !important;
    font-size: 24px !important;
    font-weight: 700;
    margin-bottom: 20px !important;
}

/* Uniform Text Elements */
.event-card .event-details-text {
    font-size: 16px !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: #FFFFFF !important;
    opacity: 0.95 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
}

/* Target the wrapper divs directly */
.event-card .event-location-title,
.event-card .event-location-address {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
    padding: 0px !important;
    line-height: 1.2 !important;
}

/* Add a precise tight gap between the title line and the address line */
.event-card .event-location-title {
    margin-bottom: 2px !important;
}

/* Add breathing room below the street address before the admission section */
.event-card .event-location-address {
    margin-bottom: 25px !important;
}

/* Force Drupal's internal field output markup to sit inline within our wrappers */
.event-card .event-location-title *,
.event-card .event-location-address * {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Admission Section */
.event-card .event-admission {
    font-size: 14px !important;
    opacity: 0.85;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    line-height: 1.6;

}

/* ==========================================================================
   6. MEDIA & TEXT SPLIT COMPONENTS
   ========================================================================== */

/* Turn parent section into a 2-column grid; stretch children to equal height */
.custom-media-text-section {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    align-items: stretch !important; /* Forces image column & text column to equal height */
    margin-top: 60px !important;      /* Adds clean separation from the cards above */
    padding-top: 60px !important;
    margin: 48px 0;
    width: 100%;
}

/* Force all inner Drupal wrapper divs in media-column to span 100% height */
.custom-media-text-section .media-column,
.custom-media-text-section .media-column .field,
.custom-media-text-section .media-column .field__item,
.custom-media-text-section .media-column div {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.custom-media-text-section .text-column {
    grid-column: 2 / 3 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* Vertically centers text inside its column */
    text-align: left !important;
}

/* Ensure image fills that full height without collapsing */
.custom-media-text-section .media-column img {
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
}

/* Title styling */
.custom-media-text-section h2,
.custom-media-text-section .block-title,
.custom-media-text-section h2 strong {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    /* text-transform: uppercase !important; */
    margin-bottom: 20px !important;
    margin-top: 0 !important;
    color: #20409a !important;
    text-align: left !important;
    width: 100% !important;
    letter-spacing: -0.5px;
    line-height: 1.2 !important;
}

/* Body Copy Paragraph Tuning */
.media-text-body p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #4A5568;
    margin-bottom: 24px;
}

/* Center the button container and all Drupal field wrappers inside it */
.media-text-action,
.media-text-action .field,
.media-text-action .field__item {
    margin-top: 24px !important;
    display: flex !important;
    justify-content: center !important; /* Centers content horizontally */
    align-items: center !important;
    width: 100% !important;
}

/* Ensure link stays block-level centered */
.custom-media-text-section .media-text-action a {
    display: inline-block !important;
    margin: 0 auto !important; /* Secondary horizontal centering fallback */
    white-space: nowrap !important;
    width: auto !important;
    text-align: center !important;
    background-color: #20409a !important;
    color: #ffffff !important;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(32, 64, 154, 0.2);
}

.custom-media-text-section .media-text-action a:hover {
    background-color: #13273E !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 64, 154, 0.35);
}

/* Clean up field helpers */
.media-text-column .field,
.media-text-column .field__item {
    display: block;
    width: 100%;
}

/* Flip the column assignments for reversed sections */
.custom-media-text-section.section-reversed .text-column {
    grid-column: 1 / 2 !important;
}

.custom-media-text-section.section-reversed .media-column {
    grid-column: 2 / 3 !important;
}

/* Responsive Mobile view */
@media (max-width: 768px) {
    .custom-media-text-section {
        display: flex !important;
        flex-direction: column !important;
    }

    .custom-media-text-section .media-column {
        min-height: 320px !important;
        max-height: 450px !important;
    }

    .custom-media-text-section.section-reversed .media-column {
        order: 2 !important;
    }
}

/* ==========================================================================
   7. WHAT TO EXPECT IMAGE GRID 
   ========================================================================== */

.expect-section {
    padding: 60px 20px !important; /* Unified Rhythm Spacing */
    max-width: 1200px;
    margin: 0 auto;
}

.expect-section h2 {
    text-align: center !important;
    margin-bottom: 50px !important;
    font-size: 1.75rem !important; /* Sized to match customized headings */
    font-weight: 700 !important;
    color: #20409A !important;    /* Branding Primary Blue */
    /* text-transform: uppercase !important; */
}

/* Two-column grid system */
.image-tile-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
}

/* Base Card Styles */
.tile-card {
    position: relative !important;
    height: 320px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 30px !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
}

/* Absolute Background Layers */
.tile-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1 !important;
}

/* Standardized dark linear gradient overlay for accessible text contrast */
.tile-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%) !important;
    z-index: 2 !important;
}

/* Elevated Foreground Text Wrapper */
.tile-content {
    position: relative !important;
    z-index: 3 !important;
    text-align: left !important;
}

.tile-content h3 {
    color: #FFFFFF !important;
    font-size: 22px !important;
    margin-bottom: 8px !important;
    font-weight: 700 !important;
}

.tile-content p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
}

/* Inline links embedded inside the cards */
.tile-link {
    color: #CFDFFE !important; /* High contrast Light Blue accent */
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    display: inline-block !important;
}

.tile-link:hover {
    text-decoration: underline !important;
}

/* --------------------------------------------------------------------------
   Button Styles (Matched to Section 13)
   -------------------------------------------------------------------------- */

/* Secondary Buttons (White background / Blue text -> Blue background on hover) */
.expect-section .tile-content a.button.secondary {
    background-color: #ffffff !important;
    color: #20409A !important;
    border: 2px solid #ffffff !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;
}

.expect-section .tile-content a.button.secondary:hover {
    background-color: #20409A !important;
    color: #ffffff !important;
    border-color: #20409A !important;
    text-shadow: none !important;
}

/* Primary Buttons (Blue background / White text -> Dark Navy on hover) */
.expect-section .tile-content a.button:not(.secondary) {
    background-color: #20409A !important;
    color: #ffffff !important;
    border: 2px solid #20409A !important;
    text-shadow: none !important;
    transition: all 0.3s ease !important;
}

.expect-section .tile-content a.button:not(.secondary):hover {
    background-color: #1D3C5E !important;
    color: #ffffff !important;
    border-color: #1D3C5E !important;
    text-shadow: none !important;
}

/* Responsive Mobile Breakpoint Override */
@media (max-width: 768px) {
    .image-tile-grid {
        grid-template-columns: 1fr !important; /* Stack tiles vertically on mobile devices */
        gap: 20px !important;
    }
    
    .tile-card {
        height: auto !important;
        min-height: 280px !important;
        padding: 20px !important;
    }
}

/* ==========================================================================
   8. UNIFIED CALL-TO-ACTION CARDS
   ========================================================================== */

/* Foundational Layout Structure */
.custom-cta-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 40px 24px !important;
    margin: 32px auto !important;
    max-width: 1000px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Base Typography: Standard View */
.custom-cta-card h2 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #20409a !important;            /* Unified branding blue */
    margin-bottom: 24px !important;
    margin-top: 0 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.5px;
}

.custom-cta-card p {
    font-size: 1.15rem !important;
    line-height: 1.65 !important;
    color: #4A5568 !important;            /* Soft dark charcoal text */
    margin-bottom: 32px !important;
    max-width: 680px;
}

.custom-cta-card .cta-action {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

/* Base Button Style: Blue Button / White Text */
.custom-cta-card .cta-action a {
    display: inline-block !important;
    white-space: nowrap !important;
    background-color: #20409a !important;
    color: #ffffff !important;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(32, 64, 154, 0.2);
}

.custom-cta-card .cta-action a:hover {
    background-color: #13273E !important; /* Darker slate hover shift */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(32, 64, 154, 0.35);
}

/* Inverted Variant: Deep Blue Card Customizations */
.custom-cta-card.card-inverted {
    background-color: #20409a !important; /* Unified branding blue fills the card */
    border-radius: 16px;                  /* Rounded corners matching image themes */
    max-width: 100% !important;           /* Spans full content width like a true container */
    padding: 48px 40px !important;        /* Extra room inside the block container */
}

.card-inverted h3,
.card-inverted h3 strong {
  color: #ffffff !important;
  padding: 10px 10px !important;  
}

/* Color flips for the dark background text */
.custom-cta-card.card-inverted h2 {
    color: #ffffff !important;
}

.custom-cta-card.card-inverted p {
    color: rgba(255, 255, 255, 0.9) !important; /* Slightly softened white for readability */
    max-width: 740px;
}

/* Inverted Button Style: White Button / Blue Text */
.custom-cta-card.card-inverted .cta-action a {
    background-color: #ffffff !important;
    color: #20409a !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-cta-card.card-inverted .cta-action a:hover {
    background-color: #f7fafc !important; /* Off-white hover hue */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive adjust for narrow screens */
@media (max-width: 768px) {
    .custom-cta-card.card-inverted {
        padding: 48px 24px !important;
    }
    .custom-cta-card h2 {
        font-size: 1.85rem !important;
    }
}

/* Supporting Our Mission CTA */
.supporting-mission-cta {
    padding: 32px 40px !important;
    margin-top: 64px !important;
    margin-bottom: 64px !important;
    max-width: 100% !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.24) !important;

}

.supporting-mission-cta h3 {
    margin-top: 0 !important;
    margin-bottom: 24px !important;
}

@media (max-width: 768px) {
    .supporting-mission-cta {
        padding: 36px 24px !important;
        margin-top: 94px !important;
        margin-bottom: 64px !important;
    }

    .supporting-mission-cta h3 {
        margin-bottom: 24px !important;
    }
}

/* Supporting Mission CTA - Desktop horizontal layout */
@media (min-width: 769px) {
    .custom-cta-card.card-inverted.supporting-mission-cta {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: left !important;
        padding: 32px 80px !important;
    }

    .supporting-mission-cta h3 {
        margin: 0 !important;
        padding: 0 !important;
    }

    .supporting-mission-cta .cta-action {
        width: auto !important;
        flex-shrink: 0;
        margin-left: 40px;
    }
}

/* ==========================================================================
 SPONSOR CTA CARD
========================================================================== */

.call-to-action.theme {
    border-radius: 16px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
    
    margin-top: 96px !important;
    margin-bottom: 64px !important;
}

/* Sponsor CTA button — keep white at all times */
.call-to-action.theme a.button.secondary {
    background-color: #ffffff !important;
    color: #20409a !important;
    border-color: #ffffff !important;

    transition: transform 0.2s ease,
                box-shadow 0.2s ease !important;
}

/* Sponsor CTA hover — lift only, no color change */
.call-to-action.theme a.button.secondary:hover {
    background-color: #ffffff !important;
    color: #20409a !important;
    border-color: #ffffff !important;

    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

@media (min-width: 769px) {
    .call-to-action.theme {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

/* Sponsor intro text — wider on desktop only */
@media (min-width: 769px) {
    .section-small .width70 {
        width: 100% !important;
        max-width: 1100px;
    }
}

/* Sponsors Page - Intro Section Spacing */
.sponsors-intro {
    padding-top: 48px !important;
    padding-bottom: 56px !important;
}

@media (max-width: 768px) {
    .sponsors-intro {
        padding-top: 40px !important;
        padding-bottom: 48px !important;
    }
}

/* ==========================================================================
   9. SPONSORS GRID SECTION
   ========================================================================== */

.sponsors-section {
    padding: 45px 24px !important; /* Reduced vertical footprint */
    text-align: center !important;
}

.sponsors-section .container {
    max-width: 900px; /* Snugger layout width */
    margin: 0 auto;
}

/* Downsized Typography */
.sponsors-section h2 {
    font-size: 2.0rem !important; /* Slightly smaller header */
    font-weight: 700 !important;
    color: #20409a !important; 
    margin-bottom: 20px !important;
    margin-top: 0 !important;
}

.sponsors-section p {
    font-size: 1.05rem !important; /* Shifted down from 1.15rem */
    line-height: 1.6 !important;
    color: #4A5568 !important;
    max-width: 760px;
    margin: 0 auto 40px auto !important; /* Reduced bottom margin */
}

/* Reduced Spacing Grid */
.sponsors-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 50px !important;  /* Reduced from 80px to bring columns closer */
    row-gap: 32px !important;     /* Reduced from 54px to tighten vertical stack */
    justify-content: center !important;
    align-items: center !important;
}

/* Scaled Down Sponsor Names */
.sponsor-item {
    font-size: 1.15rem !important; /* Shifted down from 1.35rem */
    font-weight: 700 !important;   
    color: #20409a !important;    
    line-height: 1.25 !important;
    padding: 0 5px !important;
}

/* Responsive collapse for tablets and mobile */
@media (max-width: 768px) {

    .sponsors-section {
        width: calc(100vw - 50px) !important;
        max-width: none !important;

        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding: 40px 0 64px !important;
        box-sizing: border-box !important;
    }

    .sponsors-section .container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .sponsors-section h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-bottom: 24px !important;
        text-align: left !important;
    }

    .sponsors-section p {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 36px !important;

        font-size: 16px !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }

    .sponsors-grid {
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 1fr !important;
        row-gap: 20px !important;
    }

    .sponsor-item {
        font-size: 1.05rem !important;
        line-height: 1.3 !important;
        padding: 0 !important;
        text-align: center !important;
    }
}

/* ==========================================================================
   10. GLOBAL SITE FOOTER (CONTAINER & NAVIGATION)
   ========================================================================== */

/* Target the main footer wrapper to overwrite the grid pattern */
#footer, 
.footer,
.footer-wrapper {
    background-image: none !important;
    background: #20409a !important; /* Forces the entire edge-to-edge area to be solid blue */
}

/* Apply primary blue background directly to layout blocks */
.region-footer-second,
footer,
#footer-block { 
    background-color: #20409a !important;
    color: #ffffff;
}

/* Style the header text (Quick Links) */
.footer-col h4 {
    color: #ffffff !important;
    text-transform: uppercase; /* Matches the all-caps look in the image */
    letter-spacing: 1px;       /* Adds a little breathing room between letters */
    margin-bottom: 20px;
}

/* Remove default theme divider lines and bullets */
ul.footer-nav li {
    border-bottom: none !important;
    border-top: none !important;
    list-style: none !important;
    padding: 8px 0;
    margin: 0;
}

/* Force all navigation links to be pure white */
.footer-nav-link {
    color: #ffffff !important;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
}

/* Add a clean hover effect (slight fade instead of color change) */
.footer-nav-link:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* Footer block layout */
#footer .footer-blocks {
    display: block !important;
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 24px !important;
}

#footer .footer-block {
    flex: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* ==========================================================================
   11. FOOTER BRAND LOGO OVERRIDE (#block-tarapro...)
   ========================================================================== */

/* Reset the block to let it flow naturally rather than forcing a 100% height flex container */
#block-tarapro-custom-logowrapper {
  display: block;
  height: auto;
}

#block-tarapro-custom-logowrapper .block-content {
  display: block;
  width: 100%;
}

/* Strip out internal paragraph margins */
#block-tarapro-custom-logowrapper p,
#block-tarapro-custom-logowrapper .field {
  margin: 0 !important;   
  padding: 0 !important;
}

/* Handle positioning and spacing entirely on the image */
#block-tarapro-custom-logowrapper img {
  width: 150px;
  height: auto;
  max-width: 100%;
  display: block;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 24px;
}

/* ==========================================================================
12. CUSTOM FOOTER & SOCIAL ICONS
========================================================================== */

/* --------------------------------------------------
   BASE SOCIAL STYLES
   -------------------------------------------------- */

.footer-column-social .social-icons,
.footer-bottom-middle-right .social-icons {
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-column-social {
    text-align: left;
    width: 100%;
}

/* Social icon size — all pages */
#footer .social-icons a {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.25rem !important;
}

/* Follow Us heading — Home */
#footer .footer-column-social::before {
    content: "FOLLOW US ON SOCIAL";
    display: block;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

/* Follow Us heading — Inner Pages */
#footer .footer-bottom-middle-right::before {
    content: "FOLLOW US ON SOCIAL";
    display: block;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
}


/* ==========================================================================
   MOBILE FOOTER
   ========================================================================== */

@media (max-width: 768px) {

    #footer .footer-blocks {
        padding: 28px 24px !important;
    }

    #block-tarapro-custom-logowrapper img {
        width: 90px;
        margin-bottom: 24px;
    }

    /* Home social section */
    #footer .footer-column-social {
        padding-left: 22px !important;
    }

    #footer .footer-column-social .social-icons {
        margin-top: 24px;
    }

    /* Inner-page bottom section */
    #footer .footer-bottom-middle {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 24px 28px !important;
    }

    /* Inner-page social section */
    #footer .footer-bottom-middle-right {
        order: 1 !important;
        width: 100% !important;
        text-align: left !important;
        padding-left: 22px !important;
        margin-top: 32px !important;
        margin-bottom: 32px !important;
    }

    #footer .footer-bottom-middle-right .social-icons {
        justify-content: flex-start !important;
        padding-left: 0 !important;
        margin: 0 !important;
    }
    
}
/* Remove TaraPro's inconsistent mobile divider */
#footer .footer-bottom-middle {
    border-top: none !important;
}

#footer .footer-blocks {
    border-bottom: none !important;
}

    /* Copyright moves underneath social on inner pages */
    #footer .copyright {
        order: 2 !important;
        width: 100% !important;
        
        border-top: 2px solid rgba(255, 255, 255, 0.65) !important;
        padding-top: 20px !important;
        margin-top: 0 !important;
        text-align: center !important;
}

/* ==========================================================================
   DESKTOP FOOTER LAYOUT
   Quick Links left / Logo + Social right
   ========================================================================== */

@media (min-width: 769px) {

    /* Main two-column grid */
    #footer .footer-blocks {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
        column-gap: 120px !important;
        row-gap: 20px !important;

        max-width: 900px !important;
        margin: 0 auto !important;
        padding: 40px 24px !important;

        align-items: start !important;
    }

    /* Flatten Drupal wrapper blocks */
    #footer .footer-block {
        display: contents !important;
    }

    /* -----------------------------
       LEFT — QUICK LINKS
       ----------------------------- */

    #footer .region-footer-third {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        width: 100% !important;
        text-align: left !important;
        padding-top: 32px !important;
    }

    /* -----------------------------
       RIGHT — LOGO
       ----------------------------- */

    #footer .region-footer-first {
        grid-column: 2 !important;
        grid-row: 1 !important;
        width: 100% !important;
        text-align: left !important;
    }

    #footer #block-tarapro-custom-logowrapper img {
        width: 115px !important;
        margin: 0 0 20px 0 !important;
    }

    /* -----------------------------
       HOME — SOCIAL
       ----------------------------- */

    #footer .footer-column-social {
        grid-column: 2 !important;
        grid-row: 2 !important;
        width: 100% !important;
        text-align: left !important;
        transform: translateY(-30px);
    }

    #footer .footer-column-social::before {
        content: "FOLLOW US ON SOCIAL" !important;
        display: block !important;
        color: #ffffff !important;
        font-size: 1.25rem !important;
        font-weight: 400 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        margin-bottom: 18px !important;
    }

    #footer .footer-column-social .social-icons {
        justify-content: flex-start !important;
        margin: 0 !important;
        padding-left: 0 !important;
    }

    /* -----------------------------
       INNER PAGES — SOCIAL
       ----------------------------- */

    #footer .footer-bottom-middle {
        position: relative !important;
    }

    #footer .footer-bottom-middle-right {
        position: absolute !important;

        right: 24px !important;
        bottom: 110px !important;

        width: calc(50% - 60px) !important;
        text-align: left !important;
    }

    #footer .footer-bottom-middle-right::before {
        content: "FOLLOW US ON SOCIAL" !important;
        display: block !important;
        color: #ffffff !important;
        font-size: 1.25rem !important;
        font-weight: 400 !important;
        letter-spacing: 1px !important;
        text-transform: uppercase !important;
        margin-bottom: 18px !important;
    }

    #footer .footer-bottom-middle-right .social-icons {
        justify-content: flex-start !important;
        margin: 0 !important;
        padding-left: 0 !important;
    }
}

/* ==========================================================================
   HEADER LOGO SIZE
   ========================================================================== */

.site-logo img {
    max-height: 110px !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .site-logo img {
        max-height: 92px !important;
        width: auto !important;
    }
    .site-logo {
        padding-top: 12px !important;
    }
}

/* ==========================================================================
   13. FULL-WIDTH HERO BANNERS
   ========================================================================== */

/* Allow the hero to break outside the standard content container */
.field--name-body,
.field--name-body > .field-item {
    overflow: visible !important;
}

/* Full-width hero wrapper */
.unit.custom-hero-banner {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
    max-width: 100vw !important;
    
    padding-top: 0 !important;
    padding-bottom 0 !important;
}

/* Consistent desktop banner proportions */
.unit.custom-hero-banner .banner {
    background-color: #000000;
    position: relative;
    width: 100%;
    height: clamp(400px, 34vw, 500px);
    min-height: 0 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fill the banner without allowing the source image ratio to change its height */
.unit.custom-hero-banner .banner img {
    position: absolute !important;
    inset: 0 !important;
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: none !important;
    opacity: 0.45 !important;
    transform: scale(1.03) !important;
}

/* Overlay message positioning */
.unit.custom-hero-banner .banner-message {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 85%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

/* H1 / Main Headline Styling */
.unit.custom-hero-banner .banner-message h1,
.unit.custom-hero-banner .banner-message h1 strong {
    font-family: "Montserrat", sans-serif !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sub-text / Paragraph Styling */
.unit.custom-hero-banner .banner-message p,
.unit.custom-hero-banner .banner-message p strong {
    font-family: "Montserrat", sans-serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    margin: 0 auto !important;
    max-width: 850px !important;
    color: #ffffff !important;
    text-shadow: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Button layout container */
.unit.custom-hero-banner .hero-btn-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}

.unit.custom-hero-banner .hero-btn-container .one-three {
    margin-bottom: 0 !important;
}

/* Shared hero-button movement and shadow */
.unit.custom-hero-banner .hero-btn-container a.button {
    box-shadow: 0 4px 10px rgba(32, 64, 154, 0.2) !important;
    transform: translateY(0);
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease !important;
}

/* Secondary Hero Buttons: white with blue text */
.unit.custom-hero-banner .hero-btn-container a.button.secondary {
    background-color: #ffffff !important;
    color: #20409A !important;
    border: 2px solid #ffffff !important;
}

/* Secondary Hero Button Hover */
.unit.custom-hero-banner .hero-btn-container a.button.secondary:hover,
.unit.custom-hero-banner .hero-btn-container a.button.secondary:focus-visible {
    background-color: #20409A !important;
    color: #ffffff !important;
    border-color: #20409A !important;
    box-shadow: 0 6px 16px rgba(32, 64, 154, 0.35) !important;
    transform: translateY(-2px);
}

/* Primary Hero Buttons: blue with white text */
.unit.custom-hero-banner .hero-btn-container a.button:not(.secondary) {
    background-color: #20409A !important;
    color: #ffffff !important;
    border: 2px solid #20409A !important;
}

/* Primary Hero Button Hover */
.unit.custom-hero-banner .hero-btn-container a.button:not(.secondary):hover,
.unit.custom-hero-banner .hero-btn-container a.button:not(.secondary):focus-visible {
    background-color: #1D3C5E !important;
    color: #ffffff !important;
    border-color: #1D3C5E !important;
    box-shadow: 0 6px 16px rgba(32, 64, 154, 0.35) !important;
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   Tablet Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .unit.custom-hero-banner .banner {
        height: 420px;
    }

    .unit.custom-hero-banner .banner-message {
        width: 90%;
    }

    .unit.custom-hero-banner .banner-message h1,
    .unit.custom-hero-banner .banner-message h1 strong {
        font-size: 38px !important;
    }

    .unit.custom-hero-banner .banner-message p,
    .unit.custom-hero-banner .banner-message p strong {
        font-size: 18px !important;
    }
}

/* --------------------------------------------------------------------------
   Mobile Responsive Adjustments
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .unit.custom-hero-banner .banner {
        height: 350px;
        min-height: 0 !important;
    }

    /* Make hero photos easier to see on mobile */
    .unit.custom-hero-banner .banner img {
        opacity: 0.62 !important;
        filter: none !important;
        transform: scale(1.02) !important;
    }

    .unit.custom-hero-banner .banner-message {
        width: calc(100% - 24px) !important;
        max-width: 600px;
    }

    .unit.custom-hero-banner .banner-message h1,
    .unit.custom-hero-banner .banner-message h1 strong {
        font-size: 1.75rem !important;
        line-height: 1.12 !important;
        letter-spacing: -0.02em;
        margin-bottom: 12px !important;
        max-width: 24ch;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .unit.custom-hero-banner .banner-message p,
    .unit.custom-hero-banner .banner-message p strong {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        max-width: 38ch !important;
    }

    .unit.custom-hero-banner .hero-btn-container {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
        width: 100%;
    }

    /* Keep both buttons equal without making them overly wide */
    .unit.custom-hero-banner .hero-btn-container .one-three {
        width: 190px !important;
        max-width: calc(100vw - 64px);
    }

    .unit.custom-hero-banner .hero-btn-container a.button {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        padding: 10px 18px !important;
        font-size: 15px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
}

/* --------------------------------------------------------------------------
   Small Mobile Screens
   -------------------------------------------------------------------------- */
@media (max-width: 420px) {
    .unit.custom-hero-banner .banner {
        height: 340px;
    }

    .unit.custom-hero-banner .banner-message {
        width: calc(100% - 24px) !important;
    }

    .unit.custom-hero-banner .banner-message h1,
    .unit.custom-hero-banner .banner-message h1 strong {
        font-size: 1.65rem !important;
        line-height: 1.12 !important;
        max-width: 20ch;
    }

    .unit.custom-hero-banner .banner-message p,
    .unit.custom-hero-banner .banner-message p strong {
        font-size: 0.78rem !important;
        line-height: 1.38 !important;
        max-width: 44ch !important;
    }

    .unit.custom-hero-banner .hero-btn-container {
        margin-top: 16px;
    }

    .unit.custom-hero-banner .hero-btn-container .one-three {
        width: 190px !important;
        max-width: calc(100vw - 56px);
    }
}

/* ==========================================================================
   14. ADMISSION & TICKETS CARD MATCHING & ALIGNMENT (COMPLETE)
   ========================================================================== */

/* 1. Force Layout Builder columns to be identical equal width (50/50) */
.layout--twocol-section {
    display: flex !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
}

.layout--twocol-section > .layout__region {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 50% !important;
    width: 50% !important;
    max-width: 50% !important;
    box-sizing: border-box !important;
}

/* 2. Strip Drupal container margins, padding, and fixed-width constraints */
.layout--twocol-section .layout__region .block,
.layout--twocol-section .layout__region .block-content,
.layout--twocol-section .block-inline-blockbasic,
.layout--twocol-section .block-inline-blockbasic .field,
.layout--twocol-section .block-inline-blockbasic .field--name-body,
.layout--twocol-section .block-inline-blockbasic .field__item {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 3. Outer card shell styling (Navy background, compact padding, alignment) */
.layout--twocol-section .event-card-inner {
    background-color: #1D3C5E; /* Dark Navy matching left card */
    border-radius: 12px;
    padding: 20px 18px !important; /* Adjust padding to control vertical height */
    color: #ffffff;
    text-align: center;
    box-sizing: border-box !important;
    box-shadow: 0 0 10px rgba(0,0,0,.12), 0 6px 12px rgba(0,0,0,.10), 0 16px 32px rgba(0,0,0,.12) !important;
    
    /* Width Controls: Adjust max-width here if you want to fine-tune width manually */
    width: 100% !important;
    max-width: 94% !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important; /* Pulls content up to shrink excess height */
}

/* 4. Internal typography and element spacing */
.event-card-inner .event-card-title h3 {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    margin: 18px 0 20px 0 !important;
}

.event-card-inner p {
    color: #ffffff !important;
    margin-bottom: 6px !important; /* Tightens paragraph spacing */
}

.event-card-inner .card-divider {
    /* 1. Kill default browser/theme HR styling */
    appearance: none !important;
    -webkit-appearance: none !important;
    border: none !important;
    height: 1px !important;
    padding: 0 !important;
    
    /* 2. Use a subtle background color with low alpha instead of border */
    background-color: rgba(255, 255, 255, 0.2) !important; 
    
    /* 3. Layout & Spacing */
    margin: 16px auto !important;
    width: 88% !important;
}

.event-card-inner .pricing-details p {
    font-size: 14px;
    line-height: 1.5;
    color: #f1f5f9 !important;
    margin-bottom: 11px !important;
}

/* 5. Mobile Stacking (Screens 768px and smaller) */
@media (max-width: 768px) {
    .layout--twocol-section {
        flex-direction: column !important;
        flex-wrap: wrap !important;
    }

    .layout--twocol-section > .layout__region {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .layout--twocol-section > .layout__region--first {
        margin-bottom: 20px !important; /* Spacing between top & bottom card when stacked */
    }
}

/* ==========================================================================
   15. GETTING HERE SECTION (IMAGE + TEXT / MAP LAYOUT)
   ========================================================================== */

/* Main Section Layout Container */
.getting-here-section {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important; /* Keeps map and card height identical */
    gap: 32px !important;
    
    /* Spacing fixes */
    margin-top: 120px !important;    /* Increased space above section */
    margin-bottom: 60px !important; /* Increased space below section */
    
    /* Width & Alignment to match upper cards */
    width: 100% !important;
    max-width: 1120px !important;   /* Aligns outer edges with standard container width */
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Two Column Flex Distribution */
.getting-here-media,
.getting-here-content {
    flex: 1 1 0px !important; /* Forces equal 50/50 column distribution to match top grid */
    min-width: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    margin: 0 !important; /* Strips any theme column offsets */
    padding: 0 !important;
}

/* Reset Drupal internal field/block margins wrapping the map */
.getting-here-media *,
.getting-here-media .field,
.getting-here-media .field__item {
    margin: 0 !important;
    padding: 0 !important;
    height: 100% !important;
}

/* Responsive Map Container & Frame */
.getting-here-media .map-embed-container {
    width: 100% !important;
    height: 350px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.getting-here-media iframe {
    display: block !important;
    width: 100% !important;
    height: 350px !important;
    border: 0 !important;
}

/* Right Column: White Card */
.getting-here-content.card.white {
    background-color: #ffffff !important;
    padding: 32px 28px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    box-sizing: border-box !important;
    height: 350px !important;
    
    /* Flexbox centering for internal card contents */
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}

/* Heading - Branded Primary Blue */
.getting-here-content h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    color: #20409a !important;
    text-align: center !important;
}

/* Sub-text / Paragraph styling */
.getting-here-content .lead-text {
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    margin-bottom: 10px !important;
    text-align: center !important;
}

.getting-here-content p {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    color: #4a5568 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
}

/* Text Links */
.getting-here-content a:not(.button) {
    color: #20409a !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
}

.getting-here-content a:not(.button):hover {
    color: #1d3c5e !important;
}

/* Actions & Button Placement */
.getting-here-actions {
    margin-top: 8px !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

/* ==========================================================================
   16. ACTIVITIES FOR KIDS & FAMILIES (IMAGE TILE GRID)
   ========================================================================== */

.activities-section {
    margin-top: 60px !important;
    margin-bottom: 80px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* Section Header - Matched to 'Upcoming Shows' Header Style */
.activities-section .section-title {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 32.4px !important;
    font-weight: 700 !important;
    line-height: 51.84px !important;
    color: #20409a !important;
    text-align: center !important;
    margin-top: 0 !important;
    margin-bottom: 32px !important;
}

/* 2x2 CSS Grid Container */
.image-tile-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: minmax(550px, auto) !important;
    gap: 32px !important;
    width: 100% !important;
}

/* Individual Card Styling */
.tile-card {
position: relative !important;
    width: 100% !important;
    height: 100% !important; /* Fills grid row height */
    
    /* Clamp the card height between min and max */
    min-height: 500px !important; 
    max-height: 750px !important; /* Cap height so it doesn't get ridiculously long */
    
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.tile-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18) !important;
}

/* Background Image Layer */
.tile-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1 !important;
}

/* Gradient Overlay for Text Readability */
.tile-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    /* Deeper gradient to keep the multi-paragraph copy clear and legible */
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.75) 45%, rgba(15, 23, 42, 0.95) 100%) !important;
    z-index: 2 !important;
}

/* Card Content / Typography */
.tile-content {
    position: relative !important;
    z-index: 3 !important;
    padding: 24px 28px !important;
    color: #ffffff !important;
    overflow-y: auto !important; /* Safeguard so text never overflows out of card */
}

.tile-content h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6) !important;
}

.tile-content p {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
    color: #f1f5f9 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.tile-content p:last-child {
    margin-bottom: 0 !important;
}

/* Responsive Behavior for Small Screens */
@media (max-width: 768px) {
    .image-tile-grid {
        grid-template-columns: 1fr !important;
    }
    
    .tile-card {
        aspect-ratio: auto !important;
        min-height: 420px !important;
    }
}

/* ==========================================================================
   17. EXPLORE THE HOBBY / ALTERNATING LAYOUT
   ========================================================================== */

/* --- SECTION HEADER --- */

/* Reset wrappers/fields inside the header to prevent ghost height */
.explore-hobby-title-wrapper,
.explore-hobby-title p,
.explore-hobby-title div {
  margin: 0 !important;
  padding: 0 !important;
}

/* H2 Title: Matches theme font, weight, color, and controls spacing */
h2.section-title.explore-hobby-title {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 32.4px !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  color: rgb(32, 64, 154) !important;
  text-align: center !important;
  margin: 30px auto 40px auto !important; /* Top: 30px (from cards above), Bottom: 20px (to content below) */
  padding: 0 !important;
}

/* --- OUTER SECTION LAYOUT & SPACING FIX --- */

.custom-media-text-section {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 30px !important;
  
  /* SPACING FIX: Reset padding to 0 so it doesn't double-stack with margins */
  padding: 0 !important;
  margin-top: 50px !important;    /* Standard spacing between alternating rows 1, 2, and 3 */
  margin-bottom: 50px !important;
  width: 100% !important;
}

/* Reduces top gap specifically on Subsection 1 (Clinics) right under the H2 header */
.custom-media-text-section.media-subsection {
  margin-top: 10px !important; /* Header's margin-bottom: 20px handles the gap cleanly */
}

/* --- FLEX COLUMN SIZING --- */

.custom-media-text-section .media-column {
  flex: 0 0 45% !important;
  max-width: 45% !important;
  height: 420px !important;
  overflow: hidden !important;
  border-radius: 12px !important;
}

.custom-media-text-section .text-column {
  flex: 1 1 55% !important;
  max-width: 55% !important;
}

/* Image Containment */
.custom-media-text-section .media-column img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* Subheading Fix */
.custom-media-text-section h3 {
  margin-top: 0 !important;
}

/* --- REVERSED LAYOUT ORDER --- */

.custom-media-text-section.section-reversed .media-column {
  order: 2 !important;
}

.custom-media-text-section.section-reversed .text-column {
  order: 1 !important;
}

/* --- BUTTON ALIGNMENT --- */

.custom-media-text-section .media-text-action {
  margin-top: 24px !important;
  display: flex !important;
  justify-content: center !important;
}

.custom-media-text-section .media-text-action a {
  display: inline-block !important;
  background-color: #20409a !important;
  color: #ffffff !important;
  padding: 12px 32px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

/* --- MOBILE STACK --- */

@media (max-width: 768px) {
  .custom-media-text-section {
    flex-wrap: wrap !important;
  }
  .custom-media-text-section .media-column,
  .custom-media-text-section .text-column {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .custom-media-text-section.section-reversed .media-column {
    order: 1 !important;
  }
  .custom-media-text-section.section-reversed .text-column {
    order: 2 !important;
  }
}

/* ==========================================================================
   MOBILE GLOBAL SPACING NORMALIZATION
   ========================================================================== */

@media (max-width: 768px) {

    /* Standard horizontal page gutter */
    .expect-section,
    .activities-section,
    .getting-here-section,
    .custom-media-text-section,
    .custom-cta-card {
        box-sizing: border-box !important;
        width: calc(100% - 40px) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Standard vertical rhythm between major sections */
    .expect-section,
    .activities-section,
    .sponsors-section,
    .getting-here-section {
        margin-top: 64px !important;
        margin-bottom: 64px !important;
    }

    /* Alternating image/text sections */
    .custom-media-text-section {
        margin-top: 48px !important;
        margin-bottom: 48px !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    /* CTA sections */
    .custom-cta-card {
        margin-top: 64px !important;
        margin-bottom: 64px !important;
        padding: 40px 20px !important;
    }

    /* Section headings */
    .expect-section h2,
    .activities-section .section-title,
    .sponsors-section h2,
    h2.upcoming-shows,
    h2.section-title.explore-hobby-title {
        margin-top: 0 !important;
        margin-bottom: 32px !important;
    }

    /* Keep stacked cards from colliding */
    .layout--twocol-section > .layout__region--first {
        margin-bottom: 32px !important;
    }
}

/* ==========================================================================
   HOME PAGE - WHAT TO EXPECT MOBILE
   Updated to match current site standards
   ========================================================================== */

@media (max-width: 768px) {

    /* Match the 25px mobile gutters used across the refreshed site */
    .expect-section {
    width: calc(100vw - 50px) !important;
    max-width: none !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    /* Remove old 20px horizontal inset */
    padding: 60px 0 !important;

    box-sizing: border-box !important;
}

    /* Stack cards vertically */
 .expect-section .image-tile-grid {
    width: calc(100vw - 50px) !important;
    max-width: none !important;

    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    align-items: start !important;
    gap: 24px !important;

    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;

    box-sizing: border-box !important;
}

    /* Full-width image cards */
    .expect-section .tile-card {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 4 / 5 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .expect-section .tile-bg {
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
    }

    /* Give text more usable width inside the image */
    .expect-section .tile-content {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        max-width: none !important;
        padding: 20px !important;
        box-sizing: border-box !important;
        overflow: visible !important;
        text-align: left !important;
    }

    /* Current mobile card heading standard */
    .expect-section .tile-content h3 {
        font-size: 20px !important;
        line-height: 1.2 !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
    }

    /* Current mobile image-card copy standard */
    .expect-section .tile-content p {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 0 !important;
    }

    /* Mobile card buttons */
    .expect-section .tile-content a.button {
        width: auto !important;
        min-width: 0 !important;
        display: inline-block !important;
        font-size: 16px !important;
        line-height: 1.3 !important;
        padding: 12px 28px !important;
        margin-top: 14px !important;
        border-radius: 999px !important;
    }
}

/* Home - What to Expect softer image overlay */
.expect-section .tile-overlay {
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.25) 35%,
        rgba(15, 23, 42, 0.72) 70%,
        rgba(15, 23, 42, 0.90) 100%
    ) !important;
}

/* ==========================================================================
   ABOUT PAGE - MOBILE WHITE CARD FIX
   ========================================================================== */

@media (max-width: 768px) {

    .card.white {
        width: calc(100% - 40px) !important;
        max-width: 720px !important;
        margin: 32px auto !important;
        min-height: 0 !important;
        padding: 32px 24px !important;
        box-sizing: border-box !important;
    }
    
}

/* ABOUT PAGE - MOBILE TEXT SPACING */
@media (max-width: 768px) {
    .field--name-body.field--type-text-with-summary {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* About Page - Member Clubs Mobile Header Spacing */
@media (max-width: 768px) {
    .view-our-member-clubs .view-header {
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box !important;
    }
}

/* ==========================================================================
   SPONSOR TIER CARDS - MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    /* Wider sponsor cards */
    .card.white.sponsor-tier-card {
        width: calc(100%) !important;
        max-width: none !important;
    }

    /* Sponsor tier headings */
    .card.white.sponsor-tier-card .card-title h4 {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    /* Sponsor names */
    .card.white.sponsor-tier-card .card-content p,
    .card.white.sponsor-tier-card .card-content a {
        font-size: 15px !important;
        line-height: 1.4 !important;
    }
}

/* ==========================================================================
   LEADERSHIP CARDS - MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    .card.white.leadership-card {
        width: 100% !important;
        max-width: none !important;
    }

}

/* ==========================================================================
   SPONSOR CTA - MOBILE TYPOGRAPHY
   ========================================================================== */

@media (max-width: 768px) {

    .call-to-action.theme h2,
    .call-to-action.theme h2 strong {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }
        
    }
    .call-to-action.theme p {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }


/* Sponsor CTA - Mobile spacing */
@media (max-width: 768px) {

    .call-to-action.theme {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
    }

    .call-to-action.theme .one-three {
        margin-top: 28px !important;
    }
}

@media (max-width: 768px) {

    .call-to-action.theme .two-three h2 {
        margin-bottom: 0 !important;
    }

    .call-to-action.theme .two-three p {
        margin-top: 24px !important;
    }
}

@media (max-width: 768px) {

    .call-to-action.theme .two-three {
        text-align: center !important;
        width: 100% !important;
    }

    .call-to-action.theme .two-three h2,
    .call-to-action.theme .two-three p {
        text-align: center !important;
    }

}

/* ==========================================================================
   ABOUT PAGE - SUPPORTING MISSION CTA MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    .custom-cta-card.card-inverted.supporting-mission-cta {
        width: 100% !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

}

@media (max-width: 768px) {

    .supporting-mission-cta h3,
    .supporting-mission-cta h3 strong {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }
  
}

@media (max-width: 768px) {

    .supporting-mission-cta {
        align-items: stretch !important;
        text-align: left !important;
    }

    .supporting-mission-cta h3,
    .supporting-mission-cta h3 strong {
        display: block !important;
        width: 100% !important;
        max-width: none !important;
        text-align: left !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ==========================================================================
   ABOUT PAGE - MOBILE TYPOGRAPHY
   ========================================================================== */

@media (max-width: 768px) {

    /* About page section headings */
    .field--name-body h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    /* About page body copy */
    .field--name-body p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

}

@media (max-width: 768px) {

    .field--name-body h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-top: 48px !important;
        margin-bottom: 20px !important;
    }

    .field--name-body p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* ==========================================================================
   VENDOR PAGE - TYPOGRAPHY & RESPONSIVE POLISH
   ========================================================================== */

/* Desktop major headings */
.vendor-section-heading,
.vendor-section-heading strong {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

/* Desktop subsection headings */
.vendor-subsection-heading,
.vendor-subsection-heading strong {
    font-size: 22px !important;
    line-height: 1.2 !important;
}

/* Desktop Vendor card headings */
.card.white.vendor-info-card .card-title h3,
.card.white.vendor-info-card .card-title h3 strong {
    font-size: 22px !important;
    line-height: 1.2 !important;
}

/* Desktop Vendor card copy */
.card.white.vendor-info-card .card-content p,
.card.white.vendor-info-card .card-content li,
.card.white.vendor-info-card .card-content a {
    font-size: 16px !important;
    line-height: 1.5 !important;
}


/* --------------------------------------------------------------------------
   MOBILE
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {

    /* Major section headings */
    .vendor-section-heading,
    .vendor-section-heading strong {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    /* Smaller section headings */
    .vendor-subsection-heading,
    .vendor-subsection-heading strong {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    /* Wider Vendor cards */
    .card.white.vendor-info-card {
        width: calc(100vw - 40px) !important;
        max-width: none !important;
        margin-left: 50% !important;
        margin-right: 0 !important;
        transform: translateX(-50%) !important;
        box-sizing: border-box !important;
    }

    /* Card headings */
    .card.white.vendor-info-card .card-title h3,
    .card.white.vendor-info-card .card-title h3 strong {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    /* Card copy */
    .card.white.vendor-info-card .card-content p,
    .card.white.vendor-info-card .card-content li,
    .card.white.vendor-info-card .card-content a {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    /* FAQ questions */
    .vendor-faq-items .accordion-title {
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    /* FAQ answers */
    .vendor-faq-items .accordion-content {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* Vendor CTA heading */
    .custom-cta-card.vendor-cta h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
        margin-bottom: 24px !important;
    }

    /* Vendor CTA button */
    .custom-cta-card.vendor-cta .cta-action {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
    }

    .custom-cta-card.vendor-cta .cta-action a {
        width: auto !important;
        min-width: 0 !important;
        margin: 0 auto !important;
        font-size: 16px !important;
        line-height: 1.3 !important;
        padding: 12px 28px !important;
    }
}

/* ==========================================================================
   ABOUT PAGE - INTRO MOBILE WIDTH + HEADING
   ========================================================================== */

@media (max-width: 768px) {

    /* Widen intro section to match the rest of the site */
    .custom-media-text-section.about-intro-section {
        width: calc(100vw - 64px) !important;
        max-width: none !important;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .about-intro-section .text-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Slightly smaller long intro heading */
    .about-intro-heading,
    .about-intro-heading strong {
        font-size: 22px !important;
        line-height: 1.25 !important;
    }
}

/* ==========================================================================
   ACTIVITIES FOR KIDS & FAMILIES - IMAGE OVERLAY
   ========================================================================== */

.activities-section .tile-overlay {
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.05) 0%,
        rgba(15, 23, 42, 0.25) 35%,
        rgba(15, 23, 42, 0.72) 70%,
        rgba(15, 23, 42, 0.90) 100%
    ) !important;
}

/* Individual activity image positioning */

.activities-section .switching-card .tile-bg {
    background-position: center 100% !important;
}

/* ==========================================================================
   PLAN YOUR VISIT - MOBILE WIDTH CONSISTENCY
   ========================================================================== */

@media (max-width: 768px) {

    /* Admission & Tickets */
    .layout--twocol-section .event-card-inner {
        width: calc(100vw - 50px) !important;
        max-width: none !important;
        margin-left: 50% !important;
        margin-right: 0 !important;
        transform: translateX(-50%) !important;
        box-sizing: border-box !important;
    }

    /* Getting Here section */
    .getting-here-section {
        width: calc(100vw - 50px) !important;
        max-width: none !important;
        margin-left: 50% !important;
        margin-right: 0 !important;
        transform: translateX(-50%) !important;
        box-sizing: border-box !important;
    }

    /* Map + Getting Here card */
    .getting-here-media,
    .getting-here-content.card.white {
        width: 100% !important;
        max-width: none !important;
        flex: 0 0 100% !important;
    }

    /* Activities section */
    .activities-section {
        width: calc(100vw - 50px) !important;
        max-width: none !important;
        margin-left: 50% !important;
        margin-right: 0 !important;
        transform: translateX(-50%) !important;
        box-sizing: border-box !important;
    }

    .activities-section .image-tile-grid {
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: 1fr !important;
    }

    .activities-section .tile-card {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {

    .activities-section .tile-content {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        box-sizing: border-box !important;
    }
}

/* ==========================================================================
   PLAN YOUR VISIT - EXPLORE THE HOBBY MOBILE WIDTH
   Matches Fall Plano Show card: 25px side gutters
   ========================================================================== */

@media (max-width: 768px) {

    /* Entire Explore the Hobby section */
    .explore-hobby-container {
        width: calc(100vw - 50px) !important;
        max-width: none !important;
        margin-left: 50% !important;
        margin-right: 0 !important;
        transform: translateX(-50%) !important;
        box-sizing: border-box !important;
    }

    /* Section heading */
    .explore-hobby-container .explore-hobby-header,
    .explore-hobby-container .explore-hobby-title {
        width: 100% !important;
        max-width: none !important;
        box-sizing: border-box !important;
    }

    /* Each image + text section */
    .explore-hobby-container .custom-media-text-section {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
    }

    /* Image and text both use the full available width */
    .explore-hobby-container .media-column,
    .explore-hobby-container .text-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        box-sizing: border-box !important;
    }
}

/* ==========================================================================
   EXPLORE THE HOBBY - IMAGE SHADOW ONLY
   ========================================================================== */

.explore-hobby-container .media-column {
    border-radius: 12px !important;
    box-shadow:
        0 0 10px rgba(0,0,0,.12),
        0 6px 12px rgba(0,0,0,.10),
        0 16px 32px rgba(0,0,0,.12) !important;
}

/* NMRA Pay It Forward Layout Raffle image positioning */
.explore-hobby-container .custom-media-text-section .media-column img.nmra-raffle-image {
    object-position: 90% center !important;
}

/* ==========================================================================
   PLAN YOUR VISIT - TYPOGRAPHY CONSISTENCY
   ========================================================================== */

/* -------------------------
   GETTING HERE
   ------------------------- */

.getting-here-content h2 {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.getting-here-content .lead-text,
.getting-here-content p {
    font-size: 17px !important;
    line-height: 1.6 !important;
}


/* -------------------------
   ACTIVITIES FOR KIDS
   ------------------------- */

.activities-section .section-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.activities-section .tile-content h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
}

.activities-section .tile-content p,
.activities-section .tile-content a {
    font-size: 16px !important;
    line-height: 1.5 !important;
}


/* -------------------------
   EXPLORE THE HOBBY
   ------------------------- */

.explore-hobby-container .explore-hobby-title {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.explore-hobby-container .media-text-title,
.explore-hobby-container .media-text-title strong {
    font-size: 22px !important;
    line-height: 1.2 !important;
}

.explore-hobby-container .media-text-body p {
    font-size: 17px !important;
    line-height: 1.6 !important;
}


/* -------------------------
   WHAT TO EXPECT
   ------------------------- */

.expect-section h2 {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.expect-section .tile-content h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
}

.expect-section .tile-content p {
    font-size: 16px !important;
    line-height: 1.5 !important;
}


/* ==========================================================================
   PLAN YOUR VISIT - MOBILE TYPOGRAPHY
   ========================================================================== */

@media (max-width: 768px) {

    /* Major section headings */
    .getting-here-content h2,
    .activities-section .section-title,
    .explore-hobby-container .explore-hobby-title,
    .expect-section h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    /* Subsection/card headings */
    .activities-section .tile-content h3,
    .explore-hobby-container .media-text-title,
    .explore-hobby-container .media-text-title strong,
    .expect-section .tile-content h3 {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    /* Regular body copy */
    .getting-here-content .lead-text,
    .getting-here-content p,
    .explore-hobby-container .media-text-body p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* Image card copy */
    .activities-section .tile-content p,
    .activities-section .tile-content a,
    .expect-section .tile-content p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    /* Buttons */
    .getting-here-content a.button,
    .explore-hobby-container .media-text-action a {
        font-size: 16px !important;
        line-height: 1.3 !important;
    }
}

/* ==========================================================================
   PLAN YOUR VISIT - MOBILE SECTION SPACING
   ========================================================================== */

@media (max-width: 768px) {

    /* Getting Here → Family Activities */
    .getting-here-section {
        margin-bottom: 96px !important;
    }

    /* Family Activities → Explore the Hobby */
    .activities-section {
        margin-bottom: 96px !important;
    }

    /* Breathing room between each Explore the Hobby feature */
    .explore-hobby-container .custom-media-text-section {
        margin-top: 64px !important;
        margin-bottom: 64px !important;
    }

    /* Don't create an oversized gap immediately below a section heading */
    .explore-hobby-container .explore-hobby-header
        + .custom-media-text-section {
        margin-top: 40px !important;
    }
}

@media (max-width: 768px) {

    /* Explore the Hobby → Prizes */
    .prizes-section {
        margin-top: 96px !important;
    }
}

/* ==========================================================================
   PLAN YOUR VISIT - MOBILE IMAGE TO TEXT SPACING
   ========================================================================== */

@media (max-width: 768px) {

    .explore-hobby-container .custom-media-text-section .media-column {
        margin-bottom: 32px !important;
    }

}

/* ==========================================================================
   PLAN YOUR VISIT - FAQ
   Matches Vendor FAQ typography
   ========================================================================== */

.plan-faq-heading,
.plan-faq-heading strong {
    font-size: 32px !important;
    line-height: 1.2 !important;
    text-align: center !important;
}


/* --------------------------------------------------------------------------
   MOBILE
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {

    .plan-faq-heading,
    .plan-faq-heading strong {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    .plan-faq-items .accordion-title {
        font-size: 18px !important;
        line-height: 1.35 !important;
    }

    .plan-faq-items .accordion-content {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
}

/* ==========================================================================
   HOME PAGE - MOBILE WIDTH CONSISTENCY
   Matches current 25px site gutters
   ========================================================================== */

@media (max-width: 768px) {

    /* Weekend Activity image/text section */
    .custom-media-text-section.home-weekend-section {
        width: calc(100vw - 50px) !important;
        max-width: none !important;
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .home-weekend-section .media-column,
    .home-weekend-section .text-column {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    /* Plan Your Visit CTA */
   .custom-cta-card.home-plan-visit-cta {
    width: calc(100vw - 50px) !important;
    max-width: none !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    /* Remove the generic CTA's 20px mobile inset */
    padding-left: 0 !important;
    padding-right: 0 !important;

    box-sizing: border-box !important;
}

    /* Vendor CTA */
.custom-cta-card.card-inverted.home-vendor-cta {
    /* Match the other 25px-gutter mobile sections */
    width: calc(100vw - 50px) !important;
    max-width: none !important;

    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    margin-left: 0 !important;
    margin-right: 0 !important;

    /* Stop shared flex styling from stretching/distributing the content */
    display: block !important;

    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    /* Controlled internal breathing room */
    padding: 32px 24px 40px !important;

    box-sizing: border-box !important;
}

.custom-cta-card.card-inverted.home-vendor-cta h2 {
    margin-top: 0 !important;
    margin-bottom: 22px !important;
    text-align: center !important;
}

.custom-cta-card.card-inverted.home-vendor-cta p {
    margin-top: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 28px !important;
    text-align: center !important;
}

.custom-cta-card.card-inverted.home-vendor-cta .cta-action {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}

/* CLOSE HOME PAGE MOBILE WIDTH MEDIA QUERY */
}

/* ==========================================================================
   HOME - WEEKEND ACTIVITY IMAGE SHADOW
   Matches blue event cards
   ========================================================================== */

.home-weekend-section .media-column {
    border-radius: 12px !important;
    box-shadow:
        0 0 10px rgba(0,0,0,.12),
        0 6px 12px rgba(0,0,0,.10),
        0 16px 32px rgba(0,0,0,.12) !important;
}

/* ==========================================================================
   HOME - VENDOR CTA SHADOW
   Matches blue event cards
   ========================================================================== */

.custom-cta-card.card-inverted.home-vendor-cta {
    box-shadow:
        0 0 10px rgba(0,0,0,.12),
        0 6px 12px rgba(0,0,0,.10),
        0 16px 32px rgba(0,0,0,.12) !important;
}

/* ==========================================================================
   HOME PAGE - TYPOGRAPHY CONSISTENCY
   ========================================================================== */


/* --------------------------------------------------------------------------
   WHAT TO EXPECT
   -------------------------------------------------------------------------- */

.expect-section h2 {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.expect-section .tile-content h3 {
    font-size: 22px !important;
    line-height: 1.2 !important;
}

.expect-section .tile-content p {
    font-size: 16px !important;
    line-height: 1.5 !important;
}


/* --------------------------------------------------------------------------
   A DIFFERENT KIND OF WEEKEND ACTIVITY
   -------------------------------------------------------------------------- */

.home-weekend-section h2,
.home-weekend-section h2 strong {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.home-weekend-section .media-text-body p {
    font-size: 17px !important;
    line-height: 1.6 !important;
}


/* --------------------------------------------------------------------------
   PLAN YOUR VISIT CTA
   -------------------------------------------------------------------------- */

.home-plan-visit-cta h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
}

.home-plan-visit-cta p {
    font-size: 17px !important;
    line-height: 1.6 !important;
}


/* --------------------------------------------------------------------------
   VENDOR CTA
   -------------------------------------------------------------------------- */

.home-vendor-cta h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
}

.home-vendor-cta p {
    font-size: 17px !important;
    line-height: 1.6 !important;
}


/* --------------------------------------------------------------------------
   SPONSORS
   -------------------------------------------------------------------------- */

.sponsors-section h2 {
    font-size: 32px !important;
    line-height: 1.2 !important;
}

.sponsors-section p {
    font-size: 17px !important;
    line-height: 1.6 !important;
}


/* ==========================================================================
   HOME PAGE - MOBILE TYPOGRAPHY
   ========================================================================== */

@media (max-width: 768px) {

    /* Major section headings */
    .expect-section h2,
    .home-weekend-section h2,
    .home-weekend-section h2 strong,
    .sponsors-section h2 {
        font-size: 24px !important;
        line-height: 1.2 !important;
    }

    /* Image-card headings */
    .expect-section .tile-content h3 {
        font-size: 20px !important;
        line-height: 1.2 !important;
    }

    /* Regular body copy */
    .home-weekend-section .media-text-body p,
    .sponsors-section p {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    /* What to Expect image-card copy */
    .expect-section .tile-content p {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

  /* Plan Your Visit CTA - mobile */
.home-plan-visit-cta {
    align-items: flex-start !important;
    text-align: left !important;
}

.home-plan-visit-cta h2 {
    width: 100% !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    text-align: left !important;
}

.home-plan-visit-cta p {
    width: 100% !important;
    max-width: none !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    text-align: left !important;
}

.home-plan-visit-cta .cta-action {
    justify-content: flex-start !important;
}

.home-plan-visit-cta .cta-action a {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


/* Vendor CTA - keep centered */
.custom-cta-card.card-inverted.home-vendor-cta {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;

    justify-content: flex-start !important;

    padding: 32px 24px 40px !important;
}

.home-vendor-cta h2 {
    font-size: 22px !important;
    line-height: 1.2 !important;
    margin-bottom: 22px !important;
}

.home-vendor-cta p {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 28px !important;
}

    /* CTA buttons */
    .home-plan-visit-cta .cta-action a,
    .home-vendor-cta .cta-action a {
        font-size: 16px !important;
        line-height: 1.3 !important;
        padding: 12px 28px !important;
    }
}

/* ==========================================================================
   HOME - WHAT IS THE DFW TRAIN SHOW COPY ALIGNMENT
   ========================================================================== */

@media (max-width: 768px) {

    .home-show-intro-copy {
        width: calc(100% + 20px) !important;
        max-width: none !important;
        margin-left: -20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    .home-show-intro-copy p {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

/* Home spacing adjustments - desktop + mobile */

/* Dallas Area Show cards → next section */
.layout--twocol-section {
    margin-bottom: 80px !important;
}

/* Weekend Activity → Plan Your Visit CTA */
.custom-cta-card.home-plan-visit-cta {
    margin-top: 40px !important;
}

/* ==========================================================================
   HOME - SHOW OVERVIEW SPACING
   ========================================================================== */

/* Mobile */
@media (max-width: 768px) {

    /* More breathing room between the show cards and overview image */
    .layout--twocol-section + .layout--onecol .custom-media-text-section {
        margin-top: 80px !important;
    }

    /* Space between image and "What is the DFW Train Show" text */
    .layout--twocol-section + .layout--onecol
    .custom-media-text-section .media-column {
        margin-bottom: 40px !important;
    }
}

/* ==========================================================================
   CLINIC SCHEDULE TABLE
   ========================================================================== */

.clinic-schedule-table {
    width: 100% !important;
    border-collapse: collapse !important;
}

/* Remove vertical lines */
.clinic-schedule-table th,
.clinic-schedule-table td {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

/* Standard session rows */
.clinic-schedule-table td {
    padding: 14px 16px !important;
    border-bottom: 1px solid #d7dce5 !important;
}

/* Saturday / Sunday blue bars */
.clinic-schedule-table .clinic-day-row td {
    background-color: #20409A !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 15px 16px !important;
    border: none !important;
}

.clinic-schedule-table .clinic-day-row td strong {
    color: #ffffff !important;
}

/* Time / Presenter / Clinic headings */
.clinic-schedule-table .clinic-header-row th {
    background-color: #ffffff !important;
    color: #20409A !important;
    font-weight: 700 !important;
    text-align: left !important;
    padding: 13px 16px !important;
    border-bottom: 2px solid #d7dce5 !important;
}

/* Space between Saturday and Sunday */
.clinic-schedule-table .clinic-spacer-row td {
    height: 24px !important;
    padding: 0 !important;
    border: none !important;
    background-color: #ffffff !important;
}


/* ==========================================================================
   CLINIC SCHEDULE TABLE - MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    .clinic-schedule-table {
        table-layout: fixed !important;
    }

    .clinic-schedule-table th,
    .clinic-schedule-table td {
        font-size: 14px !important;
        line-height: 1.4 !important;
        padding: 12px 10px !important;
    }

    /* Column proportions */
    .clinic-schedule-table th:first-child,
    .clinic-schedule-table td:first-child {
        width: 26% !important;
    }

    .clinic-schedule-table th:nth-child(2),
    .clinic-schedule-table td:nth-child(2) {
        width: 27% !important;
    }

    .clinic-schedule-table th:nth-child(3),
    .clinic-schedule-table td:nth-child(3) {
        width: 47% !important;
        padding-right: 16px !important;
    }

    /* Date bars */
    .clinic-schedule-table .clinic-day-row td {
        width: auto !important;
        font-size: 15px !important;
        line-height: 1.3 !important;
        padding: 14px 12px !important;
        color: #ffffff !important;
    }

    .clinic-schedule-table .clinic-day-row td strong {
        color: #ffffff !important;
    }

    /* Separator between days */
    .clinic-schedule-table .clinic-spacer-row td {
        height: 20px !important;
        padding: 0 !important;
    }
}

/* ==========================================================================
   HOME LAYOUT TOURS TABLE
   ========================================================================== */

.layout-tour-table {
    width: 100% !important;
    border-collapse: collapse !important;
}

/* Remove vertical lines */
.layout-tour-table th,
.layout-tour-table td {
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
}

/* Standard rows */
.layout-tour-table td {
    padding: 14px 16px !important;
    border-bottom: 1px solid #d7dce5 !important;
}

/* Blue show-date bar */
.layout-tour-table .layout-tour-date-row td {
    background-color: #20409A !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 15px 16px !important;
    border: none !important;
}

.layout-tour-table .layout-tour-date-row td strong {
    color: #ffffff !important;
}

/* Owner / City / Saturday / Sunday */
.layout-tour-table .layout-tour-header-row th {
    background-color: #ffffff !important;
    color: #20409A !important;
    font-weight: 700 !important;
    text-align: left !important;
    padding: 13px 16px !important;
    border-bottom: 2px solid #d7dce5 !important;
}

/* ==========================================================================
   HOME LAYOUT TOURS TABLE - MOBILE
   ========================================================================== */

@media (max-width: 768px) {

    /* Allow the table to stay readable instead of squeezing 4 columns */
    .layout-tour-table {
        width: 720px !important;
        min-width: 720px !important;
        table-layout: auto !important;
    }

    /* Keep cell copy readable */
    .layout-tour-table th,
    .layout-tour-table td {
        font-size: 14px !important;
        line-height: 1.4 !important;
        padding: 12px 12px !important;
        vertical-align: middle !important;
    }

    /* Give useful proportions to each column */
    .layout-tour-table th:first-child,
    .layout-tour-table td:first-child {
        width: 34% !important;
    }

    .layout-tour-table th:nth-child(2),
    .layout-tour-table td:nth-child(2) {
        width: 18% !important;
    }

    .layout-tour-table th:nth-child(3),
    .layout-tour-table td:nth-child(3),
    .layout-tour-table th:nth-child(4),
    .layout-tour-table td:nth-child(4) {
        width: 24% !important;
    }

    /* Date bar */
    .layout-tour-table .layout-tour-date-row td {
        font-size: 15px !important;
        line-height: 1.3 !important;
        padding: 14px 12px !important;
    }

    /* Allow horizontal scrolling */
    .field--name-body:has(.layout-tour-table) {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 768px) {

    .layout-tour-scroll-hint {
        font-size: 13px !important;
        line-height: 1.4 !important;
        color: #4A5568 !important;
        text-align: right !important;
        margin: 0 0 10px 0 !important;
    }
}

@media (min-width: 769px) {

    .layout-tour-scroll-hint {
        display: none !important;
    }
}