/* ==========================================================================
   VMEDO GLOBAL RESPONSIVE FIXES & STABILITY OVERRIDES
   ========================================================================== */

/* 1. GLOBAL VIEWPORT & OVERFLOW PREVENTIONS */
html,
body {
    overflow-x: clip !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.page-wrapper,
.site-wrapper,
main {
    width: 100% !important;
    max-width: 100% !important;
}

.container,
.wrap {
    width: 90% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

/* 2. NAVIGATION BAR RESPONSIVENESS */
.nav-toggle-input {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    position: relative;
    z-index: 1010;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 100%;
    height: 2px;
    background: #111827;
    border-radius: 9px;
    position: absolute;
    transition: transform 0.3s ease, background 0.3s ease, top 0.3s ease;
}

.nav-toggle span {
    top: 8px;
}

.nav-toggle span::before {
    content: "";
    top: -8px;
    left: 0;
}

.nav-toggle span::after {
    content: "";
    top: 8px;
    left: 0;
}

@media (max-width: 1024px) {
    .site-header {
        position: sticky !important;
        top: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
        z-index: 1000 !important;
    }

    .header-inner,
    .nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        height: 70px !important;
    }

    .nav-toggle {
        display: flex !important;
    }

    /* Toggle Drawer States */
    .nav-toggle-input:checked~.nav-menu,
    .nav-toggle-input:checked~.main-nav,
    .nav-toggle-input:checked~ul,
    .nav-toggle-input:checked~div.main-nav {
        display: block !important;
        max-height: 480px !important;
        padding: 16px 20px !important;
        overflow-y: auto !important;
    }

    .nav-toggle-input:checked~.nav-toggle span {
        background: transparent !important;
    }

    .nav-toggle-input:checked~.nav-toggle span::before {
        top: 0 !important;
        transform: rotate(45deg) !important;
    }

    .nav-toggle-input:checked~.nav-toggle span::after {
        top: 0 !important;
        transform: rotate(-45deg) !important;
    }

    /* Mobile Drawer Menus */
    .main-nav,
    .nav-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        border-bottom: 1px solid #e5e7eb !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        display: block !important;
        /* Allow height transitions */
        z-index: 999 !important;
    }

    .main-nav ul,
    .nav-menu ul {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .main-nav li,
    .nav-menu li {
        width: 100% !important;
        border-bottom: 1px solid #f3f4f6 !important;
    }

    .main-nav a,
    .nav-menu a {
        display: flex !important;
        padding: 14px 0 !important;
        font-size: 16px !important;
        width: 100% !important;
        color: #4b5563 !important;
    }

    /* Dropdown lists within drawers */
    .dropdown,
    .submenu,
    .drop {
        position: static !important;
        display: block !important;
        max-height: 0 !important;
        overflow: hidden !important;
        box-shadow: none !important;
        border: 0 !important;
        padding: 0 0 0 16px !important;
        background: transparent !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: max-height 0.3s ease !important;
    }

    .has-dropdown:hover .dropdown,
    .has-dropdown:focus-within .dropdown,
    .has-menu:hover .submenu,
    .has-menu:focus-within .submenu,
    .has-drop:hover .drop,
    .has-drop:focus-within .drop {
        max-height: 280px !important;
        padding-bottom: 10px !important;
    }
}

/* ==========================================================================
   3. MODULE-BY-MODULE RESPONSIVE BREAKDOWN
   ========================================================================== */

/* ---------------------------------------------------- A) HERO MODULE ----- */
@media (max-width: 1024px) {

    .hero-grid,
    .hero__grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .hero-copy h1,
    .hero__copy h1,
    .hero-lead h1 {
        font-size: clamp(28px, 6vw, 36px) !important;
        line-height: 1.25 !important;
    }
}

@media (max-width: 768px) {

    .hero-actions,
    .hero__actions,
    .cta-actions,
    .final-actions,
    .btn-group {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 8px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-actions .btn,
    .hero__actions .btn,
    .cta-actions .btn,
    .final-actions .btn,
    .btn-group .btn {
        display: inline-flex !important;
        flex: 1 1 0% !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        padding: 8px 6px !important;
        font-size: 12px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        min-height: 44px !important;
        height: auto !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
        word-break: normal !important;
    }

    .hero-actions .btn svg,
    .hero__actions .btn svg {
        width: 14px !important;
        height: 14px !important;
        margin-right: 4px !important;
        flex-shrink: 0 !important;
    }

    /* Mobile Toggle Buttons (Problem & Solution Modules across pages) */
    .toggle {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .toggle__option {
        flex: 1 1 50% !important;
        padding: 11px 8px !important;
        font-size: clamp(0.82rem, 3.6vw, 0.95rem) !important;
        text-align: center !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }
}

/* ---------------------------------- B) ECOSYSTEM / 360° ORBIT MODULE ----- */
@media (max-width: 1024px) {
    .eco-scroll-runway {
        height: auto !important;
        position: relative !important;
    }

    #ecosystem {
        position: relative !important;
        top: auto !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {

    /* Scale down the circular orbit stage slightly to fit standard tablet screens */
    .orbit {
        transform: scale(0.85) !important;
        transform-origin: center center !important;
        margin-bottom: 20px !important;
    }

    .eco-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    .eco-scroll-runway {
        height: auto !important;
    }

    .eco-sticky-viewport,
    #ecosystem {
        position: relative !important;
        height: auto !important;
        top: auto !important;
        display: block !important;
        overflow: visible !important;
    }

    /* Stacking stage layout on mobile screens */
    .eco-grid {
        display: flex !important;
        flex-direction: column !important;
        overflow: visible !important;
    }

    .eco-detail-container {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 16px !important;
    }

    /* Convert vertical right-side icon button strip into horizontal scrollbar */
    .eco-sidebar {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 12px !important;
        padding: 8px 4px 12px 4px !important;
        width: 100% !important;
        order: -1 !important;
        /* Move list to the top */
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        scroll-snap-type: x mandatory !important;
    }

    .eco-sidebar::-webkit-scrollbar {
        display: none !important;
    }

    .eco-tab {
        flex: 0 0 auto !important;
        width: 50px !important;
        height: 50px !important;
        scroll-snap-align: center !important;
    }

    /* Hide standard circular nodes and display cards directly */
    .orbit {
        display: none !important;
    }

    .service-card {
        width: 100% !important;
        margin-top: 16px !important;
        padding: 24px !important;
        /* Touch-friendly padding */
    }
}

/* ----------------------------- C) PROBLEM & SOLUTION MATRIX MODULE ----- */
@media (min-width: 769px) and (max-width: 1024px) {

    .problem-grid,
    .solutions-grid,
    .panel-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {

    .problem-grid,
    .solutions-grid,
    .panel-grid,
    .challenges-grid,
    .challenge-cards,
    .pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ---------------------- D) CASE STUDIES & BLOGS / CONTENT FEED MODULE ----- */
@media (max-width: 1024px) {

    /* Transform active tags filter row to swipe horizontally */
    .blog-tabs,
    .filter-tabs,
    .tabs {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        gap: 10px !important;
        padding-bottom: 8px !important;
        width: 100% !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .blog-tabs::-webkit-scrollbar,
    .filter-tabs::-webkit-scrollbar,
    .tabs::-webkit-scrollbar {
        display: none !important;
    }

    .blog-tab,
    .tab {
        flex: 0 0 auto !important;
    }
}

@media (max-width: 768px) {

    .articles-grid,
    .case-studies-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Mobile Blog Carousel Horizontal Scroll Fix for All Pages */
@media (max-width: 900px) {
    #blogs .blog-grid,
    #blogs .blogs-carousel .blog-grid,
    #blogs .blog-grid-wrap .blog-grid,
    .blogs .blog-grid,
    .blogs-carousel .blog-grid,
    .blog-grid-wrap .blog-grid,
    [data-blog-track],
    [data-blogs-track] {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        grid-auto-flow: unset !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        touch-action: pan-x pan-y !important;
        gap: 16px !important;
        padding: 4px 4px 16px !important;
        scrollbar-width: none !important;
        width: 100% !important;
        margin: 0 !important;
    }

    #blogs .blog-grid::-webkit-scrollbar,
    #blogs .blogs-carousel .blog-grid::-webkit-scrollbar,
    #blogs .blog-grid-wrap .blog-grid::-webkit-scrollbar,
    .blogs .blog-grid::-webkit-scrollbar,
    .blogs-carousel .blog-grid::-webkit-scrollbar,
    .blog-grid-wrap .blog-grid::-webkit-scrollbar,
    [data-blog-track]::-webkit-scrollbar,
    [data-blogs-track]::-webkit-scrollbar {
        display: none !important;
    }

    #blogs .blog-card,
    #blogs .blogs-carousel .blog-card,
    #blogs .blog-grid-wrap .blog-card,
    .blogs .blog-card,
    .blogs-carousel .blog-card,
    .blog-grid-wrap .blog-card,
    [data-blog-track] .blog-card,
    [data-blogs-track] .blog-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
        scroll-snap-align: center !important;
        height: auto !important;
    }
}

/* ----------------------------- E) PRE-FOOTER CTA BANNER & FOOTER MODULE ----- */
@media (max-width: 1024px) {

    .footer-grid,
    .footer__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 768px) {

    .footer-grid,
    .footer__grid {
        grid-template-columns: 1fr !important;
        text-align: left !important;
        gap: 32px !important;
    }

    .footer-col,
    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer-logo,
    .footer__logo {
        justify-content: flex-start !important;
        margin-inline: 0 !important;
    }

    .social-row,
    .social-links,
    .socials {
        justify-content: flex-start !important;
        margin-top: 10px !important;
    }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE FIX (≤ 768px)
   ========================================================================== */

@media (max-width: 768px) {

    /* 1. Unpin sticky container so touch scrolling works naturally */
    .eco-scroll-runway {
        height: auto !important;
        position: relative !important;
    }

    .eco-sticky-viewport,
    #ecosystem {
        position: relative !important;
        top: 0 !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        overflow: visible !important;
        padding: 40px 0 !important;
    }

    /* 2. Hide large radial orbit ring on small screens to prevent overflow */
    #ecosystem .orbit,
    #ecosystem .orbit-wrapper {
        display: none !important;
    }

    /* 3. Convert vertical right-side icons into a swipeable horizontal top bar */
    #ecosystem .vertical-icon-strip,
    #ecosystem .eco-sidebar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
        overflow-x: auto !important;
        width: 100% !important;
        padding: 8px 4px 16px 4px !important;
        gap: 12px !important;
        order: -1;
        /* Places icons above the detail card */
        margin-bottom: 20px !important;

        /* Smooth touch scrolling & snap */
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        /* Hides scrollbar in Firefox */
    }

    #ecosystem .vertical-icon-strip::-webkit-scrollbar,
    #ecosystem .eco-sidebar::-webkit-scrollbar {
        display: none;
        /* Hides scrollbar in Chrome/Safari */
    }

    #ecosystem .strip-btn,
    #ecosystem .eco-tab {
        flex: 0 0 auto !important;
        scroll-snap-align: center;
        width: 48px !important;
        height: 48px !important;
    }

    /* 4. Full-width detail card on mobile */
    #ecosystem .eco-grid,
    #ecosystem .eco-detail-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }

    #ecosystem .service-card,
    #ecosystem .eco-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
    }

    /* 5. Mobile Partner Banner */
    #ecosystem .partner-banner {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 16px !important;
        padding: 20px !important;
    }

    #ecosystem .partner-banner__inner {
        flex-direction: column !important;
        text-align: center !important;
    }
}

/* ==========================================================================
   UNIVERSAL BLOG CARD IMAGE AUTO-FIT FIX
   ========================================================================== */
.blog-card figure,
.blog-card .blog-media,
.blog-card .blog-figure {
    width: 100% !important;
    height: 195px !important;
    max-height: 220px !important;
    overflow: hidden !important;
    position: relative !important;
    background-color: #f2f3f5 !important;
}

.blog-card figure img,
.blog-card .blog-media img,
.blog-card .blog-figure img,
.blog-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* ==========================================================================
   ABOUT US & CAREERS MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {
    .timeline-track-line {
        display: none !important;
    }

    .timeline-nodes-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .timeline-node {
        background: #FFFFFF !important;
        border: 1px solid var(--color-border, #ECEFF2) !important;
        border-radius: 14px !important;
        padding: 20px 16px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    }

    .leadership-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .careers-pillars-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .resume-drop-box {
        flex-direction: column !important;
        text-align: center !important;
        padding: 24px 18px !important;
        gap: 20px !important;
    }

    .resume-drop-left,
    .resume-drop-right {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .callout-card {
        flex-direction: column !important;
        text-align: center !important;
        padding: 20px 16px !important;
    }
}

/* ==========================================================================
   UNIVERSAL FAQ ACCORDION DESIGN SYSTEM
   ========================================================================== */
.faq,
.medical-faq,
.training-faq,
.corporate-wellness-faq {
    padding: clamp(48px, 6vw, 76px) 0;
    background-color: #FAFAFB !important;
    border-top: 1px solid #ECEFF2;
    border-bottom: 1px solid #ECEFF2;
}

.faq-list {
    max-width: 860px !important;
    margin: 36px auto 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
}

.faq-list details {
    background: #FFFFFF !important;
    border: 1px solid #EAECEF !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
    overflow: hidden !important;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
}

.faq-list details:hover {
    border-color: #F8D7D7 !important;
    box-shadow: 0 4px 14px rgba(227, 6, 19, 0.05) !important;
}

.faq-list details[open] {
    border-color: #E30613 !important;
    box-shadow: 0 8px 24px rgba(227, 6, 19, 0.08) !important;
}

.faq-list summary,
.faq-question {
    list-style: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 20px 24px !important;
    font-size: clamp(15.5px, 1.3vw, 17px) !important;
    font-weight: 700 !important;
    color: #111827 !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
    user-select: none !important;
    transition: color 0.2s ease !important;
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}

.faq-list summary:focus,
.faq-list summary:focus-visible,
.faq-list summary:active,
.faq-list summary:visited,
.faq-question:focus,
.faq-question:focus-visible,
.faq-question:active,
.faq-question:visited {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    background: transparent !important;
}

.faq-list summary::-webkit-details-marker {
    display: none !important;
}

.faq-list summary:hover {
    color: #E30613 !important;
}

/* Plus (+) / Minus (-) Indicator Circle */
.faq-list summary::after {
    content: "+" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    background: #FEECEC !important;
    color: #E30613 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease !important;
}

.faq-list details[open] summary::after {
    content: "−" !important;
    background: #E30613 !important;
    color: #FFFFFF !important;
    transform: rotate(180deg) !important;
}

.faq-list details p {
    padding: 0 24px 22px 24px !important;
    font-size: 14.8px !important;
    color: #4B5563 !important;
    line-height: 1.65 !important;
    margin: 0 !important;
    animation: faqSlideDown 0.25s ease-out both !important;
}

@keyframes faqSlideDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   HOMEPAGE REFERENCE HERO SECTION STYLING SYSTEM (APPLIED TO ALL PAGES)
   ========================================================================== */

/* Hero Container & Grid */
.hero {
    position: relative;
    padding-top: 0;
    padding-bottom: clamp(36px, 4.5vw, 56px);
    background: #FFFFFF;
}

/* Hero Headings across all pages (H1 / .hero-title / .hero-copy h1) */
.hero h1,
.hero-title,
.hero-copy h1,
.hero-copy .hero-title {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(1.9rem, 4.4vw, 3.6rem) !important;
    font-weight: 600 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em !important;
    color: #14161A !important;
    margin-bottom: 16px !important;
}

/* Red highlighted span in hero headings */
.hero h1 .text-red,
.hero h1 .accent,
.hero h1 .red,
.hero h1 span[style*="color"],
.hero-copy h1 .text-red,
.hero-copy h1 .accent,
.hero-copy h1 .red {
    color: #E30613 !important;
}

/* Hero Subtitle & Lead Paragraphs across all pages */
.hero-text,
.hero-lead,
.hero__lead,
.hero-sub,
.hero-copy p,
.hero-copy .lead {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    font-size: clamp(15.5px, 1.25vw, 17px) !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    color: #4A5058 !important;
    max-width: 620px !important;
    margin-bottom: 24px !important;
}

/* Hero Action Buttons */
.hero-actions,
.hero__actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 18px !important;
    margin-top: 24px !important;
}

.hero-actions .btn,
.hero__actions .btn {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    padding: 14px 28px !important;
    letter-spacing: -0.01em !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease !important;
}

/* Hero Image & Media Styling (Matching Medical Examination Reference Page) */
.hero-media img,
.hero-art img,
.hero-img,
.hero-image-wrapper img,
.hero-img-placeholder img,
.hero__media img,
.hero__art img,
.hero__image img {
    max-height: 520px !important;
    width: auto !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 14px 32px rgba(227, 6, 19, 0.12)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.05)) !important;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 84%, rgba(0, 0, 0, 0) 100%) !important;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 84%, rgba(0, 0, 0, 0) 100%) !important;
    animation: heroFloaty 7s ease-in-out infinite !important;
}

@media (max-width: 768px) {

    .hero-copy {
        text-align: center !important;
    }

    .hero-title {
        text-align: center !important;
    }

    .hero-text {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-actions {
        justify-content: center !important;
    }

    .hero-media img,
    .hero-art img,
    .hero-img,
    .hero-image-wrapper img,
    .hero-img-placeholder img,
    .hero__media img,
    .hero__art img,
    .hero__image img {
        max-height: 320px !important;
    }
}

@keyframes heroFloaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}