/* ============================================================
   MAXXEDOUT — Custom Wrestling Media Styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700;1,900&family=Barlow:wght@400;500;600;700&display=swap');

/* ==================== VARIABLES ==================== */
:root {
  --red:      #DC0000;
  --red-dark: #9B0000;
  --yellow:   #F5C400;
  --bg:       #080808;
  --bg2:      #111111;
  --bg3:      #1A1A1A;
  --border:   #222222;
  --text:     #F0F0F0;
  --muted:    #888888;
  --ff-impact:     'Bebas Neue', Impact, 'Arial Black', sans-serif;
  --ff-condensed:  'Barlow Condensed', 'Arial Narrow', sans-serif;
  --ff-body:       'Barlow', system-ui, sans-serif;
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  overflow-x: hidden;
}

img { display: block; }

/* ==================== TYPOGRAPHY ==================== */

.ff-impact    { font-family: var(--ff-impact); }
.ff-condensed { font-family: var(--ff-condensed); }

.headline-xl {
  font-family: var(--ff-impact);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.headline-lg {
  font-family: var(--ff-impact);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.headline-md {
  font-family: var(--ff-condensed);
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ==================== NAV ==================== */

.nav-main {
  background: #000;
  border-bottom: 3px solid var(--red);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: var(--ff-impact);
  font-size: 1.75rem;
  color: var(--text);
  letter-spacing: 0.05em;
  text-decoration: none;
  line-height: 1;
}

.nav-logo em { color: var(--red); font-style: normal; }

.nav-link {
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.nav-link:hover { color: white; border-bottom-color: var(--red); }
.nav-link.active { color: var(--yellow); border-bottom-color: var(--yellow); }

/* ==================== NAV DROPDOWN ==================== */

.nav-dropdown { position: relative; display: flex; align-items: center; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-top: 2px solid var(--red);
  min-width: 150px;
  z-index: 200;
  padding: 0.25rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover { color: #fff; background: #1a1a1a; }

/* Caret indicator on the Articles trigger */
.nav-dropdown > .nav-link::after {
  content: " ▾";
  font-size: 0.65rem;
  opacity: 0.6;
  margin-left: 1px;
}

/* ==================== BUTTONS ==================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: #fff;
  font-family: var(--ff-condensed);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 2rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  color: #fff;
}

.btn-yellow { background: var(--yellow); color: #000; }
.btn-yellow:hover { background: #d4a900; color: #000; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #fff;
  font-family: var(--ff-condensed);
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.875rem 2rem;
  border: 2px solid #fff;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

/* ==================== BADGE / PILL ==================== */

.badge {
  display: inline-block;
  font-family: var(--ff-condensed);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
}

.badge-red    { background: var(--red);    color: #fff; }
.badge-yellow { background: var(--yellow); color: #000; }
.badge-dark   { background: #222;          color: #aaa; border: 1px solid #333; }

.badge-slash {
  clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

/* ==================== NEWS TICKER ==================== */

.news-ticker {
  background: var(--red);
  overflow: hidden;
  display: flex;
}

.ticker-label {
  background: var(--yellow);
  color: #000;
  font-family: var(--ff-condensed);
  font-weight: 900;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 0.5rem 0.75rem;
  flex-shrink: 0;
  z-index: 2;
}

.ticker-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.ticker-track:hover { animation-play-state: paused; }

.news-ticker .ticker-track { animation-duration: 120s; }

.ticker-item {
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  padding: 0.5rem 2rem;
}

.ticker-sep { color: var(--yellow); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==================== PODCAST TICKER (BLACK BAR) ==================== */

.podcast-ticker {
  background: var(--bg2);
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 36px;
  border-bottom: 1px solid var(--border);
}

.podcast-ticker .ticker-label {
  background: #1a1a1a;
  color: var(--yellow);
  border-right: 1px solid var(--border);
}

.podcast-ticker .ticker-item {
  color: var(--muted);
  font-weight: 600;
}

.podcast-ticker .ticker-sep {
  color: var(--red);
}

/* ==================== TICKER ALIGNMENT ==================== */

.news-ticker,
.podcast-ticker {
  align-items: stretch;
  height: 36px;
}

.news-ticker .ticker-label,
.podcast-ticker .ticker-label {
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.news-ticker .overflow-hidden,
.podcast-ticker .overflow-hidden {
  display: flex;
  align-items: center;
}

/* ==================== NAV BUTTONS ==================== */

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 18px;
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.nav-btn-outline {
  background: var(--red);
  color: #fff;
  border: 2px solid #fff;
}

.nav-btn-outline:hover {
  background: var(--red-dark);
  border-color: #fff;
}

.nav-btn-solid {
  background: var(--yellow);
  color: #000;
  border: 2px solid var(--yellow);
}

.nav-btn-solid:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* ==================== TYPOGRAPHY WEIGHTS ==================== */

.text-heavy  { font-weight: 800; }
.text-medium { font-weight: 500; }
.text-light  { font-weight: 400; }

/* ==================== SECTION HEADER ==================== */

.section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-title {
  font-family: var(--ff-impact);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

.section-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(to right, var(--red), transparent);
  min-width: 40px;
}

.section-tag {
  font-family: var(--ff-condensed);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  border: 1px solid rgba(245,196,0,0.4);
  padding: 0.2rem 0.6rem;
  white-space: nowrap;
  text-decoration: none;
}

.section-tag:hover { background: rgba(245,196,0,0.1); color: var(--yellow); }

/* ==================== NEWS CARDS ==================== */

.news-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
  box-shadow: 0 12px 40px rgba(220,0,0,0.2);
}

.news-card:hover .card-img { transform: scale(1.06); }

.card-img-wrap {
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-img-tall {
  aspect-ratio: 4/3;
}

.card-cat {
  position: absolute;
  top: 0.75rem;
  left: 0;
  font-family: var(--ff-condensed);
  font-weight: 800;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.75rem 0.2rem 0.6rem;
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
  z-index: 2;
}

.card-cat-red    { background: var(--red);    color: #fff; }
.card-cat-yellow { background: var(--yellow); color: #000; }

.card-body {
  padding: 1rem 1.25rem 1.25rem;
}

.card-title {
  font-family: var(--ff-impact);
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

@media (max-width: 768px) {
  .card-title {
    display: block;
    overflow: visible;
  }
}

.news-card:hover .card-title { color: #fff; }

/* Homepage: hide cards 4-6 on mobile */
@media (max-width: 768px) {
  .home-card-hide-mobile { display: none; }
}

.card-meta {
  font-size: 0.72rem;
  color: #666;
  font-family: var(--ff-body);
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.card-meta-accent { color: var(--yellow); }

/* ==================== MAGAZINE COVERS ==================== */

.mag-cover {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  border: 3px solid var(--border);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  display: block;
  text-decoration: none;
}

.mag-cover:hover {
  transform: translateY(-10px) rotate(-1.5deg);
  border-color: var(--red);
  box-shadow: 0 24px 50px rgba(220,0,0,0.35);
}

.mag-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mag-cover:hover img { transform: scale(1.04); }

.mag-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.75) 0%,
    transparent 35%,
    transparent 50%,
    rgba(0,0,0,0.92) 100%);
}

.mag-cover-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--red);
  padding: 0.4rem 0.6rem;
  text-align: center;
}

.mag-cover-logo {
  font-family: var(--ff-impact);
  color: #fff;
  font-size: clamp(0.8rem, 1.8vw, 1.1rem);
  letter-spacing: 0.08em;
}

.mag-cover-logo span { color: var(--yellow); }

.mag-cover-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem;
}

.mag-cover-issue {
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 0.25rem;
}

.mag-cover-headline {
  font-family: var(--ff-condensed);
  font-weight: 900;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

/* ==================== EMAIL FORM ==================== */

.email-form {
  display: flex;
  max-width: 520px;
}

.email-input {
  flex: 1;
  background: #1a1a1a;
  border: 2px solid #333;
  border-right: none;
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 0.875rem 1.25rem;
  outline: none;
  transition: border-color 0.2s;
  min-width: 0;
}

.email-input:focus   { border-color: var(--red); }
.email-input::placeholder { color: #444; }

/* ==================== FILTER TABS ==================== */

.filter-tab {
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.45rem 1.25rem;
  border: 2px solid #2a2a2a;
  color: #777;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  white-space: nowrap;
}

.filter-tab:hover  { border-color: #444; color: #ccc; }
.filter-tab.active { border-color: var(--red); background: var(--red); color: #fff; }

/* ==================== ARTICLE ==================== */

.article-hero {
  position: relative;
  overflow: hidden;
  max-height: 600px;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 20%,
    rgba(8,8,8,0.7) 65%,
    var(--bg) 100%);
}

.article-body {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: #ccc;
}

.article-body p { margin-bottom: 1.5rem; }

.article-body h2 {
  font-family: var(--ff-condensed);
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #fff;
  margin: 2.5rem 0 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--red);
}

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: rgba(245,196,0,0.05);
  border-left: 4px solid var(--yellow);
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.4;
}

.article-body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.article-body ul li {
  padding: 0.3rem 0 0.3rem 1.5rem;
  position: relative;
  color: #ccc;
}

.article-body ul li::before {
  content: '►';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 0.65em;
  top: 0.5rem;
}

/* ==================== MAGAZINE DIGITAL READER ==================== */

.mag-spread {
  padding: 4rem 0;
  border-bottom: 1px solid #1a1a1a;
  position: relative;
}

.mag-spread:nth-child(even) { background: #0c0c0c; }

.mag-page-num {
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.7rem;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.mag-pull-quote {
  font-family: var(--ff-impact);
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-transform: uppercase;
  line-height: 1;
  color: var(--red);
  border-left: 6px solid var(--red);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* ==================== STATS / NUMBERS ==================== */

.stat-num {
  font-family: var(--ff-impact);
  font-size: 2.5rem;
  line-height: 1;
}

.stat-label {
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555;
}

/* ==================== SEARCH ==================== */

.search-input {
  background: #111;
  border: 2px solid #2a2a2a;
  color: var(--text);
  font-family: var(--ff-condensed);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
}

.search-input:focus       { border-color: var(--red); }
.search-input::placeholder{ color: #3a3a3a; }

/* ==================== FOOTER ==================== */

.footer-main {
  background: #000;
  border-top: 3px solid var(--red);
}

.footer-link {
  font-family: var(--ff-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 0.2rem 0;
}

.footer-link:hover { color: #ccc; }

/* ==================== MOBILE MENU ==================== */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

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

.mob-link {
  font-family: var(--ff-impact);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}

.mob-link:hover { color: var(--red); }

/* ==================== DECORATIVE ==================== */

.red-bar    { display: block; height: 4px; background: var(--red); }
.yellow-bar { display: block; height: 4px; background: var(--yellow); }

.skew-divider {
  height: 50px;
  background: inherit;
}

/* Background grid pattern */
.bg-grid {
  background-image:
    linear-gradient(rgba(220,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,0,0,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ==================== ANIMATIONS ==================== */

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,0,0,0.5); }
  50%       { box-shadow: 0 0 0 12px rgba(220,0,0,0); }
}

.pulse { animation: pulse-glow 2s infinite; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up  { animation: fade-up 0.65s ease both; }
.anim-delay-1  { animation-delay: 0.1s; }
.anim-delay-2  { animation-delay: 0.2s; }
.anim-delay-3  { animation-delay: 0.35s; }
.anim-delay-4  { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ==================== TYPOGRAPHY — READABILITY ==================== */

body {
  font-weight: 400;
  letter-spacing: 0.01em;
}

p {
  font-weight: 400;
  line-height: 1.65;
  color: #ccc;
}

.article-content h2,
.article-content h3 {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.card-meta {
  font-weight: 400;
}

.stat-label {
  font-weight: 400;
}

/* ==================== NEWS FILTERS — REMOVE STICKY ==================== */

/* Category bar scrolls with page — no sticky trap */
div[style*="position:sticky"][style*="top:67px"] {
  position: relative !important;
  top: auto !important;
}

/* ==================== RESPONSIVE HELPERS ==================== */

@media (max-width: 768px) {
  .email-form { flex-direction: column; }
  .email-input { border-right: 2px solid #333; border-bottom: none; }
  .btn-primary { clip-path: none; width: 100%; justify-content: center; }
}

/* ==================== ARTICLE LAYOUT ==================== */

/* Desktop: article + sidebar 2-column grid */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: flex-start;
}

/* Featured image visibility — desktop shows sidebar version, mobile shows inline version */
.article-featured-mobile { display: none; }
.sidebar-featured-desktop { display: block; }

/* Mobile: stack sidebar below article */
@media (max-width: 1024px) {
  .article-grid {
    display: block;
  }
  .article-grid aside {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 3px solid var(--red);
  }

  /* Show featured image inline (below byline), hide it in the sidebar */
  .article-featured-mobile {
    display: block;
    margin-bottom: 2rem;
  }
  .sidebar-featured-desktop {
    display: none;
  }

  /* Full width article content */
  article {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 0 !important;
  }

  /* Fix oversized headings on mobile */
  .article-content h2,
  .article-content h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    letter-spacing: normal;
    font-weight: 600;
  }

  /* Category filter buttons — single scrollable row */
  .filter-group {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 6px;
    padding-bottom: 2px; /* prevent scrollbar clipping */
    scrollbar-width: none; /* Firefox */
  }
  .filter-group::-webkit-scrollbar { display: none; } /* Chrome/Safari */

  .filter-tab {
    flex-shrink: 0;
    white-space: nowrap;
    width: auto !important;
    padding: 0.45rem 0.85rem;
    font-size: 0.72rem;
  }

  /* Search full-width on mobile */
  .search-wrap {
    max-width: 100% !important;
    width: 100%;
  }
}

@media (max-width: 640px) {
  h1.headline-xl { font-size: clamp(2.5rem, 10vw, 4rem); }
  h1.headline-lg,
  h2.headline-lg { font-size: clamp(2rem, 8vw, 3rem); }
}
