/* =============================================================
   SERIES.CSS — "Series & Partnerships" section
============================================================= */

#series {
  background: var(--cream);
  padding: 60px var(--section-pad-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* ── Text column ── */
.series-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 24px;
}

.series-line {
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  margin-bottom: 32px;
}

.series-text .series-highlight {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.series-text p {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--mid);
}

/* ── Photo column ── */
.series-img {
  position: relative;
}

.series-img::before {
  content: '';
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;

  /* ── PHOTO SWAP ────────────────────────────────────────────
     Replace gradient with your photo:

     background-image: url('../images/series.jpg');
     background-size: cover;
     background-position: center;

     Recommended: team collaboration, partners shaking hands
  ────────────────────────────────────────────────────────── */
  background-image: url('../images/series.jpg');
  background-size: cover;
  background-position: center;
}

/* Corner accent mark */
.series-corner-accent {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #series {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: var(--section-pad-mobile);
  }
}