.termine-list-full {
  width: 100%;
}
.termine-header {
  text-align: center;
  margin-bottom: 4rem;
}
.termine-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: start;
}
.termine-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.termine-item {
  background: linear-gradient(
      rgba(255, 253, 248, 0.95),
      rgba(255, 253, 248, 0.95)
    ),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-left: 0.25rem solid var(--accent);
  border-radius: 1rem;
  padding: 0;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.termine-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.12);
  border-left-color: var(--accent-dark);
}

.termine-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 2rem 1.5rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(244, 201, 194, 0.1) 0%,
    rgba(216, 194, 154, 0.05) 100%
  );
  border-bottom: 1px solid var(--gold-border-light);
}

.termine-date-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.termine-day {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-display);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  letter-spacing: 0.02em;
}

.termine-month {
  font-size: var(--font-s);
  color: var(--text-main);
  opacity: 0.8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.termine-year {
  font-size: var(--font-ss);
  color: var(--text-main);
  opacity: 0.6;
  font-weight: 400;
}

.termine-time-badge {
  background: var(--accent);
  border: 2px solid var(--accent-dark);
  border-radius: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: var(--font-m);
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  box-shadow: 0 0.125rem 0.5rem rgba(244, 201, 194, 0.3);
  transition: all 0.2s ease;
}

.termine-item-content {
  padding: 1.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.termine-event-title {
  font-size: var(--font-2xl);
  font-weight: 500;
  color: var(--text-main);
  letter-spacing: 0.02em;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
}

.termine-location {
  font-size: var(--font-m);
  font-weight: 500;
  color: var(--text-main);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.termine-location-icon {
  opacity: 0.7;
}

.termine-description {
  font-size: var(--font-s);
  line-height: 1.7;
  color: var(--text-main);
  opacity: 0.85;
  margin: 0;
}
