/* Layout for the Psara In Motion hub landing page. */

/* Snap-scroll the four screens of the hub: splash → events → about → footer.
   Scoped via :has() since hub.css is hub-only anyway, but the rule keeps it
   explicit. `mandatory` enforces clean section-to-section transitions; the
   footer is included as the final snap target so scrolling past about lands
   there cleanly instead of being pulled back to about's start. */
html:has(body.hub-page) {
  scroll-snap-type: y mandatory;
}

.hub-hero,
.hub-scenery,
.hub-about,
.hub-impact,
.hub-pass,
.hub-companies,
.hub-footer {
  scroll-snap-align: start;
}

body.hub-page {
  background-color: var(--bg-dark);
  color: var(--text-on-dark);
  font-family: var(--font-body);
}

.hub-hero {
  /* Override main.css's generic `section { background-color: var(--background-color) }`.
     Splash heading + events grid + scroll-cue arrow now live together on one
     viewport-height screen; sizes below are tuned a touch smaller than before
     so everything fits comfortably without scrolling. */
  background-color: var(--bg-dark);
  min-height: 100vh;
  min-height: 100dvh; /* honor mobile dynamic viewport */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: safe center;
  padding: clamp(20px, 4vw, 40px) clamp(16px, 4vw, 32px);
  gap: clamp(12px, 2vw, 20px);
}

.hub-hero > .container {
  width: 100%;
}

.hub-logo {
  width: clamp(160px, 22vw, 280px);
  height: auto;
  margin-bottom: 8px;
}

.hub-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 4.5vw, 2.4rem);
  letter-spacing: clamp(1px, 0.4vw, 3px);
  margin-bottom: 5px;
  text-align: center;
  text-wrap: balance;
  color: var(--text-on-dark);
}
.hub-hero h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 3.5vw, 1.8rem);
  letter-spacing: clamp(1px, 0.3vw, 2px);
  margin-bottom: 5px;
  text-align: center;
  text-wrap: balance;
  color: var(--text-on-dark);
}

.municipality-logo {
  max-width: 96px;
  margin: 8px 0;
}

.hub-hero .subtitle {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(0.9rem, 2.4vw, 1.4rem);
  color: #DB3330;
  margin-bottom: clamp(16px, 2.5vw, 28px);
  text-align: center;
  text-wrap: balance;
}

.hub-hero .subtitle .year {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: bold;
  color: var(--text-on-dark);
}

/* Mouse-scroll CTA in hero — smooth-scrolls to the next snap section.
   Visual cue: outlined mouse with a wheel dot that drops inside on loop. */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: safe center;
  margin-top: clamp(8px, 1.5vw, 16px);
  color: var(--text-on-dark-subtle);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--text-on-dark);
}

.hero-cta-mouse {
  display: block;
  width: 28px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 14px;
  position: relative;
}

.hero-cta-wheel {
  display: block;
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 7px;
  left: 50%;
  animation: hero-cta-wheel-drop 1.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes hero-cta-wheel-drop {
  0%   { opacity: 0; transform: translate(-50%, -2px); }
  15%  { opacity: 1; transform: translate(-50%, -2px); }
  85%  { opacity: 1; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta-wheel {
    animation: none;
    opacity: 1;
    transform: translate(-50%, 6px);
  }
}


.event-card {
  position: relative;
  text-align: center;
  text-decoration: none;
  color: var(--text-on-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
  padding: 10px 6px;
}

.event-card:hover {
  transform: translateY(-8px);
  color: var(--text-on-dark);
}

.event-card img {
  width: clamp(70px, 14vw, 110px);
  height: clamp(70px, 14vw, 110px);
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 50%;
  transition: box-shadow 0.3s ease;
}

.event-card:hover img {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Flagship event card — Sports Festival sits visually higher than the
   four supporting events on lg+ to mark it as the ecosystem's anchor.
   On mobile the flagship already takes its own first row, so the lift
   is unnecessary and would feel arbitrary. */
@media (min-width: 992px) {
  .event-card-flagship {
    /* transform: translateY(-12px); */
  }
  /* .event-card-flagship:hover {
    transform: translateY(-20px);
  } */
}

.event-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  letter-spacing: 1px;
}

.event-card h6 {
  color: var(--text-on-dark-subtle);
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  margin-bottom: 8px;
}

/* Dates not yet confirmed — italic + faded + accent asterisk so the
   reader gets a quiet "subject to change" cue without distracting from
   the events whose schedule is locked. The `title` attribute on the
   element supplies the full text on hover. */
.event-card h6.dates-tentative {
  font-style: italic;
  opacity: 0.7;
}

.event-card h6.dates-tentative::after {
  content: "*";
  display: inline-block;
  margin-left: 0.15em;
  font-style: normal;
  font-weight: 700;
  color: var(--accent-color);
}

/* Persistent CTA chrome — chevron + status pill so the cards advertise
   their clickability at rest (no hover required, works on touch). The
   chevron sits in the top-right of every card it's added to; the status
   pill drops below the date and signals registration state. */
.event-card-chevron {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 0.95rem;
  color: var(--text-on-dark-subtle);
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.event-card:hover .event-card-chevron,
.event-card:focus-visible .event-card-chevron {
  opacity: 1;
  color: var(--accent-color);
  transform: translate(2px, -2px);
}

.event-card-status {
  display: inline-block;
  margin-top: 2px;
  padding: 3px 10px;
  font-size: clamp(0.55rem, 0.85vw, 0.65rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  line-height: 1.4;
}

.event-card-status-soon,
.event-card-status-planning {
  background: var(--accent-color);
  color: #fff;
}

/* Scenery breather — full-bleed island photo between the hero and the
   story section. No content; purely a palate-cleanser in the snap flow. */
.hub-scenery {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-margin-top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hub-scenery[aria-hidden="true"] {
  display: none;
}
#scenery-1.hub-scenery {
  background-image: url('../img/scenery/scenery-1.jpg');
}
#scenery-2.hub-scenery {
  background-image: url('../img/scenery/scenery-2.jpg');
}
#scenery-3.hub-scenery {
  background-image: url('../img/scenery/scenery-3.jpg');
}
#scenery-4.hub-scenery {
  background-image: url('../img/scenery/scenery-4.webp');
}
#scenery-5.hub-scenery {
  background-image: url('../img/scenery/scenery-5.jpg');
}

/* About / story section — light band that breaks up the dark hub. */
.hub-about {
  background-color: #f2f2f3;
  color: #2f3138;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  /* main.css's generic `section { scroll-margin-top: 92px }` exists for the
     festival page's sticky header; the hub has none, so anchor-scroll lands
     flush at the top of this section. */
  scroll-margin-top: 0;
}

.hub-about .container {
  max-width: clamp(620px, 70vw, 960px);
  margin: 0 auto;
}

.hub-about a {
  color: #356083;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.hub-about a:hover {
  color: #1f3e57;
}

/* Color override for the .section-title h2; sizing/underline/centering
   come from main.css's .section-title styles. */
.hub-about .section-title h2 {
  color: #356083;
}

.hub-about p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 1.1em;
  text-align: justify;
  hyphens: auto;
}

/* Small circular logo placed inline before each event link in the about
   section, mirroring the visual identity of the event cards in the hero. */
.hub-about-event-icon {
  width: 2em;
  height: 2em;
  vertical-align: middle;
  margin-right: 0.5em;
  border-radius: 50%;
  object-fit: contain;
  display: inline-block;
}

.hub-about p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  text-align: center;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-top: clamp(20px, 3vw, 32px);
  color: #356083;
}

/* Impact section — a quieter narrative band between the vision (about) and
   the commercial offer (pass). Same grey palette as .hub-about so the two
   read as one continuous story; the scenery breather between them carries
   the visual transition. Container is a touch wider than the others so the
   scattered impact-card grid has room to breathe without feeling cramped. */
.hub-impact {
  background-color: #f2f2f3;
  color: #2f3138;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  scroll-margin-top: 0;
}

.hub-impact .container {
  max-width: clamp(620px, 80vw, 1080px);
  margin: 0 auto;
}

.hub-impact .section-title h2 {
  color: #356083;
}

.hub-impact p {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0.6em;
  text-wrap: balance;
}

/* "By the numbers" stat row — four counters in a row, fifth centered
   alone below. Numbers count up via IntersectionObserver; the fifth
   crossfades to "άπειρα" at the end of its run. */
.hub-impact-stats {
  list-style: none;
  padding: 0;
  margin: clamp(18px, 2.5vw, 38px) auto clamp(4px, 1vw, 10px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  text-align: center;
}

.hub-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 8px; */
  padding: clamp(10px, 1.4vw, 16px) 6px;
}

.hub-stat--full {
  grid-column: 1 / -1;
  margin-top: clamp(6px, 1vw, 10px);
}

.hub-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 4.0vw, 2.8rem);
  line-height: 1;
  color: #356083;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.25s ease;
}

.hub-stat--full .hub-stat-value {
  font-size: clamp(2.0rem, 5.0vw, 3.5rem);
}

.hub-stat-label {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 1.05vw, 0.95rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2f3138;
  opacity: 0.72;
}

.hub-stat-descr {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 0.85vw, 0.88rem);
  font-style: italic;
  color: #2f3138;
  opacity: 0.45;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .hub-impact-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 12px;
  }
  .hub-stat--full {
    grid-column: 1 / -1;
  }
}

/* Scattered impact-card grid — five cards in a 12-col layout, each
   spanning 5–6 cols and offset / micro-rotated to feel like a wall of
   pinned notes rather than a tidy bullet list. Hover snaps the card
   square and lifts it for legibility. Mobile collapses to one column
   with all rotations and offsets neutralised. */
.hub-impact-list {
  list-style: none;
  padding: 0;
  margin: clamp(40px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.hub-impact-list li {
  background: #ffffff;
  border-radius: 14px;
  padding: clamp(18px, 2vw, 26px);
  display: flex;
  align-items: anchor-center;
  gap: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.45;
  color: #2f3138;
  font-weight: 600;
  text-wrap: balance;
}

.hub-impact-list li:nth-child(1) {
  grid-column: 1 / span 5;
  transform: rotate(-1.5deg);
}

.hub-impact-list li:nth-child(2) {
  grid-column: 8 / span 5;
  transform: rotate(1deg);
  margin-top: 36px;
}

.hub-impact-list li:nth-child(3) {
  grid-column: 4 / span 6;
  transform: rotate(-0.8deg);
}

.hub-impact-list li:nth-child(4) {
  grid-column: 1 / span 5;
  transform: rotate(1.5deg);
  margin-top: 16px;
}

.hub-impact-list li:nth-child(5) {
  grid-column: 8 / span 5;
  transform: rotate(-1deg);
  margin-top: -12px;
}

.hub-impact-list li:hover,
.hub-impact-list li:focus-within {
  transform: translateY(-4px) rotate(0deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.hub-impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.hub-impact-icon i {
  display: block;
  line-height: 1;
}

.hub-impact-text {
  flex: 1;
  align-self: center;
}

@media (max-width: 768px) {
  .hub-impact-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hub-impact-list li:nth-child(1),
  .hub-impact-list li:nth-child(2),
  .hub-impact-list li:nth-child(3),
  .hub-impact-list li:nth-child(4),
  .hub-impact-list li:nth-child(5) {
    grid-column: 1;
    transform: none;
    margin-top: 0;
  }
}

/* Sports Pass section — white band that alternates with .hub-about's grey,
   matching the white/grey alternation pattern used on the Sports Festival
   page (main.css's :root #ffffff vs .light-background #f2f2f3). */
.hub-pass {
  background-color: #ffffff;
  color: #2f3138;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  scroll-margin-top: 0;
}
.hub-pass a {
  color: #356083;
  font-weight: bold;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.hub-pass .container {
  max-width: clamp(620px, 70vw, 960px);
  margin: 0 auto;
}

/* Color override for the .section-title h2; sizing/underline/centering
   come from main.css's .section-title styles. */
.hub-pass .section-title h2 {
  /* color: #C73F19; */
}

/* QR / pass badge above the section title — visual cue for the
   "show this code, get the discount" mechanic the section explains. */
.hub-pass-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 11vw, 96px);
  height: clamp(72px, 11vw, 96px);
  margin: 0 auto clamp(12px, 1.5vw, 20px);
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1;
}

.hub-pass-tagline {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #356083;
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 36px);
}

.hub-pass h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #356083;
  margin-top: clamp(20px, 3vw, 32px);
  margin-bottom: clamp(8px, 1.5vw, 16px);
}

.hub-pass p {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 1.1em;
  text-align: justify;
  hyphens: auto;
}

.hub-pass-closing {
  text-align: center !important;
  font-weight: 600;
  /* color: #C73F19; */
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-top: clamp(20px, 3vw, 32px);
  hyphens: none;
}

/* Pill-shaped CTA at the bottom of the pass section that bridges to
   the companies directory below. Higher specificity than `.hub-pass a`
   so the section's default underlined-link treatment doesn't bleed in. */
.hub-pass .hub-pass-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(20px, 3vw, 32px);
  padding: 12px 26px;
  border: 2px solid var(--accent-color);
  border-radius: 999px;
  color: var(--accent-color);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease;
}

.hub-pass .hub-pass-cta:hover,
.hub-pass .hub-pass-cta:focus-visible {
  background: var(--accent-color);
  color: #fff;
  text-decoration: none;
}

.hub-pass .hub-pass-cta i {
  font-size: 0.95em;
  transition: transform 0.25s ease;
}

.hub-pass .hub-pass-cta:hover i,
.hub-pass .hub-pass-cta:focus-visible i {
  transform: translateY(2px);
}

/* Cooperating businesses — photo-tile grid sized to fit one viewport so the
   snap-scroll lands on a complete band. Undoes main.css's section-level
   scroll-margin-top so the snap lands flush. */
.hub-companies {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-margin-top: 0;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: safe center;
}

.hub-companies .container {
  max-width: clamp(620px, 85vw, 1200px);
  margin: 0 auto;
}

.hub-companies-intro {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.6;
  color: #2f3138;
  text-align: center;
  max-width: 70ch;
  margin: 0 auto clamp(20px, 3vw, 32px);
  text-wrap: balance;
}

.hub-companies-intro a {
  color: #356083;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
  transition: color 0.2s ease;
}

.hub-companies-intro a:hover {
  color: #1f3e57;
}

.hub-companies-group {
  margin-bottom: clamp(20px, 2.5vw, 32px);
}

.hub-companies-group:last-child {
  margin-bottom: 0;
}

.hub-companies-group-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: #356083;
  text-align: center;
  letter-spacing: 0.5px;
  margin: 0 0 clamp(10px, 1.2vw, 16px);
}

/* Fixed-width tile tracks with auto-fit + centered justification. Each
   category group gets its own row(s); groups with fewer items center within
   the track rather than left-aligning with empty slots. */
.hub-companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, clamp(96px, 13vw, 150px));
  justify-content: safe center;
  gap: clamp(8px, 1.2vw, 14px);
}

.company-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-tile:hover,
.company-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.company-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}

.company-tile:hover img,
.company-tile:focus-visible img {
  transform: scale(1.05);
}

.company-tile-name {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 8px 8px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  letter-spacing: 0.3px;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Fixed vertical dot nav — one dot per snap section, active dot tracks the
   currently-visible band. DOM order of dots must match the order of snap
   sections in the markup; the JS wires them up by index. */
.hub-snap-nav {
  position: fixed;
  top: 50%;
  right: clamp(10px, 1.8vw, 22px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 14px);
  z-index: 100;
  padding: 12px 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  pointer-events: auto;
}

.hub-snap-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: height 0.25s ease, transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.hub-snap-dot:hover,
.hub-snap-dot:focus-visible {
  transform: scale(1.25);
  outline: none;
  background: #fff;
}

.hub-snap-dot.active {
  background: var(--accent-color);
  box-shadow: 0 0 8px rgba(199, 63, 25, 0.55);
  height: 24px;
}

.hub-snap-dot.active:hover,
.hub-snap-dot.active:focus-visible {
  transform: none;
}

@media (max-width: 575.98px) {
  .hub-snap-nav {
    gap: 8px;
    right: 8px;
  }
  .hub-snap-dot {
    width: 8px;
    height: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hub-snap-dot {
    transition: none;
  }
}

.hub-footer {
  padding: 20px;
  text-align: center;
  color: var(--text-on-dark);
  font-size: 0.85rem;
}

.sponsor-cta-wrap {
  margin-top: clamp(36px, 5vw, 56px);
}

.sponsor-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent-color);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.92rem, 1.3vw, 1rem);
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(199, 63, 25, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 5px;
}

.sponsor-cta:hover,
.sponsor-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(199, 63, 25, 0.35);
  color: #fff;
}

.sponsor-cta i {
  font-size: 1em;
}

.hub-footer a {
  color: var(--text-on-dark);
  text-decoration: none;
}

.hub-footer a:hover {
  color: var(--text-on-dark-muted);
}
