.daily-events-hero {
  padding: 92px 0 102px;
  background:
    radial-gradient(circle at 18% 10%, rgba(240, 200, 105, .3), transparent 32%),
    linear-gradient(135deg, #07152a, #144578 55%, #082034);
  color: #fff;
  text-align: center;
}

.daily-events-hero .eyebrow,
.daily-events-heading .eyebrow {
  margin: 0 0 10px;
  color: #f2cb74;
  font-size: .77rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.daily-events-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.18;
}

.daily-events-hero > .container > p:last-child {
  max-width: 590px;
  margin: 18px auto 0;
  color: #dbe8f7;
}

.daily-events-section {
  padding: 76px 0 94px;
  background: #f5f7fa;
}

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

.daily-events-heading h2 {
  margin: 0;
  color: #102b4d;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.daily-events-heading > p {
  max-width: 480px;
  margin: 0;
  color: #59708b;
  line-height: 1.8;
}

.daily-events-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.daily-event-card {
  display: grid;
  justify-items: center;
  min-height: 262px;
  padding: 25px 16px 22px;
  border: 1px solid #dde5ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(19, 52, 89, .08);
  color: #132b4b;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.daily-event-card img {
  width: 126px;
  height: 126px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.daily-event-card strong {
  align-self: end;
  margin-top: 12px;
  font-size: 1.22rem;
}

.daily-event-card span {
  margin-top: 8px;
  color: #286db6;
  font-size: .82rem;
  font-weight: 800;
}

.daily-event-card:hover,
.daily-event-card:focus-visible {
  transform: translateY(-5px);
  border-color: #d0a74c;
  box-shadow: 0 18px 34px rgba(19, 52, 89, .16);
}

.daily-event-card:focus-visible {
  outline: 3px solid #194f85;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .daily-events-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .daily-events-heading { display: block; }
  .daily-events-heading > p { margin-top: 13px; }
}

@media (max-width: 620px) {
  .daily-events-hero { padding: 64px 0 72px; }
  .daily-events-section { padding: 52px 0 70px; }
  .daily-events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .daily-event-card { min-height: 205px; padding: 18px 10px; border-radius: 13px; }
  .daily-event-card img { width: 96px; height: 96px; }
  .daily-event-card strong { font-size: 1.02rem; }
  .daily-event-card span { font-size: .7rem; }
}
