@layer components {
  .deadline-banner {
    background: var(--ink-950);
    border-radius: var(--r-lg);
    padding: var(--s6) var(--s8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s6);
  }
  .deadline-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--amber-300);
    margin-bottom: var(--s2);
  }
  .deadline-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    line-height: 1.2;
  }
  .countdown-grid {
    display: flex;
    gap: var(--s4);
    flex-shrink: 0;
  }
  .countdown-item {
    text-align: center;
    background: rgba(255,255,255,.06);
    border-radius: var(--r-md);
    padding: var(--s3) var(--s4);
    min-width: 52px;
  }
  .countdown-number {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
  }
  .countdown-unit {
    font-size: 10px;
    color: rgba(255,255,255,.4);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 4px;
  }
}
