/* EVENTS MODAL CONTENT STYLES */

.event-list {
  position: relative;
  display: grid;
  gap: 0.75rem;
}

.event-row {
  position: relative;
  padding: 0.85rem;
  border: 1px solid rgba(255, 220, 115, 0.45);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(14, 12, 10, 0.88), rgba(5, 5, 8, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 14px rgba(255, 220, 115, 0.10);
}

.event-date,
.event-time {
  color: rgba(255, 236, 170, 0.88);
  font-family: "Trebuchet MS", "Arial Black", Arial, system-ui, sans-serif;
  font-size: clamp(0.72rem, 2.85vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-time {
  margin-top: 0.16rem;
  color: rgba(102, 244, 255, 0.88);
  text-shadow: 0 0 8px rgba(102, 244, 255, 0.20);
}

.event-title-button {
  position: relative;
  width: 100%;
  margin-top: 0.56rem;
  padding: 0.62rem 0.68rem;
  border: 1px solid rgba(102, 244, 255, 0.44);
  border-radius: 999px;
  color: rgba(102, 244, 255, 0.96);
  background:
    radial-gradient(circle at 50% 0%, rgba(102, 244, 255, 0.12), transparent 46%),
    rgba(0, 0, 0, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -5px 9px rgba(0, 0, 0, 0.42),
    0 0 10px rgba(102, 244, 255, 0.10);
  font-family: "Trebuchet MS", "Arial Black", Arial, system-ui, sans-serif;
  font-size: clamp(0.72rem, 2.9vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.15;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(102, 244, 255, 0.30);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 120ms ease,
    border-color 140ms ease,
    color 140ms ease,
    box-shadow 140ms ease;
}

.event-title-button:hover {
  color: rgba(255, 239, 174, 1);
  border-color: rgba(255, 239, 174, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 0 -5px 9px rgba(0, 0, 0, 0.42),
    inset 0 0 12px rgba(255, 220, 115, 0.14),
    0 0 10px rgba(255, 220, 115, 0.12);
}

.event-title-button:active {
  transform: translateY(2px) scale(0.985);
}

.event-title-button:focus-visible,
.event-reminder-button:focus-visible,
.event-detail-location a:focus-visible {
  outline: 2px solid rgba(102, 244, 255, 0.76);
  outline-offset: 2px;
}

.modal-title--detail {
  font-size: clamp(1.45rem, 6.9vw, 2rem);
  line-height: 1;
}

.event-detail-body {
  display: grid;
  gap: 0.72rem;
}

.event-detail-body p,
.event-detail-meta {
  margin: 0;
}

.event-detail-meta {
  color: rgba(255, 236, 170, 0.92);
  font-family: "Trebuchet MS", "Arial Black", Arial, system-ui, sans-serif;
  font-size: clamp(0.8rem, 3.1vw, 0.94rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.event-detail-location {
  color: rgba(255, 246, 210, 0.94);
  line-height: 1.45;
}

.event-detail-location a {
  color: rgba(102, 244, 255, 0.98);
  font-weight: 900;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(102, 244, 255, 0.34);
}

.event-detail-location a:hover {
  color: rgba(255, 239, 174, 1);
}

.event-reminder-button {
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(255, 220, 115, 0.52);
  border-radius: 999px;
  color: rgba(255, 220, 115, 0.68);
  background: rgba(4, 4, 5, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 239, 180, 0.12),
    inset 0 -5px 9px rgba(0, 0, 0, 0.34);
  font-family: "Trebuchet MS", "Arial Black", Arial, system-ui, sans-serif;
  font-size: clamp(0.76rem, 3vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.92;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


.event-reminder-button.is-disabled,
.event-reminder-button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.72;
  pointer-events: none;
}
