/* Summit Sports Apparel — E3 Magazine + shared pages */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off-white: #f7f7f5;
  --gray: #6b6b6b;
  --gray-light: #e8e8e6;
  --gray-mid: #9a9a9a;
  --red: #AA0000;
  --red-deep: #8B0000;
  --gold: #C8AA55;
  --gold-bright: #D4AF37;
  --serif: "Georgia", "Times New Roman", "Times", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1120px;
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
a:hover { opacity: 0.7; }

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.5rem; font-weight: 700; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* —— Nav (red bar, white logo) —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--red);
  border-bottom: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.9; }
.nav-logo img {
  width: 52px;
  height: auto;
  object-fit: contain;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-links a:hover { opacity: 0.85; text-decoration: none; }
.nav-links a.active {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, opacity 0.15s, transform 0.1s;
  background: var(--black);
  color: var(--white);
  line-height: 1.2;
  text-align: center;
}
.btn:hover { opacity: 0.92; text-decoration: none; color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); opacity: 1; }
.btn-gold {
  background: var(--gold-bright);
  color: var(--black);
  border-color: var(--gold-bright);
  font-weight: 800;
}
.btn-gold:hover { color: var(--black); background: #e0c04a; }
.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover { color: var(--white); background: var(--red-deep); }
.btn-dark {
  background: #1a1a1a;
  color: var(--white);
  border-color: #1a1a1a;
  font-size: 0.82rem;
}
.btn-dark:hover { color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--red-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .nav-links a {
    display: block;
    padding: 0.85rem 0;
  }
  .nav-links a.active {
    border-bottom: none;
    color: var(--gold);
  }
}

/* —— E3 Hero —— */
.hero-e3 {
  position: relative;
  min-height: clamp(520px, 78vh, 720px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero-e3-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a0a0a;
}
.hero-e3-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  will-change: opacity;
}
.hero-e3-slide.is-active {
  opacity: 1;
}
.hero-e3-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.45) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-e3-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 2.5rem;
  align-items: center;
}
.hero-e3-copy h1 {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.95;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero-line-white { color: var(--white); font-weight: 900; }
.hero-line-gold { color: var(--gold-bright); font-weight: 900; }
.hero-e3-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  max-width: 28rem;
}

/* Offer card */
.offer-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
  color: var(--black);
}
.offer-card-head {
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.offer-card-head img {
  width: 26px;
  height: auto;
}
.offer-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
  text-align: center;
}
.offer-kicker {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0.2rem;
}
.offer-amount {
  font-size: clamp(1.55rem, 3vw, 1.85rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.offer-fine {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-bottom: 0.85rem;
}
.offer-bill {
  width: 100%;
  max-width: 280px;
  margin: 0 auto 1.1rem;
  border-radius: 6px;
}
.offer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.offer-ctas .btn {
  width: 100%;
  padding: 0.75rem 1rem;
}

@media (max-width: 860px) {
  .hero-e3-inner {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .hero-e3-copy {
    text-align: center;
  }
  .hero-e3-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .offer-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

/* —— Seller Stats (black scorecard) —— */
.stats-e3 {
  background: var(--black);
  color: var(--white);
  padding: 2.75rem 0 2.5rem;
}
.stats-e3-inner { text-align: center; }
.stats-e3-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  margin-bottom: 0.5rem;
}
.stats-whatnot {
  height: 28px;
  width: auto;
}
.stats-dot {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}
.stats-e3-heading h2 {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.stats-e3-meta {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-bottom: 1.5rem;
}
.stats-e3-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.75rem;
  max-width: 1080px;
  margin: 0 auto;
}
.stat-card {
  padding: 0.85rem 0.4rem;
  text-align: center;
}
.stat-value {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1.15;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}
.stat-standing { font-size: clamp(1rem, 1.8vw, 1.35rem); }
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  line-height: 1.3;
}
.stats-e3-footnote {
  margin-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--gray-mid);
}

@media (max-width: 900px) {
  .stats-e3-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 560px) {
  .stats-e3-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Request callout on home */
.section-request { padding: 3.5rem 0; }
.callout-e3 {
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.callout-e3 h2 { color: var(--black); }
.callout-e3 p { color: var(--gray); margin-bottom: 1.5rem; }

/* —— Shared sections (inner pages) —— */
.section { padding: 4rem 0; }
.section-alt { background: var(--off-white); }
.section-center { text-align: center; }
.section-intro {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
}

.auction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 720px) {
  .auction-grid { grid-template-columns: repeat(2, 1fr); }
}
.auction-card {
  border: 1px solid var(--gray-light);
  background: var(--white);
  padding: 2rem 1.25rem;
  text-align: center;
  border-radius: 8px;
}
.auction-card h3 {
  font-size: 1.15rem;
  margin: 0;
}

.strip-black {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 2rem 1.5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: -0.01em;
}

.callout {
  border: 1px solid var(--gray-light);
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 10px;
}
.callout p { color: var(--gray); margin-bottom: 1.5rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0;
  counter-reset: step;
}
@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  text-align: center;
  padding: 1.5rem 1rem;
}
.step-num {
  font-size: 2.5rem;
  color: var(--gray-mid);
  margin-bottom: 0.75rem;
  line-height: 1;
  font-weight: 800;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--gray); font-size: 0.95rem; }

.prose {
  max-width: 640px;
  margin: 0 auto;
}
.prose p { margin-bottom: 1.25rem; color: var(--black); }
.prose p.muted { color: var(--gray); }

/* —— Form —— */
.request-form {
  max-width: 560px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.35rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group .hint {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.35rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.form-group .label-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.form-group .label-row label { margin-bottom: 0; }
.badge {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  padding: 0.15rem 0.45rem;
  font-weight: 600;
  color: var(--gray);
}
input[type="text"],
input[type="email"],
textarea,
select {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--black);
  appearance: none;
  border-radius: 6px;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
}
textarea { min-height: 110px; resize: vertical; }
.radio-row {
  display: flex;
  gap: 1.5rem;
  padding-top: 0.35rem;
}
.radio-row label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
}
.size-key {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.4rem;
  line-height: 1.5;
}
.team-row {
  border: 1px solid var(--gray-light);
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--off-white);
  position: relative;
  border-radius: 8px;
}
.team-row-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.btn-text {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  color: var(--black);
  padding: 0.5rem 0;
}
.btn-text:hover { opacity: 0.7; }
.btn-remove {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
.form-error {
  background: #faf0f0;
  border: 1px solid #d4a0a0;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  display: none;
  border-radius: 6px;
}
.form-error.show { display: block; }
.form-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.success-box {
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 520px;
  margin: 0 auto;
}
.success-box h1 { margin-bottom: 1rem; }
.success-box p { color: var(--gray); margin-bottom: 1.5rem; }

.contact-block {
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.contact-block p { margin-bottom: 0.75rem; }
.contact-meta {
  font-size: 1.05rem;
  margin: 2rem 0;
}
.contact-meta a { text-decoration: none; border-bottom: 1px solid var(--black); }
.wholesale {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-light);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.wholesale h2 { font-size: 1.5rem; }
.wholesale p { color: var(--gray); margin-bottom: 0.75rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--gray-light);
  padding: 2.5rem 1.5rem;
  text-align: center;
  margin-top: 0;
  background: var(--off-white);
}
.site-footer .footer-logo {
  width: 56px;
  height: auto;
  margin: 0 auto 1rem;
  object-fit: contain;
}
.site-footer p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.35rem;
}
.site-footer a { color: var(--gray); }

.page-hero {
  padding: 3.5rem 0 2rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .lead {
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

/* Legacy health (unused on home; keep for safety) */
.health-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin: 1.75rem auto 1rem;
}
.health-card {
  border: 1px solid var(--gray-light);
  background: var(--white);
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-radius: 8px;
}
.health-card-wide { grid-column: 1 / -1; }
.health-value {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  line-height: 1;
  margin-bottom: 0.55rem;
  letter-spacing: -0.03em;
  font-weight: 800;
}
.health-subvalue {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--muted, #666);
  letter-spacing: 0;
}
.health-standing { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.health-label {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}
.health-footnote {
  font-size: 0.85rem;
  color: var(--gray-mid);
  margin-top: 0.5rem;
}
.health-hint {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 0.55rem;
  line-height: 1.4;
  max-width: 16rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 560px) {
  .health-grid { grid-template-columns: 1fr; }
  .health-card-wide { grid-column: auto; }
}


/* Footer social */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  margin: 1rem 0 0.35rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #222;
  background: rgba(0,0,0,0.06);
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.footer-social-link:hover {
  background: var(--red, #b91c1c);
  color: #fff;
  transform: translateY(-1px);
}


/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 300px) 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-aside-card {
  background: var(--off-white, #f7f5f2);
  border-radius: 12px;
  padding: 1.35rem 1.4rem;
}
.contact-aside-card h2 {
  font-size: 1.15rem;
  margin-bottom: 0.85rem;
}
.contact-form-wrap {
  background: #f3f3f4;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 1.75rem 1.85rem 1.9rem;
  box-shadow: none;
}
.contact-form-wrap .contact-form,
.contact-form-wrap form {
  background: transparent;
}
.contact-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.contact-form .req { color: var(--red, #b91c1c); font-weight: 700; }
.contact-form input[type="file"] {
  display: block;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px dashed rgba(0,0,0,0.22);
  border-radius: 8px;
  background: #fafafa;
  font-size: 0.92rem;
}
.form-success {
  display: none;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.form-success.show { display: block; }
@media (max-width: 820px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form .form-row-2 { grid-template-columns: 1fr; }
}


/* Live stream calendar */
.live-calendar-head { text-align: center; margin-bottom: 1.5rem; }
.live-calendar-head h2 { margin-bottom: 0.35rem; }
.show-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.show-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}
.show-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.1);
}
.show-thumb {
  aspect-ratio: 3 / 4;
  background: #1a1a1a center / cover no-repeat;
}
.show-meta { padding: 0.85rem 0.9rem 1rem; }
.show-date {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red, #b91c1c);
}
.show-time {
  font-size: 0.85rem;
  color: #555;
  margin: 0.15rem 0 0.45rem;
}
.show-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 980px) {
  .show-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .show-grid { grid-template-columns: 1fr; }
}


/* Videos page — 2 per row */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.35rem;
}
.video-card {
  background: #f3f3f4;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
  padding: 0.75rem 0.75rem 1rem;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 10px;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0.85rem 0.25rem 0;
}
.video-title a { color: inherit; text-decoration: none; }
.video-title a:hover { color: var(--red, #b91c1c); }
@media (max-width: 720px) {
  .video-grid { grid-template-columns: 1fr; }
}


/* Contact map (left aside) */
.contact-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 1.15rem;
  background: #e8e8ea;
  border: 1px solid rgba(0,0,0,0.08);
}
.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
