/* =========================================================
   Game Prep — Broadcast Notes
   Save as styles/football-game-prep-broadcast-notes.css
   ========================================================= */

.broadcast-hero {
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(320px, 0.65fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 16px;
  padding: 30px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at top left,
      rgba(250, 70, 22, 0.3),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--wruf-blue),
      #173d66
    );
  border-left:
    7px solid
    var(--wruf-orange);
  border-radius: 22px;
}

.broadcast-hero > div > span,
.broadcast-note-card header span,
.broadcast-note-support span,
.broadcast-category-card span {
  display: block;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.broadcast-hero > div > span {
  color: var(--wruf-light-orange);
}

.broadcast-hero h2 {
  margin: 7px 0 8px;
  color: #ffffff;
  font-size:
    clamp(
      2rem,
      4vw,
      3.4rem
    );
  line-height: 1;
}

.broadcast-hero p {
  max-width: 760px;
  margin: 0;
  color:
    rgba(
      255,
      255,
      255,
      0.8
    );
}

.broadcast-hero-summary {
  display: grid;
  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );
  gap: 8px;
}

.broadcast-hero-summary > div {
  min-width: 0;
  padding: 14px 8px;
  text-align: center;
  background:
    rgba(
      255,
      255,
      255,
      0.1
    );
  border-radius: 12px;
}

.broadcast-hero-summary strong,
.broadcast-hero-summary span {
  display: block;
}

.broadcast-hero-summary strong {
  color: #ffffff;
  font-size: 1.45rem;
}

.broadcast-hero-summary span {
  margin-top: 4px;
  color:
    rgba(
      255,
      255,
      255,
      0.68
    );
  font-size: 0.56rem;
  font-weight: 900;
  text-transform: uppercase;
}

.broadcast-method-note,
.broadcast-source-note {
  margin: 0 0 2rem;
  padding: 15px 17px;
  color: var(--wruf-muted);
  background: #fff7ed;
  border:
    1px solid
    rgba(
      250,
      70,
      22,
      0.22
    );
  border-left:
    5px solid
    var(--wruf-orange);
  border-radius: 12px;
  line-height: 1.5;
}

.broadcast-top-grid,
.broadcast-note-grid {
  display: grid;
  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );
  gap: 14px;
}

.broadcast-top-grid {
  margin-bottom: 2.7rem;
}

.broadcast-category-section {
  margin-top: 3rem;
}

.broadcast-note-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border:
    1px solid
    rgba(
      15,
      35,
      64,
      0.1
    );
  border-top:
    5px solid
    #64748b;
  border-radius: 16px;
  box-shadow:
    0 12px 28px
    rgba(
      15,
      23,
      42,
      0.06
    );
}

.broadcast-note-card--lead {
  border-top-color: var(--wruf-orange);
}

.broadcast-note-card--secondary {
  border-top-color: var(--wruf-blue);
}

.broadcast-note-card header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: start;
  padding: 16px 18px 11px;
}

.broadcast-note-card header span {
  color: var(--wruf-orange);
}

.broadcast-note-card header h3 {
  margin: 5px 0 0;
  color: var(--wruf-blue);
  font-size: 1.12rem;
}

.broadcast-note-card header > strong {
  flex: 0 0 auto;
  padding: 0.35rem 0.55rem;
  color: #ffffff;
  background: #64748b;
  border-radius: 999px;
  font-size: 0.6rem;
  text-transform: uppercase;
}

.broadcast-note-card--lead header > strong {
  background: var(--wruf-orange);
}

.broadcast-note-card--secondary header > strong {
  background: var(--wruf-blue);
}

.broadcast-note-sentence {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--wruf-blue);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

.broadcast-note-support {
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(150px, 0.6fr);
  gap: 0;
  border-top:
    1px solid
    rgba(
      15,
      35,
      64,
      0.08
    );
  border-bottom:
    1px solid
    rgba(
      15,
      35,
      64,
      0.08
    );
}

.broadcast-note-support > div {
  min-width: 0;
  padding: 13px 18px;
}

.broadcast-note-support > div:first-child {
  background: #f8fafc;
}

.broadcast-note-support > div:last-child {
  background: #fff7f2;
}

.broadcast-note-support span {
  color: var(--wruf-muted);
}

.broadcast-note-support p {
  margin: 5px 0 0;
  color: var(--wruf-blue);
  font-size: 0.76rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.broadcast-note-card footer {
  padding: 12px 18px 14px;
  background: #ffffff;
}

.broadcast-note-card footer p {
  margin: 0 0 8px;
  color: var(--wruf-muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.broadcast-note-card footer a {
  color: var(--wruf-orange);
  font-size: 0.72rem;
  font-weight: 900;
  text-decoration: none;
}

.broadcast-note-card--compact
.broadcast-note-support {
  grid-template-columns: 1fr;
}

.broadcast-note-card--compact
.broadcast-note-support > div:last-child {
  display: none;
}

.broadcast-category-grid {
  display: grid;
  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );
  gap: 11px;
  margin-bottom: 2.5rem;
}

.broadcast-category-card {
  min-width: 0;
  padding: 14px 15px;
  background: #ffffff;
  border:
    1px solid
    rgba(
      15,
      35,
      64,
      0.1
    );
  border-top:
    4px solid
    var(--wruf-orange);
  border-radius: 13px;
}

.broadcast-category-card span,
.broadcast-category-card strong,
.broadcast-category-card small {
  display: block;
}

.broadcast-category-card span {
  color: var(--wruf-orange);
}

.broadcast-category-card strong {
  margin: 5px 0;
  color: var(--wruf-blue);
  font-size: 1.35rem;
}

.broadcast-category-card small {
  color: var(--wruf-muted);
}

.broadcast-source-note {
  margin-top: 2.7rem;
  background: #f8fafc;
  border-color:
    rgba(
      15,
      35,
      64,
      0.12
    );
  border-left-color: var(--wruf-blue);
}

.broadcast-source-note strong {
  color: var(--wruf-blue);
}

.broadcast-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}

.broadcast-footer a {
  padding: 0.65rem 0.9rem;
  color: var(--wruf-blue);
  background: #ffffff;
  border:
    1px solid
    rgba(
      15,
      35,
      64,
      0.1
    );
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.broadcast-footer a:hover {
  color: #ffffff;
  background: var(--wruf-orange);
}

@media (max-width: 950px) {
  .broadcast-category-grid {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );
  }
}

@media (max-width: 780px) {
  .broadcast-hero,
  .broadcast-top-grid,
  .broadcast-note-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .broadcast-hero-summary,
  .broadcast-category-grid,
  .broadcast-note-support {
    grid-template-columns: 1fr;
  }

  .broadcast-note-card header {
    display: block;
  }

  .broadcast-note-card header > strong {
    display: inline-block;
    margin-top: 9px;
  }
}
