/* =========================
       Base + Variables
       ========================= */
:root {
  --bg: #000000;
  --accent: #66060c;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --card: rgba(255, 255, 255, 0.06);
  --cardBorder: rgba(255, 255, 255, 0.1);

  --bp-sm: 768px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 16px 18px;
}

/* ===== Double Logo Header  ===== */
.logo-duo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 14px 0 22px;
}

.logo-duo img {
  width: 150px;
  height: 150px;
  border-radius: 22px;
  object-fit: cover;
}

.logo-duo__divider {
  width: 1px;
  height: 92px;
  background: rgba(255, 255, 255, 0.35);
}

/* Mobile: kleiner + Divider kürzer */
@media (max-width: 768px) {
  .logo-duo {
    gap: 12px;
    margin: 10px 0 18px;
  }
  .logo-duo img {
    width: 110px;
    height: 110px;
    border-radius: 18px;
  }
  .logo-duo__divider {
    height: 70px;
  }
}
/* =========================
       Intro Social Media
       ========================= */
.header-social-connect-promo {
  margin: -20px auto 35px; 
  padding: 0;
  background: transparent;
  border: none;
  max-width: 400px;
  text-align: center;
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.promo-text {
  font-size: 15px;
  margin: 0;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.social-icons-row-promo {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-btn {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-btn svg {
  width: 20px;
  height: 20px;
  fill: #000;
}


.social-btn:hover {
  transform: scale(1.15) translateY(-3px) rotate(8deg); 
}

.social-btn.fb:hover { background: #1877f2; }
.social-btn.ig:hover { background: #e4405f; }
.social-btn.tt:hover { background: #444444; }

.social-btn:hover svg {
  fill: #fff;
}


@media (max-width: 768px) {
  .header-social-connect-promo {
    margin-top: -15px;
    width: 100%;
  }
}
	   
/* =========================
       Intro
       ========================= */
.page-intro {
  text-align: center;
  margin: 6px 0 26px;
}

.page-intro h1 {
  font-size: 26px;
  line-height: 1.2;
  margin: 0 0 10px;
  font-weight: 800;
}

.page-intro p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* Intro als Kachel / Hero-Card */
.intro-card {
  margin: 14px auto 0;
  max-width: 720px;
  text-align: left;
  background: var(--card);
  border: 1px solid var(--cardBorder);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.intro-card__label {
  display: inline-block;
  background: rgba(102, 6, 12, 0.28);
  border: 1px solid rgba(102, 6, 12, 0.55);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  margin: 0 0 10px;
}

.intro-card p {
  max-width: none;
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.intro-card p + p {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .intro-card {
    padding: 14px 14px;
    margin-top: 12px;
  }
}


/* =========================
   Presseartikel Section
   ========================= */

section[aria-label="Presseberichte"] {
  background-color: #66060c !important;
  margin: 40px 0 20px;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

section[aria-label="Presseberichte"] .sponsors-title {
  color: #ffffff !important;
  font-size: 24px; 
}

section[aria-label="Presseberichte"] .sponsors-subline {
  color: #ffffff !important;
  font-size: 12px;
  opacity: 0.8;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.press-card {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff !important;
  transition: transform 0.15s ease, border-color 0.15s ease;
  height: 100%;
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.6);
}

.press-img-container {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  position: relative;
}

.press-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.press-card:hover .press-img-container img {
  transform: scale(1.1);
}


.press-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}


.press-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px; 
}


.press-badge {
  display: inline-block;
  background: #ffffff !important;
  color: #66060c !important;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.press-date {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.8;
  text-align: right;
}


.press-subtitle {
  margin: 0 0 8px 0;
  font-size: 14px;
  font-weight: 600;
  opacity: 0.9;
  color: #fff;
}


.press-title {
  margin: 0 0 16px 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
}


.press-cta {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}

.press-card .arrow {
  height: 34px;
  padding: 0 4px 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  gap: 8px;
}

.press-card .cta-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}


.press-card:hover .arrow {
  background: #ffffff !important;
  transform: translateX(4px);
}

.press-card:hover .cta-text {
  color: #66060c !important;
}

.press-card:hover .arrow svg {
  stroke: #66060c !important;
}


@media (max-width: 768px) {
  section[aria-label="Presseberichte"] {
    margin: 30px -16px;
    border-radius: 0;
  }
  .press-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .press-title {
    font-size: 20px; 
  }
}

/* =========================
       Cards
       ========================= */
.cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 26px;
}

a.card {
  text-decoration: none;
  color: inherit;
  display: flex;
  position: relative;
  align-items: stretch;
  gap: 14px;
  background: var(--card);
  border: 1px solid var(--cardBorder);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.12s ease,
    border-color 0.12s ease,
    background 0.12s ease;
}

a.card:hover {
  transform: translateY(-2px);
  border-color: rgba(102, 6, 12, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

.card-img {
  width: 200px;
  min-width: 200px;
  background: #111;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.card-body {
  position: relative;
  flex: 1;
  padding: 38px 10px 14px 2px; /* top space for date */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 108px;
}

.card-date {
  position: absolute;
  top: 12px;
  left: 0;
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(102, 6, 12, 0.35);
  white-space: nowrap;
  z-index: 2;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 6px 0;
  letter-spacing: 0.01em;
}

.card-desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.35;
}

/* HTML uses an inner row wrapper; keep it lightweight and consistent */
.card-content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.card-text {
  flex: 1;
  min-width: 0;
}

/* Container für den Button-Bereich */
.card-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px;
  /* min-width entfernt, damit er flexibel bleibt */
}

/* Der Button (ehemals nur der Kreis, jetzt die Pill-Form) */
.arrow {
  height: 36px;
  padding: 0 4px 0 16px; /* Links Platz für Text, rechts Platz für SVG */
  border-radius: 999px;
  background: rgba(102, 6, 12, 0.28);
  border: 1px solid rgba(102, 6, 12, 0.55);
  display: flex;
  align-items: center;
  gap: 8px; /* Abstand zwischen Text und Pfeil */
  transition: transform 0.12s ease, background 0.12s ease;
}

/* Der neue Text im Button */
.cta-text {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* Das SVG Icon im Button */
.arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
  display: block;
}


a.card:hover .arrow {
  transform: translateX(4px); 
  background: var(--accent); 
}


@media (max-width: 768px) {
  .card-cta {
    padding: 0;
    margin-top: 10px; 
    align-self: flex-end;
  }
  
  .arrow {
    height: 32px;
    padding: 0 2px 0 12px;
  }
  
  .cta-text {
    font-size: 12px;
  }
}

.arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.95;
  display: block;
}

/* =========================
	   Thumbnail Sticker (Prozentuale Steuerung)
	   ========================= */
.thumbnail-sticker {
  position: absolute;
  z-index: 25;
  pointer-events: none;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

/* --- 1. Markus Krebs Sticker (RYKO) --- */
#sticker-ryko {
  top: 5%;
  right: 5%;
  width: 30%;
}

/* --- 2. Public Viewing Sticker (WM-Parties) --- */
#sticker-wm {
  top: 35%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
}

/* --- 3. Musik am Donnerberg Sticker (Weltstars) --- */
#sticker-weltstars {
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
}

.card.coming-soon {
  filter: grayscale(1);
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none; /* DAS ist der Klick-Killer */
}

/* Kein Hover */
.card.coming-soon:hover {
  transform: none;
  background: var(--card);
  border-color: var(--cardBorder);
}

/* Bild abdunkeln */
.card.coming-soon .card-img::after {
  background: rgba(0, 0, 0, 0.55);
}

/* Pfeil visuell deaktiviert */
.card.coming-soon .arrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Coming Soon Badge */
.card.coming-soon::after {
  content: "Coming Soon";
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 5;
}

/* =========================
   FAQ
   ========================= */

.faq-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 20px 0;
}

/* Headline */
.faq-subline {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 8px;
  text-align: center;
}

.faq-title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.faq-category-title {
  display: block;
  margin: 18px auto 14px;
  padding: 10px 16px;
  max-width: 720px;
  text-align: center;

  background: var(--card);
  border: 1px solid var(--cardBorder);
  border-left: 4px solid var(--accent);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);

  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .faq-category-title {
    font-size: 14px;
    padding: 10px 14px;
    margin-top: 26px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .faq-wrap {
    width: 100%;
  }
}

.faq-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 2px 0;
}

.faq-note {
  opacity: 0.75;
  font-size: 0.95rem;
  text-align: center;
  margin: 12px 0 30px;
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 6px; /* spacing statt border */
}

.faq-item {
  padding: 0;
}

/* Question Button */
.faq-btn {
  width: 100%;
  background: transparent;
  border: 0;
  color: white;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  font-size: 1.05rem;
  line-height: 1.25em;
}

.faq-btn:hover {
  opacity: 0.9;
}

.faq-btn:focus {
  outline: none;
}

/* Optional Kategorie-Label */
.faq-qtag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 10px;
}

/* Icon – nur Plus/Minus */
.faq-icon {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
  opacity: 0.85;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transition: opacity 0.2s ease;
}

.faq-item[data-open="true"] .faq-icon::after {
  opacity: 0;
}

/* Answer */
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-panel-inner {
  padding: 4px 0 18px 0;
  opacity: 0.78;
  line-height: 1.6em;
}

.section-sep {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =========================
       Footer / Social
       ========================= */
.social {
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 8px 0 14px;
}

.social a {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition:
    transform 0.12s ease,
    background 0.12s ease;
}

.social svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
  opacity: 0.95;
  transition: fill 0.12s ease;
  display: block;
}

.social a:hover {
  transform: translateY(-2px);
  background: var(--accent);
}

.social a:hover svg {
  fill: #ffffff;
}

.mip-footer-copy span,
.mip-footer-copy a {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.9;
  text-align: center;
}

.mip-footer-copy a {
  text-decoration: none;
  margin-bottom: 6px;
}

.mip-footer-copy a:hover {
  text-decoration: underline;
  opacity: 1;
}

/* =========================
       Mobile Layout
       ========================= */
@media (max-width: 768px) {
  a.card {
    flex-direction: column;
    gap: 0;
  }

  .card-img {
    display: block;
    order: 0;
  }

  .card-body {
    order: 1;
  }

  .card-content-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  /* Bilder auf Mobile über die volle Breite */
  .card-img {
    width: 100% !important;
    min-width: 100% !important;
    height: 280px !important; /* einheitliche Mobile Thumbnail-Höhe */
  }

  /* Sticker-Anpassung für die mobile Ansicht */
  #sticker-ryko {
    width: 20%;
  }

  #sticker-wm {
    top: 35%;
    width: 100%;
  }

  #sticker-weltstars {
    width: 60%;
    bottom: 15%;
  }

  .card-body {
    padding: 40px 14px 14px;
    min-height: auto;
  }

  .card-date {
    left: 14px;
    top: 12px;
  }

  .card-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .card-cta {
    padding: 0;
    min-width: auto;
    align-self: flex-end;
  }

  /* Badge Position auf Mobile anpassen */
  .card-badge-pip {
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 9px;
  }
}

/* Diese Regeln müssen AUSSERHALB der Media Query stehen, 
       damit sie auch auf Desktop funktionieren */
.card-img {
  width: 200px;
  min-width: 200px;
  background: #111;
  position: relative;
  overflow: hidden;
}

.card-badge-pip {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #66060c;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 6px 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  z-index: 10;
  pointer-events: none;
}

/* =========================
	   Sponsors Section
	   ========================= */
.sponsors {
  margin-top: 45px;
  padding-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsors-head {
  text-align: center;
  margin: 0 0 10px;
  padding-top: 0;
}

.sponsors-subline {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 4px;
}

.faq-panel-inner a {
  text-decoration: underline !important;
  color: inherit;
}

.sponsors-title {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-left: -10px;
  margin-right: -10px;
  width: auto;
}

.sponsor-cell {
  flex: 0 1 calc(33.333% - 10px);
  min-width: 200px;
  min-height: 110px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

@media (max-width: 768px) {
  .sponsor-cell {
    flex: 0 1 calc(50% - 7px);
    min-width: 140px;
    min-height: 90px;
  }
}

/* Sehr kleine Geräte weiterhin 2-spaltig; letzte Reihe bleibt durch justify-content:center zentriert */

.sponsor-cell:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55);
}

/* Link-Kachel */
.sponsor-cell--link {
  text-decoration: none;
  color: inherit;
}

/* Logo */
.sponsor-cell img {
  max-width: 180px;
  max-height: 74px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  transition:
    transform 0.18s ease,
    opacity 0.18s ease,
    filter 0.18s ease;
}

.sponsor-cell:hover img {
  transform: scale(1.03);
  opacity: 0.98;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.45));
}

/* Platzhalter */
.sponsor-cell--placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.sponsor-cell--placeholder::after {
  content: "Platzhalter";
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.35;
}

/* Mobile: 1 pro Reihe */
@media (max-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Sehr kleine Geräte: 1 pro Reihe (optional, aber sinnvoll) */
@media (max-width: 360px) {
  .sponsors-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Sponsor CTA Section
   ========================= */

.sponsor-cta {
  margin: 22px -10px 10px;
  padding: 22px 16px;
  border-radius: 18px;
  background: #66060c;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.55);
  text-align: center;
}

@media (max-width: 768px) {
  .sponsor-cta {
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 12px;
  }
}

.sponsor-cta__title {
  margin: 0 0 14px;
  font-size: clamp(18px, 4.5vw, 24px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

/* Button */
.sponsor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #66060c;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    opacity 0.12s ease;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.sponsor-btn:hover {
  transform: translateY(-2px);
  opacity: 0.96;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

.sponsor-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

sup {
  font-size: 0.65em;
  line-height: 0;
  vertical-align: super;
}


