/*
 * COMEDY CORNER - STYLES.CSS
 * Brand Identity: Black, Red/Crimson, White, Gray
 * Typography: Sans-serif system fonts
 * Layout: Clean, boxed, modern
 */

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background-color: #000000;
    font-weight: 400;
}

/* Custom scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #dc143c;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff1744;
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: #dc143c #111111;
}


/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: #dc143c;
}

h3 {
    font-size: 1.35rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    text-align: left;
    color: #cccccc;
    line-height: 1.7;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

ul, ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    text-align: left;
}

li {
    margin-bottom: 0.75rem;
    color: #cccccc;
    line-height: 1.6;
}

a {
    color: #dc143c;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus {
    color: #ff1744;
    text-decoration: underline;
}

a:focus {
    outline: 2px solid #dc143c;
    outline-offset: 2px;
}

strong {
    font-weight: 700;
    color: #ffffff;
}

em {
    font-style: italic;
}


/* ==========================================================================
   LAYOUT - CONTAINER & SECTIONS
   ========================================================================== */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Section base — generous vertical spacing */
section {
    padding: 5rem 0;
}

/* Alternating section backgrounds for visual rhythm */
section:nth-child(odd) {
    background-color: #000000;
}

section:nth-child(even) {
    background-color: #0a0a0a;
}

/* Boxed content sections — always centered */
.content-box {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 2.5rem;
    margin: 2rem auto;
    border-radius: 4px;
    max-width: 800px;
}

.content-box p:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

header {
    background-color: #000000;
    border-bottom: 2px solid #dc143c;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    display: block;
    max-width: 180px;
    height: auto;
}

nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #ffffff;
    font-weight: 600;
    padding: 0.5rem 0;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

nav a:hover,
av a:focus {
    color: #dc143c;
    text-decoration: none;
}


/* ==========================================================================
   HERO SECTION WITH SLIDESHOW
   ========================================================================== */

#hero {
    background-color: #000000;
    padding: 3rem 0 2rem;
}

#hero h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-slideshow {
    position: relative;
    max-width: 100%;
    margin: 3rem auto 0;
    overflow: hidden;
}

.hero-slide {
    display: none;
    width: 100%;
}

.hero-slide.active {
    display: block;
}

.hero-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* Desktop: Show all three images side by side */
@media screen and (min-width: 769px) {
    .hero-slideshow {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .hero-slide {
        display: block;
    }

    .hero-slide img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 4px;
    }
}

/* Mobile: Slideshow mode */
@media screen and (max-width: 768px) {
    .hero-slideshow {
        position: relative;
    }

    .hero-slide {
        display: none;
        animation: fadeIn 0.5s ease-in;
    }

    .hero-slide.active {
        display: block;
    }

    .hero-slide img {
        width: 100%;
        height: auto;
        min-height: 280px;
        object-fit: cover;
        border-radius: 4px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 0;
}

.button {
    display: inline-block;
    background-color: #dc143c;
    color: #ffffff;
    padding: 0.85rem 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid #dc143c;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    line-height: 1.4;
}

.button:hover,
.button:focus {
    background-color: #000000;
    color: #dc143c;
    border-color: #dc143c;
    text-decoration: none;
    transform: translateY(-2px);
}

.button:active {
    background-color: #000000;
    color: #ffffff;
    border-color: #dc143c;
    transform: translateY(0);
}

.button:focus {
    outline: 2px solid #dc143c;
    outline-offset: 2px;
}

.button-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #dc143c;
}

.button-secondary:hover,
.button-secondary:focus {
    background-color: #000000;
    color: #dc143c;
    border-color: #dc143c;
}

.button-secondary:active {
    background-color: #000000;
    color: #ffffff;
    border-color: #dc143c;
}

.button-group-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 0;
}


/* ==========================================================================
   CARD GRIDS
   ========================================================================== */

/* Three-card grid (What We Do) */
.card-grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0 0;
}

/* Four-card grid (Our Programs - 2x2) */
.card-grid-four {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0 0;
}

.card {
    background-color: #1a1a1a;
    border: 1px solid #2a2a2a;
    padding: 2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    border-color: #dc143c;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.12);
}

/* Card element spacing */
.card .card-meta {
    font-size: 0.75rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
    order: -1;
}

.card h3,
.card h4 {
    margin-bottom: 1rem;
    margin-top: 0;
}

.card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.card p:last-of-type {
    margin-bottom: 1.5rem;
}

.card .button {
    align-self: flex-start;
    margin-top: auto;
}

@media screen and (max-width: 768px) {
    .card-grid-three,
    .card-grid-four {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .card {
        padding: 1.75rem;
    }
}


/* ==========================================================================
   MODAL / POPUP FORMS
   ========================================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #2a2a2a;
    flex-shrink: 0;
}

.modal-header h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-close {
    background: none;
    border: none;
    color: #888888;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.modal-close:hover,
.modal-close:focus {
    color: #dc143c;
    background-color: #2a2a2a;
    outline: none;
}

.modal-body {
    padding: 0;
    overflow-y: auto;
    flex-grow: 1;
    -webkit-overflow-scrolling: touch;
}

.modal-body iframe {
    width: 100%;
    border: none;
    display: block;
    min-height: 580px;
}

.modal-body--tall iframe {
    min-height: 780px;
}

.modal-body--compact iframe {
    min-height: 420px;
}

/* Modal loading state */
.modal-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    z-index: 2;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.modal-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333333;
    border-top-color: #dc143c;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.modal-loader p {
    color: #888888;
    font-size: 0.9rem;
    text-align: center;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .modal-container {
        max-height: 95vh;
        border-radius: 6px;
    }

    .modal-body iframe {
        min-height: 520px;
    }

    .modal-body--tall iframe {
        min-height: 650px;
    }
}


/* ==========================================================================
   POSTER CAROUSEL
   ========================================================================== */

.poster-carousel {
    position: relative;
    margin: 2.5rem 0 0;
    padding-bottom: 1rem;
    overflow: visible;
}

.poster-carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
}

.poster-carousel-track::-webkit-scrollbar {
    display: none;
}

.poster-slide {
    flex: 0 0 auto;
    scroll-snap-align: center;
    width: 100%;
    max-width: 400px;
}

.poster-slide img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.poster-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.carousel-arrow {
    background-color: #1a1a1a;
    border: 2px solid #dc143c;
    color: #ffffff;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 4px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    overflow: visible;
    padding: 0;
    box-sizing: border-box;
}

.carousel-arrow:hover,
.carousel-arrow:focus {
    background-color: #dc143c;
    outline: 2px solid #dc143c;
    outline-offset: 2px;
}


/* ==========================================================================
   VENUE MAP BUTTONS
   ========================================================================== */

.map-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 0;
}

.map-buttons .button {
    flex: 1 1 200px;
    text-align: center;
}


/* ==========================================================================
   BILINGUAL TEXT BLOCKS
   ========================================================================== */

.chinese-summary {
    font-size: 0.9rem;
    color: #999999;
    margin-top: 1rem;
    font-style: italic;
    line-height: 1.6;
    border-left: 2px solid #333333;
    padding-left: 1rem;
}

.chinese-summary + .chinese-summary {
    margin-top: 0.75rem;
}


/* ==========================================================================
   EVENTS PAGE
   ========================================================================== */

.event-poster {
    text-align: center;
    margin: 2.5rem 0;
}

.ticket-link {
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 4px;
    overflow: hidden;
}

.ticket-link:hover,
.ticket-link:focus {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.3);
}

.ticket-link img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

.poster-caption {
    margin-top: 1rem;
    font-weight: 600;
    color: #dc143c;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    font-size: 0.9rem;
}


/* ==========================================================================
   QR CODES GRID
   ========================================================================== */

.qr-codes {
    background-color: #0a0a0a;
    padding: 0;
}

.qr-codes .container > h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.qr-codes .container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #aaaaaa;
}

.qr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    padding: 0.5rem;
    background-color: #ffffff;
    border-radius: 4px;
}

.qr-item p {
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .qr-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .qr-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* ==========================================================================
   404 PAGE
   ========================================================================== */

.page-404 {
    text-align: center;
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-404 h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.page-404 p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
    color: #aaaaaa;
}

.page-404 .button-group {
    justify-content: center;
    margin-top: 2.5rem;
}


/* ==========================================================================
   WELCOME-BACK LANDING PAGE
   ========================================================================== */

.welcome-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.welcome-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.welcome-content {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.welcome-content .logo {
    margin-bottom: 2.5rem;
    display: inline-block;
}

.welcome-content .logo img {
    max-width: 200px;
    margin: 0 auto;
}

.welcome-content h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.welcome-content .hero-text {
    text-align: center;
    color: #dc143c;
    font-weight: 600;
    margin-bottom: 2rem;
}

.welcome-content p {
    text-align: center;
    margin-bottom: 1.25rem;
    color: #cccccc;
}

.welcome-content .post-form-note {
    font-size: 0.85rem;
    color: #888888;
    text-align: center;
    margin-top: 1.5rem;
}

.welcome-footer {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid #1a1a1a;
}

.welcome-footer p {
    text-align: center;
    color: #666666;
    font-size: 0.85rem;
    margin-bottom: 0;
}


/* ==========================================================================
   FOUNDER / PORTRAIT
   ========================================================================== */

.founder-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.founder-portrait {
    max-width: 360px;
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
    flex-shrink: 0;
}

.founder-text {
    flex: 1;
}

@media screen and (max-width: 768px) {
    .founder-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .founder-portrait {
        max-width: 100%;
    }
}


/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */

.partners-section p {
    max-width: 700px;
}


/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-block p {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #1a1a1a;
}

.contact-block p:last-child {
    border-bottom: none;
}

.contact-block a {
    color: #dc143c;
}


/* ==========================================================================
   INQUIRY FORM SECTIONS
   ========================================================================== */

.inquiry-form {
    background-color: #0a0a0a;
}

.inquiry-form > .container > h3 {
    color: #dc143c;
    margin-bottom: 0.5rem;
}

.inquiry-form > .container > p {
    color: #aaaaaa;
    margin-bottom: 2rem;
}


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

footer {
    background-color: #000000;
    border-top: 2px solid #dc143c;
    color: #cccccc;
    padding: 2.5rem 0;
    margin-top: 0;
}

footer p {
    text-align: center;
    margin-bottom: 0.75rem;
    color: #888888;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #aaaaaa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus {
    color: #dc143c;
    text-decoration: none;
}


/* ==========================================================================
   HIDDEN ELEMENTS
   ========================================================================== */

.hidden {
    display: none !important;
}


/* ==========================================================================
   RESPONSIVE - TABLET (768px and below)
   ========================================================================== */

@media screen and (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 3.5rem 0;
    }

    .container {
        padding: 0 1.5rem;
    }

    .content-box {
        padding: 2rem;
        margin: 1.5rem auto;
    }

    header .container {
        flex-direction: column;
        gap: 0.75rem;
    }

    .logo img {
        max-width: 150px;
    }

    nav {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    nav a {
        font-size: 0.8rem;
    }

    .button-group,
    .button-group-center {
        flex-direction: column;
        align-items: stretch;
    }

    .button-group .button,
    .button-group-center .button {
        text-align: center;
    }

    .map-buttons {
        flex-direction: column;
    }

    .map-buttons .button {
        flex: 1 1 auto;
    }

    .page-404 {
        padding: 4rem 0;
    }

    .page-404 h1 {
        font-size: 1.75rem;
    }

    .modal-body iframe {
        min-height: 500px;
    }
}


/* ==========================================================================
   RESPONSIVE - MOBILE (480px and below)
   ========================================================================== */

@media screen and (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.35rem;
    }

    section {
        padding: 3rem 0;
    }

    .content-box {
        padding: 1.5rem;
        margin: 1.25rem auto;
    }

    nav {
        gap: 0.75rem;
    }

    nav a {
        font-size: 0.75rem;
    }

    .card {
        padding: 1.5rem;
    }

    .poster-slide {
        max-width: 280px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .modal-container {
        max-height: 95vh;
    }

    .modal-header {
        padding: 1rem 1.25rem;
    }

    .modal-body iframe {
        min-height: 480px;
    }

    .welcome-content h1 {
        font-size: 1.5rem;
    }

    .welcome-content .logo img {
        max-width: 160px;
    }

    .qr-item img {
        max-width: 140px;
    }
}


/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #dc143c;
    color: #ffffff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

*:focus {
    outline: 2px solid #dc143c;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    header,
    nav,
    footer,
    .poster-carousel-controls,
    .carousel-arrow,
    .modal-overlay {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000000;
        background: #ffffff;
    }

    h1, h2, h3, h4, h5, h6, p, li, strong {
        color: #000000;
    }

    a {
        text-decoration: underline;
        color: #000000;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    .card {
        border: 1px solid #cccccc;
        break-inside: avoid;
    }

    section {
        padding: 1rem 0;
        background-color: #ffffff !important;
    }
}
