.home-events-section {
  padding: clamp(58px, 7vw, 92px) var(--page-gutter);
  border-bottom: 1px solid #d8e6eb;
  background: linear-gradient(135deg, #f8fcfd, #edf8fb);
}

.home-events-inner {
  width: min(100%, var(--container-width));
  margin-inline: auto;
}

.home-events-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.home-events-heading h2 {
  margin: 8px 0 9px;
  color: var(--color-navy);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: clamp(36px, 4.3vw, 57px);
  line-height: .98;
  letter-spacing: -.05em;
}

.home-events-heading p:last-child {
  max-width: 640px;
  margin: 0;
  color: #567485;
  font-size: 14px;
  line-height: 1.6;
}

.home-events-heading > a,
.home-events-empty > a,
.home-event-card > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  color: #007dbd;
  font-size: 11px;
  font-weight: 800;
}

.home-events-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-event-card {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  gap: 16px;
  min-height: 184px;
  padding: 20px;
  border: 1px solid #cfe0e7;
  border-radius: 13px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 32px rgba(8, 53, 75, .06);
}

.home-event-date {
  display: flex;
  align-items: center;
  flex-direction: column;
  align-self: start;
  overflow: hidden;
  min-height: 82px;
  border: 1px solid #c9e5f1;
  border-radius: 10px;
  background: #f0faff;
  color: #087fb9;
}

.home-event-date span {
  width: 100%;
  padding: 5px;
  background: #0787c8;
  color: #fff;
  text-align: center;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
}

.home-event-date strong {
  padding-top: 4px;
  color: #073e5b;
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 28px;
  line-height: 1;
}

.home-event-date small {
  padding: 4px 4px 7px;
  color: #557787;
  text-align: center;
  font-size: 8px;
  line-height: 1.25;
}

.home-event-category {
  color: #0787c8;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-event-copy h3 {
  margin: 8px 0 10px;
  color: var(--color-navy);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.home-event-copy p {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
  color: #607d8c;
  font-size: 11px;
  line-height: 1.45;
}

.home-event-copy i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: #0787c8;
}

.home-event-card > a {
  grid-column: 1 / -1;
  align-self: end;
  justify-content: space-between;
  border-top: 1px solid #e0ebef;
  padding-top: 10px;
}

.home-events-empty {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 126px;
  padding: 24px 27px;
  border: 1px solid #cfe0e7;
  border-radius: 13px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 32px rgba(8, 53, 75, .06);
}

.home-events-date-placeholder {
  display: grid;
  width: 64px;
  height: 72px;
  border-radius: 10px;
  background: #e5f6fc;
  color: #0787c8;
  place-items: center;
}

.home-events-date-placeholder i { font-size: 27px; }
.home-events-empty strong {
  color: var(--color-navy);
  font-family: "Inter Tight", Inter, sans-serif;
  font-size: 20px;
  letter-spacing: -.02em;
}
.home-events-empty p {
  max-width: 670px;
  margin: 6px 0 0;
  color: #607d8c;
  font-size: 12px;
  line-height: 1.55;
}
.home-events-heading a:hover,
.home-events-empty > a:hover,
.home-event-card > a:hover { text-decoration: underline; }

@media (max-width: 980px) {
  .home-events-list { grid-template-columns: 1fr; }
  .home-event-card { min-height: 0; }
}

@media (max-width: 767px) {
  .home-events-section { padding: 44px var(--compact-gutter); }
  .home-events-heading { display: block; margin-bottom: 18px; }
  .home-events-heading h2 { font-size: 37px; }
  .home-events-heading > a { margin-top: 10px; }
  .home-events-empty {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 15px;
    padding: 18px;
  }
  .home-events-date-placeholder { width: 54px; height: 62px; }
  .home-events-empty > a {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
    border-top: 1px solid #d9e6eb;
    padding-top: 12px;
  }
}
