/* ===== Compact League Alerts Strip ===== */
    .league-alert-strip {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 16px 0;
    }

    .league-alert-card {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-width: 0;
      padding: 12px 14px;
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.22);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92)),
        #ffffff;
      box-shadow: 0 8px 22px rgba(15, 23, 42, 0.055);
      overflow: hidden;
    }

    .league-alert-card::after {
      content: "";
      position: absolute;
      inset: auto -28px -42px auto;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: rgba(11, 94, 215, 0.08);
      pointer-events: none;
    }

    .league-alert-card.draft-alert {
      border-color: rgba(11, 94, 215, 0.18);
      background:
        radial-gradient(circle at 88% 20%, rgba(11, 94, 215, 0.10), transparent 28%),
        linear-gradient(135deg, #ffffff, #f3f8ff);
    }

    .league-alert-card.trade-alert {
      border-color: rgba(220, 53, 69, 0.18);
      background:
        radial-gradient(circle at 88% 20%, rgba(220, 53, 69, 0.10), transparent 28%),
        linear-gradient(135deg, #ffffff, #fff8ed);
    }

    .league-alert-main {
      min-width: 0;
      position: relative;
      z-index: 1;
    }

    .league-alert-kicker {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 4px 8px;
      border-radius: 999px;
      font-size: 0.58rem;
      font-weight: 950;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      line-height: 1;
      white-space: nowrap;
    }

    .draft-alert .league-alert-kicker {
      background: rgba(11, 94, 215, 0.10);
      color: var(--accent-dark);
    }

    .trade-alert .league-alert-kicker {
      background: rgba(220, 53, 69, 0.10);
      color: #842029;
    }

    .league-alert-title {
      margin-top: 7px;
      color: var(--ink);
      font-size: 0.94rem;
      font-weight: 950;
      line-height: 1.1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .league-alert-subtitle {
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.68rem;
      font-weight: 800;
      line-height: 1.25;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .league-alert-count {
      position: relative;
      z-index: 1;
      flex: 0 0 auto;
      min-width: 86px;
      padding: 8px 10px;
      border-radius: 14px;
      text-align: center;
      background: #ffffff;
      border: 1px solid rgba(148, 163, 184, 0.22);
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    }

    .draft-alert .league-alert-count {
      color: var(--accent-dark);
      border-color: rgba(11, 94, 215, 0.18);
    }

    .trade-alert .league-alert-count {
      color: #842029;
      border-color: rgba(220, 53, 69, 0.20);
    }

    .league-alert-number {
      display: block;
      font-size: 1.28rem;
      font-weight: 950;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .league-alert-label {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.52rem;
      font-weight: 950;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }

    @media (max-width: 760px) {
      .league-alert-strip {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 12px 0;
      }

      .league-alert-card {
        padding: 11px 12px;
        border-radius: 14px;
      }

      .league-alert-title {
        font-size: 0.86rem;
      }

      .league-alert-subtitle {
        font-size: 0.64rem;
      }

      .league-alert-count {
        min-width: 76px;
        padding: 7px 8px;
      }

      .league-alert-number {
        font-size: 1.12rem;
      }

      .league-alert-label {
        font-size: 0.46rem;
      }
    }
