
.wkv-events-calendar {
  --wkv-green: #073f35;
  --wkv-wine: #842431;
  --wkv-gold: #d8b35e;
  --wkv-cream: #fff4df;
  --wkv-ink: #152225;
  --wkv-muted: #687579;
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 78px) 0;
}

.wkv-events-next-only {
  padding-top: 0;
  padding-bottom: 0;
}

.wkv-events-head {
  margin-bottom: 34px;
}

.wkv-events-kicker,
.wkv-next-event-kicker {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216, 179, 94, 0.22);
  color: var(--wkv-green);
  font-weight: 850;
  letter-spacing: 0.02em;
}

.wkv-events-head h2 {
  max-width: 980px;
  margin: 0 0 16px;
  color: var(--wkv-green);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.wkv-events-head p {
  max-width: 840px;
  color: var(--wkv-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.wkv-next-event {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin: 0 0 32px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 38px;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(216,179,94,.44), transparent 18rem),
    linear-gradient(135deg, #073f35, #842431);
  box-shadow: 0 26px 82px rgba(8,29,27,.22);
}

.wkv-next-event-image {
  min-height: 260px;
  border-radius: 28px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}

.wkv-next-event-content h3 {
  margin: 0 0 12px;
  color: #fff !important;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: .98;
  letter-spacing: -0.075em;
}

.wkv-next-event-kicker {
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
}

.wkv-next-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin: 0 0 18px;
}

.wkv-next-event-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  color: rgba(255,255,255,.94);
  background: rgba(255,255,255,.12);
}

.wkv-next-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.wkv-events-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.wkv-events-filter-button {
  border: 1px solid rgba(7, 63, 53, .14);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  color: var(--wkv-green);
  padding: 10px 15px;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8,29,27,.06);
}

.wkv-events-filter-button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--wkv-green), var(--wkv-wine));
  border-color: transparent;
}

.wkv-events-list {
  display: grid;
  gap: 24px;
}

.wkv-events-month-heading {
  margin: 14px 0 -4px;
  color: var(--wkv-green);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -.045em;
}

.wkv-events-month-heading.is-hidden {
  display: none;
}

.wkv-event-card {
  position: relative;
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 0%, rgba(216, 179, 94, 0.14), transparent 17rem),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(21, 34, 37, 0.10);
  box-shadow: 0 18px 52px rgba(8, 29, 27, 0.13);
}

.wkv-event-card.is-hidden {
  display: none;
}

.wkv-event-card.is-featured {
  background:
    radial-gradient(circle at 92% 0%, rgba(216, 179, 94, 0.24), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,250,240,.78));
  border-color: rgba(216, 179, 94, 0.42);
}

.wkv-event-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wkv-event-calendar-sheet {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8f1e5);
  border: 1px solid rgba(21,34,37,.10);
  box-shadow: 0 15px 38px rgba(8,29,27,.11);
}

.wkv-event-calendar-sheet:before,
.wkv-event-calendar-sheet:after {
  content: "";
  position: absolute;
  top: 10px;
  width: 12px;
  height: 12px;
  background: var(--wkv-wine);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(132,36,49,.12);
}
.wkv-event-calendar-sheet:before { left: 18px; }
.wkv-event-calendar-sheet:after { right: 18px; }

.wkv-event-sheet-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 16px 12px;
  background: linear-gradient(135deg, var(--wkv-green), var(--wkv-wine));
  color: #fff;
  text-align: center;
}

.wkv-event-month {
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 900;
}

.wkv-event-time-mini {
  font-size: .78rem;
  font-weight: 700;
  opacity: .95;
}

.wkv-event-day-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 8px;
}

.wkv-event-day {
  font-size: 3rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.08em;
  color: var(--wkv-green);
}

.wkv-event-sheet-bottom {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 0 12px 14px;
  color: #314246;
  font-weight: 700;
  font-size: .82rem;
}

.wkv-event-weekday {
  text-transform: uppercase;
  letter-spacing: .06em;
}

.wkv-event-preview {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(21,34,37,.10);
  box-shadow: 0 12px 26px rgba(8,29,27,.09);
  background: #fff;
}

.wkv-event-preview-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
}

.wkv-event-preview-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(216,179,94,.18), transparent 42%),
    linear-gradient(135deg, rgba(7,63,53,.10), rgba(132,36,49,.10));
  color: var(--wkv-green);
  font-weight: 850;
  letter-spacing: .04em;
}

.wkv-event-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.wkv-event-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--wkv-green);
  background: rgba(7, 63, 53, 0.10);
  font-size: 0.82rem;
  font-weight: 850;
}

.wkv-event-badge-soft {
  color: #4c4d35;
  background: rgba(216, 179, 94, 0.22);
}

.wkv-event-badge-gold {
  color: #4a3510;
  background: rgba(216, 179, 94, 0.35);
}

.wkv-event-content h3 {
  margin: 0 0 12px;
  color: var(--wkv-green);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.wkv-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 14px;
  color: #314246;
}

.wkv-event-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(7, 63, 53, 0.08);
  font-size: 0.94rem;
  font-weight: 650;
}

.wkv-event-excerpt {
  color: #314246;
  line-height: 1.7;
}

.wkv-event-excerpt p {
  margin-top: 0;
}

.wkv-event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.wkv-event-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.wkv-event-button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wkv-wine), var(--wkv-green));
  box-shadow: 0 12px 30px rgba(8, 29, 27, 0.14);
}

.wkv-event-button.secondary {
  color: var(--wkv-green);
  background: rgba(7, 63, 53, 0.08);
  border: 1px solid rgba(7, 63, 53, 0.14);
}

.wkv-event-button.light.secondary {
  color: #fff;
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.32);
}

.wkv-event-button.light.primary {
  color: var(--wkv-green);
  background: #fff;
}

.wkv-events-empty,
.wkv-events-no-filter-result {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(21,34,37,.10);
  box-shadow: 0 14px 38px rgba(8,29,27,.10);
}

.wkv-events-empty h3,
.wkv-events-no-filter-result h3 {
  margin-top: 0;
  color: var(--wkv-green);
}

@media (max-width: 980px) {
  .wkv-next-event {
    grid-template-columns: 1fr;
  }

  .wkv-event-card {
    grid-template-columns: 1fr;
  }

  .wkv-event-aside {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
  }

  .wkv-event-preview-image,
  .wkv-event-preview-placeholder {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 560px) {
  .wkv-events-calendar {
    width: auto;
    margin-left: 14px;
    margin-right: 14px;
  }

  .wkv-next-event {
    padding: 20px;
    border-radius: 28px;
  }

  .wkv-next-event-image {
    min-height: 190px;
    border-radius: 22px;
  }

  .wkv-event-card {
    padding: 18px;
    border-radius: 26px;
  }

  .wkv-event-aside {
    grid-template-columns: 1fr;
  }

  .wkv-event-calendar-sheet {
    max-width: 170px;
  }

  .wkv-event-preview-image,
  .wkv-event-preview-placeholder {
    aspect-ratio: 16 / 9;
  }

  .wkv-event-actions,
  .wkv-next-event-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wkv-event-button {
    width: 100%;
  }
}
