/* Store Buttons Styling */
.store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

.store-buttons a {
    display: inline-block;
    vertical-align: bottom;
}

.store-buttons img {
    height: auto;
    max-width: 200px;
}

/* Hero Grid Mobile Layout */
@media (max-width: 767px) {
    .hero__grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .hero__eyebrow {
        order: 1;
    }
    
    .hero__title {
        order: 2;
    }
    
    .hero-store-buttons {
        order: 3;
        justify-content: center;
        width: 100%;
        margin-top: 0;
    }
    
    .hero__media {
        order: 4;
    }
    
    .hero__subtitle {
        order: 5;
    }
    
    .hero__meta {
        order: 6;
    }
    
    .hero__content {
        display: contents;
    }
}

/* Hero Grid Desktop Layout */
@media (min-width: 768px) {
    .hero__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
    
    .hero-store-buttons {
        display: flex;
        grid-column: 1 / -1;
        justify-content: flex-start;
        gap: 16px;
        margin-top: 24px;
    }
}

/* Hero Image Frame Override */
.hero__image-frame {
    padding-top: 0 !important;
    position: relative;
    height: auto;
    width: 100%;
}

.hero__image-frame img {
    position: static !important;
    inset: auto !important;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Hero Media - Mobile Styling */
.hero__media {
    width: 100%;
}

/* Store Buttons Visible on Mobile */
@media (max-width: 767px) {
    .store-buttons {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        width: 100%;
    }
    
    .hero__content {
        display: contents;
    }
}

/* Hero Media Responsive Styling */
@media (min-width: 768px) {
    .hero__media {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 500px;
    }

    .hero__image-frame {
        width: 100%;
        height: 500px;
        min-height: 500px;
    }
}
