/* ============================================
   PORTAL45 — REDESIGN: VETERAN ANCIENT-FUTURE
   Black & White base | Stamped/Stencil titles
   Blood red + Deep navy accents — sparse, precise
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&family=Russo+One&display=swap');

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

:root {
  /* Core palette — B&W */
  --black:      #0A0A0A;
  --off-black:  #111111;
  --deep-grey:  #1A1A1A;
  --mid-grey:   #2E2E2E;
  --steel:      #4A4A4A;
  --ash:        #8A8A8A;
  --bone:       #D4D0C8;   /* aged paper/bone white — easier to read than pure white */
  --white:      #F0EDE6;

  /* Accent 1 — Blood Red (use sparingly) */
  --red:        #8B0000;
  --red-bright: #CC1100;
  --red-glow:   rgba(139, 0, 0, 0.35);

  /* Accent 2 — Deep Navy/Tactical Blue (use sparingly) */
  --navy:       #0A1628;
  --blue:       #1A3A6B;
  --blue-bright:#2255AA;
  --blue-glow:  rgba(26, 58, 107, 0.4);

  /* Functional */
  --card-bg:    #141414;
  --border:     rgba(212, 208, 200, 0.12);
  --border-mid: rgba(212, 208, 200, 0.25);
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--bone);
  font-family: 'Rajdhani', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--steel); }
::-webkit-scrollbar-thumb:hover { background: var(--red-bright); }

/* ============================================
   STAMPED / STENCIL TITLE EFFECT
   The core visual identity — looks pressed into metal
   ============================================ */
.stamp {
  font-family: 'Bebas Neue', 'Russo One', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  /* Embossed / stamped look — dual shadow */
  text-shadow:
    0 1px 0 rgba(255,255,255,0.08),
    0 -1px 0 rgba(0,0,0,0.8),
    0 0 30px rgba(0,0,0,0.5);
  position: relative;
}

/* Worn/stencil variant — adds ink bleed */
.stamp-worn {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow:
    1px 1px 2px rgba(0,0,0,0.9),
    -1px -1px 1px rgba(255,255,255,0.04),
    0 0 8px rgba(0,0,0,0.7);
  opacity: 0.92;
}

/* Red accent on specific words */
.accent-red  { color: var(--red-bright); }
.accent-blue { color: var(--blue-bright); }

/* Classification tag — like a military stamp */
.classified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--border-mid);
  padding: 0.3rem 0.9rem;
  background: rgba(255,255,255,0.03);
}

.classified-tag::before {
  content: '▌';
  color: var(--red-bright);
  font-size: 0.7rem;
}

/* Horizontal rule — tactical line */
.tac-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
  opacity: 0.4;
}

.tac-rule-red {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

/* Thin red bar at very top of nav */
nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  opacity: 0.8;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-logo:hover .nav-logo-img {
  opacity: 0.85;
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ash);
  text-decoration: none;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--red-bright);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bone);
  transition: all 0.3s;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* Primary — solid red */
.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red-bright);
}

.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 20px var(--red-glow), inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Outline — bone/white */
.btn-outline {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--border-mid);
}

.btn-outline:hover {
  border-color: var(--bone);
  background: rgba(255,255,255,0.04);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.06),
    0 -1px 0 rgba(0,0,0,0.9);
}

.section-header h2 .accent-red { color: var(--red-bright); }
.section-header h2 .accent-blue { color: var(--blue-bright); }

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 1.2rem;
  opacity: 0.8;
}

.section-header p {
  color: var(--ash);
  font-size: 1rem;
  font-weight: 500;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
}

/* Tiny corner markers — military blueprint style */
.product-card::before,
.product-card::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  border-color: var(--red);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.25s;
}

.product-card::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}

.product-card::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.product-card:hover {
  border-color: var(--mid-grey);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.product-card:hover::before,
.product-card:hover::after {
  opacity: 1;
}

.product-card-image-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.6rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  background: #0D0D0D;
}

/* Grid lines on placeholder — blueprint feel */
.product-card-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

.chakra-symbol {
  font-size: 2.2rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: grayscale(0.3);
}

.chakra-label {
  position: relative;
  z-index: 1;
  color: var(--ash);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
}

.product-card-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid var(--border);
}

.product-card-chakra {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}

.product-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--ash);
  line-height: 1.55;
  flex: 1;
  font-weight: 500;
}

.product-card-footer {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.1rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.6);
  opacity: 1 !important;
  visibility: visible !important;
}

.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: var(--white);
}

.btn-buy {
  padding: 0.5rem 1.2rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: #8B0000;
  color: #F0EDE6 !important;
  border: 1px solid #CC1100;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  visibility: visible !important;
  opacity: 1 !important;
  transition: all 0.2s;
}

.btn-buy:hover {
  background: #CC1100;
  box-shadow: 0 0 14px rgba(139,0,0,0.5);
}

/* Bundle card blue accent */
.card-bundle .product-price { color: var(--bone); }
.card-bundle .btn-buy {
  background: var(--blue);
  border-color: var(--blue-bright);
}
.card-bundle .btn-buy:hover {
  background: var(--blue-bright);
  box-shadow: 0 0 12px var(--blue-glow);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  opacity: 0.5;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand h3 span { color: var(--red-bright); }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--steel);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  color: var(--ash);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--steel);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
  font-weight: 500;
}

.footer-col ul a:hover { color: var(--bone); }
.footer-col ul a i { width: 16px; text-align: center; opacity: 0.7; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: var(--steel);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--red-bright);
  opacity: 0.7;
}

/* ============================================
   NOISE / GRAIN TEXTURE OVERLAY
   Gives the whole site a worn, aged feel
   ============================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  nav { padding: 1rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(10,10,10,0.99);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   ENTRY GATE
   ============================================ */
#entry-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#entry-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.gate-inner {
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.gate-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  mix-blend-mode: screen;
}

.gate-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  color: #4A4A4A;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.gate-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  letter-spacing: 0.12em;
  color: #F0EDE6;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.9), -1px -1px 0 rgba(0,0,0,0.6);
}

.gate-title span { color: #CC1100; }

.gate-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: #6A6A6A;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.gate-divider {
  width: 40px;
  height: 2px;
  background: #8B0000;
  margin: 0 auto 2rem;
  opacity: 0.7;
}

.gate-form {
  display: flex;
  margin-bottom: 0.75rem;
}

.gate-form input[type="email"] {
  flex: 1;
  background: #111;
  border: 1px solid rgba(240,237,230,0.2);
  border-right: none;
  padding: 0.9rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: #F0EDE6;
  outline: none;
  transition: border-color 0.2s;
}

.gate-form input[type="email"]:focus { border-color: #8B0000; }
.gate-form input[type="email"]::placeholder { color: rgba(138,138,138,0.4); }

.gate-form button[type="submit"] {
  padding: 0.9rem 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  background: #8B0000;
  color: #F0EDE6;
  border: 1px solid #CC1100;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.gate-form button[type="submit"]:hover { background: #CC1100; }
.gate-form button[type="submit"]:disabled { opacity: 0.5; cursor: not-allowed; }

.gate-skip {
  background: none;
  border: none;
  color: #4A4A4A;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
  margin-top: 0.5rem;
  display: block;
  width: 100%;
  text-align: center;
}

.gate-skip:hover { color: #8A8A8A; }

.gate-success {
  display: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: #CC1100;
  margin-top: 1rem;
}

.gate-disclaimer {
  font-size: 0.65rem;
  color: #2A2A2A;
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

@media (max-width: 480px) {
  .gate-form { flex-direction: column; }
  .gate-form input[type="email"] { border-right: 1px solid rgba(240,237,230,0.2); border-bottom: none; }
}

/* ============================================
   SPOTIFY SECTION
   ============================================ */
#spotify-player {
  padding: 6rem 2rem;
  background: var(--off-black);
}

.spotify-wrap {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(30, 215, 96, 0.08);
}

/* ============================================
   NAV YOUTUBE ICON
   ============================================ */
.nav-yt {
  font-size: 1.2rem;
  color: var(--ash) !important;
  transition: color 0.2s, transform 0.2s !important;
  display: flex;
  align-items: center;
}

.nav-yt:hover {
  color: #CC1100 !important;
  transform: translateY(-2px);
}


/* ============================================
   ABOUT / BIO SECTION
   ============================================ */
#about {
  padding: 6rem 2rem;
  background: var(--off-black);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}

.about-img-frame {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: sticky;
  top: 100px;
}

.about-logo-large {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px rgba(139,0,0,0.4));
}

.about-social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1rem;
}

.about-social a {
  color: var(--ash);
  font-size: 1.3rem;
  transition: color 0.2s, transform 0.2s;
}

.about-social a:hover {
  color: #CC1100;
  transform: translateY(-3px);
}

.about-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: #CC1100;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.about-heading span { color: #CC1100; }

.about-text-col p {
  font-size: 0.97rem;
  color: var(--ash);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.about-text-col p strong {
  color: var(--bone);
}

.about-quote {
  border-left: 3px solid #8B0000;
  padding: 0.75rem 1.2rem;
  margin: 1.5rem 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  color: var(--bone);
  font-style: italic;
  background: rgba(139,0,0,0.07);
}

.about-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-img-frame {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ============================================
   YOUTUBE SECTION
   ============================================ */
#transmissions {
  padding: 6rem 2rem;
  background: var(--black);
}

.yt-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.yt-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.yt-card:hover {
  border-color: #8B0000;
  box-shadow: 0 8px 32px rgba(139,0,0,0.15);
}

.yt-embed-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.yt-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 700px) {
  .yt-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

.yt-placeholder {
  grid-column: 1 / -1;
  padding: 3rem;
  text-align: center;
}

.yt-placeholder-inner i {
  font-size: 2.5rem;
  color: #8B0000;
  margin-bottom: 0.75rem;
  display: block;
}

.yt-placeholder-inner p {
  color: var(--ash);
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.productions-banner {
  background: #05080b;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
}

.productions-banner img {
  display: block;
  width: min(100%, 1180px);
  height: auto;
  margin: 0 auto;
}
