/* Preise in Boxen immer unten ausrichten */

.box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.banderole {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) rotate(-8deg);
  background: rgba(231, 76, 60, 0.65);
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  padding: 8px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  z-index: 2;
  pointer-events: none;
  letter-spacing: 1px;
  text-align: center;
  opacity: 0.92;
}


.box-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.preisbereich {
  margin-top: auto;
  text-align: center;
}

.preis {
  font-size: 2.2em;
  font-weight: bold;
  margin: 0.5em 0 0 0;
}

.mwst {
  margin: 0;
  font-size: 1em;
  color: #555;
}

.one-day-summary {
  flex-basis: calc(100% - 20px);
}

.one-day-lead {
  color: #1f3b66;
  font-size: 1.25em;
  margin-top: 0;
  text-align: center;
}

.one-day-price {
  font-size: 2.2em;
  font-weight: bold;
  margin: 0.8em 0 0;
  text-align: center;
}

.one-day-explainer {
  padding: 20px;
}

.one-day-explainer > h2:first-child {
  margin-top: 0;
}

.one-day-explainer-grid {
  display: grid;
  gap: 14px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 1.2em 0;
}

.one-day-explainer-grid section {
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.one-day-explainer-grid h3,
.one-day-explainer-grid p {
  margin: 0 0 0.45em;
}

.one-day-audience {
  columns: 2;
  column-gap: 28px;
}

.one-day-audience li {
  break-inside: avoid;
  margin-bottom: 0.45em;
}

@media (max-width: 700px) {
  .one-day-explainer-grid {
    grid-template-columns: 1fr;
  }

  .one-day-audience {
    columns: 1;
  }

  .one-day-price {
    font-size: 1.65em;
  }
}
