/* HS Countdown Banner – Text links, großer Countdown rechts */

.hs-countdown-banner{
  position: relative;   /* nicht sticky → verschwindet beim Scrollen */
  width: 100%;
  background: #cad7e7;
}

.hs-countdown-banner__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 15px;
  box-sizing: border-box;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 15px;
}

.hs-countdown-banner__copy{
  text-align: center;
}

.hs-countdown-banner__headline{
  font-size: 25px;
  font-weight: 800;
  line-height: 1.5;
}

.hs-countdown-banner__text{
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Rechts: Countdown im 4er Raster */
.hs-countdown-banner__timer{
  justify-self: end;
  text-align: center;
  min-width: 300px;
}

.hs-countdown-banner__timerlabel{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: .2px;
}

.hs-countdown-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(42px, 1fr)); /* enger */
  gap: 3px;                                            /* deutlich enger */
  align-items: end;
}

.hs-countdown-cell{
  display: grid;
  justify-items: center;
  row-gap: 3px;   /* enger zwischen Zahl und Text */
}

.hs-countdown-num{
  font-size: 34px;
  font-weight: 900;
  line-height: 0.95;              /* etwas kompakter */
  font-variant-numeric: tabular-nums;
  color: #ba0816;                 /* Vereins-Rot */
}

.hs-countdown-lbl{
  font-size: 12px;
  font-weight: 700;
  opacity: .85;
}

/* Mobile/Tablet: TEXT & TIMER UNTEREINANDER, aber 4 Spalten bleiben nebeneinander */
@media (max-width: 820px){

  .hs-countdown-banner__inner{
    grid-template-columns: 1fr;   /* untereinander */
    row-gap: 14px;
    justify-items: center;
  }

  .hs-countdown-banner__copy{
    text-align: center;
  }

  .hs-countdown-banner__timer{
    justify-self: center;
    text-align: center;
    min-width: auto;
    width: 100%;
    max-width: 520px;
  }

  /* Tablet/Phone: 4 Spalten bleiben 4 Spalten – aber eng als Gruppe */
  .hs-countdown-grid{
    grid-template-columns: repeat(4, max-content); /* verhindert 1fr-Dehnung */
    justify-content: center;                       /* Gruppe zentriert */
    gap: 10px;
  }

  .hs-countdown-num{
    font-size: 26px;
  }

  .hs-countdown-lbl{
    font-size: 11px;
  }

  .hs-countdown-banner__timerlabel{
    font-size: 16px;
    margin-bottom: 6px;
  }
}
/* Handy: engerer Countdown + größere Überschrift + mehr Abstand zum Text */
@media (max-width: 480px){

  /* mehr Abstand zwischen Textblock und Countdownblock */
  .hs-countdown-banner__inner{
    row-gap: 22px; /* war 14px -> deutlich größer */
  }

  /* "Bald geht’s los!" größer */
  .hs-countdown-banner__timerlabel{
    font-size: 20px;  /* größer als im 820px-Block */
    margin-bottom: 10px;
    font-weight: 900;
  }
  
  /* Handy: Fließtext kleiner & leichter */
  .hs-countdown-banner__text{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
    max-width: 300px;
  }

  /* 4 Spalten enger zusammen */
  .hs-countdown-grid{
    grid-template-columns: repeat(4, max-content); /* keine 1fr-Dehnung */
    justify-content: center;                       /* als Gruppe zentrieren */
    gap: 10px;                                     /* enger als vorherige große Abstände */
  }

  /* Zahlen/Labels leicht kompakter, damit alles sauber passt */
  .hs-countdown-num{
    font-size: 24px;
    line-height: 0.95;
  }

  .hs-countdown-lbl{
    font-size: 11px;
  }
}
