/* ── Page header ── */
.sp08-header { padding-top: var(--nav-h); }
.sp08-header::before { content: 'TOP 200'; }
.sp08-header-inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 3rem clamp(1.25rem, 5vw, 3rem) 2.75rem;
  position: relative;
  z-index: 1;
}
.sp08-header-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95;
  color: var(--white);
  margin: .5rem 0 .875rem;
}

.t2-main { padding-bottom: 5rem; }

.t2-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section ── */
.t2-section { padding: 4rem 0; }
.t2-section--partners { background: var(--color-surface, #f8f8f8); }

.t2-section-hdr { margin-bottom: 2.5rem; text-align: center; }

.t2-section-title {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--color-text, #111);
  margin: 0 0 .5rem;
  display: inline-block;
  position: relative;
}
.t2-section-title::after {
  content: '';
  display: block;
  width: 2.5rem;
  height: 3px;
  background: var(--color-primary, #da002f);
  margin: .5rem auto 0;
}
.t2-section-sub {
  color: var(--color-muted, #666);
  font-size: 1.5rem;
  margin: .75rem 0 0;
}

/* ── Intro ── */
.t2-intro {
  max-width: 48rem;
}

.t2-lead {
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 1.2rem;
}
.t2-body {
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--gray-100);
  margin: 0 0 .5rem;
}

/* ── CTA inline ── */
.t2-cta-inline {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.t2-fax {
  font-size: .9rem;
  color: var(--gray-200);
}

/* ── Partner grid ── */
.t2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: .75rem;
  min-height: 6rem;
}

.t2-card {
  background: #fff;
  border: 1px solid var(--color-border, #e5e5e5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem .75rem;
  aspect-ratio: 4 / 1;
  transition: box-shadow .15s, border-color .15s;
}
.t2-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  border-color: var(--color-primary, #da002f);
}
.t2-card img {
  max-width: 100%;
  max-height: 2.5rem;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .15s, opacity .15s;
}
.t2-card:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .t2-grid { grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr)); }
  .t2-cta-inline { flex-direction: column; align-items: flex-start; }
}
