:root {
  color-scheme: light;
  --airborne-black: #111111;
  --airborne-ink: #242424;
  --airborne-muted: #66625c;
  --airborne-line: #e4dfd6;
  --airborne-paper: #ffffff;
  --airborne-soft: #f6f2ea;
  --airborne-accent: #6ee7f9;
  --airborne-accent-strong: #0891b2;
  --airborne-accent-ink: #07111f;
  --airborne-focus: rgba(110, 231, 249, 0.32);
}

* {
  box-sizing: border-box;
}

.airborne-events-frame {
  margin: 0;
  background: transparent;
}

.airborne-events-widget {
  width: 100%;
  min-width: 0;
  background: var(--airborne-paper);
  color: var(--airborne-ink);
  font-family: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

.airborne-events-widget button,
.airborne-events-widget input {
  font: inherit;
}

.airborne-events-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 54px 22px 64px;
}

.airborne-events-kicker,
.airborne-events-section-kicker {
  margin: 0 0 10px;
  color: var(--airborne-accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.airborne-events-heading {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 30px;
}

.airborne-events-title {
  margin: 0;
  color: var(--airborne-black);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.airborne-events-subtitle {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--airborne-muted);
  font-size: 17px;
  line-height: 1.6;
}

.airborne-events-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 22px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(228, 223, 214, 0.72);
  background: rgba(255, 255, 255, 0.96);
}

.airborne-events-search {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--airborne-line);
  border-radius: 4px;
  padding: 0 16px;
  color: var(--airborne-ink);
  background: var(--airborne-paper);
  outline: none;
}

.airborne-events-search:focus {
  border-color: var(--airborne-accent);
  box-shadow: 0 0 0 4px var(--airborne-focus);
}

.airborne-events-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.airborne-events-filter {
  min-height: 42px;
  border: 1px solid var(--airborne-line);
  border-radius: 999px;
  padding: 0 15px;
  background: var(--airborne-paper);
  color: var(--airborne-ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.airborne-events-filter:hover,
.airborne-events-filter[aria-pressed="true"] {
  border-color: var(--airborne-black);
  background: var(--airborne-black);
  color: #ffffff;
}

.airborne-events-featured,
.airborne-events-upcoming {
  margin-top: 18px;
}

.airborne-events-section-title {
  margin: 0 0 18px;
  color: var(--airborne-black);
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.airborne-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.airborne-event-card {
  display: grid;
  min-width: 0;
  grid-template-columns: clamp(170px, 19vw, 210px) minmax(0, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--airborne-line);
  border-radius: 4px;
  background: var(--airborne-paper);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.06);
  cursor: pointer;
}

.airborne-event-card.is-featured {
  background: #fffdfa;
}

.airborne-event-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  align-self: center;
  background: var(--airborne-soft);
}

.airborne-event-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.airborne-event-image-fallback {
  display: grid;
  height: 100%;
  place-items: center;
  background: linear-gradient(135deg, #191919, #3b3320);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.airborne-event-featured-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border-radius: 999px;
  padding: 7px 10px;
  background: var(--airborne-accent);
  color: var(--airborne-accent-ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.airborne-event-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 10px 14px;
}

.airborne-event-date-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 3px;
}

.airborne-event-datebox {
  display: grid;
  width: 48px;
  min-width: 48px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--airborne-line);
  border-radius: 4px;
  background: var(--airborne-soft);
}

.airborne-event-month {
  color: var(--airborne-accent-strong);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.airborne-event-day {
  color: var(--airborne-black);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.airborne-event-meta {
  min-width: 0;
  color: var(--airborne-muted);
  font-size: 13px;
  line-height: 1.18;
}

.airborne-event-meta-date {
  display: none;
}

.airborne-event-meta-time,
.airborne-event-meta-location {
  display: inline;
}

.airborne-event-location-mobile {
  display: none;
}

.airborne-event-heading-copy {
  display: flex;
  min-height: 52px;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
}

.airborne-event-title {
  margin: -1px 0 0;
  color: var(--airborne-black);
  font-size: 21px;
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.airborne-event-description {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--airborne-muted);
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.airborne-event-tags {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 16px;
}

.airborne-event-tag {
  border-radius: 999px;
  padding: 5px 8px;
  background: var(--airborne-soft);
  color: var(--airborne-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.airborne-event-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 0;
}

.airborne-event-button,
.airborne-event-link-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.airborne-event-button {
  border: 1px solid var(--airborne-black);
  background: var(--airborne-black);
  color: #ffffff;
}

.airborne-event-link-button {
  border: 1px solid var(--airborne-line);
  background: var(--airborne-paper);
  color: var(--airborne-black);
}

.airborne-events-state {
  border: 1px solid var(--airborne-line);
  border-radius: 4px;
  padding: 30px;
  background: var(--airborne-soft);
  color: var(--airborne-muted);
  text-align: center;
}

.airborne-events-state strong {
  display: block;
  margin-bottom: 8px;
  color: var(--airborne-black);
  font-size: 18px;
  text-transform: uppercase;
}

.airborne-event-skeleton {
  min-height: 210px;
}

.airborne-event-skeleton .airborne-event-image-wrap,
.airborne-event-skeleton-line {
  overflow: hidden;
  background: linear-gradient(90deg, #eee8dc, #faf8f2, #eee8dc);
  background-size: 220% 100%;
  animation: airborne-shimmer 1.2s infinite linear;
}

.airborne-event-skeleton-line {
  height: 16px;
  border-radius: 3px;
  margin: 14px 0 0;
}

.airborne-event-skeleton-line.short {
  width: 50%;
}

.airborne-event-skeleton-line.medium {
  width: 72%;
}

@keyframes airborne-shimmer {
  from { background-position: 220% 0; }
  to { background-position: -220% 0; }
}

.airborne-events-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.68);
}

.airborne-events-modal.is-open {
  display: flex;
}

.airborne-events-dialog {
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: auto;
  border-radius: 6px;
  background: var(--airborne-paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.airborne-events-dialog-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  background: var(--airborne-soft);
}

.airborne-events-dialog-body {
  padding: 28px;
}

.airborne-events-dialog-title {
  margin: 0 44px 12px 0;
  color: var(--airborne-black);
  font-size: 32px;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

.airborne-events-dialog-meta {
  margin: 0 0 16px;
  color: var(--airborne-muted);
  font-weight: 700;
  line-height: 1.55;
}

.airborne-events-dialog-description {
  margin: 0 0 24px;
  color: var(--airborne-ink);
  font-size: 16px;
  line-height: 1.65;
  white-space: pre-line;
}

.airborne-events-close {
  position: sticky;
  top: 14px;
  float: right;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--airborne-black);
  color: #ffffff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 920px) {
  .airborne-events-heading,
  .airborne-events-tools {
    grid-template-columns: 1fr;
  }

  .airborne-events-filters {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .airborne-events-shell {
    padding: 38px 16px 46px;
  }

  .airborne-events-title {
    font-size: 34px;
  }

  .airborne-event-card {
    display: grid;
    --airborne-mobile-thumb-width: 132px;
    --airborne-mobile-date-width: 46px;
    --airborne-mobile-date-height: 74px;
    grid-template-columns: var(--airborne-mobile-thumb-width) var(--airborne-mobile-date-width) minmax(0, 1fr);
    align-items: center;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--airborne-line);
    border-radius: 4px;
    background: var(--airborne-paper);
    box-shadow: 0 8px 18px rgba(17, 17, 17, 0.06);
  }

  .airborne-event-image-wrap {
    grid-column: 1;
    aspect-ratio: 16 / 9;
    align-self: center;
    height: auto;
    border-radius: 0;
  }

  .airborne-event-content {
    display: contents;
    padding: 0;
  }

  .airborne-event-date-row {
    display: contents;
  }

  .airborne-event-datebox {
    grid-column: 2;
    width: var(--airborne-mobile-date-width);
    min-width: var(--airborne-mobile-date-width);
    height: var(--airborne-mobile-date-height);
    align-self: center;
    border-width: 0 1px;
    border-color: var(--airborne-line);
    border-radius: 0;
    background: var(--airborne-soft);
  }

  .airborne-event-month {
    color: var(--airborne-accent-strong);
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .airborne-event-day {
    color: var(--airborne-black);
    font-size: 21px;
  }

  .airborne-event-meta {
    color: var(--airborne-muted);
    font-size: 12px;
    line-height: 1.08;
  }

  .airborne-event-meta-date {
    display: none;
  }

  .airborne-event-location-web {
    display: none;
  }

  .airborne-event-location-mobile {
    display: inline;
  }

  .airborne-event-heading-copy {
    grid-column: 3;
    min-height: var(--airborne-mobile-date-height);
    justify-content: center;
    padding: 8px 10px;
  }

  .airborne-event-title {
    margin: -1px 0 0;
    font-size: 18px;
    line-height: 1.16;
  }

  .airborne-event-description {
    display: none;
  }

  .airborne-event-tags,
  .airborne-event-actions {
    display: none;
  }

  .airborne-event-tag {
    padding: 4px 7px;
    font-size: 10px;
  }

  .airborne-event-actions {
    align-items: center;
    flex-direction: row;
  }

  .airborne-event-button,
  .airborne-event-link-button {
    width: auto;
    min-height: 38px;
    padding: 0 15px;
    font-size: 13px;
  }

  .airborne-events-dialog-body {
    padding: 22px;
  }

  .airborne-events-dialog-title {
    font-size: 26px;
  }
}

@media (max-width: 380px) {
  .airborne-event-card {
    --airborne-mobile-thumb-width: 112px;
    --airborne-mobile-date-width: 42px;
    --airborne-mobile-date-height: 63px;
  }

  .airborne-event-month {
    font-size: 9px;
  }

  .airborne-event-day {
    font-size: 20px;
  }
}
