/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange:      #fd5a28;
    --orange-dark: #d94415;
    --orange-light:#fff1ec;
    --yellow:      #fcae27;
    --yellow-light:#fffbe8;
    --dark:        #1a1a1a;
    --mid:         #4a4a4a;
    --light:       #f8f4f0;
    --white:       #ffffff;
    --border:      #e5e0da;
    --radius:      10px;
    --radius-lg:   18px;
    --shadow:      0 2px 12px rgba(0,0,0,.10);
    --shadow-lg:   0 6px 30px rgba(0,0,0,.14);
    --transition:  .2s ease;
    --max-width:   1180px;
    --header-h:    72px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--dark);
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

h1,h2,h3,h4,h5 {
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
    color: var(--dark);
}

/* ── Skip link ────────────────────────────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    padding: .5rem 1rem;
    background: var(--orange);
    color: var(--white);
    border-radius: var(--radius);
    font-weight: 700;
    z-index: 9999;
    transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ── Header ───────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 3px solid var(--orange);
    box-shadow: var(--shadow);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-emoji { font-size: 2rem; line-height: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-top {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: .95rem;
    color: var(--dark);
    letter-spacing: -.01em;
}
.logo-sub {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .78rem;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* Desktop nav */
.site-nav { margin-left: auto; }
.site-nav > ul { list-style: none; display: flex; align-items: center; gap: .25rem; }
.site-nav .nav-link {
    display: block;
    padding: .4rem .7rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--dark);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
    background: none;
    border: none;
    cursor: pointer;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
    background: var(--orange-light);
    color: var(--orange);
    text-decoration: none;
}

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: .4rem 0;
    z-index: 200;
}
.nav-dropdown-toggle[aria-expanded="true"] + .dropdown,
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { 
    display: block; 
}
.dropdown a {
    display: block;
    padding: .55rem 1.1rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--dark);
}
.dropdown a:hover { background: var(--orange-light); color: var(--orange); text-decoration: none; }

/* Tickets CTA */
.btn-tickets {
    flex-shrink: 0;
    padding: .5rem 1.2rem;
    background: var(--orange);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .9rem;
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-tickets:hover { background: var(--orange-dark); transform: translateY(-1px); text-decoration: none; color: var(--white); }

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius);
}
.nav-toggle:hover { background: var(--orange-light); }
.bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav a {
    display: block;
    padding: .65rem .75rem;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
    border-radius: var(--radius);
}
.mobile-nav a:hover { background: var(--orange-light); color: var(--orange); text-decoration: none; }
.mobile-tickets-btn {
    display: inline-block;
    margin-top: .5rem;
    padding: .65rem 1.4rem !important;
    background: var(--orange);
    color: var(--white) !important;
    border-radius: 999px;
    text-align: center;
}

/* ── Main content wrapper ─────────────────────────────────────────────────── */
main { min-height: 60vh; }

/* ── Page hero ────────────────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    padding: 3.5rem 1.5rem;
    text-align: center;
    color: var(--white);
}
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.page-hero p {
    margin-top: .75rem;
    font-size: 1.1rem;
    opacity: .92;
}

/* ── Section containers ───────────────────────────────────────────────────── */
.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.section-wide {
    padding: 3rem 1.5rem;
}
.section + .section { padding-top: 0; }

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.card-orange {
    background: var(--orange-light);
    border-color: #f9c4ae;
}
.card-yellow {
    background: var(--yellow-light);
    border-color: #f5dc8a;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: .7rem 1.8rem;
    background: var(--orange);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); text-decoration: none; color: var(--white); }

.btn-outline {
    display: inline-block;
    padding: .7rem 1.8rem;
    background: transparent;
    color: var(--orange);
    border: 2px solid var(--orange);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 999px;
    transition: background var(--transition), color var(--transition);
    text-decoration: none;
}
.btn-outline:hover { background: var(--orange); color: var(--white); text-decoration: none; }

.btn-yellow {
    display: inline-block;
    padding: .7rem 1.8rem;
    background: var(--yellow);
    color: var(--dark);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition);
    text-decoration: none;
}
.btn-yellow:hover { background: #e09c18; transform: translateY(-1px); text-decoration: none; color: var(--dark); }

/* ── Badge ────────────────────────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: .3rem .9rem;
    border-radius: 999px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.badge-orange { background: var(--orange); color: var(--white); }
.badge-yellow { background: var(--yellow); color: var(--dark); }
.badge-green  { background: #22c55e; color: var(--white); }

/* ── Info grid ────────────────────────────────────────────────────────────── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* ── Ticket table ─────────────────────────────────────────────────────────── */
.ticket-table { width: 100%; border-collapse: collapse; }
.ticket-table th, .ticket-table td {
    padding: .6rem .9rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: .95rem;
}
.ticket-table th {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    background: var(--orange);
    color: var(--white);
}
.ticket-table tr:last-child td { border-bottom: none; }
.ticket-table td:last-child { font-weight: 700; text-align: right; }
.ticket-table tr.highlight td { background: var(--yellow-light); }

/* ── Placeholder pages ────────────────────────────────────────────────────── */
.placeholder-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: var(--light);
}
.placeholder-inner {
    text-align: center;
    max-width: 560px;
}
.placeholder-icon {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}
.placeholder-headline {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 1rem;
}
.placeholder-message {
    font-size: 1.05rem;
    color: var(--mid);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.placeholder-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.placeholder-social { font-size: .95rem; color: var(--mid); }
.placeholder-social a { color: var(--orange); font-weight: 600; }

/* ── Alert / notice banner ────────────────────────────────────────────────── */
.alert {
    padding: 1rem 1.4rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: .95rem;
}
.alert-orange { background: var(--orange-light); border-left: 4px solid var(--orange); color: var(--dark); }
.alert-yellow { background: var(--yellow-light); border-left: 4px solid var(--yellow); color: var(--dark); }

/* ── Gallery grid ─────────────────────────────────────────────────────────── */
.gallery-grid {
    columns: 3 260px;
    column-gap: 1rem;
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img { width: 100%; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.03); }

/* ── Schedule ─────────────────────────────────────────────────────────────── */
.schedule-day { margin-bottom: 3rem; }
.schedule-day-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 3px solid var(--orange);
}
.schedule-day-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--orange);
}
.schedule-day-date {
    font-size: 1rem;
    color: var(--mid);
    font-weight: 600;
}
.schedule-stage { margin-bottom: 2rem; }
.schedule-stage-name {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: .75rem;
    padding: .4rem .8rem;
    background: var(--yellow-light);
    border-radius: var(--radius);
    display: inline-block;
}
.schedule-entry {
    display: flex;
    gap: 1rem;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}
.schedule-time {
    min-width: 90px;
    font-weight: 700;
    color: var(--orange);
    font-size: .92rem;
    flex-shrink: 0;
}
.schedule-performer { font-weight: 600; }
.schedule-notes { font-size: .85rem; color: var(--mid); margin-top: .15rem; }
.schedule-cancelled .schedule-performer {
    text-decoration: line-through;
    color: var(--mid);
}
.schedule-cancelled .schedule-notes { color: #dc2626; font-weight: 600; }

/* ── Sponsors grid ────────────────────────────────────────────────────────── */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: center;
}
.sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: box-shadow var(--transition), transform var(--transition);
}
.sponsor-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.sponsor-item img { width: 100%; height: 140px; object-fit: contain; }

/* ── Contact form ─────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.4rem; }
.form-label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .4rem;
    color: var(--dark);
}
.form-required { color: var(--orange); }
.form-control {
    width: 100%;
    padding: .65rem .9rem;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    color: var(--dark);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(253,90,40,.15);
}
.honeypot-field { display: none !important; visibility: hidden !important; }
.form-hint { font-size: .85rem; color: var(--mid); margin-top: .3rem; }
.form-success {
    padding: 1.2rem 1.5rem;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: var(--radius);
    color: #166534;
    font-weight: 600;
}
.form-error {
    padding: 1.2rem 1.5rem;
    background: #fef2f2;
    border: 1.5px solid #fca5a5;
    border-radius: var(--radius);
    color: #991b1b;
    font-weight: 600;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    color: #d1cdc9;
    margin-top: 4rem;
}
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
}
.footer-heading {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.footer-tagline {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--yellow);
    margin-bottom: .5rem;
}
.footer-sub { font-size: .9rem; color: #aaa; margin-bottom: .25rem; }
.footer-shine { color: var(--orange) !important; font-weight: 700; }

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-links a { color: #d1cdc9; font-size: .92rem; }
.footer-links a:hover { color: var(--orange); text-decoration: none; }

.footer-email { margin: .75rem 0; }
.footer-email a { color: var(--yellow); font-size: .95rem; }
.footer-email a:hover { color: var(--white); text-decoration: none; }

address { font-size: .92rem; line-height: 1.7; margin-bottom: .5rem; }

.footer-social { margin-top: .75rem; font-size: .92rem; }
.social-link { color: #d1cdc9; font-weight: 600; }
.social-link:hover { color: var(--orange); text-decoration: none; }

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    padding: 1.2rem 1.5rem;
    font-size: .85rem;
    color: #888;
}

/* ── Home page specific ───────────────────────────────────────────────────── */
.home-hero {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 50%, var(--yellow) 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.home-hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.home-hero-eyebrow {
    display: inline-block;
    padding: .3rem 1rem;
    background: rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}
.home-hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 3px 12px rgba(0,0,0,.25);
    line-height: 1.1;
    margin-bottom: 1rem;
}
.home-hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,.92);
    margin-bottom: 2rem;
}
.home-hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.rain-shine-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .9rem;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 999px;
    color: var(--white);
    font-size: .85rem;
    font-weight: 700;
    margin-top: 1.5rem;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .site-nav, .btn-tickets { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
    .gallery-grid { columns: 2 160px; }
    .sponsors-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .schedule-entry { flex-direction: column; gap: .25rem; }
    .schedule-time { min-width: unset; }
}

@media (max-width: 480px) {
    .home-hero { padding: 3.5rem 1rem; }
    .gallery-grid { columns: 1; }
    .info-grid { grid-template-columns: 1fr; }
}

/* ── Active nav state ─────────────────────────────────────────────────────── */
.nav-active {
    background: var(--orange-light) !important;
    color: var(--orange) !important;
}

/* ── Submit-button "sending" state ────────────────────────────────────────── */
/* Applied via JS on form submit so visitors see immediate feedback while the
   server processes the request (especially important for the Contact form,
   where the SMTP send can take 2–7 seconds and visitors otherwise wonder if
   their click registered). */
.btn-sending {
    opacity: .75;
    cursor: wait;
    pointer-events: none;
}
.btn-sending::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: btn-spin .8s linear infinite;
    margin-left: 10px;
    vertical-align: -2px;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ── Contest page ─────────────────────────────────────────────────────────── */

/* In-page sticky subnav */
.contest-subnav {
    position: sticky;
    top: var(--header-h);
    z-index: 90;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
    padding: .6rem 1rem;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.contest-subnav a {
    padding: .4rem .9rem;
    border-radius: 999px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    color: var(--mid);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.contest-subnav a:hover { background: var(--orange-light); color: var(--orange); }
.contest-subnav .contest-subnav-cta {
    background: var(--orange);
    color: #fff;
    font-weight: 700;
}
.contest-subnav .contest-subnav-cta:hover { background: var(--orange-dark); color: #fff; }

/* Download buttons (Word / MD / txt) */
.dl-btn-word, .dl-btn-md, .dl-btn-txt {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .5rem 1.1rem;
    border-radius: 999px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .85rem;
    text-decoration: none;
    color: #fff;
    transition: filter var(--transition);
}
.dl-btn-word  { background: #2563eb; }
.dl-btn-md    { background: #0d9488; }
.dl-btn-txt   { background: #4b5563; }
.dl-btn-word:hover, .dl-btn-md:hover, .dl-btn-txt:hover { filter: brightness(1.12); color: #fff; }

/* Contest timeline */
.contest-timeline {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--orange-light);
}
.timeline-item {
    position: relative;
    margin-bottom: 2.25rem;
}
.timeline-item-last { margin-bottom: 0; }
.timeline-dot {
    position: absolute;
    left: -2.6rem;
    top: .2rem;
    width: 1.1rem;
    height: 1.1rem;
    background: var(--orange);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--orange-light);
}
.timeline-date {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    color: var(--orange);
    margin-bottom: .2rem;
}
.timeline-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: .35rem;
}
.timeline-body p { color: var(--mid); font-size: .95rem; }

/* Radio options */
.radio-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .93rem;
    color: var(--mid);
    cursor: pointer;
    padding: .3rem .4rem;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.radio-option:hover { background: var(--orange-light); }
.radio-option input[type="radio"] { accent-color: var(--orange); width: 1rem; height: 1rem; flex-shrink: 0; }

@media (max-width: 480px) {
    .contest-timeline { padding-left: 1.5rem; }
    fieldset div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
    fieldset div[style*="grid-template-columns:1fr 1fr"] .radio-option[style*="grid-column"] { grid-column: unset !important; }
}
