.ddn-events-page {
  background: #f7f5f1;
  color: #111;
  font-family: Georgia, "Times New Roman", serif;
  padding: 2rem 5vw 4rem;
}

.ddn-events-hero {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.ddn-kicker,
.ddn-event-category {
  color: #d73a31;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.ddn-events-hero h1 {
  color: #111;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.ddn-events-hero p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 760px;
  margin: 0 auto;
}

.ddn-featured-events {
  max-width: 1120px;
  margin: 0 auto 3rem;
}

.ddn-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1120px;
  margin: 0 auto;
}

.ddn-event-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ddn-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.12);
}

.ddn-event-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.ddn-event-card-body {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.1rem;
}

.ddn-event-card h2,
.ddn-event-card h3 {
  margin: 0 0 0.35rem;
  line-height: 1.15;
  color: #111;
}

.ddn-event-card h2 {
  font-size: 1.6rem;
}

.ddn-event-card h3 {
  font-size: 1.25rem;
}

.ddn-event-card a {
  color: inherit;
  text-decoration: none;
}

.ddn-event-card a:hover {
  color: #d73a31;
}

.ddn-event-meta {
  font-family: Arial, sans-serif;
  color: #666;
  font-size: 0.86rem;
  margin-bottom: 0.7rem;
}

.ddn-event-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.55;
}

.ddn-event-date {
  border: 2px solid #111;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background: #fbf007;
  color: #111;
}

.ddn-event-date span {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ddn-event-date strong {
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  margin-top: 0.2rem;
}

.ddn-event-date-range strong {
  font-size: 1rem;
}

.ddn-event-button {
  display: inline-block;
  margin-top: 0.7rem;
  padding: 0.65rem 1rem;
  background: #111;
  color: #fff !important;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ddn-event-button:hover {
  background: #d73a31;
}

.ddn-month-section {
  margin-top: 3rem;
}

.ddn-month-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 1120px;
  margin: 0 auto 1.25rem;
}

.ddn-month-heading span {
  height: 1px;
  background: rgba(0,0,0,0.18);
}

.ddn-month-heading h2 {
  color: #111;
  font-size: 1.8rem;
  margin: 0;
}

@media (max-width: 900px) {
  .ddn-event-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ddn-events-page {
    padding: 1.5rem 1rem 3rem;
  }

  .ddn-event-grid {
    grid-template-columns: 1fr;
  }

  .ddn-event-card-body {
    grid-template-columns: 64px 1fr;
    gap: 0.85rem;
    padding: 1rem;
  }

  .ddn-event-date {
    min-height: 64px;
  }

  .ddn-month-heading {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ddn-month-heading span {
    display: none;
  }
}
.ddn-month-feature {
  max-width: 1120px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  background: #111;
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  overflow: hidden;
}

.ddn-month-feature img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.ddn-month-feature-copy {
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ddn-month-feature-copy h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  margin: 0 0 0.8rem;
}

.ddn-month-feature-copy a {
  color: inherit;
  text-decoration: none;
}

.ddn-month-feature-copy a:hover {
  color: #fbf007;
}

.ddn-month-feature-copy p {
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

.ddn-month-feature .ddn-event-meta {
  color: #fbf007;
}

@media (max-width: 800px) {
  .ddn-month-feature {
    grid-template-columns: 1fr;
  }

  .ddn-month-feature img {
    min-height: 240px;
  }
}