/* Page wrapper */

.event-page {
  max-width: 680px;
  margin: 0 auto;
  padding: 100px 0;

  color: #111;
  line-height: 1.6;
}

#event-img {
  width: 100%;
  margin: 0 auto;
}

/* Header */

.event-header {
  margin-bottom: 40px;
}

.event-header h1 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-date-time {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #333;
}

.event-venue-name {
  font-weight: 600;
}

.event-venue-address,
.event-venue-accessibility {
  font-size: 0.95rem;
  color: #555;
  margin-top: 20px;
}

/* Meta section */

.event-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;

  padding: 24px 0;
  margin-bottom: 40px;

  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.event-meta div {
  font-size: 0.95rem;
}

.event-meta strong {
  font-weight: 600;
}

/* Description */

.event-description {
  margin-bottom: 40px;
}

.event-description h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.event-description p {
  font-size: 1rem;
  color: #222;
  white-space: pre-wrap;
}

/* Links */

.event-links {
  margin-bottom: 40px;
}

.event-links h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.event-links a {
  font-size: 0.95rem;
  color: #007f6d;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.event-links a:hover {
  opacity: 0.8;
}

/* Footer */

.event-footer {
  margin-top: 60px;
  font-size: 0.9rem;
  color: #444;
}

.event-footer a {
  color: #007f6d;
  text-decoration: underline;
}

/* Responsive */

@media (max-width: 600px) {
  .event-page {
    padding: 80px 20px 120px;
  }

  .event-header h1 {
    font-size: 2.1rem;
  }

  .event-meta {
    grid-template-columns: 1fr;
  }
}