:root{
  --events-accent:#FD8C8C;
  --events-badge-bg:#c44de0;
  --events-btn-bg:#D3D31A;
  --events-btn-text:#2b2b2b;
  --events-divider:rgba(0,0,0,.08);
}

/* ===== container ===== */
.termine2{
  width:100%;
  background:transparent;
}

/* ===== month header ===== */
.termine2 .group{
  padding:10px 0;
}
.termine2 .group h2{
  margin:0;
  padding-left:10px;
  font-weight:700;
  color:var(--events-accent);
}

/* ===== row ===== */
.termine2 .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  padding:18px 0;
  border-bottom:1px solid var(--events-divider);
}

/* ===== base cell ===== */
.termine2 .cell{
  padding:0;
  box-sizing:border-box;
}

/* ===== date ===== */
.termine2 .date{
  flex:0 0 auto;
}
.termine2 .date-inner{
  font-size:clamp(14px,2vw,28px);
  line-height:1.1;
  font-weight:400;
}

/* ===== event details ===== */
.termine2 .event-details{
  flex:1;
  min-width:0;
  font-size:clamp(14px,1.6vw,18px);
  font-weight:400;
  line-height:1.4;
}

/* ===== TOP LINE (city + venue) ===== */
.termine2 .event-details .topline{
  display:block;
  font-size:clamp(20px,3vw,40px);
  line-height:1.1;
  letter-spacing:.2px;
  margin-bottom:.15em;
}

/* city */
.termine2 .event-details .topline strong{
  font:inherit;
  font-weight:800;
}

/* venue (same size, NOT bold) */
.termine2 .event-details .topline .venue{
  font:inherit;
  font-weight:400;
}

/* ===== program line ===== */
.termine2 .event-details .program{
  font-weight:600;
}

/* optional info line (if present) */
.termine2 .event-details .info{
  margin-top:.25rem;
  opacity:.9;
  font-size:clamp(13px,1.4vw,16px);
  line-height:1.35;
}

/* ===== right side ===== */
.termine2 .status{
  flex: 0 0 180px;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:.4rem;
  text-align: center;
}

@media (max-width: 600px){
  .termine2 .status{
    flex: 1 1 100%;
  }
}
/* ===== ONLY the Tickets button ===== */
.termine2 .status a.ticket-btn{
  padding:10px 14px;
  border-radius:3px;
  text-decoration:none;
  font-weight:700;
  background:var(--events-btn-bg);
  color:var(--events-btn-text);
  display:inline-block;
  line-height:1.1;
  transition:
    background-color .15s ease,
    color .15s ease,
    transform .15s ease,
    box-shadow .15s ease;
}

.termine2 .status a.ticket-btn:hover{
  background:#c9c90f;
  transform:translateY(-1px);
  box-shadow:0 6px 14px rgba(0,0,0,.15);
}

.termine2 .status a.ticket-btn:focus-visible{
  outline:none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px var(--events-accent);
}

.termine2 .status a.ticket-btn:active{
  transform:translateY(0);
  box-shadow:0 3px 8px rgba(0,0,0,.12);
}

/* ===== plain status text (everything except Tickets + Ausverkauft) ===== */
.termine2 .status .status-text{
  font-size:clamp(13px,1.4vw,16px);
  font-weight:700;
  line-height:1.2;
  opacity:.9;
  color: black;
  text-decoration: none;
}

/* ===== badge (Ausverkauft) ===== */
.termine2 .status .badge{
  background:var(--events-badge-bg);
  color:#fff;
  font-size:10px;
  font-weight:600;
  padding:6px 16px;
  text-transform:uppercase;
  border-radius:3px;
  letter-spacing:.5px;
  user-select:none;
  cursor:default;
}

/* optional hook if you want different soldout color later */
.termine2 .status .badge.soldout{
  /* e.g. background:#111; */
}

/* ===== mobile ===== */
@media (max-width:780px){
  .termine2 .row{
    flex-direction:column;
    align-items:flex-start;
    gap:.4rem;
  }

  .termine2 .status{
    width:100%;
    align-items:stretch;
    text-align:left;
  }

  .termine2 .status a.ticket-btn{
    width:100%;
    text-align:center;
  }
}

/* inherit elementor link color */
.elementor-widget-text-editor a{
  color:inherit;
}
