/**
 * @file
 * Styles for Event content type.
 */

/* Event Map Section */
.event__map-section {
  /* margin: 2rem 0; */
  padding: 0 1.5rem;
  /* background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px; */
}

.event__section-title {
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary-color, #0066cc);
  color: var(--secondary-color, #003366);
  font-size: 1.5rem;
  font-weight: 600;
}

.event__map-info {
  /* margin-bottom: 1rem; */
}

.event__anc-info,
.event__smd-info {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.event__anc-info strong,
.event__smd-info strong {
  color: var(--secondary-color, #003366);
  font-weight: 600;
}

.event__map {
  min-height: 300px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Event Header */
.event__header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 4px;
}

.event__date,
.event__time,
.event__location {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.event__date-label,
.event__time-label,
.event__location-label {
  font-weight: 600;
  color: var(--secondary-color, #003366);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Event Body */
.event__body {
  margin: 1.5rem 0;
  line-height: 1.8;
}

/* Event Meta */
.event__meta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .event__map-section {
    padding: 1rem;
    /* margin: 1rem 0; */
  }

  .event__section-title {
    font-size: 1.25rem;
  }

  .event__map {
    min-height: 300px;
  }

  .event__header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.page-node-type-event .block-field-blocknodeeventfield-event-alert-message{
  margin: 1rem 50px;
  padding: 20px 0.75rem;
  background: #f0f7ff;
  border-left: 3px solid #0066cc;
  color: #555;
  font-size: 0.9rem;
  font-weight: 700;
}
.block-field-blocknodeeventbody{
  padding-right: 40px;
}

.page-node-type-event .layout--twocol-section.layout--twocol-section--75-25 > .layout__region--second {
  display: flex;
  flex-direction: column;
  gap: 40px;
}