.events-panel {
  margin-bottom: 28px;
}

.events-panel__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.events-panel__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 3vw, 3.6rem);
  font-weight: 700;
  line-height: 0.98;
  color: #1a1a1a;
}

.events-panel__calendar-image {
  width: 54px;
  height: auto;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.14));
}

.events-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
}

.event-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 0 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6e8b1f 0%, #45611b 55%, #506c1f 100%);
  box-shadow: 0 8px 18px rgba(38, 47, 20, 0.18);
  color: #f7f2e7;
  transform: translateY(0) scale(1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.event-chip.is-pulsing {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.event-chip--chevron {
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
  padding-right: 34px;
}

.event-chip__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 248, 232, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 232, 0.14);
}

.event-chip__icon {
  width: 24px;
  height: 24px;
  color: #f7f2e7;
}

.event-chip__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-chip__label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .events-panel__heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
  }

  .events-panel__calendar-image {
    width: 48px;
  }

  .events-panel__grid {
    gap: 14px 16px;
  }

  .event-chip {
    min-height: 68px;
    padding: 0 18px;
  }

  .event-chip__label {
    font-size: 1.02rem;
  }
}

@media (max-width: 768px) {
  .events-panel {
    margin-bottom: 22px;
  }

  .events-panel__heading {
    gap: 12px;
    margin-bottom: 16px;
  }

  .events-panel__heading h2 {
    font-size: 2.2rem;
  }

  .events-panel__calendar-image {
    width: 44px;
  }

  .events-panel__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-chip {
    min-height: 64px;
  }

  .event-chip--chevron {
    clip-path: none;
    padding-right: 22px;
  }
}

@media (max-width: 520px) {
  .events-panel__heading h2 {
    font-size: 1.95rem;
  }

  .events-panel__calendar-image {
    width: 38px;
  }

  .event-chip {
    gap: 14px;
    min-height: 60px;
    padding: 0 16px;
  }

  .event-chip__icon-wrap {
    width: 38px;
    height: 38px;
  }

  .event-chip__icon {
    width: 22px;
    height: 22px;
  }

  .event-chip__label {
    font-size: 0.95rem;
  }
}