:root {
  --bg: #050505;
  --surface: #0F0F0F;
  --text: #FAFAFA;
  --muted: #A3A3A3;
  --primary: #EAB308;
  --secondary: #CA8A04;
  --accent: #22C55E;
  --border: rgba(250,250,250,0.14);
  --font-heavy: "Arial Black", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-sans: "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "SF Mono", "Consolas", "Liberation Mono", Menlo, monospace;
  --concrete: #6b6b6b;
  --structure: 4px;
  --heavy: 900;
  --raw: rgba(163,163,163,0.18);
  --monumental: 1.15;
  --offer-card-bg: #ffffff;
  --offer-card-border: #e2e8f0;
  --offer-card-text: #1e293b;
  --offer-card-muted: #64748b;
  --offer-bonus: #0f172a;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, #050505 0%, #0a0a0a 42%, #050505 100%),
    radial-gradient(ellipse 70% 45% at 8% 0%, rgba(234, 179, 8, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 40% at 95% 20%, rgba(202, 138, 4, 0.06), transparent 50%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(250, 250, 250, 0.012) 3px,
      rgba(250, 250, 250, 0.012) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(250, 250, 250, 0.008) 3px,
      rgba(250, 250, 250, 0.008) 4px
    );
  opacity: 0.85;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(234, 179, 8, 0.05), transparent 65%),
    linear-gradient(180deg, transparent 60%, rgba(15, 15, 15, 0.4) 100%);
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-heavy);
  font-weight: var(--heavy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: var(--monumental);
  color: var(--text);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.concrete-block {
  background: linear-gradient(145deg, #1a1a1a 0%, #0f0f0f 50%, #161616 100%);
  border: 1px solid var(--border);
  box-shadow:
    8px 8px 0 rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(250, 250, 250, 0.04);
}

.structure-rail {
  border-left: var(--structure) solid var(--primary);
  padding-left: 1.25rem;
}

.heavy-panel {
  font-weight: var(--heavy);
}

.raw-texture {
  background-image:
    radial-gradient(circle at 20% 30%, var(--raw) 0.5px, transparent 0.6px),
    radial-gradient(circle at 70% 60%, rgba(107, 107, 107, 0.15) 0.4px, transparent 0.5px);
  background-size: 12px 12px, 18px 18px;
}

.monumental-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: 0.06em;
}

.disclosure-banner {
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: 60px;
  background: #050505;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-heavy);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.brand-lockup:hover {
  color: var(--primary);
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.nav-links a {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-size: 0.72rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.burger span {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 600;
}

.nav-overlay.open {
  display: block;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 650;
  background: #050505;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  min-width: 180px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

main {
  flex: 1;
}

.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--surface);
  background-image: url("/images/decorative/decor_1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 3rem 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
  margin-bottom: 0.85rem;
}

.hero-sub {
  color: #fff;
  font-size: 1.05rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
  max-width: 540px;
  margin: 0 auto;
}

.offers-section {
  padding: 3.5rem 1.25rem;
  background-color: var(--surface);
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.88)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.offers-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.offers-intro {
  margin-bottom: 2rem;
  max-width: 640px;
}

.offers-intro h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.offers-intro p {
  color: var(--muted);
  font-size: 0.95rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.offer-card {
  background: var(--offer-card-bg);
  border: 1px solid var(--offer-card-border);
  border-radius: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.35);
  color: var(--offer-card-text);
}

.offer-logo {
  width: 200px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--offer-card-border);
  margin: 0 auto;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-name {
  font-family: var(--font-heavy);
  font-size: 1rem;
  color: var(--offer-card-text);
  letter-spacing: 0.03em;
}

.offer-bonus-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.offer-bonus {
  font-weight: 700;
  font-size: clamp(0.78rem, 2.4vw, 0.92rem);
  color: var(--offer-bonus);
  line-height: 1.4;
  word-break: break-word;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.offer-terms {
  font-size: 0.7rem;
  color: var(--offer-card-muted);
  line-height: 1.35;
  word-break: break-word;
}

.offer-desc {
  font-size: 0.8rem;
  color: var(--offer-card-muted);
  line-height: 1.45;
}

.offer-cta {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  padding: 0.75rem 1rem;
  font-family: var(--font-heavy);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.offer-cta:hover {
  filter: brightness(1.05);
  color: var(--offer-cta-text);
}

.info-section {
  padding: 3.25rem 1.25rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: var(--primary);
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-section h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 0.9rem;
  max-width: 70ch;
}

.topic-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(234, 179, 8, 0.25);
}

.topic-cta:hover {
  background: rgba(234, 179, 8, 0.12);
  color: var(--text);
}

.decor-wrap {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.45);
}

.decor-img {
  max-width: 100%;
  max-height: 320px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 2.75rem 1.25rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-family: var(--font-heavy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-compliance {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  max-width: 75ch;
}

.footer-compliance a {
  color: var(--primary);
}

.footer-updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.85rem;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.footer-badges a {
  display: inline-block;
}

.footer-requisites {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
}

.page-hero {
  padding: 2.5rem 1.25rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 180px;
  height: 180px;
  border: 8px solid rgba(234, 179, 8, 0.15);
  transform: rotate(12deg);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin: 0.4rem 0 0.75rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 60ch;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3.5rem;
}

.page-content h2 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--primary);
}

.page-content h3 {
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.page-content p,
.page-content li {
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.page-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.page-content a {
  color: var(--primary);
}

.contact-form {
  margin-top: 2rem;
  max-width: 520px;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
}

.contact-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #ef4444;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  display: none;
  color: #ef4444;
  font-size: 0.8rem;
  margin: -0.5rem 0 0.75rem;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 1.25rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  margin-top: 1.5rem;
}

.form-success.visible {
  display: block;
}

.btn-submit {
  background: var(--primary);
  color: #050505;
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: var(--font-heavy);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
}

.btn-submit:hover {
  background: var(--secondary);
}

.age-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.85);
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-overlay.active {
  display: flex;
}

.age-dialog {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.55);
}

.age-title {
  font-family: var(--font-heavy);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.age-dialog p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.age-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm,
.btn-decline {
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-confirm {
  background: var(--primary);
  color: #050505;
  border-color: var(--primary);
}

.btn-decline {
  background: transparent;
  color: var(--text);
}

.age-blocked {
  display: none;
  color: #ef4444;
  margin-top: 0.5rem;
}

.age-blocked.visible {
  display: block;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8500;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.85rem;
  flex: 1;
  min-width: 220px;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions button {
  padding: 0.65rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--border);
}

.cookie-actions .accept {
  background: var(--primary);
  color: #050505;
  border-color: var(--primary);
}

.cookie-actions .reject {
  background: transparent;
  color: var(--text);
}

.go-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.go-page h1 {
  font-size: 1.4rem;
  margin: 1rem 0 0.5rem;
}

.go-page p {
  color: var(--muted);
}

#AD {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.go-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.go-notes {
  margin-top: 1.5rem;
  font-size: 0.85rem;
}

.go-notes a {
  color: var(--primary);
}

.error-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.error-home {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero {
    min-height: 250px;
    background-attachment: scroll;
  }
}

@media (max-width: 640px) {
  .disclosure-banner {
    margin: 10px 12px;
    font-size: 11px;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-logo {
    width: 160px;
    height: 58px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-bonus {
    font-size: 0.8rem;
  }

  .decor-wrap,
  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }
}

.live-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}

.live-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.5);
}

.live-hero-text {
  padding: 2rem 1.5rem;
  background: var(--surface);
}

.live-hero-text h1 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  margin: 0.4rem 0 0.85rem;
}

.live-hero-text p {
  color: var(--muted);
}

.live-hero-media {
  min-height: 240px;
  background-image:
    linear-gradient(135deg, rgba(5, 5, 5, 0.35), rgba(5, 5, 5, 0.7)),
    url("/images/decorative/decor_6.webp");
  background-size: cover;
  background-position: center;
}

.live-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.live-col {
  padding: 1.25rem;
  background: linear-gradient(180deg, #121212, #0c0c0c);
  border: 1px solid var(--border);
}

.live-col h2 {
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.live-col p,
.live-col li {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
}

.live-col ul {
  list-style: disc;
  padding-left: 1.1rem;
}

.live-quote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--border);
  font-family: var(--font-heavy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
}

.live-wrap > p {
  color: var(--muted);
  margin-bottom: 0.85rem;
  max-width: 75ch;
}

.live-wrap > h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.1rem;
  color: var(--primary);
}

@media (max-width: 800px) {
  .live-hero,
  .live-columns {
    grid-template-columns: 1fr;
  }

  .live-wrap {
    overflow-x: hidden;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .live-hero-media {
    min-height: 160px;
    max-width: 100%;
    background-size: cover;
  }
}
