.date-photo-description {
  display: grid;
  grid-template-columns: 70px 335px 1fr;
  gap: 0;
  width: 100%;
  background: #ffffff;
}

.date-event-page {
  background: #e3722e;
  color: #ffffff;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 20px 10px;
}

.event-photo-page {
  background: #ffffff;
}

.event-photo-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-description-page {
  background: #3d3f3f;
  color: #ffffff;
  padding: 24px 30px;
}

.event-description-page h2,
.event-description-page h3 {
  color: #3d3f3f;
  margin-top: 0;
}

.event-description-page a {
  color: #e3722e;
  font-weight: bold;
}

@media (max-width: 768px) {
  .date-photo-description {
    grid-template-columns: 50px 1fr;
  }

  .event-description-page {
    grid-column: 1 / -1;
    border-left: none;
  }
}

.location-links-email-phone {
  display: grid;
  grid-template-columns: 405px 1fr;
  gap: 0;
  width: 100%;
  background: #ffffff;
}

.event-location-page {
  background: #e3722e;
  color: #ffffff;
  padding: 24px 30px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 0px 0px 0px 10px;
  border-top:3px solid #000000;
}

.links-email-phone {
  display: grid;
  grid-template-rows: repeat(3, auto);
  background: #3d3f3f;
  color: #ffffff;
  border-radius: 0px 0px 10px 0px;
  border-top:3px solid #000000;
}

.event-email-page,
.event-links-page,
.event-phone-page {
  padding: 14px 24px;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.event-phone-page {
  border-bottom: none;
}

.links-email-phone a {
  color: #e3722e;
  font-weight: bold;
  text-decoration: none;
}

.links-email-phone a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .location-links-email-phone {
    grid-template-columns: 1fr;
  }

  .event-location-page {
    border-radius: 0;
  }

  .links-email-phone {
    grid-template-rows: auto;
  }
}

.event-title-page {
  background: #000000;
  color: #ffffff;
  padding: 20px 30px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
  border-radius: 10px 10px 0 0;
}