/* ===== Frowin Calendar – compact Jimmy-style, Oswald ===== */

/* Calendar wrapper: behave like normal content inside Enfold */
.frowin-calendar {
  margin: 2rem 0;
  width: 100%;
  box-sizing: border-box;
}

/* Simple list, no flex */
.frowin-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* === SINGLE EVENT ROW === */
.frowin-item {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 12px 0;
  display: grid;
  grid-template-columns: 70px 1fr 130px;   /* date | content | button */
  align-items: center;
  column-gap: 16px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 10px;
  background: rgba(0,0,0,0.06);
  text-align: center;
  font-family: "Oswald", sans-serif;
}

/* === LEFT: DATE === */
.frowin-date {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4px;
  line-height: 1.1;
}

.frowin-day {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
}

.frowin-month,
.frowin-year {
  display: block;
  font-size: 12px;
  opacity: 0.85;
}

/* === MIDDLE: TITLE + META + EXCERPT === */
.frowin-content {
  padding-top: 4px;
}

.frowin-title,
.frowin-meta,
.frowin-excerpt {
  margin: 0;
  line-height: 1.2;
}

.frowin-title {
  font-size: 16px;
  font-weight: 600;
}

.frowin-meta {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.frowin-excerpt {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 2px;
}

/* === RIGHT: BUTTON === */
.frowin-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.frowin-btn {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: 0.2s;
}

.frowin-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .frowin-item {
    grid-template-columns: 60px 1fr 120px;
    column-gap: 12px;
    padding: 8px 12px;
  }

  .frowin-title { font-size: 15px; }
  .frowin-meta,
  .frowin-excerpt { font-size: 12px; }
  .frowin-day { font-size: 28px; }
}

/* Mobile: date + content + button untereinander */
@media (max-width: 700px) {
  .frowin-item {
    grid-template-columns: 55px 1fr;
    grid-template-rows: auto auto auto;
    row-gap: 6px;
  }

  .frowin-cta {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .frowin-btn {
    width: auto;
    padding: 6px 14px;
    font-size: 12px;
  }

  .frowin-title { font-size: 14px; }
  .frowin-meta,
  .frowin-excerpt { font-size: 11px; }
  .frowin-day { font-size: 24px; }
}

/* ===== Frowin Typography Adjustments (Client Feedback) ===== */

/* Haupttitel des Programms – H3-Optik: 30px, 700 */
.frowin-title {
  font-size: 30px;    /* H3-Größe laut Kunde */
  font-weight: 700;
}

/* Uhrzeit, Ort, Zusatzzeile – wie Paragraph/Body */
.frowin-meta,
.frowin-excerpt {
  font-size: 16px;    /* normaler Fließtext */
  font-weight: 400;
}

/* Datum links kann so bleiben – wirkt gut mit 32px.
   Falls kleiner gewünscht: hier anpassen. */

/* Button: Versalien TICKETS SICHERN */
.frowin-btn {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;   /* etwas „Ticket-Button“-Look */
}

/* Auf kleineren Screens Schrift minimal runterdrehen,
   damit nichts hässlich umbricht */
@media (max-width: 700px) {
  .frowin-title {
    font-size: 22px;
  }

  .frowin-meta,
  .frowin-excerpt {
    font-size: 14px;
  }

  .frowin-btn {
    font-size: 12px;
  }
}