:root {
  --navy: #001f4d;
  --navy-deep: #00132f;
  --red: #e8000b;
  --white: #f8faff;
  --muted: #aab7cd;
  --line: rgba(255,255,255,.12);
  --display: "Montserrat", Arial, sans-serif;
  --body: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--navy-deep);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { width: 1.25rem; height: 1.25rem; }

.ambient { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.ambient::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,31,77,.68), rgba(0,19,47,.96)),
    repeating-linear-gradient(115deg, transparent 0 70px, rgba(255,255,255,.025) 71px 72px);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; animation: drift 15s ease-in-out infinite alternate; }
.orb--one { width: 420px; height: 420px; background: #124d96; top: -150px; left: -170px; }
.orb--two { width: 360px; height: 360px; background: var(--red); top: 30%; right: -260px; animation-delay: -5s; opacity: .26; }
.orb--three { width: 300px; height: 300px; background: #0066ff; bottom: -140px; left: 25%; animation-delay: -9s; opacity: .3; }
.grain { position: absolute; inset: -50%; opacity: .022; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); animation: grain .4s steps(2) infinite; }
.flight-line { position: absolute; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; }
.flight-line::after { content: ""; position: absolute; width: 6px; height: 6px; background: white; border-radius: 50%; box-shadow: 0 0 16px white; animation: orbit 7s linear infinite; transform-origin: 180px 180px; }
.flight-line--one { top: 8%; right: -250px; }
.flight-line--two { bottom: 16%; left: -280px; transform: scale(1.5); opacity: .5; }

.page-shell { position: relative; z-index: 1; width: min(100%, 610px); margin: 0 auto; padding: max(18px, env(safe-area-inset-top)) 16px 60px; }
.profile { text-align: center; padding: 4px 5px 30px; }
.profile__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.live-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line); background: rgba(255,255,255,.06); backdrop-filter: blur(16px); border-radius: 100px; font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }
.live-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(232,0,11,.14); animation: pulse 1.8s infinite; }
.icon-button { width: 42px; height: 42px; border: 1px solid var(--line); color: white; background: rgba(255,255,255,.06); border-radius: 50%; display: grid; place-items: center; cursor: pointer; backdrop-filter: blur(16px); transition: .25s ease; }
.icon-button svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.icon-button:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

.logo-wrap { position: relative; width: 184px; height: 184px; margin: 8px auto 22px; display: grid; place-items: center; }
.logo { position: relative; z-index: 2; width: 150px; height: 150px; object-fit: contain; filter: drop-shadow(0 18px 28px rgba(0,0,0,.45)); animation: float 5s ease-in-out infinite; }
.logo-orbit { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; animation: spin 15s linear infinite; }
.logo-orbit::before, .logo-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px dashed rgba(255,255,255,.12); }
.logo-orbit::before { inset: 8px; }
.logo-orbit::after { inset: -8px; }
.logo-orbit span { position: absolute; width: 7px; height: 7px; background: var(--red); border-radius: 50%; box-shadow: 0 0 14px var(--red); }
.logo-orbit span:nth-child(1) { top: 16px; left: 22px; }
.logo-orbit span:nth-child(2) { right: -3px; top: 72px; background: white; }
.logo-orbit span:nth-child(3) { bottom: 6px; left: 42px; }
.eyebrow { margin: 0 0 3px; color: var(--red); font-family: var(--display); font-size: .69rem; letter-spacing: .2em; }
h1 { font-family: var(--display); font-size: clamp(2rem, 9vw, 3.3rem); line-height: 1; letter-spacing: -.065em; margin: 0 0 13px; }
.profile__bio { max-width: 450px; margin: 0 auto 8px; color: #d4ddeb; font-size: .82rem; line-height: 1.6; }
.hashtag { margin: 0; color: var(--muted); font-size: .65rem; letter-spacing: .09em; }
.socials { margin-top: 19px; display: flex; justify-content: center; gap: 10px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: white; background: rgba(255,255,255,.07); border: 1px solid var(--line); transition: .25s ease; }
.socials svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.socials .icon-fill { fill: currentColor; stroke: none; }
.socials .fill { fill: currentColor; stroke: none; }
.socials .icon-apple { width: 1.18rem; height: 1.18rem; }
.socials .icon-play { width: 1.25rem; height: 1.25rem; stroke: none; }
.icon-play .play-blue { fill: #39a9ff; }
.icon-play .play-green { fill: #31d07d; }
.icon-play .play-yellow { fill: #ffd13b; }
.icon-play .play-red { fill: #ff4b55; }
.socials a:hover { transform: translateY(-4px) rotate(3deg); background: var(--red); border-color: var(--red); }

.featured { position: relative; min-height: 490px; overflow: hidden; border-radius: 30px; padding: 0; margin-bottom: 38px; background: var(--red); box-shadow: 0 24px 70px rgba(232,0,11,.25); isolation: isolate; }
.featured::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(186,0,8,.98) 0%, rgba(232,0,11,.94) 34%, rgba(232,0,11,.66) 51%, rgba(232,0,11,.08) 76%, transparent 100%), linear-gradient(to top, rgba(190,0,8,.72), transparent 42%); pointer-events: none; }
.featured::after { content: ""; position: absolute; inset: 55% 0 0; z-index: 1; background: repeating-linear-gradient(120deg, transparent 0 38px, rgba(255,255,255,.055) 39px 40px); pointer-events: none; }
.featured__photo { position: absolute; z-index: 0; inset: 0; overflow: hidden; }
.featured__photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); border-radius: inherit; }
.featured__photo img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 8% center; transition: transform .7s ease; }
.featured:hover .featured__photo img { transform: scale(1.035); }
.featured__content { position: relative; z-index: 2; width: 63%; min-height: 490px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 70px 0 50px 27px; }
.featured__label { display: inline-block; padding: 6px 9px; background: white; color: var(--red); border-radius: 6px; font: 800 .6rem/1 var(--display); letter-spacing: .12em; }
.featured h2 { font: 900 clamp(2rem, 9vw, 3rem)/.92 var(--display); letter-spacing: -.06em; margin: 18px 0 12px; text-transform: uppercase; }
.featured p { font-size: .72rem; line-height: 1.5; max-width: 255px; opacity: .84; }
.cta-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 10px; font: 800 .72rem var(--display); text-transform: uppercase; }
.cta-link span { display: grid; place-items: center; width: 29px; height: 29px; background: var(--navy); border-radius: 50%; }

.feed-section { margin-bottom: 42px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; margin: 0 3px 15px; }
.section-heading > div { display: flex; align-items: center; gap: 10px; }
.section-heading span { color: var(--red); font: 800 .62rem var(--display); }
.section-heading h2 { margin: 0; font: 800 clamp(1.15rem, 5vw, 1.5rem)/1 var(--display); letter-spacing: -.04em; text-transform: uppercase; }
.section-heading p { margin: 0; color: var(--muted); font: 800 .55rem var(--display); letter-spacing: .12em; white-space: nowrap; }
.link-stack, .event-list { display: grid; gap: 10px; }
.link-card { position: relative; display: grid; grid-template-columns: 48px 1fr 30px; gap: 13px; align-items: center; padding: 13px; border-radius: 18px; color: var(--navy); background: rgba(255,255,255,.96); box-shadow: 0 10px 35px rgba(0,0,0,.13); transition: .25s ease; overflow: hidden; }
.link-card--button { width: 100%; border: 0; text-align: left; font-family: inherit; cursor: pointer; }
.link-card::before { content: ""; position: absolute; left: 0; top: 0; width: 4px; height: 100%; background: var(--red); transform: scaleY(0); transition: .25s ease; }
.link-card:hover { transform: translateY(-3px) scale(1.01); box-shadow: 0 16px 40px rgba(0,0,0,.25); }
.link-card:hover::before { transform: scaleY(1); }
.link-card--news, .link-card--fold, .link-card--info, .link-card--shop { min-height: 205px; padding-top: 125px; color: white; background-color: var(--navy); background-size: cover; isolation: isolate; }
.link-card--news { background-image: linear-gradient(to bottom, rgba(0,31,77,.02) 20%, rgba(0,31,77,.45) 58%, rgba(0,19,47,.98) 100%), url("img-news-optimized.jpg"); background-position: center 65%; }
.link-card--fold { background-image: linear-gradient(to bottom, rgba(0,31,77,.03) 18%, rgba(0,31,77,.42) 57%, rgba(0,19,47,.98) 100%), url("fold-honor-optimized.jpg"); background-position: center 52%; }
.link-card--info { background-image: linear-gradient(to bottom, rgba(0,31,77,.02) 18%, rgba(0,31,77,.4) 56%, rgba(0,19,47,.98) 100%), url("img-info.png"); background-position: center 52%; }
.link-card--shop { background-image: linear-gradient(to bottom, rgba(0,31,77,.02) 18%, rgba(0,31,77,.42) 57%, rgba(0,19,47,.98) 100%), url("shopimg.png"); background-position: center 50%; }
.link-card.link-card--news small, .link-card.link-card--fold small, .link-card.link-card--info small, .link-card.link-card--shop small { color: #fff; font-weight: 900; text-shadow: 0 1px 3px rgba(0,0,0,.95), 0 0 10px rgba(0,19,47,.9); }
.link-card--news .card-icon, .link-card--fold .card-icon, .link-card--info .card-icon, .link-card--shop .card-icon { background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; color: white; background: var(--navy); border-radius: 14px; font-size: 1.1rem; }
.card-icon svg { fill: none; stroke: currentColor; stroke-width: 1.7; }
.link-card small, .event-card small { display: block; margin-bottom: 3px; color: #77849a; font: 800 .53rem var(--display); letter-spacing: .13em; }
.link-card strong { font: 800 .79rem var(--display); letter-spacing: -.02em; }
.arrow { display: grid; place-items: center; width: 28px; height: 28px; color: white; background: var(--red); border-radius: 50%; }

.event-card { display: grid; grid-template-columns: 58px 1fr 24px; align-items: center; gap: 14px; padding: 10px 14px 10px 10px; min-height: 78px; border: 1px solid var(--line); background: rgba(255,255,255,.075); backdrop-filter: blur(15px); border-radius: 18px; transition: .25s ease; }
.event-card:hover { background-color: rgba(255,255,255,.13); border-color: rgba(255,255,255,.28); transform: translateX(4px); }
.event-card--photo { min-height: 210px; padding-top: 132px; overflow: hidden; background-size: cover; background-position: center; background-clip: padding-box; isolation: isolate; }
.event-card--photo::before { display: none; }
.event-card--eastmoreland { position: relative; background-image: linear-gradient(to bottom, rgba(0,19,47,.01) 12%, rgba(0,19,47,.18) 46%, rgba(0,19,47,.82) 78%, #00132f 100%), url("eastmoreland-optimized.jpg"); background-position: center 48%; }
.event-card--pumpkin { position: relative; background-image: linear-gradient(to bottom, rgba(0,19,47,.01) 12%, rgba(0,19,47,.18) 46%, rgba(0,19,47,.82) 78%, #00132f 100%), url("pumpkin-optimized.jpg"); background-position: center 58%; }
.event-card--oga { position: relative; background-image: linear-gradient(to bottom, rgba(0,19,47,.01) 12%, rgba(0,19,47,.18) 46%, rgba(0,19,47,.82) 78%, #00132f 100%), url("oga.jpg"); background-position: center 48%; }
.event-card--vineyard { position: relative; background-image: linear-gradient(to bottom, rgba(0,19,47,.01) 12%, rgba(0,19,47,.18) 46%, rgba(0,19,47,.82) 78%, #00132f 100%), url("vineyard.webp"); background-position: center 52%; }
.event-card--langdon { position: relative; background-image: linear-gradient(to bottom, rgba(0,19,47,.01) 12%, rgba(0,19,47,.18) 46%, rgba(0,19,47,.82) 78%, #00132f 100%), url("langdon.jpg"); background-position: center 50%; }
.event-card--photo:hover { background-color: transparent; border-color: rgba(255,255,255,.35); transform: scale(1.012); box-shadow: 0 16px 38px rgba(0,0,0,.24); }
.event-card--photo time { box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.event-card--photo small { color: #c3d0e2; }
.event-card time { display: grid; place-items: center; align-content: center; height: 58px; border-radius: 13px; color: var(--navy); background: white; }
.event-card time b { color: var(--red); font: 800 .51rem var(--display); letter-spacing: .12em; }
.event-card time strong { font: 900 1.45rem/.9 var(--display); }
.event-card span b { display: block; font: 800 .75rem/1.3 var(--display); letter-spacing: -.02em; }
.event-card span em { display: block; color: #bdc9db; font-size: .58rem; font-style: normal; margin-top: 3px; }
.event-card > i { font-style: normal; color: var(--red); }
.event-card--hot { border-color: rgba(232,0,11,.6); background: linear-gradient(100deg, rgba(232,0,11,.16), rgba(255,255,255,.07)); }
.event-card--hot time { color: white; background: var(--red); }
.event-card--hot time b { color: white; }

.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.results-grid a { min-height: 130px; display: flex; flex-direction: column; align-items: flex-start; padding: 17px; border-radius: 19px; color: var(--navy); background: #f5f7fb; transition: .25s ease; }
.results-grid a:nth-child(4n+2), .results-grid a:nth-child(4n+3) { color: white; background: #092b5c; }
.results-grid a:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
.results-grid span { color: var(--red); font: 800 .57rem var(--display); letter-spacing: .12em; }
.results-grid strong { margin: 8px 0; font: 800 .76rem/1.3 var(--display); }
.results-grid strong mark { color: var(--red); background: transparent; font: inherit; }
.results-grid i { margin-top: auto; opacity: .58; font-size: .6rem; font-style: normal; }
.results-grid em { margin-top: auto; color: white; background: var(--red); padding: 5px 7px; border-radius: 5px; font: 800 .48rem var(--display); letter-spacing: .08em; font-style: normal; }

.footer { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 38px 0 0; border-top: 1px solid var(--line); }
.footer img { width: clamp(110px, 32vw, 132px); height: clamp(110px, 32vw, 132px); object-fit: contain; opacity: 1; }
.footer p { margin: 22px 0 25px; font: 900 1.55rem/.92 var(--display); letter-spacing: -.05em; }
.footer p span { color: var(--red); }
.footer small { color: var(--muted); font-size: .6rem; letter-spacing: .08em; }
.toast { position: fixed; left: 50%; bottom: max(20px, env(safe-area-inset-bottom)); z-index: 20; padding: 11px 16px; color: var(--navy); background: white; border-radius: 100px; font-size: .7rem; transform: translate(-50%, 100px); opacity: 0; transition: .35s ease; box-shadow: 0 10px 35px rgba(0,0,0,.25); }
.toast.show { transform: translate(-50%, 0); opacity: 1; }

body.modal-open { overflow: hidden; }
.modal { position: fixed; inset: 0; z-index: 50; display: grid; align-items: end; visibility: hidden; opacity: 0; transition: opacity .3s ease, visibility .3s ease; }
.modal.is-open { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,10,28,.76); backdrop-filter: blur(9px); }
.modal__panel { position: relative; width: min(100%, 610px); max-height: min(88vh, 850px); margin: 0 auto; padding: 22px 16px max(28px, env(safe-area-inset-bottom)); overflow-y: auto; overscroll-behavior: contain; border: 1px solid rgba(255,255,255,.14); border-bottom: 0; border-radius: 30px 30px 0 0; background: linear-gradient(155deg, #082d62 0%, #001a40 48%, #00132f 100%); box-shadow: 0 -25px 80px rgba(0,0,0,.5); transform: translateY(105%); transition: transform .45s cubic-bezier(.2,.8,.2,1); scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.2) transparent; isolation: isolate; }
.modal.is-open .modal__panel { transform: translateY(0); }
.modal__panel::before { content: ""; position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: repeating-linear-gradient(120deg, transparent 0 48px, rgba(255,255,255,.018) 49px 50px); pointer-events: none; }
.modal__glow { position: absolute; z-index: -1; width: 220px; height: 220px; right: -110px; top: -100px; border-radius: 50%; background: var(--red); opacity: .25; filter: blur(55px); }
.modal__hero { position: relative; overflow: hidden; margin-bottom: 14px; padding: 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: linear-gradient(135deg, #0a3a76 0%, #00285d 58%, #001b43 100%); box-shadow: 0 20px 45px rgba(0,8,28,.3); isolation: isolate; }
.modal__hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: repeating-linear-gradient(120deg, transparent 0 42px, rgba(255,255,255,.045) 43px 44px); }
.modal__hero::after { content: "APT"; position: absolute; z-index: -1; right: -15px; bottom: -26px; color: rgba(0,0,0,.11); font: 900 7rem/1 var(--display); letter-spacing: -.09em; }
.modal__header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 0 16px; border-bottom: 1px solid rgba(255,255,255,.2); }
.modal__eyebrow { display: block; margin-bottom: 5px; color: white; opacity: .78; font: 800 .58rem var(--display); letter-spacing: .16em; }
.modal__header h2 { margin: 0; font: 900 clamp(1.5rem, 7vw, 2.2rem)/1 var(--display); letter-spacing: -.055em; text-transform: uppercase; }
.modal__close { flex: 0 0 auto; display: grid; place-items: center; width: 43px; height: 43px; border: 1px solid var(--line); border-radius: 50%; color: white; background: rgba(255,255,255,.08); cursor: pointer; transition: .25s ease; }
.modal__close:hover { background: var(--red); border-color: var(--red); transform: rotate(8deg); }
.modal__close svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.modal__intro { display: grid; grid-template-columns: 98px 1fr; align-items: center; gap: 17px; padding: 17px 2px; }
.modal__intro img { width: 98px; height: 98px; object-fit: contain; filter: drop-shadow(0 10px 16px rgba(0,0,0,.4)); }
.modal__intro strong { display: block; font: 800 .84rem var(--display); }
.modal__intro p { margin: 4px 0 0; max-width: 350px; color: rgba(255,255,255,.74); font-size: .64rem; line-height: 1.45; }
.national-socials { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; margin: 0; padding: 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: rgba(0,31,77,.28); box-shadow: inset 0 1px rgba(255,255,255,.1), 0 14px 35px rgba(70,0,0,.15); backdrop-filter: blur(10px); }
.national-socials::before { content: ""; position: absolute; left: 10%; right: 10%; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, white, transparent); opacity: .45; }
.national-socials a { min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 9px 2px 7px; border-radius: 13px; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.national-socials a:hover { color: var(--red); background: white; transform: translateY(-4px); box-shadow: 0 8px 20px rgba(70,0,0,.24); }
.national-socials svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.national-socials .social-fill { fill: currentColor; stroke: none; }
.national-socials .play-cutout { fill: var(--red); }
.national-socials a:hover .play-cutout { fill: white; }
.national-socials span { max-width: 100%; overflow: hidden; text-overflow: ellipsis; color: rgba(255,255,255,.78); font: 500 .42rem var(--body); letter-spacing: .02em; }
.national-socials a:hover span { color: var(--red); }
.national-links { display: grid; gap: 9px; }
.national-link { display: grid; grid-template-columns: 35px 1fr 29px; align-items: center; gap: 11px; min-height: 68px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.075); transition: .25s ease; }
.national-link:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.13); transform: translateX(4px); }
.national-link__number { color: rgba(255,255,255,.36); font: 800 .57rem var(--display); letter-spacing: .08em; }
.national-link small { display: block; margin-bottom: 3px; color: #8fa2bd; font: 800 .48rem var(--display); letter-spacing: .13em; }
.national-link strong { display: block; font: 800 .72rem/1.25 var(--display); }
.national-link i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; color: white; background: rgba(255,255,255,.1); font-style: normal; transition: .25s ease; }
.national-link:hover i { background: var(--red); }
.national-link--featured { border-color: rgba(232,0,11,.5); background: linear-gradient(100deg, rgba(232,0,11,.22), rgba(255,255,255,.07)); }
.national-link--featured { overflow: hidden; }
.national-link--featured .national-link__number, .national-link--featured small { color: #ff7c82; }
.national-link--featured i { background: var(--red); }
.national-link--podcast { position: relative; display: flex; align-items: center; justify-content: center; min-height: 82px; padding: 14px 42px; color: #fff; background: rgba(255,255,255,.075); border-color: var(--line); }
.national-link--podcast:hover { color: #fff; background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.3); transform: translateX(4px); }
.national-link--podcast .podcast-card__content { display: block; width: 100%; min-width: 0; text-align: center; }
.national-link--podcast .podcast-card__content strong { white-space: nowrap; font: 800 clamp(.9rem, 3.8vw, 1.15rem)/1.2 var(--display); letter-spacing: -.03em; }
.national-link--podcast .podcast-card__content small { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 5px; margin: 5px 0 0; color: #aebbd0; font: 500 clamp(.52rem, 2.7vw, .7rem)/1.35 var(--body); letter-spacing: 0; text-transform: none; }
.national-link--podcast .podcast-card__content small svg { width: 16px; height: 16px; flex: 0 0 auto; fill: #aebbd0; }
.national-link--podcast .podcast-card__content small .podcast-card__play { fill: #082d62; }
.national-link--podcast .podcast-card__content small b { font-weight: 600; }
.national-link--podcast .podcast-card__menu { position: absolute; top: 50%; right: 14px; display: block; width: auto; height: auto; color: #aebbd0; background: none; font: 800 1.35rem/1 sans-serif; transform: translateY(-50%); }
.national-link--podcast:hover .podcast-card__menu { color: #fff; background: none; transform: translateY(-50%); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes drift { to { transform: translate(80px, 90px) scale(1.15); } }
@keyframes float { 50% { transform: translateY(-7px) rotate(-1deg); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(232,0,11,0); } }
@keyframes grain { 0% { transform: translate(0,0); } 25% { transform: translate(2%,-1%); } 50% { transform: translate(-1%,2%); } 75% { transform: translate(1%,1%); } }

@media (min-width: 700px) {
  .page-shell { padding-top: 30px; }
  .profile { padding-top: 12px; }
  .featured { min-height: 510px; }
  .featured__content { min-height: 510px; padding: 80px 0 60px 38px; }
  .event-card { min-height: 84px; }
  .modal { align-items: center; padding: 28px; }
  .modal__panel { border-bottom: 1px solid rgba(255,255,255,.14); border-radius: 30px; transform: translateY(35px) scale(.97); }
  .modal.is-open .modal__panel { transform: translateY(0) scale(1); }
}

@media (max-width: 390px) {
  .page-shell { padding-inline: 12px; }
  .featured { min-height: 455px; }
  .featured__photo img { object-position: 18% center; }
  .featured__content { width: 66%; min-height: 455px; padding: 60px 0 45px 21px; }
  .section-heading p { display: none; }
  .event-card { grid-template-columns: 54px 1fr 18px; gap: 10px; }
  .results-grid a { min-height: 120px; padding: 14px; }
  .national-socials { padding-inline: 7px; gap: 3px; }
  .national-socials span { font-size: .38rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
