.oneworldz-blue-white {
  --ow-blue: #061328;
  --ow-blue-deep: #020817;
  --ow-white: #ffffff;
  --ow-sky: #65b9ff;
  --ow-line: rgba(101, 185, 255, .22);
  --ow-panel: rgba(5, 30, 64, .82);
  --bg: var(--ow-blue-deep);
  --bg-soft: #061a35;
  --panel: #08203e;
  --text: var(--ow-white);
  --muted: #cbdff5;
  --line: var(--ow-line);
  background: var(--ow-blue-deep);
  color: var(--ow-white);
}

.oneworldz-blue-white .site-header {
  background: rgba(2, 8, 23, .90);
  border-bottom-color: rgba(101, 185, 255, .24);
}

.oneworldz-blue-white .site-brand small,
.oneworldz-blue-white .profile-copy small,
.oneworldz-blue-white .eyebrow {
  color: var(--ow-sky);
}

.oneworldz-blue-white .hero {
  min-height: min(900px, calc(100svh - 84px));
  background: var(--ow-blue-deep);
}

.oneworldz-blue-white .hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--ow-blue-deep);
}

.oneworldz-blue-white .hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.oneworldz-blue-white .hero::after {
  background:
    linear-gradient(90deg, rgba(2, 8, 23, .96) 0%, rgba(2, 8, 23, .80) 38%, rgba(2, 8, 23, .20) 72%),
    linear-gradient(0deg, rgba(2, 8, 23, .90), transparent 45%);
}

.oneworldz-blue-white .section-dark {
  background: linear-gradient(180deg, rgba(40, 122, 210, .08), rgba(255, 255, 255, .025));
  border-block-color: rgba(101, 185, 255, .12);
}

.oneworldz-blue-white .profile-card.destination-preview-card {
  grid-template-columns: clamp(118px, 15vw, 174px) 1fr;
  background: linear-gradient(135deg, rgba(12, 50, 92, .76), rgba(3, 15, 35, .96));
}

.destination-preview {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #031126;
}

.destination-preview img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
  object-position: center;
}

.official-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.official-directory-card {
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 1.25rem;
  border: 1px solid var(--ow-line);
  border-radius: .85rem;
  background: linear-gradient(145deg, rgba(10, 55, 105, .76), rgba(2, 14, 34, .96));
  color: var(--ow-white);
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.official-directory-card:hover {
  transform: translateY(-2px);
  border-color: rgba(101,185,255,.72);
  background: linear-gradient(145deg, rgba(13, 69, 130, .84), rgba(2, 18, 43, .98));
}

.official-directory-card > span {
  color: var(--ow-sky);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.official-directory-card > strong {
  margin-top: .65rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.official-directory-card > small {
  margin-top: .55rem;
  color: #d7e9fb;
  font-size: .82rem;
  line-height: 1.45;
}

.official-directory-card > em {
  margin-top: auto;
  padding-top: 1rem;
  overflow-wrap: anywhere;
  color: var(--ow-sky);
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
}

.support-directory-card {
  background: linear-gradient(145deg, rgba(8, 47, 91, .88), rgba(3, 18, 42, .98));
}

.community-support-page .community-support-hero {
  min-height: min(760px, calc(100svh - 84px));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background-image:
    linear-gradient(0deg, rgba(2, 10, 25, .96) 0%, rgba(3, 19, 43, .78) 48%, rgba(4, 24, 52, .34) 100%),
    url('/assets/previews/community-impact-background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.community-support-page .community-support-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 30%, rgba(101, 185, 255, .14), transparent 42rem);
  pointer-events: none;
}

.community-support-page .community-support-hero::after {
  display: none;
}

.community-support-page .community-support-hero > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .official-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .oneworldz-blue-white .hero::after {
    background: linear-gradient(0deg, rgba(2, 8, 23, .98) 0%, rgba(2, 8, 23, .80) 48%, rgba(2, 8, 23, .22) 100%);
  }

  .oneworldz-blue-white .hero-art img {
    object-position: center top;
  }
}

@media (max-width: 720px) {
  .oneworldz-blue-white .hero {
    min-height: calc(100svh - 76px);
  }

  .oneworldz-blue-white .hero-art img {
    object-fit: cover;
    object-position: center center;
  }

  .oneworldz-blue-white .profile-card.destination-preview-card {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 112px;
  }

  .destination-preview img {
    min-height: 112px;
  }

  .official-directory-grid { grid-template-columns: 1fr; }
  .official-directory-card { min-height: 0; }

  .community-support-page .community-support-hero {
    min-height: calc(100svh - 76px);
    background-position: center center;
  }
}

@media (max-width: 390px) {
  .oneworldz-blue-white .profile-card.destination-preview-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}
