/* File: render-event-post.css */

.ll-event-layout--two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.ll-event-layout__col {
  min-width: 0;
}

.ll-event-layout__col--left .ll-event-hero {
  margin-bottom: 24px;
}

.ll-event-layout__col--left .ll-event-hero,
.ll-event-layout__col--left .ll-event-hero__lightbox-trigger,
.ll-event-layout__col--left .ll-event-hero__image {
  width: 100%;
}

.ll-event-layout__col--left .ll-event-hero__image {
  display: block;
  height: auto;
}

.ll-event-layout__col--right .ll-event-titleblock--datetime:first-child {
  margin-top: 0;
}

.ll-event-block + .ll-event-block {
  margin-top: 24px;
}

.ll-event-block__label {
  margin: 0 0 10px;
  font-weight: 700;
  line-height: 1.3;
}

.ll-event-block__value {
  min-width: 0;
}

.ll-event-titleblock--datetime {
  margin-bottom: 20px;
}

.ll-event-datetime__primary {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.ll-event-datetime__secondary {
  margin-top: 4px;
}

.ll-event-description > *:first-child {
  margin-top: 0;
}

.ll-event-description > *:last-child {
  margin-bottom: 0;
}

.ll-event-description p {
  margin: 0 0 14px;
  line-height: 1.7;
}

.ll-event-ticket-line + .ll-event-ticket-line {
  margin-top: 8px;
}

.ll-event-location__venue,
.ll-event-location__addr,
.ll-event-location__csz,
.ll-event-location__phone {
  margin-bottom: 6px;
}

.ll-event-location__venue {
  font-weight: 600;
}

.ll-event-location-map {
  margin-top: 14px;
}

.ll-event-location__directions {
  display: inline-block;
  margin-top: 10px;
}

.ll-event-link-row + .ll-event-link-row {
  margin-top: 10px;
}

.ll-event-contact__name,
.ll-event-contact__email,
.ll-event-contact__phone {
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .ll-event-layout--two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}