.events-calendar-section {
  padding: 32px;
}

.events-calendar-inner {
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 42px 20px 50px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0075ad 0%, #00b7d8 100%);
  box-shadow: 0 28px 45px rgba(0, 0, 0, 0.35);
}

.events-calendar-inner::before,
.events-calendar-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.events-calendar-inner::before {
  width: 210px;
  height: 210px;
  right: -80px;
  top: -100px;
}

.events-calendar-inner::after {
  width: 250px;
  height: 250px;
  left: -120px;
  bottom: -160px;
}

.events-calendar-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #fff;
  font-family: "Univers LT Std Home" !important;
  font-size: 36px !important;
  margin-bottom: 25px;
  line-height: 1.25 !important;
}

.calendar-icon {
  display: inline-flex;
  color: #fff;
  margin-top: -12px;
}

.events-calendar-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 256px));
  gap: 20px;
  justify-content: center;
  align-items: start;
}

.events-month-card {
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.22);
}

.events-month-header {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 800;
  background: rgb(0 166 211);
}

.events-list {
  padding: 12px;
  background: #fff;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 65px;
  padding: 5px;
  border: 1px solid #dce3e8;
  border-radius: 5px;
  background: #fff;
}

.event-item + .event-item {
  margin-top: 12px;
}

.event-day {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #006fac;
  min-width:54px;
  height: 54px;
}

.event-day span {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: -5px;
}

.event-title {
  color: #141414;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

@media (max-width: 1200px) {
  .events-calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 800px) {
  .events-calendar-inner {
    padding: 32px 16px 70px;
  }

  .events-calendar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .events-calendar-section {
    padding: 18px;
  }

  .events-calendar-grid {
    grid-template-columns: 1fr;
  }

  .events-month-card {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }
  .event-day {
    flex-basis: 62px;
    height: 62px;
    font-size: 30px;
  }

  .event-title {
    font-size: 16px;
  }
}
