@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* =========================================================
   Wireless Planet — Design System
   Dark navy + cyan gradient culture (site + dashboard)
   ========================================================= */

:root {
  --wp-bg: #0b1420;
  --wp-bg-elevated: #121c2b;
  --wp-bg-soft: #162436;
  --wp-surface: rgba(18, 28, 43, 0.72);
  --wp-glass: rgba(10, 18, 30, 0.55);
  --wp-border: rgba(255, 255, 255, 0.08);
  --wp-text: #f4f7fb;
  --wp-muted: #9fb0c3;
  --wp-cyan: #5ec8f0;
  --wp-cyan-deep: #2f8fd4;
  --wp-blue: #1177bd;
  --wp-ink: #0a1018;
  --wp-gradient: linear-gradient(115deg, #2f8fd4 0%, #5ec8f0 52%, #7ad7f5 100%);
  --wp-gradient-soft: linear-gradient(160deg, #162436 0%, #0b1420 100%);
  --wp-gradient-card: linear-gradient(180deg, rgba(30, 48, 70, 0.95) 0%, rgba(14, 22, 34, 0.98) 100%);
  --wp-radius-sm: 12px;
  --wp-radius: 22px;
  --wp-radius-lg: 32px;
  --wp-radius-xl: 40px;
  --wp-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --wp-font: "Lexend Deca", sans-serif;
  --wp-display: "Teachers", "Lexend Deca", sans-serif;
  --wp-nav-h: 78px;
  --wp-container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.theme-wp,
body {
  max-width: 100%;
  font-family: var(--wp-font);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--wp-text);
  background: var(--wp-bg);
  min-height: 100vh;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--wp-container));
  margin-inline: auto;
}

/* ---------- Shared controls ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-gradient {
  background: var(--wp-gradient);
  color: #061018 !important;
  box-shadow: 0 10px 30px rgba(46, 160, 220, 0.28);
}

.btn-gradient:hover {
  color: #061018 !important;
  box-shadow: 0 14px 34px rgba(46, 160, 220, 0.4);
}

.btn-1 {
  background: var(--wp-gradient);
  color: #061018;
}

.btn-1:hover {
  color: #061018;
}

.btn-2 {
  background: #1a1a1a;
  color: #fff;
}

.btn-2:hover {
  color: #fff;
}

.color-1 { color: var(--wp-cyan); }
.color-2 { color: #1a1a1a; }

.text-link {
  color: var(--wp-cyan);
  font-weight: 600;
  font-size: 0.92rem;
}

.text-link:hover {
  color: #8ad8f7;
}

.alert { border: none; }

.logo,
.site-nav__logo {
  height: 46px;
  width: auto;
}

/* ---------- Site navbar ---------- */

.site-nav {
  position: fixed;
  top: 1.1rem;
  left: 0;
  right: 0;
  z-index: 1000;
  width: min(100% - 2rem, 1240px);
  max-width: 100%;
  height: var(--wp-nav-h);
  margin-inline: auto;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: rgba(10, 18, 30, 0.42);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  transition:
    top 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    max-width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
  will-change: width, border-radius, top;
}

.site-nav.is-scrolled {
  top: 0;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  border-radius: 0;
  padding: 0 1.5rem;
  background: rgba(8, 14, 24, 0.88);
  border-color: rgba(255, 255, 255, 0.08);
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.site-nav__inner {
  width: min(100%, 1240px);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-nav__brand {
  flex-shrink: 0;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.55rem;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--wp-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--wp-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: #fff;
}

.site-nav__link.is-active::after,
.site-nav__link:hover::after {
  transform: scaleX(1);
}

.site-nav__cta {
  padding: 0.7rem 1.25rem;
  font-family: var(--wp-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--wp-font);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  padding: 0.35rem 0;
}

.site-nav__dropbtn i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}

.site-nav__dropdown.is-open .site-nav__dropbtn i {
  transform: rotate(180deg);
}

.site-nav__dropmenu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  padding: 0.55rem;
  border-radius: 16px;
  background: rgba(8, 14, 24, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 20;
}

.site-nav__dropdown.is-open .site-nav__dropmenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropmenu a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav__dropmenu a:hover,
.site-nav__dropmenu a.is-active {
  background: rgba(94, 200, 240, 0.12);
  color: #fff;
}

.site-nav__dropmenu--hubs {
  min-width: 240px;
}

.site-nav__dropmenu--hubs a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.35;
}

.site-nav__drop-title {
  font-weight: 600;
}

.site-nav__drop-sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 500;
}

.site-nav__drop-empty {
  display: block;
  padding: 0.7rem 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wp-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.site-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 680px;
  height: 78vh;
  max-height: 840px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--wp-nav-h) + 1.4rem) 0 2.4rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 22, 0.88) 0%, rgba(6, 12, 22, 0.55) 42%, rgba(6, 12, 22, 0.28) 100%),
    linear-gradient(180deg, rgba(6, 12, 22, 0.35) 0%, rgba(6, 12, 22, 0.18) 35%, rgba(6, 12, 22, 0.82) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__title {
  font-family: var(--wp-display);
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 1.4rem;
  animation: riseIn 0.9s ease both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.2rem;
  animation: riseIn 0.95s ease 0.06s both;
}

.hero__actions .btn {
  min-height: 48px;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(94, 200, 240, 0.45);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  animation: riseIn 1s ease 0.12s both;
}

.stat-card {
  background: linear-gradient(160deg, rgba(16, 28, 44, 0.72), rgba(8, 14, 24, 0.55));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: var(--wp-radius);
  padding: 1.2rem 1.15rem;
  box-shadow: var(--wp-shadow);
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 200, 240, 0.35);
}

.stat-card__value {
  color: var(--wp-cyan);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1;
}

.stat-card__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Sections ---------- */

.section {
  padding: 5.5rem 0;
  background: var(--wp-gradient-soft);
  position: relative;
}

.section__eyebrow {
  text-align: left;
  color: var(--wp-cyan);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}

.section__title {
  text-align: center;
  font-family: var(--wp-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
}

.pillars .section__eyebrow,
.pillars .section__title {
  text-align: left;
}

.section__title--sm {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.media-frame {
  position: relative;
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blob {
  position: absolute;
  background: var(--wp-gradient);
  filter: blur(0.2px);
  opacity: 0.95;
  z-index: 2;
  pointer-events: none;
}

.blob--lg {
  width: 140px;
  height: 110px;
  right: -18px;
  bottom: -24px;
  border-radius: 68% 32% 64% 36% / 48% 58% 42% 52%;
  box-shadow: 0 10px 30px rgba(47, 143, 212, 0.35);
}

.blob-label {
  position: absolute;
  right: -8px;
  bottom: -10px;
  min-width: 128px;
  min-height: 108px;
  padding: 1.1rem 1rem;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--wp-gradient);
  border-radius: 62% 38% 58% 42% / 48% 55% 45% 52%;
  color: #0b1420;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.15;
  box-shadow: 0 12px 28px rgba(47, 143, 212, 0.35);
  z-index: 2;
}

/* Pillars */

.pillars {
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 143, 212, 0.12), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(94, 200, 240, 0.08), transparent 30%),
    var(--wp-bg);
  padding-top: 4rem;
}

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

.pillar-card {
  background: var(--wp-gradient-card);
  border: 1px solid var(--wp-border);
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
  box-shadow: var(--wp-shadow);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
}

.pillar-card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.pillar-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pillar-card:hover .pillar-card__media img {
  transform: scale(1.04);
}

.pillar-card__body {
  padding: 1.4rem 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.pillar-card__body h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.pillar-card__body p {
  color: var(--wp-muted);
  font-size: 0.95rem;
  flex: 1;
}

/* Inclusive */

.inclusive {
  background:
    radial-gradient(circle at 80% 30%, rgba(94, 200, 240, 0.1), transparent 28%),
    linear-gradient(180deg, #101a28 0%, #0b1420 100%);
}

.inclusive__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.inclusive__media {
  min-height: 420px;
  box-shadow: var(--wp-shadow);
}

.inclusive__media img {
  min-height: 420px;
}

.inclusive__content h2 {
  font-family: var(--wp-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.inclusive__content > p {
  color: var(--wp-muted);
  margin-bottom: 1.8rem;
  max-width: 38ch;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: flex-start;
}

.feature-list__dot {
  width: 18px;
  height: 18px;
  margin-top: 0.3rem;
  border-radius: 50%;
  background: var(--wp-gradient);
  box-shadow: 0 0 0 6px rgba(94, 200, 240, 0.12);
}

.feature-list h4 {
  color: var(--wp-cyan);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.feature-list p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

/* Data mapping */

.data-mapping {
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 143, 212, 0.14), transparent 40%),
    var(--wp-bg);
}

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

.map-card {
  min-height: 360px;
  box-shadow: var(--wp-shadow);
  border: 1px solid var(--wp-border);
  transition: transform 0.35s ease;
}

.map-card:hover {
  transform: translateY(-6px);
}

.map-card img {
  min-height: 360px;
}

/* Events */

.events {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 143, 212, 0.14), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(94, 200, 240, 0.08), transparent 28%),
    linear-gradient(180deg, #0b1420 0%, #101b2a 100%);
}

.events-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.events-head__copy .section__eyebrow {
  text-align: left;
  margin-bottom: 0.55rem;
}

.events-head .section__title {
  margin-bottom: 0;
  text-align: left;
}

.events-all {
  flex-shrink: 0;
}

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

.event-card {
  background: linear-gradient(180deg, rgba(28, 44, 64, 0.92) 0%, rgba(12, 20, 32, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(94, 200, 240, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(94, 200, 240, 0.08);
}

.event-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.event-card__link:hover,
.event-card__link:focus,
.event-card__link:focus-visible {
  color: #fff;
  text-decoration: none;
}

.event-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.event-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 12, 22, 0.72) 100%);
  pointer-events: none;
}

.event-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  min-width: 64px;
  padding: 0.55rem 0.65rem;
  border-radius: 14px;
  text-align: center;
  background: var(--wp-gradient);
  color: #061018;
  box-shadow: 0 10px 24px rgba(47, 143, 212, 0.35);
  line-height: 1.05;
}

.event-card__day {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
}

.event-card__month {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-card:hover .event-card__media img {
  transform: scale(1.06);
}

.event-card__body {
  padding: 1.2rem 1.25rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  flex: 1;
}

.event-card__body h3 {
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.event-card:hover .event-card__body h3,
.event-card__link:hover h3 {
  color: #fff;
}

.event-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.event-card__date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 500;
}

.event-card__date i {
  color: var(--wp-cyan);
  font-size: 0.9rem;
}

.event-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--wp-cyan);
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: gap 0.25s ease, color 0.25s ease;
}

.event-card:hover .event-card__cta {
  color: #8ad8f7;
  gap: 0.5rem;
}

/* Partners */

.partners {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 143, 212, 0.1), transparent 42%),
    var(--wp-bg);
}

.partners-head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.partners-head .section__eyebrow {
  text-align: center;
}

.partners-head .section__title {
  margin-bottom: 0;
}

.partners__row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.partners__item {
  min-height: 110px;
  padding: 1.35rem 1.1rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wp-radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.partners__item:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 200, 240, 0.35);
  background: linear-gradient(160deg, rgba(94, 200, 240, 0.12), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.partners__logo {
  width: auto;
  max-width: 118px;
  height: 38px;
  object-fit: contain;
  opacity: 0.82;
  filter: brightness(1.05);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.partners__item:hover .partners__logo {
  opacity: 1;
  transform: scale(1.04);
}

/* CTA */

.cta-banner {
  background: linear-gradient(180deg, #0b1420 0%, #070d15 100%);
  padding: 2rem 0 5rem;
}

.cta-banner__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--wp-radius-xl);
  padding: clamp(2.4rem, 5vw, 4rem) clamp(1.4rem, 4vw, 3.2rem);
  background: var(--wp-gradient);
  box-shadow: 0 28px 70px rgba(47, 143, 212, 0.28);
}

.cta-banner__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: -90px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  background: rgba(255, 255, 255, 0.22);
  filter: blur(2px);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #061018;
}

.cta-banner__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(6, 16, 24, 0.12);
  color: #061018;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-banner h2 {
  font-family: var(--wp-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1rem;
  color: #061018;
}

.cta-banner p {
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.88;
  margin-bottom: 1.6rem;
  color: #122033;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.btn-cta-primary {
  background: #061018;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(6, 16, 24, 0.28);
}

.btn-cta-primary:hover {
  color: #fff !important;
  background: #0d1a2a;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.35);
  color: #061018 !important;
  border: 1px solid rgba(6, 16, 24, 0.18);
  backdrop-filter: blur(8px);
}

.btn-cta-secondary:hover {
  color: #061018 !important;
  background: rgba(255, 255, 255, 0.55);
}

/* Blog */

.blog {
  background:
    radial-gradient(circle at 80% 10%, rgba(94, 200, 240, 0.08), transparent 30%),
    radial-gradient(circle at 10% 40%, rgba(47, 143, 212, 0.1), transparent 34%),
    linear-gradient(180deg, #0b1420 0%, #0a121d 100%);
}

.blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}

.blog-head__copy .section__eyebrow {
  text-align: left;
  margin-bottom: 0.55rem;
}

.blog-head .section__title {
  margin-bottom: 0;
  text-align: left;
}

.blog-all {
  flex-shrink: 0;
}

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

.blog-card {
  background: linear-gradient(180deg, rgba(28, 44, 64, 0.92) 0%, rgba(12, 20, 32, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(94, 200, 240, 0.35);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #fff;
  text-decoration: none;
}

.blog-card__link:hover,
.blog-card__link:focus {
  color: #fff;
  text-decoration: none;
}

.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__body {
  padding: 1.25rem 1.3rem 1.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.blog-card__meta {
  color: var(--wp-cyan);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card__body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.blog-card__body p {
  color: var(--wp-muted);
  font-size: 0.92rem;
  flex: 1;
}

.blog-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
  color: var(--wp-cyan);
  font-size: 0.88rem;
  font-weight: 600;
  transition: gap 0.25s ease, color 0.25s ease;
}

.blog-card:hover .blog-card__cta {
  color: #8ad8f7;
  gap: 0.5rem;
}

/* Footer */

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(47, 143, 212, 0.14), transparent 32%),
    radial-gradient(circle at 90% 20%, rgba(94, 200, 240, 0.08), transparent 28%),
    linear-gradient(180deg, #0a121d 0%, #060b12 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0;
}

.site-footer__accent {
  height: 3px;
  width: 100%;
  background: var(--wp-gradient);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 0.95fr 1.1fr;
  gap: 2.4rem;
  padding: 3.6rem 0 3rem;
}

.site-footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 1.1rem;
}

.site-footer__tag {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--wp-cyan);
  margin-bottom: 0.85rem;
}

.site-footer__brand p:last-child {
  color: var(--wp-muted);
  max-width: 36ch;
  line-height: 1.7;
  font-size: 0.95rem;
}

.site-footer h4 {
  margin-bottom: 1.1rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.site-footer__links a {
  color: var(--wp-muted);
  font-size: 0.94rem;
  width: fit-content;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-footer__links a:hover {
  color: var(--wp-cyan);
  transform: translateX(3px);
}

.site-footer__social-copy {
  color: var(--wp-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  max-width: 28ch;
}

.site-footer__icons {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.site-footer__icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.site-footer__icons a:hover {
  background: var(--wp-gradient);
  border-color: transparent;
  color: #061018;
  transform: translateY(-3px);
}

.site-footer__cta {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.75rem 1.2rem;
}

.site-footer__bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
  padding: 1.05rem 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}

.site-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer__bar-links {
  display: flex;
  gap: 1.1rem;
}

.site-footer__bar-links a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s ease;
}

.site-footer__bar-links a:hover {
  color: var(--wp-cyan);
}

/* ---------- Animations ---------- */

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Dashboard (shared culture) ---------- */

header,
.admin-topbar {
  height: 70px;
  width: 100vw;
  padding: 0 30px;
  position: fixed;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, #121c2b 0%, #0d1622 100%);
  border-bottom: 1px solid var(--wp-border);
}

.dashboard-logo { height: 50px; }
.icn { height: 30px; }

.menuicn {
  cursor: pointer;
  background: rgba(94, 200, 240, 0.16);
  color: var(--wp-cyan);
  border: 1px solid rgba(94, 200, 240, 0.25);
  transition: 0.4s;
}

.menuicn:hover {
  background: rgba(94, 200, 240, 0.28);
}

.searchbar,
.message,
.logosec {
  display: flex;
  align-items: center;
  justify-content: center;
}

.searchbar2 { display: none; }
.logosec { gap: 130px; }

.message {
  gap: 40px;
  position: relative;
  cursor: pointer;
}

.circle {
  height: 7px;
  width: 7px;
  position: absolute;
  background-color: transparent;
  border-radius: 50%;
  left: 19px;
  top: 8px;
}

.dp {
  height: 50px;
  width: 50px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: solid 3px var(--wp-cyan);
}

.main-container {
  display: flex;
  width: 100vw;
  position: relative;
  top: 70px;
  z-index: 100;
  background: var(--wp-bg);
}

.dpicn { height: 42px; }

.main {
  height: calc(100vh - 70px);
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 40px 30px 30px 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(47, 143, 212, 0.12), transparent 28%),
    var(--wp-bg);
}

.main::-webkit-scrollbar-thumb {
  background-image: linear-gradient(to bottom, var(--wp-cyan-deep), #0b1420);
}

.main::-webkit-scrollbar { width: 5px; }
.main::-webkit-scrollbar-track { background-color: #1a2433; }

.box-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.nav {
  min-height: 91vh;
  width: 250px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px 0 20px 10px;
}

.navcontainer {
  height: calc(100vh - 70px);
  width: 300px;
  position: relative;
  overflow-y: scroll;
  overflow-x: hidden;
  transition: all 0.5s ease-in-out;
  border-right: 1px solid var(--wp-border);
  background: linear-gradient(180deg, #121c2b 0%, #0d1622 100%);
}

.navcontainer::-webkit-scrollbar { display: none; }
.navclose { width: 60px; }

.nav-option {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 30px 0 20px;
  gap: 5px;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
  color: var(--wp-text);
  background: transparent;
  border-radius: 12px 0 0 12px;
}

.nav-option:hover {
  cursor: pointer;
  color: #061018;
  background: var(--wp-gradient);
}

.nav-img { height: 10px; }

.nav-upper-options {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.nav-dropdown {
  width: 100%;
}

.nav-dropdown__toggle {
  width: 100%;
  position: relative;
  justify-content: flex-start;
}

.nav-dropdown__caret {
  margin-left: auto;
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

.nav-dropdown.is-open .nav-dropdown__caret {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.15rem 0.55rem 0.55rem 1.15rem;
}

.nav-dropdown.is-open .nav-dropdown__menu {
  display: flex;
}

.nav-dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-dropdown__link i {
  color: var(--wp-cyan);
  font-size: 0.95rem;
}

.nav-dropdown__link:hover,
.nav-dropdown__link.is-active {
  background: rgba(94, 200, 240, 0.12);
  color: #fff;
}

.navclose .nav-dropdown__menu,
.navclose .nav-dropdown__caret,
.navclose .nav-option span {
  display: none;
}

.navclose .nav-dropdown__toggle {
  justify-content: center;
  padding: 0;
}

.option1 {
  cursor: pointer;
  border: none;
}

.box {
  height: 130px;
  width: 230px;
  border-radius: var(--wp-radius);
  box-shadow: var(--wp-shadow);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  background: var(--wp-gradient-card);
  border: 1px solid var(--wp-border);
}

.box:hover { transform: scale(1.08); }
.box img { height: 50px; }
.box .text { color: white; }

.topic {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
}

.topic-heading {
  font-size: 30px;
  letter-spacing: 3px;
}

.report-container {
  min-height: 300px;
  max-width: 1200px;
  margin: 70px auto 0 auto;
  background: var(--wp-gradient-card);
  border-radius: var(--wp-radius-lg);
  box-shadow: var(--wp-shadow);
  border: 1px solid var(--wp-border);
  padding: 0 20px 20px;
}

.report-header {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 10px;
  border-bottom: 1px solid var(--wp-border);
}

.recent-Articles {
  font-size: 30px;
  font-weight: 600;
  color: var(--wp-cyan);
}

.view {
  height: 35px;
  width: 90px;
  border-radius: 999px;
  background: var(--wp-gradient);
  color: #061018;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.report-body {
  max-width: 1160px;
  overflow-x: auto;
  padding: 20px;
}

.report-topic-heading,
.item1 {
  width: 1120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-op {
  font-size: 18px;
  letter-spacing: 0;
}

.items {
  width: 1120px;
  margin-top: 15px;
}

.item1 { margin-top: 20px; }

.t-op-nextlvl {
  font-size: 14px;
  letter-spacing: 0;
  font-weight: 600;
}

.active-link {
  background: rgba(94, 200, 240, 0.16) !important;
  color: #fff !important;
}

.nav-logout-form {
  width: 100%;
  margin: 0;
}

.nav-option--logout {
  width: 100%;
  border: none;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.admin-topbar__user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}

.admin-user__name {
  font-weight: 700;
  font-size: 0.92rem;
}

.admin-user__email {
  color: var(--wp-muted);
  font-size: 0.78rem;
}

.admin-logout {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}

/* Auth page */

.auth-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 143, 212, 0.2), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(94, 200, 240, 0.12), transparent 30%),
    linear-gradient(160deg, #071018 0%, #0b1420 48%, #060b12 100%);
}

.auth-shell {
  width: min(100%, 1080px);
  min-height: min(720px, calc(100vh - 2.5rem));
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45);
  background: #0d1622;
}

.auth-showcase {
  position: relative;
  min-height: 100%;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.auth-showcase__media,
.auth-showcase__overlay {
  position: absolute;
  inset: 0;
}

.auth-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.auth-showcase__overlay {
  background:
    linear-gradient(180deg, rgba(6, 12, 22, 0.28) 0%, rgba(6, 12, 22, 0.82) 62%, rgba(6, 12, 22, 0.94) 100%),
    linear-gradient(90deg, rgba(6, 12, 22, 0.35), transparent 55%);
}

.auth-showcase__content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.auth-showcase__brand img {
  height: 42px;
  width: auto;
  margin-bottom: 1.6rem;
}

.auth-showcase__eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(94, 200, 240, 0.16);
  color: var(--wp-cyan);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.auth-showcase__content h1 {
  font-family: var(--wp-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.auth-showcase__content > p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 1.6rem;
}

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

.auth-showcase__stats div {
  padding: 0.85rem 0.75rem;
  border-radius: 16px;
  background: rgba(8, 14, 24, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.auth-showcase__stats strong {
  display: block;
  color: var(--wp-cyan);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
}

.auth-showcase__stats span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-card {
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(94, 200, 240, 0.08), transparent 28%),
    linear-gradient(180deg, #121c2b 0%, #0d1622 100%);
}

.auth-card__inner {
  width: min(100%, 390px);
}

.auth-card__header {
  margin-bottom: 1.6rem;
}

.auth-card__header .section__eyebrow {
  text-align: left;
  margin-bottom: 0.55rem;
}

.auth-card__header h2 {
  font-family: var(--wp-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.auth-card__header p {
  color: var(--wp-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.auth-field > span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.auth-field__control {
  position: relative;
}

.auth-field__control i {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--wp-cyan);
  font-size: 1rem;
  pointer-events: none;
}

.auth-field input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(6, 12, 22, 0.55);
  color: #fff;
  padding: 0.95rem 0.95rem 0.95rem 2.6rem;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.auth-field input:focus {
  border-color: rgba(94, 200, 240, 0.55);
  box-shadow: 0 0 0 4px rgba(94, 200, 240, 0.12);
  background: rgba(6, 12, 22, 0.78);
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--wp-muted);
  font-size: 0.9rem;
  cursor: pointer;
}

.auth-remember input {
  accent-color: var(--wp-cyan);
}

.auth-submit {
  width: 100%;
  margin-top: 0.35rem;
  min-height: 52px;
  font-size: 0.95rem;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 1.35rem;
  color: var(--wp-muted);
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.auth-back:hover {
  color: var(--wp-cyan);
}

/* Inner pages */

.page-main {
  padding-top: 0;
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--wp-nav-h) + 3rem) 0 3.2rem;
  overflow: hidden;
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(6, 12, 22, 0.88) 0%, rgba(6, 12, 22, 0.55) 55%, rgba(6, 12, 22, 0.35) 100%),
    linear-gradient(180deg, rgba(6, 12, 22, 0.25) 0%, rgba(6, 12, 22, 0.75) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero__content .section__eyebrow {
  text-align: left;
}

.page-hero__content h1 {
  font-family: var(--wp-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0.4rem 0 0.9rem;
}

.page-hero__content > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 54ch;
}

.page-section--alt {
  background:
    radial-gradient(circle at 80% 20%, rgba(94, 200, 240, 0.08), transparent 30%),
    linear-gradient(180deg, #101a28 0%, #0b1420 100%);
}

.page-head {
  margin-bottom: 2.2rem;
}

.page-head .section__eyebrow,
.page-head .section__title {
  text-align: left;
}

.page-head--center .section__eyebrow,
.page-head--center .section__title {
  text-align: center;
}

.page-head__text {
  max-width: 62ch;
  margin: -1.2rem auto 0;
  text-align: center;
  color: var(--wp-muted);
}

.story-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.8rem;
  align-items: center;
}

.story-intro__copy .section__eyebrow,
.story-intro__copy .section__title {
  text-align: left;
}

.story-intro__copy .section__title {
  margin-bottom: 1rem;
}

.story-intro__copy p {
  color: var(--wp-muted);
  margin-bottom: 0.95rem;
  line-height: 1.7;
}

.story-intro__media {
  min-height: 380px;
  box-shadow: var(--wp-shadow);
}

.story-intro__media img {
  min-height: 380px;
}

.story-prose__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.story-prose__grid p {
  color: var(--wp-muted);
  line-height: 1.75;
  font-size: 0.98rem;
}

.story-hubs {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.story-hubs__copy .section__eyebrow,
.story-hubs__copy .section__title {
  text-align: left;
}

.story-hubs__copy p {
  color: var(--wp-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.story-hubs__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hub-card {
  padding: 1.2rem 1.25rem;
  border-radius: var(--wp-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(28, 44, 64, 0.9), rgba(12, 20, 32, 0.96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.hub-card span {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--wp-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hub-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.hub-card p {
  color: var(--wp-muted);
  font-size: 0.9rem;
}

.mission-vision {
  background:
    radial-gradient(circle at 18% 20%, rgba(47, 143, 212, 0.16), transparent 32%),
    radial-gradient(circle at 82% 30%, rgba(94, 200, 240, 0.12), transparent 30%),
    linear-gradient(180deg, #0b1420 0%, #101b2a 100%);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.mv-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 2rem 1.8rem;
  border-radius: var(--wp-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
  color: #061018;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
}

.mv-card__glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -60px;
  bottom: -70px;
  opacity: 0.35;
  pointer-events: none;
}

.mv-card--mission {
  background: linear-gradient(145deg, #2f8fd4 0%, #1177bd 48%, #0d5f96 100%);
}

.mv-card--mission .mv-card__glow {
  background: #7ad7f5;
}

.mv-card--vision {
  background: linear-gradient(145deg, #5ec8f0 0%, #3aafe0 45%, #2f8fd4 100%);
}

.mv-card--vision .mv-card__glow {
  background: #ffffff;
}

.mv-card__icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(6, 16, 24, 0.16);
  color: #061018;
  font-size: 1.35rem;
}

.mv-card__label {
  position: relative;
  z-index: 1;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6, 16, 24, 0.72);
}

.mv-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--wp-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.9rem;
  color: #061018;
}

.mv-card > p:last-child {
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(6, 16, 24, 0.88);
  max-width: 38ch;
}

.mv-page--mission {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 143, 212, 0.22), transparent 34%),
    linear-gradient(180deg, #0b1420 0%, #101b2a 100%);
}

.mv-page--vision {
  background:
    radial-gradient(circle at 88% 16%, rgba(94, 200, 240, 0.2), transparent 34%),
    linear-gradient(180deg, #0b1420 0%, #101b2a 100%);
}

.mv-spotlight {
  position: relative;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto 2rem;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--wp-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  color: #061018;
}

.mv-spotlight__glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  right: -80px;
  bottom: -100px;
  opacity: 0.35;
  pointer-events: none;
}

.mv-spotlight--mission {
  background: linear-gradient(145deg, #2f8fd4 0%, #1177bd 48%, #0d5f96 100%);
}

.mv-spotlight--mission .mv-spotlight__glow {
  background: #7ad7f5;
}

.mv-spotlight--vision {
  background: linear-gradient(145deg, #5ec8f0 0%, #3aafe0 45%, #2f8fd4 100%);
}

.mv-spotlight--vision .mv-spotlight__glow {
  background: #ffffff;
}

.mv-spotlight__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  margin-bottom: 1.15rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(6, 16, 24, 0.16);
  font-size: 1.45rem;
}

.mv-spotlight__label {
  position: relative;
  z-index: 1;
  margin-bottom: 0.55rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(6, 16, 24, 0.72);
}

.mv-spotlight h2 {
  position: relative;
  z-index: 1;
  font-family: var(--wp-display);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: #061018;
}

.mv-spotlight__statement {
  position: relative;
  z-index: 1;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
  color: rgba(6, 16, 24, 0.9);
  max-width: 52ch;
}

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

.mv-point {
  padding: 1.35rem 1.25rem;
  border-radius: var(--wp-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(28, 44, 64, 0.9), rgba(12, 20, 32, 0.96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.mv-point span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--wp-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mv-point h3 {
  font-size: 1.12rem;
  margin-bottom: 0.55rem;
}

.mv-point p {
  color: var(--wp-muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.story-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.story-step {
  padding: 1.4rem 1.25rem;
  border-radius: var(--wp-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(28, 44, 64, 0.9), rgba(12, 20, 32, 0.96));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.story-step__num {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--wp-cyan);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.story-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.story-step p {
  color: var(--wp-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.value-card {
  padding: 1.5rem 1.3rem;
  border-radius: var(--wp-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(28, 44, 64, 0.92), rgba(12, 20, 32, 0.98));
  box-shadow: var(--wp-shadow);
}

.value-card i {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(94, 200, 240, 0.14);
  color: var(--wp-cyan);
  font-size: 1.2rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.value-card p {
  color: var(--wp-muted);
  line-height: 1.6;
}

.team-directory {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 143, 212, 0.14), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(94, 200, 240, 0.1), transparent 28%),
    linear-gradient(180deg, #0b1420 0%, #101b2a 100%);
}

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

.team-card {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  margin: 0;
  padding: 0.35rem 0.75rem 0.5rem;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.35s ease;
}

.team-card:hover,
.team-card:focus-visible {
  transform: translateY(-6px);
  outline: none;
}

.team-card__media {
  position: relative;
  width: min(180px, 72%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(94, 200, 240, 0.35);
  box-shadow:
    0 0 0 8px rgba(94, 200, 240, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.28);
  transition: border-color 0.3s ease, box-shadow 0.35s ease;
}

.team-card:hover .team-card__media,
.team-card:focus-visible .team-card__media {
  border-color: rgba(94, 200, 240, 0.85);
  box-shadow:
    0 0 0 10px rgba(94, 200, 240, 0.14),
    0 22px 46px rgba(17, 119, 189, 0.28);
}

.team-card__media--avatar {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #5ec8f0 0%, #2f8fd4 50%, #1177bd 100%);
}

.team-card__media--avatar span {
  font-family: var(--wp-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #061018;
  letter-spacing: 0.04em;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.team-card:hover .team-card__media img,
.team-card:focus-visible .team-card__media img {
  transform: scale(1.07);
}

.team-card__body {
  padding: 0 0.35rem;
}

.team-card__body h3 {
  font-family: var(--wp-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.team-card__role {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--wp-cyan);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.25s ease, gap 0.25s ease;
}

.team-card:hover .team-card__cta,
.team-card:focus-visible .team-card__cta {
  color: #7ad7f5;
  gap: 0.55rem;
}

.team-empty {
  text-align: center;
  color: var(--wp-muted);
  padding: 2rem 1rem;
}

body.team-modal-open {
  overflow: hidden;
}

.team-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.team-modal[hidden] {
  display: none !important;
}

.team-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.team-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border-radius: var(--wp-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, #152335 0%, #0c1522 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  outline: none;
}

.team-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 12, 22, 0.65);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.team-modal__close:hover {
  background: rgba(94, 200, 240, 0.16);
  border-color: rgba(94, 200, 240, 0.35);
}

.team-modal__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 420px;
}

.team-modal__media {
  min-height: 100%;
  background: linear-gradient(145deg, #2f8fd4 0%, #1177bd 48%, #0d5f96 100%);
  overflow: hidden;
}

.team-modal__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.team-modal__avatar {
  width: 100%;
  min-height: 420px;
  display: grid;
  place-items: center;
  font-family: var(--wp-display);
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 800;
  color: #061018;
}

.team-modal__content {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
}

.team-modal__eyebrow {
  margin-bottom: 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.team-modal__content h2 {
  font-family: var(--wp-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.team-modal__role {
  margin-bottom: 1.2rem;
  color: var(--wp-cyan);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-modal__bio {
  color: var(--wp-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  flex: 1;
}

.team-modal__bio p {
  margin-bottom: 0.7rem;
}

.team-modal__bio p:last-child {
  margin-bottom: 0;
}

.team-modal__bio ul,
.team-modal__bio ol {
  margin: 0.4rem 0 0.7rem 1.15rem;
}

.team-modal__linkedin {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.team-modal__linkedin.is-hidden,
.team-modal__media .is-hidden {
  display: none !important;
}

.hub-detail {
  background:
    radial-gradient(circle at 12% 18%, rgba(47, 143, 212, 0.14), transparent 30%),
    linear-gradient(180deg, #0b1420 0%, #101b2a 100%);
}

.hub-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 320px;
  gap: 2.2rem;
  align-items: start;
}

.hub-detail__lead {
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.4rem;
  max-width: 62ch;
}

.hub-detail__body {
  color: var(--wp-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 68ch;
}

.hub-detail__body p {
  margin-bottom: 0.9rem;
}

.hub-detail__body p:last-child {
  margin-bottom: 0;
}

.hub-detail__body ul,
.hub-detail__body ol {
  margin: 0.45rem 0 0.9rem 1.2rem;
}

.hub-detail__body h2,
.hub-detail__body h3 {
  color: #fff;
  margin: 1.2rem 0 0.55rem;
}

.hub-detail__gallery {
  margin-top: 2.8rem;
}

.hub-detail__gallery .section__eyebrow,
.hub-detail__gallery .section__title {
  text-align: left;
}

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

.hub-detail__gallery-item {
  margin: 0;
  border-radius: var(--wp-radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 20, 32, 0.9);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hub-detail__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hub-detail__gallery-item figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--wp-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hub-detail__aside {
  position: sticky;
  top: 110px;
}

.hub-detail__card {
  padding: 1.2rem;
  border-radius: var(--wp-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(28, 44, 64, 0.92), rgba(12, 20, 32, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.hub-detail__card-media {
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--wp-radius-xl) - 12px);
  overflow: hidden;
  margin-bottom: 1rem;
}

.hub-detail__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-detail__label {
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hub-detail__card h2 {
  font-family: var(--wp-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.hub-detail__subtitle {
  color: var(--wp-cyan);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hub-detail__card .btn {
  width: 100%;
  justify-content: center;
}

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

.hub-public-card {
  text-decoration: none;
  color: inherit;
  border-radius: var(--wp-radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(28, 44, 64, 0.92), rgba(12, 20, 32, 0.98));
  box-shadow: var(--wp-shadow);
  transition: transform 0.35s ease, border-color 0.3s ease;
}

.hub-public-card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 200, 240, 0.3);
}

.hub-public-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #2f8fd4 0%, #1177bd 55%, #0d5f96 100%);
}

.hub-public-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.hub-public-card:hover .hub-public-card__media img {
  transform: scale(1.05);
}

.hub-public-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: grid;
  place-items: center;
  color: #061018;
  font-size: 2rem;
}

.hub-public-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
}

.hub-public-card__body h3 {
  font-family: var(--wp-display);
  font-size: 1.12rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.hub-public-card__sub {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--wp-cyan);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hub-public-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
}

.hub-public-card:hover .hub-public-card__cta {
  color: #7ad7f5;
}

.page-hero--compact {
  min-height: 360px;
}

.team-profile {
  background:
    radial-gradient(circle at 14% 20%, rgba(47, 143, 212, 0.14), transparent 32%),
    linear-gradient(180deg, #0b1420 0%, #101b2a 100%);
}

.team-profile__layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 2.2rem;
  align-items: start;
}

.team-profile__aside {
  position: sticky;
  top: 110px;
  padding: 1.4rem 1.25rem 1.35rem;
  border-radius: var(--wp-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(28, 44, 64, 0.92), rgba(12, 20, 32, 0.98));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.team-profile__photo {
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(94, 200, 240, 0.4);
  box-shadow:
    0 0 0 8px rgba(94, 200, 240, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.28);
  background: linear-gradient(145deg, #2f8fd4 0%, #1177bd 48%, #0d5f96 100%);
}

.team-profile__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-profile__photo--avatar {
  display: grid;
  place-items: center;
}

.team-profile__photo--avatar span {
  font-family: var(--wp-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: #061018;
}

.team-profile__label {
  margin: 0 0 0.25rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.team-profile__value {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.5;
}

.team-profile__linkedin,
.team-profile__back {
  width: 100%;
  justify-content: center;
  margin-top: 0.35rem;
}

.team-profile__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
}

.team-profile__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.team-profile__main .section__eyebrow,
.team-profile__main .section__title {
  text-align: left;
}

.team-profile__main .section__title {
  margin-bottom: 1.1rem;
}

.team-profile__bio {
  color: var(--wp-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 62ch;
}

.team-profile__bio p {
  margin-bottom: 0.85rem;
}

.team-profile__bio p:last-child {
  margin-bottom: 0;
}

.team-profile__bio ul,
.team-profile__bio ol {
  margin: 0.45rem 0 0.9rem 1.2rem;
}

.team-profile__bio h2,
.team-profile__bio h3 {
  color: #fff;
  margin: 1.1rem 0 0.55rem;
}

.team-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-collaborate {
  padding-top: 1rem;
  background: linear-gradient(180deg, #101b2a 0%, #0b1420 100%);
}

.team-collaborate__panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.2rem);
  border-radius: var(--wp-radius-xl);
  background: var(--wp-gradient);
  box-shadow: 0 28px 70px rgba(47, 143, 212, 0.28);
}

.team-collaborate__glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: 18%;
  bottom: -110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(2px);
  pointer-events: none;
}

.team-collaborate__copy {
  position: relative;
  z-index: 1;
  color: #061018;
  max-width: 34rem;
}

.team-collaborate__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(6, 16, 24, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-collaborate__copy h2 {
  font-family: var(--wp-display);
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.9rem;
  color: #061018;
}

.team-collaborate__copy > p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(6, 16, 24, 0.82);
  margin-bottom: 1.45rem;
}

.team-collaborate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.team-collaborate__visual {
  position: relative;
  z-index: 1;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.team-collaborate__orb {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 40px rgba(6, 16, 24, 0.22);
  background: #1177bd;
}

.team-collaborate__orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-collaborate__orb--lg {
  width: min(240px, 58%);
  aspect-ratio: 1 / 1;
  left: 18%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.team-collaborate__orb--md {
  width: min(132px, 34%);
  aspect-ratio: 1 / 1;
  right: 12%;
  top: 12%;
  z-index: 3;
}

.team-collaborate__orb--sm {
  width: min(96px, 26%);
  aspect-ratio: 1 / 1;
  right: 22%;
  bottom: 8%;
  z-index: 3;
}

.team-collaborate__ring {
  position: absolute;
  width: min(280px, 70%);
  aspect-ratio: 1 / 1;
  left: 12%;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px dashed rgba(6, 16, 24, 0.18);
  pointer-events: none;
}

.team-join {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.team-join__copy .section__eyebrow,
.team-join__copy .section__title {
  text-align: left;
}

.team-join__copy p {
  color: var(--wp-muted);
  margin-bottom: 1.3rem;
  line-height: 1.7;
}

.team-join__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.team-join__media {
  min-height: 340px;
}

.team-join__media img {
  min-height: 340px;
}

/* Dashboard content */

.dashboard-welcome {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.dashboard-welcome h1 {
  font-family: var(--wp-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0.35rem 0 0.45rem;
}

.dashboard-welcome p:last-child {
  color: var(--wp-muted);
  max-width: 52ch;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dash-stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.1rem;
  border-radius: var(--wp-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(28, 44, 64, 0.9), rgba(12, 20, 32, 0.96));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.dash-stat__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(94, 200, 240, 0.14);
  color: var(--wp-cyan);
  font-size: 1.2rem;
}

.dash-stat__value {
  display: block;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.dash-stat__label {
  display: block;
  color: var(--wp-muted);
  font-size: 0.8rem;
  margin-top: 0.2rem;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 1.2rem;
}

.dash-panel {
  border-radius: var(--wp-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(28, 44, 64, 0.9), rgba(12, 20, 32, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.dash-panel__head {
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-panel__head h2 {
  font-size: 1.05rem;
  font-weight: 700;
}

.dash-table__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr;
  gap: 0.75rem;
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: center;
}

.dash-table__row:last-child {
  border-bottom: none;
}

.dash-table__row--head {
  color: var(--wp-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.dash-table__title {
  font-weight: 600;
  color: #fff;
}

.dash-table__meta {
  color: var(--wp-muted);
  font-size: 0.88rem;
}

.dash-status {
  display: inline-flex;
  justify-content: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

.dash-status--upcoming {
  background: rgba(94, 200, 240, 0.16);
  color: var(--wp-cyan);
}

.dash-status--draft {
  background: rgba(255, 193, 7, 0.14);
  color: #ffd76a;
}

.dash-status--published {
  background: rgba(40, 167, 69, 0.16);
  color: #7dffa0;
}

.dash-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: 1.15rem;
}

.dash-action {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.dash-action i {
  color: var(--wp-cyan);
  font-size: 1.2rem;
}

.dash-action:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 200, 240, 0.3);
  background: rgba(94, 200, 240, 0.08);
  color: #fff;
}

.nav-icon {
  padding-right: 5px;
  color: var(--wp-cyan);
}

.admin-count {
  color: var(--wp-muted);
  font-size: 0.88rem;
}

.admin-empty {
  display: grid;
  gap: 1rem;
  justify-items: start;
  padding: 1.5rem 0.2rem 0.5rem;
  color: var(--wp-muted);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.admin-table th,
.admin-table td {
  padding: 0.95rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  vertical-align: middle;
  white-space: normal;
}

.admin-table th {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.admin-table td {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.admin-actions form {
  margin: 0;
}

.admin-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 12, 22, 0.45);
  color: #fff;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.admin-btn:hover {
  border-color: rgba(94, 200, 240, 0.45);
  background: rgba(94, 200, 240, 0.12);
  color: #fff;
}

.admin-btn--danger:hover {
  border-color: rgba(214, 69, 69, 0.5);
  background: rgba(214, 69, 69, 0.16);
}

.admin-link {
  color: var(--wp-cyan);
  text-decoration: none;
  word-break: break-all;
}

.admin-link:hover {
  color: #7ad7f5;
}

.admin-muted {
  color: var(--wp-muted);
}

.team-list__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.team-list__stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--wp-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(160deg, rgba(28, 44, 64, 0.9), rgba(12, 20, 32, 0.96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.team-list__stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(94, 200, 240, 0.14);
  color: var(--wp-cyan);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.team-list__stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.team-list__stat-label {
  display: block;
  margin-top: 0.2rem;
  color: var(--wp-muted);
  font-size: 0.8rem;
}

.team-list__empty {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 3.2rem 1.5rem;
}

.team-list__empty-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 0.35rem;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(94, 200, 240, 0.22), rgba(47, 143, 212, 0.18));
  color: var(--wp-cyan);
  font-size: 1.8rem;
}

.team-list__empty h2 {
  font-family: var(--wp-display);
  font-size: 1.45rem;
  font-weight: 800;
}

.team-list__empty p {
  color: var(--wp-muted);
  max-width: 42ch;
  margin-bottom: 0.55rem;
}

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

.team-list__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem 1.2rem 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-list__card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 200, 240, 0.28);
}

.team-list__card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.team-list__avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: var(--wp-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: #061018;
  background: linear-gradient(145deg, #5ec8f0 0%, #2f8fd4 55%, #1177bd 100%);
  box-shadow: 0 12px 28px rgba(17, 119, 189, 0.28);
}

.team-list__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-list__order {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 12, 22, 0.45);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.team-list__body {
  flex: 1;
}

.team-list__body h2 {
  font-family: var(--wp-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.team-list__role {
  margin-bottom: 0.7rem;
  color: var(--wp-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-list__bio {
  color: var(--wp-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.95rem;
  min-height: 4.4em;
}

.team-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.team-list__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 12, 22, 0.4);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  text-decoration: none;
}

.team-list__chip--link {
  color: var(--wp-cyan);
  border-color: rgba(94, 200, 240, 0.28);
  background: rgba(94, 200, 240, 0.1);
}

.team-list__chip--link:hover {
  color: #7ad7f5;
}

.team-list__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.team-list__actions form {
  margin: 0;
}

.team-list__action {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.62rem 0.45rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 12, 22, 0.4);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.team-list__action:hover {
  border-color: rgba(94, 200, 240, 0.4);
  background: rgba(94, 200, 240, 0.12);
  color: #fff;
}

.team-list__action--danger:hover {
  border-color: rgba(214, 69, 69, 0.5);
  background: rgba(214, 69, 69, 0.16);
  color: #ffd7d7;
}

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

.hub-list__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.hub-list__card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 200, 240, 0.28);
}

.hub-list__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(145deg, #2f8fd4 0%, #1177bd 55%, #0d5f96 100%);
}

.hub-list__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-list__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #061018;
  font-size: 2rem;
}

.hub-list__media .team-list__order {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(6, 12, 22, 0.72);
}

.hub-list__body {
  padding: 1.1rem 1.15rem 0.85rem;
  flex: 1;
}

.hub-list__body h2 {
  font-family: var(--wp-display);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.3rem;
}

.hub-list__subtitle {
  margin-bottom: 0.65rem;
  color: var(--wp-cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hub-list__excerpt {
  color: var(--wp-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  min-height: 4.4em;
}

.hub-list__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.hub-gallery-existing,
.hub-gallery-new {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.hub-gallery-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 12, 22, 0.35);
}

.hub-gallery-item__thumb {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #2f8fd4 0%, #1177bd 55%, #0d5f96 100%);
  display: grid;
  place-items: center;
  color: #061018;
  font-size: 1.4rem;
}

.hub-gallery-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-gallery-item__fields {
  display: grid;
  gap: 0.75rem;
}

.hub-gallery-item__remove,
.hub-gallery-item__delete {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 200, 200, 0.88);
  font-size: 0.86rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}

.hub-gallery-item__remove input {
  accent-color: #d64545;
}

.hub-gallery-add {
  margin-bottom: 0.55rem;
}

.hub-show__gallery {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-show__gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.hub-show__gallery-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 12, 22, 0.4);
}

.hub-show__gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.hub-show__gallery-item figcaption {
  padding: 0.65rem 0.75rem;
  color: var(--wp-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.hub-list__card .team-list__actions {
  margin: 0 1rem 1rem;
}

.hub-compose__image {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #2f8fd4 0%, #1177bd 55%, #0d5f96 100%);
  display: grid;
  place-items: center;
}

.hub-compose__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hub-compose__image-fallback {
  color: #061018;
  font-size: 2rem;
}

.hub-image-field__preview {
  width: 160px;
  height: 100px;
  border-radius: 16px;
}

.hub-show__banner {
  width: 100%;
  aspect-ratio: 21 / 9;
  margin-bottom: 1.35rem;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(6, 12, 22, 0.45);
}

.hub-show__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-form-panel {
  max-width: 920px;
}

.team-compose__hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.team-compose__hero h1 {
  font-family: var(--wp-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0.35rem 0 0.45rem;
}

.team-compose__hero p:last-child {
  color: var(--wp-muted);
  max-width: 54ch;
}

.team-compose__hero .btn,
.team-compose__footer .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.team-compose {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
}

.team-compose__preview {
  position: sticky;
  top: 92px;
  padding: 1.5rem 1.35rem 1.4rem;
  overflow: hidden;
}

.team-compose__preview-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  right: -60px;
  top: -50px;
  background: rgba(94, 200, 240, 0.28);
  pointer-events: none;
}

.team-compose__preview-label {
  position: relative;
  z-index: 1;
  margin-bottom: 1.1rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.team-compose__avatar {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  margin-bottom: 1rem;
  border-radius: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-family: var(--wp-display);
  font-size: 2rem;
  font-weight: 800;
  color: #061018;
  background: linear-gradient(145deg, #5ec8f0 0%, #2f8fd4 55%, #1177bd 100%);
  box-shadow: 0 16px 36px rgba(17, 119, 189, 0.35);
}

.team-compose__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-compose__preview-name {
  position: relative;
  z-index: 1;
  font-family: var(--wp-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.team-compose__preview-role {
  position: relative;
  z-index: 1;
  margin-bottom: 0.9rem;
  color: var(--wp-cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.team-compose__preview-bio {
  position: relative;
  z-index: 1;
  color: var(--wp-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  min-height: 4.8em;
}

.team-compose__preview-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  color: var(--wp-cyan);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.team-compose__preview-link.is-hidden {
  display: none;
}

.team-compose__tips {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.team-compose__tips li {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
  padding-left: 0.95rem;
  position: relative;
}

.team-compose__tips li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wp-cyan);
}

.team-compose__fields {
  display: grid;
  gap: 1.15rem;
}

.team-form-section {
  padding: 1.25rem 1.3rem 1.4rem;
}

.team-form-section__head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.team-form-section__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(94, 200, 240, 0.14);
  color: var(--wp-cyan);
  font-size: 1.15rem;
}

.team-form-section__head h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.team-form-section__head p {
  color: var(--wp-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.team-compose__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 1.25rem;
  border-radius: var(--wp-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(28, 44, 64, 0.9), rgba(12, 20, 32, 0.98));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.team-compose__footer-note {
  color: var(--wp-muted);
  font-size: 0.88rem;
}

.admin-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.25rem;
  margin-bottom: 0;
}

.admin-form__full {
  grid-column: 1 / -1;
}

.admin-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.auth-field__hint {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  line-height: 1.4;
}

.auth-field__control--icon input,
.auth-field__control--plain input,
.auth-field textarea,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(6, 12, 22, 0.55);
  color: #fff;
  padding: 0.95rem 1rem;
  outline: none;
  font: inherit;
}

.auth-field__control--icon input {
  padding-left: 2.6rem;
}

.auth-field__control--icon input:focus,
.auth-field__control--plain input:focus,
.auth-field textarea:focus,
.admin-form textarea:focus {
  border-color: rgba(94, 200, 240, 0.55);
  box-shadow: 0 0 0 4px rgba(94, 200, 240, 0.12);
  background: rgba(6, 12, 22, 0.78);
}

.admin-form .ck.ck-editor {
  width: 100%;
}

.admin-form .ck-editor {
  color: #111;
}

.admin-form .ck.ck-toolbar {
  border-radius: 14px 14px 0 0 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(18, 28, 43, 0.95) !important;
}

.admin-form .ck.ck-toolbar .ck-button {
  color: rgba(255, 255, 255, 0.82) !important;
}

.admin-form .ck.ck-toolbar .ck-on {
  background: rgba(94, 200, 240, 0.18) !important;
}

.admin-form .ck-editor__editable {
  min-height: 200px;
  border-radius: 0 0 14px 14px !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(6, 12, 22, 0.55) !important;
  color: #fff !important;
}

.admin-form .ck-editor__editable.ck-focused {
  border-color: rgba(94, 200, 240, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(94, 200, 240, 0.12) !important;
}

.admin-welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.admin-show__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.5rem;
}

.admin-show {
  padding: 1.35rem 1.35rem 1.5rem;
}

.admin-show__hero {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-show__photo {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.admin-show__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-show__photo--avatar {
  display: grid;
  place-items: center;
  font-family: var(--wp-display);
  font-size: 2rem;
  font-weight: 800;
  color: #061018;
  background: linear-gradient(145deg, #5ec8f0 0%, #2f8fd4 55%, #1177bd 100%);
}

.admin-show__headline {
  font-family: var(--wp-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0.2rem 0 0.25rem;
}

.admin-show__subhead {
  color: var(--wp-cyan);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-photo-field {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
}

.team-photo-field__preview {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #5ec8f0 0%, #2f8fd4 55%, #1177bd 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(17, 119, 189, 0.28);
}

.team-photo-field__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-photo-field__fallback {
  font-family: var(--wp-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #061018;
}

.team-photo-field__controls {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.team-photo-field__upload {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.team-photo-field__upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.team-photo-field__remove {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  cursor: pointer;
}

.team-photo-field__remove input {
  accent-color: #d64545;
}

.is-hidden {
  display: none !important;
}

.admin-show__full {
  grid-column: 1 / -1;
}

.admin-show__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 700;
}

.admin-show__grid p,
.admin-show__bio {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.admin-show__bio p {
  margin-bottom: 0.55rem;
}

table td,
table th {
  white-space: nowrap;
}

.admin-table th,
.admin-table td {
  white-space: normal;
}

/* ---------- Research (admin + public) ---------- */

.research-compose__preview {
  min-height: 420px;
}

.research-compose__doc {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.15rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(94, 200, 240, 0.22);
  background:
    linear-gradient(145deg, rgba(47, 143, 212, 0.22), rgba(14, 28, 44, 0.75)),
    rgba(8, 16, 28, 0.65);
}

.research-compose__doc-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  gap: 0.1rem;
  background: rgba(6, 16, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--wp-cyan);
  font-size: 1.25rem;
}

.research-compose__doc-icon span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.research-compose__doc-meta {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}

.research-compose__doc-meta span:first-child {
  color: var(--wp-text);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.research-compose__doc-meta span:last-child {
  color: var(--wp-muted);
  font-size: 0.8rem;
}

.research-compose__preview-date {
  position: relative;
  z-index: 1;
  margin: 0 0 0.45rem;
  color: var(--wp-cyan);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.research-compose__description {
  margin-top: 1.15rem;
}

.research-dropzone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
  padding: 1.25rem 1.2rem;
  border-radius: 18px;
  border: 1.5px dashed rgba(94, 200, 240, 0.35);
  background:
    linear-gradient(160deg, rgba(30, 52, 76, 0.45), rgba(12, 20, 32, 0.55));
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.research-dropzone:hover,
.research-dropzone.is-dragging,
.research-dropzone.has-file {
  border-color: rgba(94, 200, 240, 0.7);
  background:
    linear-gradient(160deg, rgba(47, 143, 212, 0.22), rgba(12, 20, 32, 0.7));
}

.research-dropzone.is-dragging {
  transform: translateY(-1px);
}

.research-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.research-dropzone__visual {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(94, 200, 240, 0.14);
  color: var(--wp-cyan);
  font-size: 1.45rem;
}

.research-dropzone__copy {
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}

.research-dropzone__copy strong {
  color: var(--wp-text);
  font-size: 0.98rem;
}

.research-dropzone__copy span,
.research-dropzone__copy em {
  color: var(--wp-muted);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.45;
}

.research-dropzone__copy em {
  color: rgba(94, 200, 240, 0.9);
  font-weight: 600;
}

.research-file-current {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1rem;
  margin-bottom: 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(94, 200, 240, 0.18);
  background: rgba(94, 200, 240, 0.06);
}

.research-file-current__badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  gap: 0.1rem;
  background: rgba(8, 16, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--wp-cyan);
  font-size: 1.15rem;
}

.research-file-current__badge span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.research-file-current__copy {
  min-width: 0;
  flex: 1;
}

.research-file-current__copy strong {
  display: block;
  color: var(--wp-text);
  margin-bottom: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.research-file-current__copy span {
  color: var(--wp-muted);
  font-size: 0.82rem;
}

.research-file-current .btn {
  margin-left: auto;
}

.research-show {
  padding: 1.4rem 1.45rem 1.55rem;
}

.research-show__file {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.15rem;
  margin-bottom: 1.4rem;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(94, 200, 240, 0.2);
  background:
    linear-gradient(120deg, rgba(47, 143, 212, 0.16), rgba(12, 22, 34, 0.35));
}

.research-show__badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  gap: 0.1rem;
  background: rgba(8, 16, 28, 0.4);
  color: var(--wp-cyan);
  font-size: 1.35rem;
}

.research-show__badge span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.research-show__file-copy {
  flex: 1;
  min-width: 180px;
}

.research-show__file-copy strong {
  display: block;
  margin: 0.15rem 0 0.25rem;
  color: var(--wp-text);
  font-size: 1.05rem;
}

.research-show__file-copy p {
  margin: 0;
  color: var(--wp-muted);
  font-size: 0.88rem;
}

.research-show__description {
  white-space: pre-wrap;
}

.research-admin-list {
  display: grid;
  gap: 1rem;
}

.research-admin-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.15rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
}

.research-admin-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  gap: 0.15rem;
  background: rgba(94, 200, 240, 0.12);
  border: 1px solid rgba(94, 200, 240, 0.22);
  color: var(--wp-cyan);
  font-size: 1.25rem;
}

.research-admin-card__icon span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.research-admin-card__body h2 {
  font-family: var(--wp-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--wp-text);
}

.research-admin-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  color: var(--wp-muted);
  font-size: 0.82rem;
  margin-bottom: 0.45rem;
}

.research-admin-card__meta i {
  margin-right: 0.25rem;
  color: var(--wp-cyan);
}

.research-admin-card__excerpt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

.research-directory {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.research-empty {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  border-radius: var(--wp-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 28, 43, 0.55);
  color: var(--wp-muted);
}

.research-empty i {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(94, 200, 240, 0.12);
  color: var(--wp-cyan);
  font-size: 1.6rem;
}

.research-empty h3 {
  margin-bottom: 0.4rem;
  color: var(--wp-text);
  font-family: var(--wp-display);
}

.research-list {
  display: grid;
  gap: 1.15rem;
  max-width: 960px;
  margin: 0 auto;
}

.research-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.4rem 1.45rem;
  border-radius: var(--wp-radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(120% 140% at 0% 0%, rgba(94, 200, 240, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(30, 48, 70, 0.55), rgba(14, 22, 34, 0.92));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.research-card:hover {
  border-color: rgba(94, 200, 240, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.research-card__badge {
  width: 76px;
  height: 76px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  gap: 0.2rem;
  background: rgba(94, 200, 240, 0.1);
  border: 1px solid rgba(94, 200, 240, 0.22);
  color: var(--wp-cyan);
  font-size: 1.45rem;
}

.research-card__badge span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.research-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--wp-muted);
  font-size: 0.84rem;
}

.research-card__meta i {
  margin-right: 0.28rem;
  color: var(--wp-cyan);
}

.research-card__body h3 {
  font-family: var(--wp-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  margin-bottom: 0.5rem;
  color: var(--wp-text);
  line-height: 1.3;
}

.research-card__body p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.research-card__actions {
  display: flex;
  align-items: center;
}

.research-card__actions .btn {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .research-compose.team-compose {
    grid-template-columns: 1fr;
  }

  .research-compose__preview {
    position: static;
  }
}

@media (max-width: 860px) {
  .research-admin-card,
  .research-card,
  .research-show__file {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .research-admin-card .team-list__actions,
  .research-card__actions {
    width: 100%;
  }

  .research-file-current .btn,
  .research-show__file .btn {
    margin-left: 0;
  }

  .research-dropzone {
    align-items: flex-start;
  }
}

/* ---------- Blog public extras ---------- */

.blog-directory {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.blog-grid--page {
  margin-top: 0.5rem;
}

.blog-grid--related {
  max-width: 1100px;
  margin: 0 auto;
}

.blog-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0 0 1.15rem;
  color: var(--wp-muted);
  font-size: 0.9rem;
}

.blog-detail__meta i {
  margin-right: 0.3rem;
  color: var(--wp-cyan);
}

.blog-detail__aside-author {
  margin: 0.35rem 0 1.1rem;
  color: var(--wp-muted);
  font-size: 0.9rem;
}

/* ---------- Events public extras ---------- */

.events-directory {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}

.events-grid--page,
.events-grid--related {
  margin-top: 0.35rem;
}

.event-card__excerpt {
  margin: 0.35rem 0 0.75rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-detail__facts {
  list-style: none;
  margin: 0.85rem 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.event-detail__facts li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--wp-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.event-detail__facts i {
  color: var(--wp-cyan);
  margin-top: 0.15rem;
}

/* ---------- Partners admin + homepage ---------- */

.partners__empty {
  margin: 1.5rem 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

.partners__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.partners__row {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.partner-logo-preview {
  background: linear-gradient(160deg, #0b1f33, #12304a);
}

.partner-logo-preview img {
  max-width: 80%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.partner-admin-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
}

.partner-admin-card__logo {
  min-height: 96px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(160deg, #0b1f33, #12304a);
  border: 1px solid rgba(94, 200, 240, 0.12);
}

.partner-admin-card__logo img {
  max-width: 70%;
  max-height: 56px;
  object-fit: contain;
}

.partner-admin-card__logo i {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.35);
}

.partner-admin-card__body h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.partner-show__logo {
  display: grid;
  place-items: center;
  min-height: 160px;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(160deg, #0b1f33, #12304a);
  border: 1px solid rgba(94, 200, 240, 0.12);
}

.partner-show__logo img {
  max-width: min(280px, 80%);
  max-height: 100px;
  object-fit: contain;
}

@media (max-width: 860px) {
  .partner-admin-card .team-list__actions {
    width: 100%;
  }
}

