.travel-getting-to-austin-wrapper {
    margin: 0;
    padding: 12rem 5% 8rem;
    width: 100%;
    max-width: 100%;
    background-image: url('https://wonderlandconference.com/wp-content/uploads/2026/05/Statsbar.png');
    background-size: cover;
    background-position: center;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    /* Added back to clip the mushroom art */
}

/* Utility class to combine the Header/Button blocks and FAQ block into one shared background */
.travel-shared-bg {
    background-image: url('https://wonderlandconference.com/wp-content/uploads/2026/05/Statsbar.png');
    background-size: cover;
    background-position: center top;
    padding-top: 4rem;
    position: relative;
    overflow: hidden;
}

.travel-shared-bg .travel-getting-to-austin-wrapper {
    background-image: none !important;
    padding-top: 2rem !important;
    /* Reduce top padding since the wrapper will handle it */
}

.travel-gta-bottom-art {
    position: absolute;
    bottom: -151px;
    left: 80%;
    transform: translateX(-50%);
    width: 350px;
    height: auto;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
}

/* If the background is meant to be edge-to-edge, we might need a negative margin or full width */

.travel-gta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

/* Sidebar Styling */
.travel-gta-sidebar {
    position: relative;
}

.travel-gta-sticky-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    max-width: 300px;
}

.travel-gta-sticky-content .script-font {
    color: #4a90e2;
    font-family: "Brush Script MT", cursive;
    font-size: 3.5rem;
    font-weight: normal;
}

.travel-gta-sticky-content .description-text {
    font-size: 1.125rem;
    color: #1b2c53;
    margin-bottom: 2rem;
    max-width: 250px;
}

/* Parallax Art */
.travel-gta-art-container {
    margin-top: 3rem;
    min-height: 250px;
    position: relative;
    overflow: visible;
    border: none;
    /* Removed dashed border */
    display: flex;
    align-items: center;
    justify-content: center;
}

.travel-gta-parallax-art {
    max-width: none;
    height: auto;
    will-change: transform;
    /* Smooth floating transition */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Right Content Rows Styling */
.travel-gta-options-list {
    display: flex;
    flex-direction: column;
}

.travel-gta-option-item {
    display: flex;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    gap: 40px;
}

.travel-gta-option-item:first-child {
    padding-top: 0;
}

.travel-gta-option-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.travel-gta-option-icon {
    flex: 0 0 60px;
    height: 60px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.travel-gta-option-icon img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.travel-gta-option-title {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #1b2c53;
}

.travel-gta-option-desc {
    color: #1b2c53;
    font-size: 1rem;
    line-height: 1.6;
}

.travel-gta-option-desc p {
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .travel-gta-art-container {
        position: absolute;
        top: 0px;
        right: 0;
    }

    .travel-content-split-wrapper .hero-top-grid {
        margin-bottom: 0 !important;
    }
}

/* Desktop Grid & Sticky Behavior */
@media (min-width: 1024px) {
    .travel-gta-grid {
        grid-template-columns: 1fr 2fr;
        gap: 120px;
    }

    .travel-gta-sticky-content {
        position: sticky;
        top: 100px;
    }



}

/* Information Grid Section */
.travel-ig-container {
    padding: 40px;
    margin: 4rem auto 0;
    max-width: 1200px;
    position: relative;
    z-index: 10;

    /* Move Glassmorphism to the outer container */
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.travel-ig-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.travel-ig-item {
    display: flex;
    flex-direction: column;
    /* Removed individual background */
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.travel-ig-title {
    font-size: 1.5rem;
    color: #1b2c53;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.travel-ig-desc {
    color: #1b2c53;
    font-size: 0.875rem;
    line-height: 1.6;
}

.travel-ig-desc p {
    margin-bottom: 0;
}

/* Desktop 2x2 Grid */
@media (min-width: 768px) {
    .travel-ig-container {
        padding: 60px;
        margin-top: 0;
    }

    .travel-ig-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .wp-block-group.travel-getting-to-austin-wrapper.is-layout-constrained.wp-block-group-is-layout-constrained {
        padding-top: 6rem;
    }

    .travel-getting-to-austin-wrapper {
        padding: 6rem 5% 6rem;
    }

    .travel-gta-art-container {
        margin-top: 1rem;
        min-height: 150px;
    }

    .travel-gta-parallax-art {
        max-width: 150px;
    }

    .travel-gta-option-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .travel-gta-option-icon {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        flex: 0 0 60px;
    }
}