:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #dbe3ef;
  --navy: #071b3d;
  --blue: #0f55a8;
  --teal: #0c7775;
  --peru-red: #d91023;
  --gold: #e4bb55;
  --gold-dark: #9a6d17;
  --paper: #f5f7fb;
  --soft: #eef4f8;
  --white: #ffffff;
  --success: #0f8a54;
  --warning: #b77809;
  --error: #b42318;
  --shadow: 0 18px 48px rgba(17, 24, 39, 0.14);
  --page-width: 90vw;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  padding-top: var(--header-offset, 108px);
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 22px;
  font-size: 4.3rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px 2.5vw;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--navy);
  font-weight: 900;
}

.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7, 27, 61, 0.2));
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
}

.nav-cta {
  color: var(--navy) !important;
  padding: 0 15px;
  border: 1px solid rgba(228, 187, 85, 0.85);
  border-radius: 8px;
  background: #fff8df;
}

.welcome-banner {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: start center;
  padding: calc(var(--header-offset, 108px) + 26px) 18px 26px;
  background: rgba(7, 27, 61, 0.44);
  backdrop-filter: blur(8px);
}

.welcome-banner.is-hidden {
  display: none;
}

.welcome-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(760px, 92vw);
  max-height: calc(100vh - var(--header-offset, 108px) - 54px);
  overflow-y: auto;
  padding: 30px 34px 34px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 223, 0.93)),
    var(--white);
  border: 2px solid rgba(228, 187, 85, 0.86);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(7, 27, 61, 0.34);
}

.welcome-card p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 900;
}

.welcome-card img {
  width: clamp(150px, 18vw, 230px);
  height: clamp(150px, 18vw, 230px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(7, 27, 61, 0.28));
}

.welcome-card strong {
  color: var(--navy);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 900;
}

.welcome-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(228, 187, 85, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 27, 61, 0.14);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.welcome-close:hover {
  color: var(--white);
  background: var(--navy);
}

.welcome-video {
  width: 100%;
  max-width: 680px;
  aspect-ratio: 16 / 9;
  margin-top: 8px;
  overflow: hidden;
  background: #071b3d;
  border: 1px solid rgba(228, 187, 85, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 27, 61, 0.22);
}

.welcome-video iframe,
.welcome-video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.hero,
.section-band,
.pricing-panel,
.cta-section,
.page-title,
.registration-form,
.success-panel,
.empty-state,
.page-hero,
.image-split,
.pricing-table,
.contact-layout,
.directory-preview {
  width: var(--page-width);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 62px;
  align-items: stretch;
  min-height: 760px;
  padding: 54px 0 46px;
}

.hero-copy {
  max-width: 760px;
  align-self: center;
}

.hero-copy p {
  max-width: 720px;
  font-size: 1.12rem;
}

.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  padding: 18px 26px 18px 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 223, 0.88)),
    var(--white);
  border: 2px solid rgba(228, 187, 85, 0.76);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(7, 27, 61, 0.16);
}

.hero-brand-lockup img {
  width: 250px;
  height: 250px;
  flex: 0 0 250px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(7, 27, 61, 0.28)) saturate(1.08);
}

.hero-brand-lockup > div {
  min-width: 0;
}

.hero-brand-lockup span,
.hero-brand-lockup strong {
  display: block;
}

.hero-brand-lockup span {
  color: var(--navy);
  font-size: 1.62rem;
  font-weight: 900;
}

.hero-brand-lockup strong {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 800;
}

.peru-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px 8px;
  min-height: 34px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid rgba(217, 16, 35, 0.22);
  border-radius: 999px;
  vertical-align: top;
}

.peru-mark span {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--peru-red) 0 33%, var(--white) 33% 66%, var(--peru-red) 66% 100%);
  border: 1px solid rgba(17, 24, 39, 0.1);
}

.peru-mark strong {
  color: var(--peru-red);
  font-weight: 900;
}

.peru-mark small {
  color: var(--muted);
  font-weight: 800;
}

.hero-member-entry {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 14px 8px;
}

.hero-member-entry .peru-mark {
  margin: 0;
}

.member-login-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 15px;
  color: var(--white);
  border: 1px solid var(--navy);
  border-radius: 999px;
  background: var(--navy);
  box-shadow: 0 8px 18px rgba(7, 27, 61, 0.16);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.member-login-quick:hover {
  color: var(--navy);
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-1px);
}

.member-login-quick:focus-visible {
  outline: 3px solid rgba(234, 185, 66, 0.42);
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 4px 10px;
  color: var(--gold-dark);
  border: 1px solid rgba(154, 109, 23, 0.28);
  border-radius: 999px;
  background: #fff8df;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions.center {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(7, 27, 61, 0.18);
}

.button.primary {
  color: var(--navy);
  background: linear-gradient(180deg, #ffefaa, var(--gold));
  border-color: rgba(154, 109, 23, 0.42);
  box-shadow: 0 12px 28px rgba(228, 187, 85, 0.26);
}

.button.secondary {
  color: var(--gold);
  background: rgba(7, 27, 61, 0.84);
  border-color: rgba(228, 187, 85, 0.38);
}

.button.secondary.dark-text,
.registration-form .button.secondary,
.success-panel .button.secondary,
.empty-state .button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.danger {
  color: var(--white);
  background: linear-gradient(180deg, #ef4444, var(--error));
  border-color: rgba(180, 35, 24, 0.42);
}

.button.success {
  color: var(--white);
  background: linear-gradient(180deg, #16a36a, var(--success));
  border-color: rgba(15, 138, 84, 0.42);
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  min-height: 700px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  animation: softFloat 7s ease-in-out infinite;
}

.hero-visual img {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 72% 45%;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 61, 0), rgba(7, 27, 61, 0.52));
}

.promo-badge {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 210px;
  padding: 18px;
  color: var(--white);
  background: rgba(7, 27, 61, 0.9);
  border: 1px solid rgba(228, 187, 85, 0.55);
  border-radius: 8px;
}

.promo-badge span,
.promo-label {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-badge strong {
  display: block;
  font-size: 3.2rem;
  line-height: 1;
}

.promo-badge small {
  color: #d8e2f0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hero-metrics div {
  min-height: 104px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-metrics div:hover,
.feature-grid article:hover,
.accountant-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.platform-preview-section {
  width: var(--page-width);
  margin: 0 auto;
  padding: 34px 0 80px;
}

.platform-preview-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 22px;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 61, 0.95), rgba(15, 85, 168, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(228, 187, 85, 0.28), transparent 32%),
    var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.platform-preview-copy {
  padding: 16px;
}

.platform-preview-copy h3 {
  font-size: 2rem;
  line-height: 1.08;
}

.platform-preview-copy p {
  color: #d7e2f2;
}

.platform-domain {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.preview-filters,
.preview-service-filters,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.preview-filters {
  margin: 22px 0 12px;
}

.preview-filters button,
.preview-service-filters span,
.tag-row span {
  min-height: 34px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
}

.preview-service-filters {
  margin-bottom: 24px;
}

.accountant-browser {
  overflow: hidden;
  color: var(--ink);
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.browser-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 14px;
  background: #e8eef6;
  border-bottom: 1px solid #d7e1ec;
}

.browser-topbar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #d91023;
}

.browser-topbar span:nth-child(2) {
  background: var(--gold);
}

.browser-topbar span:nth-child(3) {
  background: var(--teal);
}

.browser-topbar strong {
  margin-left: 8px;
  color: var(--navy);
  font-size: 0.86rem;
}

.browser-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 16px;
}

.browser-search span {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.browser-search button {
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  background: var(--peru-red);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.accountant-card-grid {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}

.accountant-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.accountant-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 8px;
  font-size: 1.35rem;
  font-weight: 900;
}

.accountant-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.accountant-head h4 {
  margin: 0 0 6px;
  color: var(--navy);
}

.accountant-head strong {
  color: var(--gold-dark);
}

.accountant-card p {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.accountant-card .tag-row span {
  min-height: 28px;
  padding: 5px 8px;
  color: var(--navy);
  background: #f2f6fb;
  border-color: #dce5f1;
  font-size: 0.76rem;
}

.accountant-card small {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.hero-metrics strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.section-band {
  padding: 76px 0;
}

.section-band.light {
  padding-top: 40px;
}

.intro-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
  padding-top: 48px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.feature-grid article,
.selected-plan,
.empty-state,
.success-panel,
.price-card,
.contact-info article,
.contact-form,
.directory-preview article,
.value-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.feature-grid article {
  min-height: 220px;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--navy);
  background: #fff5d1;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.image-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  padding: 46px 0 78px;
}

.image-split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.image-split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-split-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.image-split-copy {
  padding: 28px;
}

.module-grid,
.domain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.module-grid.wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.module-grid span,
.domain-grid div {
  min-height: 48px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

.domain-grid strong,
.domain-grid span {
  display: block;
}

.domain-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
  padding: 38px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #134a86);
  border-radius: 8px;
}

.pricing-panel p {
  color: #d7e2f2;
}

.price-box {
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
}

.price-box span,
.big-price {
  display: block;
  color: var(--gold);
  font-size: 3.3rem;
  line-height: 1;
  font-weight: 900;
}

.price-box small,
.price-card small {
  display: block;
  margin-bottom: 18px;
  color: #d7e2f2;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  min-height: 74px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
}

.timeline p {
  margin-bottom: 0;
  font-weight: 700;
}

.cta-section {
  margin-bottom: 72px;
  padding: 42px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cta-dark {
  color: var(--white);
  background: linear-gradient(135deg, #0c2a54, #0c7775);
  border: 0;
}

.cta-dark p {
  color: #e6edf5;
}

.page-title {
  padding: 62px 0 30px;
}

.page-title.center-title {
  text-align: center;
}

.page-title h1,
.page-hero h1 {
  max-width: 880px;
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 3.6rem;
}

.page-title.center-title h1,
.page-title.center-title p {
  margin-left: auto;
  margin-right: auto;
}

.page-title p,
.page-hero p {
  max-width: 780px;
  font-size: 1.08rem;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 42px;
  align-items: center;
  padding: 58px 0 44px;
}

.page-hero.compact {
  padding-bottom: 18px;
}

.page-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rich-copy {
  padding-top: 30px;
}

.copy-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.copy-columns p {
  font-size: 1.06rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 24px;
}

.pricing-table {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 22px;
  align-items: start;
  padding: 24px 0 58px;
}

.price-card.featured {
  border-color: rgba(228, 187, 85, 0.8);
  box-shadow: var(--shadow);
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.price-card li {
  color: var(--muted);
  font-weight: 700;
}

.muted-label {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  align-items: start;
  padding-bottom: 72px;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info span,
.site-footer span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info a,
.contact-info strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-info button {
  min-height: 34px;
  margin-top: 12px;
  padding: 8px 12px;
  color: var(--navy);
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.65);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.directory-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 26px;
}

.directory-preview article > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-weight: 900;
}

.directory-preview small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.directory-filter-panel {
  display: grid;
  width: var(--page-width);
  margin: 0 auto 28px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.directory-filter-copy {
  display: grid;
  gap: 8px;
  max-width: 920px;
}

.directory-filter-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.04;
}

.directory-filter-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.directory-filter-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(220px, 0.7fr));
  gap: 14px;
  margin-top: 22px;
}

.directory-filter-grid input,
.directory-filter-grid select {
  min-height: 54px;
  padding: 0 16px;
  color: var(--navy);
  background: #fbfcff;
  border: 1px solid #cfdbeb;
  font-weight: 850;
}

.directory-filter-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.directory-filter-actions span {
  color: var(--muted);
  font-weight: 900;
}

.directory-member-card.is-hidden-by-filter {
  display: none;
}

.directory-filter-empty {
  margin-top: 18px;
}

.registration-form {
  padding-bottom: 80px;
}

.form-section {
  margin: 18px 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-section h2 {
  font-size: 1.45rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label,
legend {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fbfcff;
  border: 1px solid #cdd6e4;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.input-suffix {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cdd6e4;
  border-radius: 8px;
  background: #fbfcff;
}

.input-suffix input {
  border: 0;
  border-radius: 0;
}

.input-suffix em {
  padding: 0 12px;
  color: var(--muted);
  font-style: normal;
  white-space: nowrap;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
  padding: 0;
  border: 0;
}

.checkbox-grid legend {
  grid-column: 1 / -1;
}

.checkbox-grid label,
.terms {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  background: #fbfcff;
  border: 1px solid #dce3ed;
  border-radius: 8px;
  font-weight: 700;
}

.checkbox-grid input,
.terms input {
  width: 18px;
  min-height: 18px;
}

.selected-plan {
  display: grid;
  gap: 4px;
  background: #fff9e7;
  border-color: rgba(228, 187, 85, 0.55);
}

.selected-plan span {
  color: var(--gold-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.membership-owner-note,
.payment-help {
  margin: 16px 0 20px;
  padding: 18px;
  background: #fffaf0;
  border: 1px solid rgba(228, 187, 85, 0.55);
  border-radius: 8px;
}

.membership-owner-note {
  display: grid;
  gap: 6px;
}

.membership-owner-note p,
.payment-help p {
  margin: 0;
}

.membership-owner-note a {
  color: var(--navy);
  font-weight: 900;
}

.payment-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.payment-help[hidden] {
  display: none;
}

.payment-help h3 {
  margin: 8px 0 10px;
  font-size: 1.25rem;
}

.payment-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.payment-copy-actions .button {
  min-width: 142px;
}

.flash-wrap {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 40;
  display: grid;
  gap: 10px;
  width: min(420px, calc(100% - 36px));
}

.flash {
  padding: 14px 16px;
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(16, 24, 39, 0.18);
}

.flash-success {
  background: var(--success);
}

.flash-warning {
  background: var(--warning);
}

.flash-error {
  background: var(--error);
}

.success-panel,
.empty-state {
  margin-top: 60px;
  margin-bottom: 80px;
  text-align: center;
}

.success-panel strong {
  display: inline-block;
  margin: 8px 0 20px;
  padding: 10px 16px;
  color: var(--navy);
  background: #fff5d1;
  border: 1px solid rgba(228, 187, 85, 0.55);
  border-radius: 8px;
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  max-width: calc(100% - 44px);
  padding: 8px 14px 8px 8px;
  color: var(--white);
  background: #128c7e;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(18, 140, 126, 0.38);
  font-weight: 900;
}

.whatsapp-float span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.6fr) minmax(220px, 0.7fr);
  gap: 28px;
  padding: 38px 48px;
  color: #d7e2f2;
  background: var(--navy);
}

.site-footer p,
.site-footer a {
  color: #d7e2f2;
}

.footer-brand {
  display: flex;
  gap: 14px;
}

.footer-brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.footer-brand small {
  display: block;
  color: var(--gold);
  font-weight: 900;
}

.footer-admin-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold) !important;
  font-weight: 800;
}

.chatbot-widget {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 55;
}

.chatbot-toggle {
  width: 58px;
  height: 58px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffefaa, var(--gold));
  border: 1px solid rgba(154, 109, 23, 0.4);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(7, 27, 61, 0.25);
  font-weight: 900;
  cursor: pointer;
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(360px, calc(100vw - 28px));
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(7, 27, 61, 0.24);
}

.chatbot-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--navy);
}

.chatbot-panel header button {
  width: 32px;
  height: 32px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 1.2rem;
}

.chatbot-messages,
.chatbot-options,
.chatbot-actions {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.chatbot-message {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.chatbot-message.bot {
  color: var(--ink);
  background: #f3f7fb;
}

.chatbot-message.user {
  color: var(--white);
  background: var(--blue);
}

.chatbot-options {
  padding-top: 0;
}

.chatbot-options button {
  min-height: 38px;
  padding: 9px 11px;
  color: var(--navy);
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.46);
  border-radius: 8px;
  font-weight: 800;
  text-align: left;
}

.news-card-image {
  width: 100%;
  height: 170px;
  margin-bottom: 14px;
  object-fit: cover;
  border-radius: 8px;
}

.news-card-action {
  margin-top: 10px;
}

.news-detail {
  width: var(--page-width);
  margin: 44px auto 90px;
}

.news-detail-header {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.news-detail-header .button {
  justify-self: start;
}

.news-detail-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.news-detail-header p {
  max-width: 980px;
  font-size: 1.15rem;
}

.news-detail-header small {
  color: var(--muted);
  font-weight: 800;
}

.news-detail-image {
  width: 100%;
  max-height: 520px;
  margin-bottom: 28px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.news-rich-content {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.news-rich-content p,
.news-rich-content li {
  color: #374151;
  font-size: 1.04rem;
}

.news-rich-content h2,
.news-rich-content h3,
.news-rich-content h4 {
  color: var(--navy);
}

.news-rich-content blockquote {
  margin: 18px 0;
  padding: 16px 18px;
  color: var(--navy);
  background: #fff8df;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.news-rich-content a {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
}

.news-rich-content ul,
.news-rich-content ol {
  padding-left: 24px;
}

.news-detail-body {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.member-auth,
.member-dashboard {
  width: var(--page-width);
  margin: 0 auto;
}

.member-auth {
  display: grid;
  place-items: center;
  min-height: calc(100vh - var(--header-offset, 108px) - 140px);
  padding: 50px 0 80px;
}

.member-login-card {
  width: min(560px, 100%);
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.member-login-card h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.member-dashboard {
  display: grid;
  gap: 22px;
  padding: 42px 0 90px;
}

.member-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 22px;
  align-items: stretch;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 61, 0.96), rgba(15, 85, 168, 0.78)),
    radial-gradient(circle at 22% 15%, rgba(228, 187, 85, 0.28), transparent 34%),
    var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.member-hero h1 {
  max-width: 880px;
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

.member-hero p,
.member-hero .eyebrow {
  color: #d7e2f2;
}

.member-profile-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(228, 187, 85, 0.65);
  border-radius: 8px;
}

.member-profile-card img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border: 2px solid rgba(228, 187, 85, 0.85);
  border-radius: 8px;
  background: var(--white);
}

.member-profile-card h2 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.member-profile-card p {
  margin-bottom: 8px;
}

.member-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 10px;
  padding: 4px 10px;
  color: var(--navy);
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.8);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.member-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.member-kpis article,
.member-panel {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.member-kpis span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.member-kpis strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.45rem;
}

.member-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.member-form,
.member-side {
  display: grid;
  gap: 16px;
}

.member-form h2,
.member-panel h2 {
  font-size: 1.45rem;
}

.member-info-list p {
  margin-bottom: 8px;
}

.service-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--navy);
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.58);
  border-radius: 999px;
  font-weight: 800;
}

.payment-list {
  display: grid;
  gap: 10px;
}

.payment-list article {
  display: grid;
  gap: 2px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-list span,
.payment-list small {
  color: var(--muted);
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.recommendation-grid article {
  min-height: 150px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.recommendation-grid h3 {
  color: var(--navy);
}

.member-promotions {
  overflow: hidden;
}

.promotion-carousel {
  --promo-gap: 16px;
  --promo-visible: 4;
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.promotion-window {
  overflow: hidden;
  padding: 4px;
}

.promotion-track {
  display: flex;
  gap: var(--promo-gap);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.promotion-track.is-centered {
  justify-content: center;
}

.promotion-track::-webkit-scrollbar {
  display: none;
}

.promotion-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  flex: 0 0 calc((100% - (var(--promo-gap) * (var(--promo-visible) - 1))) / var(--promo-visible));
  min-height: 360px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border: 1px solid rgba(228, 187, 85, 0.42);
  border-radius: 8px;
  box-shadow: var(--shadow);
  scroll-snap-align: center;
}

.promotion-card img {
  width: 100%;
  height: clamp(190px, 14vw, 230px);
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, #ffffff, #eef4f8);
}

.promotion-card > div {
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 150px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(7, 27, 61, 0.98), rgba(15, 85, 168, 0.78)),
    var(--navy);
}

.promotion-card span {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.promotion-card h3 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.promotion-card p {
  color: #d7e2f2;
  font-size: 0.94rem;
}

.promotion-card strong {
  display: inline-flex;
  justify-self: start;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--navy);
  background: linear-gradient(180deg, #fff1a8, var(--gold));
  border-radius: 8px;
  font-size: 0.92rem;
}

.promotion-nav {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: linear-gradient(180deg, #fff8df, #f1cf67);
  border: 1px solid rgba(228, 187, 85, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7, 27, 61, 0.14);
  font-size: 2rem;
  font-weight: 900;
  cursor: pointer;
}

.promotion-nav:hover {
  color: var(--white);
  background: var(--navy);
}

.promotion-nav.is-hidden {
  visibility: hidden;
  pointer-events: none;
}

.promotion-empty {
  padding: 22px;
  background: #f8fafc;
  border: 1px dashed #cdd6e4;
  border-radius: 8px;
}

.club-members-section {
  overflow: hidden;
}

.club-member-carousel {
  --promo-gap: 16px;
  --promo-visible: 4;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.club-member-window {
  overflow: hidden;
  padding: 4px;
}

.club-member-track {
  display: flex;
  gap: var(--promo-gap);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.club-member-track.is-centered {
  justify-content: center;
}

.club-member-track::-webkit-scrollbar {
  display: none;
}

.club-member-card {
  display: grid;
  flex: 0 0 calc((100% - (var(--promo-gap) * (var(--promo-visible) - 1))) / var(--promo-visible));
  min-height: 300px;
  align-content: start;
  justify-items: center;
  gap: 10px;
  padding: 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  scroll-snap-align: center;
}

.club-member-photo {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.72);
  border-radius: 8px;
}

.club-member-photo img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
  object-position: center;
}

.club-member-card h3 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.club-member-card p,
.club-member-card small {
  margin: 0;
  color: var(--muted);
}

.member-profile-link {
  width: 100%;
  margin-top: 8px;
}

.club-member-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.club-member-tags span {
  padding: 5px 8px;
  color: var(--navy);
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.5);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.testimonial-success-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 244, 248, 0.92)),
    var(--soft);
}

.testimonial-success-section .section-heading p {
  max-width: 920px;
}

.testimonial-carousel {
  --promo-gap: 16px;
  --promo-visible: 3;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.testimonial-window {
  overflow: hidden;
  padding: 4px;
}

.testimonial-track {
  display: flex;
  gap: var(--promo-gap);
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track.is-centered {
  justify-content: center;
}

.testimonial-success-card {
  display: grid;
  align-content: space-between;
  flex: 0 0 calc((100% - (var(--promo-gap) * (var(--promo-visible) - 1))) / var(--promo-visible));
  min-height: 300px;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
  scroll-snap-align: center;
}

.testimonial-success-card > span {
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  color: var(--gold-dark);
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.68);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-success-card p {
  margin: 0;
  color: #26364a;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.55;
}

.testimonial-success-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.testimonial-success-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
}

.admin-ad-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  margin-bottom: 22px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 27, 61, 0.98), rgba(15, 85, 168, 0.76)),
    radial-gradient(circle at 20% 15%, rgba(228, 187, 85, 0.32), transparent 34%),
    var(--navy);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-ad-hero h1 {
  max-width: 880px;
}

.admin-ad-hero p,
.admin-ad-hero .eyebrow {
  color: #d7e2f2;
}

.ad-size-card {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(228, 187, 85, 0.78);
  border-radius: 8px;
}

.ad-size-card strong {
  color: var(--gold-dark);
  text-transform: uppercase;
}

.ad-size-card span {
  font-size: 2rem;
  font-weight: 900;
}

.admin-promo-banner {
  background:
    linear-gradient(135deg, rgba(122, 71, 0, 0.96), rgba(15, 85, 168, 0.82)),
    var(--navy);
}

.admin-promotion-list {
  display: grid;
  gap: 14px;
}

.admin-promotion-list article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-promotion-list img {
  width: 170px;
  height: 108px;
  object-fit: cover;
  border-radius: 8px;
}

.extra-service-control {
  margin: 12px 0 18px;
}

.input-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.extra-service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.extra-service-list label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.46);
  border-radius: 999px;
  font-weight: 800;
}

.admin-action-grid,
.admin-shortcuts,
.admin-layout-wide {
  width: var(--page-width);
  margin: 0 auto;
}

.admin-action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.admin-action-card {
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 16px;
  min-height: 232px;
  overflow: hidden;
  padding: 24px 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-action-card .eyebrow {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  white-space: normal;
}

.admin-action-card h2 {
  max-width: 100%;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.45rem, 1.7vw, 2.05rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.admin-action-card p {
  max-width: 760px;
  margin: 0;
  color: #d7e2f2;
  font-size: 1rem;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: normal;
}

.admin-action-card .button {
  justify-self: start;
  width: min(260px, 100%);
  min-width: 0;
  min-height: 48px;
  margin-top: 4px;
  white-space: nowrap;
}

.admin-promo-card {
  background:
    linear-gradient(135deg, rgba(122, 71, 0, 0.96), rgba(15, 85, 168, 0.82)),
    var(--navy);
}

.admin-mail-card {
  background: linear-gradient(135deg, #052e61, #0f766e);
}

.admin-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.admin-shortcuts a {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-shortcuts a:hover {
  border-color: rgba(15, 85, 168, 0.38);
  box-shadow: 0 16px 34px rgba(7, 27, 61, 0.12);
  transform: translateY(-2px);
}

.admin-shortcuts strong {
  color: var(--navy);
  font-size: 1rem;
}

.admin-shortcuts span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.admin-email-grid,
.admin-email-logs {
  width: var(--page-width);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 20px;
  align-items: start;
}

.admin-email-help {
  align-content: start;
}

.admin-email-title {
  padding-top: 46px;
}

.admin-email-title h1 {
  max-width: 960px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.05;
}

.admin-email-title p {
  max-width: 900px;
}

.admin-email-actions {
  align-items: center;
  margin-top: 22px;
}

.admin-email-actions form {
  margin: 0;
}

.admin-email-grid .admin-panel,
.admin-email-logs .admin-panel {
  min-width: 0;
}

.admin-email-grid .eyebrow {
  justify-self: start;
  align-self: start;
  width: fit-content;
  max-width: 100%;
  min-height: 26px;
  margin-bottom: 6px;
  padding: 4px 10px;
  font-size: 0.72rem;
  line-height: 1.15;
}

.admin-email-grid .admin-panel h2,
.admin-email-logs .admin-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.08;
}

.admin-email-grid .admin-form {
  gap: 16px;
}

.admin-email-grid .form-grid {
  gap: 14px;
}

.admin-email-grid textarea {
  min-height: 118px;
}

.admin-email-grid .email-template-card textarea {
  min-height: 180px;
}

.admin-email-grid .email-toggle-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 2px;
}

.admin-form .checkbox-grid label,
.admin-email-grid .email-toggle-grid label {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 10px;
  padding: 10px 12px;
  color: var(--navy);
  background: #fbfcff;
  border: 1px solid #dce3ed;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.25;
}

.admin-form .checkbox-grid input[type="checkbox"],
.admin-email-grid .email-toggle-grid input[type="checkbox"] {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  padding: 0;
  accent-color: #0f55a8;
}

.admin-email-help .button {
  margin-top: 4px;
}

.variable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variable-tags code {
  padding: 8px 10px;
  color: var(--navy);
  background: #f3f7fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.admin-users-list article form {
  display: grid;
  gap: 12px;
}

.admin-user-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.check-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-inline input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.admin-layout-wide {
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
  align-items: start;
}

.admin-stack {
  display: grid;
  align-content: start;
  gap: 18px;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form h3 {
  margin: 16px 0 0;
  color: var(--navy);
}

.admin-control-head {
  display: grid;
  gap: 6px;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-control-head h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}

.admin-control-head p {
  margin: 0;
  font-size: 0.95rem;
}

.admin-edit-nav {
  position: sticky;
  top: calc(var(--header-offset, 108px) + 8px);
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(248, 250, 252, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.admin-edit-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(228, 187, 85, 0.55);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
  text-align: center;
}

.admin-edit-section {
  display: grid;
  gap: 14px;
  scroll-margin-top: calc(var(--header-offset, 108px) + 86px);
  padding: 16px;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-section-title {
  display: grid;
  gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e6edf6;
}

.admin-section-title h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
}

.admin-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.admin-form small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.admin-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.admin-chat-editor {
  display: grid;
  gap: 12px;
}

.admin-chat-editor > div {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 12px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-editor-entry {
  display: grid;
  align-content: start;
  gap: 12px;
}

.admin-editor-entry h2,
.admin-stack .admin-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  line-height: 1.15;
}

.compact-actions {
  margin-top: 0;
}

.compact-actions .button {
  flex: 1 1 150px;
}

.admin-members-title,
.admin-member-tools,
.member-transfer-panel,
.admin-member-grid {
  width: var(--page-width);
  margin-right: auto;
  margin-left: auto;
}

.admin-member-tools {
  display: grid;
  grid-template-columns: minmax(190px, 0.25fr) minmax(0, 0.75fr);
  gap: 14px;
  margin-bottom: 18px;
}

.admin-member-tools article,
.admin-member-search {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.admin-member-tools span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.admin-member-tools strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 2rem;
}

.member-transfer-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.member-transfer-panel article {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.member-transfer-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 1.38rem;
}

.member-transfer-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.import-form {
  display: grid;
  gap: 10px;
}

.admin-member-grid {
  display: grid;
  gap: 16px;
  padding-bottom: 90px;
}

.admin-member-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.admin-member-summary {
  display: grid;
  grid-template-columns: auto 96px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.member-select {
  width: 22px;
  min-height: 22px;
  accent-color: var(--gold);
}

.admin-member-summary img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.72);
  border-radius: 8px;
}

.admin-member-summary h2 {
  margin: 6px 0;
  font-size: 1.32rem;
  line-height: 1.15;
}

.admin-member-summary p,
.admin-member-summary small {
  display: block;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.member-state-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.status-pill,
.home-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  color: var(--muted);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.active {
  color: var(--success);
  background: #e9f8f0;
  border-color: rgba(15, 138, 84, 0.32);
}

.status-pill.inactive {
  color: var(--error);
  background: #fff1f0;
  border-color: rgba(180, 35, 24, 0.3);
}

.home-pill.selected {
  color: var(--navy);
  background: #fff8df;
  border-color: rgba(228, 187, 85, 0.86);
}

.member-status-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.member-status-toolbar div,
.home-toggle-form {
  display: grid;
  gap: 3px;
}

.member-status-toolbar strong {
  color: var(--navy);
}

.member-status-toolbar small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.check-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.check-switch input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.admin-member-details {
  border-top: 1px solid var(--line);
}

.admin-member-details summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 14px;
  padding: 0 14px;
  color: var(--navy);
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.72);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.admin-member-details[open] summary {
  margin-bottom: 16px;
}

.admin-member-form {
  padding: 16px;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.seo-admin-title,
.seo-metrics,
.seo-guide,
.seo-report {
  width: var(--page-width);
  margin-right: auto;
  margin-left: auto;
}

.seo-admin-title h1 {
  font-size: clamp(2.4rem, 4.4vw, 4rem);
}

.seo-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 18px;
}

.seo-metrics article {
  min-height: 118px;
  padding: 18px;
  overflow: hidden;
}

.seo-metrics span {
  font-size: 0.92rem;
}

.seo-metrics strong {
  max-width: 100%;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.seo-guide {
  margin-bottom: 18px;
}

.seo-guide h2 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.seo-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.seo-legend span,
.seo-checks li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.seo-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.seo-dot.good {
  background: var(--success);
}

.seo-dot.warning {
  background: var(--warning);
}

.seo-dot.error {
  background: var(--error);
}

.seo-report {
  display: grid;
  gap: 14px;
  padding-bottom: 90px;
}

.seo-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.seo-card.good {
  border-left-color: var(--success);
}

.seo-card.warning {
  border-left-color: var(--warning);
}

.seo-card.error {
  border-left-color: var(--error);
}

.seo-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.seo-card-head h2 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.14;
}

.seo-card-head a {
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.seo-card-head > strong {
  min-width: 74px;
  color: var(--navy);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: right;
}

.seo-fields {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.seo-fields p {
  margin: 0;
  color: #334155;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.seo-checks {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-checks li {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.seo-checks li.good {
  color: var(--success);
}

.seo-checks li.warning {
  color: var(--warning);
}

.seo-checks li.error {
  color: var(--error);
}

.admin-live-editor {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(170px, auto) auto auto auto;
  gap: 10px;
  align-items: center;
  max-width: min(860px, calc(100vw - 36px));
  padding: 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(228, 187, 85, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 27, 61, 0.22);
  backdrop-filter: blur(14px);
}

.admin-live-editor strong,
.admin-live-editor span {
  display: block;
}

.admin-live-editor span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-live-editor .button {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.88rem;
}

.admin-live-editor .button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
  box-shadow: none;
}

.admin-live-editor.is-editing {
  border-color: var(--blue);
  box-shadow: 0 18px 52px rgba(15, 85, 168, 0.24);
}

.is-live-editing [data-edit-field] {
  position: relative;
}

.is-live-editing .is-editable-block {
  min-width: 42px;
  outline: 2px dashed rgba(15, 85, 168, 0.72);
  outline-offset: 5px;
  background: rgba(255, 248, 223, 0.72);
  border-radius: 6px;
  cursor: text;
}

.is-live-editing .is-editable-block:focus {
  outline: 3px solid rgba(228, 187, 85, 0.95);
  background: #fff8df;
}

.is-live-editing a.is-editable-block {
  cursor: text;
}

.admin-editor-page {
  width: var(--page-width);
  margin: 0 auto 90px;
  padding-top: 34px;
}

.admin-editor-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.admin-editor-header h1 {
  margin-bottom: 8px;
}

.rich-news-form {
  display: block;
}

.rich-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.55fr);
  gap: 20px;
  align-items: start;
}

.rich-editor-main,
.rich-editor-side {
  display: grid;
  gap: 18px;
}

.rich-editor-side {
  position: sticky;
  top: calc(var(--header-offset, 108px) + 18px);
}

.rich-editor-card {
  display: grid;
  grid-template-rows: auto auto minmax(520px, auto);
  padding: 0;
  overflow: hidden;
}

.rich-editor-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.rich-editor-title h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.rich-editor-title p {
  max-width: 420px;
  margin: 0;
  font-size: 0.94rem;
}

.rich-toolbar {
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.rich-toolbar select,
.rich-toolbar input[type="color"],
.rich-toolbar button {
  min-height: 38px;
  border: 1px solid #cdd6e4;
  border-radius: 8px;
  background: var(--white);
  font: inherit;
}

.rich-toolbar select {
  width: auto;
  min-width: 132px;
  padding: 8px 10px;
}

.rich-toolbar input[type="color"] {
  width: 44px;
  padding: 4px;
}

.rich-toolbar button {
  min-width: 42px;
  padding: 8px 10px;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.rich-toolbar button:hover,
.rich-toolbar select:hover,
.rich-toolbar input[type="color"]:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(228, 187, 85, 0.16);
}

.rich-editor-area {
  min-height: 520px;
  padding: 24px 28px 40px;
  background: var(--white);
  border-top: 1px solid #eef2f7;
  outline: 0;
  overflow-y: auto;
  scroll-padding-top: 24px;
}

.rich-editor-area:focus {
  box-shadow: inset 0 0 0 3px rgba(228, 187, 85, 0.22);
}

.rich-editor-area > :first-child {
  margin-top: 0;
}

.preview-panel {
  min-height: 360px;
}

.news-preview {
  display: grid;
  gap: 12px;
}

.news-preview h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.publish-panel {
  display: grid;
  gap: 12px;
}

.full-width {
  width: 100%;
}

.admin-list.compact {
  margin-top: 14px;
}

.admin-auth {
  width: min(520px, 90vw);
  margin: 70px auto 90px;
}

.admin-auth h1 {
  font-size: 2.4rem;
}

.admin-metrics,
.admin-layout {
  width: var(--page-width);
  margin: 0 auto;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  padding-bottom: 24px;
}

.admin-metrics article,
.admin-panel {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.admin-metrics span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.admin-metrics strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: 1.8rem;
}

.admin-pricing-grid {
  width: var(--page-width);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 18px;
}

.admin-plan-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.admin-plan-card .admin-section-title {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.admin-plan-card .admin-section-title h2 {
  margin-bottom: 6px;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
}

.admin-plan-card .admin-section-title p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-plan-card textarea[name="plan_benefits"] {
  min-height: 220px;
}

.admin-plan-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.admin-plan-new {
  border-color: rgba(228, 187, 85, 0.8);
  background: linear-gradient(180deg, #fffaf0, #ffffff 38%);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  padding-bottom: 80px;
}

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

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  padding: 11px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.admin-table th {
  color: var(--navy);
  background: #f3f7fb;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-list article {
  padding: 12px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-list strong,
.admin-list span,
.admin-list small {
  display: block;
}

.admin-list span,
.admin-list small,
.admin-table small {
  color: var(--muted);
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .promotion-carousel,
  .club-member-carousel,
  .testimonial-carousel {
    --promo-visible: 3;
  }

  .testimonial-carousel {
    --promo-visible: 2;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 24px;
  }

  .nav-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero,
  .page-hero,
  .image-split,
  .image-split.reverse,
  .pricing-panel,
  .pricing-table,
  .contact-layout,
  .platform-preview-shell,
  .admin-layout,
  .admin-layout-wide,
  .member-hero,
  .member-layout,
  .admin-ad-hero,
  .rich-editor-layout {
    grid-template-columns: 1fr;
  }

  .admin-editor-header {
    flex-direction: column;
  }

  .rich-editor-side {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
    height: clamp(520px, 66vw, 720px);
    max-height: 720px;
  }

  .hero-visual img {
    height: 100%;
  }

  .page-hero img,
  .image-split-media img {
    height: 390px;
  }

  .feature-grid,
  .feature-grid-3,
  .benefit-list,
  .value-grid,
  .module-grid.wide,
  .admin-metrics,
  .admin-member-tools,
  .member-transfer-panel,
  .member-kpis,
  .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-strip,
  .directory-preview,
  .directory-filter-grid,
  .site-footer,
  .admin-action-card {
    grid-template-columns: 1fr;
  }

  .admin-action-grid,
  .admin-shortcuts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-email-grid,
  .admin-email-logs {
    grid-template-columns: 1fr;
  }

  .admin-action-card {
    align-items: flex-start;
    min-height: 210px;
  }

  .admin-action-card .button {
    width: min(260px, 100%);
  }

  .admin-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 82px;
    padding: 8px 14px;
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .brand {
    gap: 9px;
    min-width: 0;
    font-size: 0.96rem;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .nav-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--navy);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    max-height: calc(100vh - 110px);
    padding: 10px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(7, 27, 61, 0.18);
  }

  .site-header.is-menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 6px;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: #f3f6fb;
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 4px;
  }

  .admin-email-grid,
  .admin-email-logs,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .admin-user-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .promotion-carousel,
  .club-member-carousel,
  .testimonial-carousel {
    --promo-visible: 1;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
  }

  .promotion-card {
    min-height: 360px;
  }

  .promotion-card img {
    height: 200px;
  }

  .club-member-card {
    min-height: 280px;
  }

  .promotion-nav {
    width: 42px;
    height: 42px;
    font-size: 1.55rem;
  }

  .site-header {
    padding: 12px 18px;
    gap: 10px;
  }

  .brand img {
    width: 66px;
    height: 66px;
  }

  .admin-edit-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-edit-section {
    padding: 14px;
  }

  .admin-mini-grid {
    grid-template-columns: 1fr;
  }

  .admin-action-grid,
  .admin-shortcuts {
    grid-template-columns: 1fr;
  }

  .admin-action-card {
    min-height: 0;
    padding: 18px;
  }

  .admin-action-card h2 {
    font-size: 1.45rem;
  }

  .admin-action-card p {
    font-size: 0.94rem;
  }

  .admin-live-editor {
    left: 10px;
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .admin-live-editor > div {
    grid-column: 1 / -1;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.88rem;
    scrollbar-width: thin;
  }

  .nav-links a {
    flex: 0 0 auto;
  }

  .nav-cta {
    padding: 0 12px;
  }

  h1,
  .page-title h1,
  .page-hero h1 {
    font-size: 2.08rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero,
  .section-band,
  .page-hero,
  .image-split,
  .platform-preview-section,
  .admin-metrics,
  .admin-layout,
  .admin-member-tools,
  .member-transfer-panel,
  .admin-member-grid,
  .admin-editor-page,
  .member-auth,
  .member-dashboard {
    width: var(--page-width);
  }

  .hero-metrics,
  .form-grid,
  .feature-grid,
  .feature-grid-3,
  .benefit-list,
  .value-grid,
  .module-grid,
  .module-grid.wide,
  .copy-columns,
  .checkbox-grid,
  .admin-member-tools,
  .member-transfer-panel,
  .admin-member-summary,
  .domain-grid {
    grid-template-columns: 1fr;
  }

  .admin-member-summary img {
    width: 84px;
    height: 84px;
  }

  .member-state-pills {
    justify-content: flex-start;
  }

  .member-status-toolbar,
  .seo-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .member-status-toolbar .button {
    width: 100%;
  }

  .seo-card-head > strong {
    text-align: left;
  }

  .member-kpis,
  .recommendation-grid,
  .member-profile-card,
  .payment-help,
  .admin-promotion-list article {
    grid-template-columns: 1fr;
  }

  .payment-copy-actions {
    justify-content: stretch;
  }

  .payment-copy-actions .button {
    width: 100%;
  }

  .admin-promotion-list img {
    width: 100%;
    height: 180px;
  }

  .member-hero,
  .member-panel,
  .member-login-card {
    padding: 20px;
  }

  .member-profile-card img {
    width: 116px;
    height: 116px;
  }

  .hero-brand-lockup {
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    gap: 14px;
    padding: 16px;
  }

  .hero-brand-lockup img {
    width: clamp(190px, 34vw, 250px);
    height: clamp(190px, 34vw, 250px);
    flex: 0 0 clamp(190px, 34vw, 250px);
  }

  .hero-brand-lockup span {
    font-size: clamp(1.08rem, 4vw, 1.42rem);
  }

  .hero-brand-lockup strong {
    font-size: clamp(0.82rem, 3vw, 0.98rem);
    overflow-wrap: anywhere;
  }

  .peru-mark {
    margin-left: 0;
  }

  .hero-member-entry {
    width: 100%;
    margin-left: 0;
  }

  .hero-visual {
    min-height: 420px;
    height: clamp(420px, 118vw, 620px);
    max-height: 620px;
  }

  .hero-visual img {
    height: 100%;
  }

  .page-hero img,
  .image-split-media img {
    height: 300px;
  }

  .promo-badge {
    right: 14px;
    bottom: 14px;
    width: 180px;
  }

  .promo-badge strong {
    font-size: 2.6rem;
  }

  .image-split-copy,
  .form-section,
  .cta-section {
    padding: 20px;
  }

  .timeline article {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .pricing-panel,
  .price-card,
  .contact-form,
  .contact-info article,
  .platform-preview-shell {
    padding: 20px;
  }

  .browser-search,
  .accountant-card {
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .input-suffix {
    grid-template-columns: 1fr;
  }

  .input-action,
  .admin-chat-editor > div {
    grid-template-columns: 1fr;
  }

  .rich-toolbar {
    position: static;
  }

  .rich-editor-title {
    flex-direction: column;
  }

  .rich-toolbar select {
    width: 100%;
  }

  .rich-editor-area,
  .news-detail-body {
    padding: 20px;
  }

  .input-suffix em {
    padding: 0 12px 10px;
  }

  .whatsapp-float strong {
    display: none;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 6px;
  }

  .chatbot-widget {
    right: 14px;
    bottom: 76px;
  }

  .chatbot-toggle {
    width: 52px;
    height: 52px;
  }

  .whatsapp-float span {
    width: 36px;
    height: 36px;
    font-size: 0.86rem;
  }
}

@media (max-width: 420px) {
  .hero-brand-lockup {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 12px;
  }

  .hero-brand-lockup img {
    width: 250px;
    height: 250px;
    flex: 0 0 auto;
  }

  .hero-brand-lockup span {
    font-size: 1.34rem;
  }

  .hero-visual {
    min-height: 430px;
    height: clamp(430px, 132vw, 560px);
    max-height: 560px;
  }
}

.seo-admin-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.seo-admin-card,
.seo-news-box {
  padding: 18px;
  background: #f8fbff;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-radius: 8px;
}

.seo-admin-card label,
.seo-news-box label {
  margin-top: 12px;
}

.directory-member-grid img,
.directory-member-card img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  object-position: center;
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.5);
  border-radius: 8px;
}

.member-public-hero {
  width: min(90%, 1560px);
  margin: 70px auto 34px;
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  align-items: center;
  gap: 34px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.member-public-photo {
  display: grid;
  place-items: center;
  min-height: 280px;
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.55);
  border-radius: 8px;
}

.member-public-photo img {
  width: min(220px, 72%);
  height: auto;
  object-fit: contain;
}

.member-public-hero h1 {
  margin: 12px 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.member-public-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.member-public-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.member-public-meta span {
  padding: 8px 12px;
  color: var(--navy);
  background: #fff8df;
  border: 1px solid rgba(228, 187, 85, 0.55);
  border-radius: 999px;
  font-weight: 800;
}

.member-public-details {
  width: min(90%, 1560px);
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.member-public-details article {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .seo-admin-list,
  .member-public-hero,
  .member-public-details {
    grid-template-columns: 1fr;
  }
}

.custom-page-form textarea {
  min-height: 130px;
}

.custom-pages-list {
  width: min(90%, 1560px);
  margin: 34px auto 80px;
}

.custom-page-edit-card {
  margin-top: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-radius: 8px;
}

.custom-page-edit-card summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
}

.custom-page-edit-card summary span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.custom-page-thumb {
  width: min(100%, 420px);
  height: 180px;
  margin: 18px 0;
  object-fit: contain;
  object-position: center;
  background: #071b3d;
  border: 1px solid rgba(228, 187, 85, 0.55);
  border-radius: 8px;
}

.custom-public-page {
  width: min(90%, 1560px);
  margin: 70px auto;
}

.custom-public-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.custom-public-hero h1 {
  margin: 12px 0;
  color: var(--navy);
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.98;
}

.custom-public-hero p {
  color: var(--muted);
  font-size: 1.06rem;
}

.custom-public-hero img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  object-position: center;
  background: #071b3d;
  border: 1px solid rgba(228, 187, 85, 0.58);
  border-radius: 8px;
}

.custom-public-body {
  margin-top: 28px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.seo-keyword-page .page-hero {
  align-items: center;
}

.seo-keyword-hero img {
  object-fit: contain;
  background: #071b3d;
}

.seo-keyword-intro .section-heading {
  max-width: 980px;
}

.seo-keyword-grid,
.seo-faq-grid {
  width: min(94%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.seo-keyword-grid article,
.seo-faq-grid article {
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.seo-keyword-grid h2,
.seo-faq-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.seo-keyword-grid p,
.seo-faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.seo-benefit-list {
  max-width: 980px;
}

.seo-related-pages .module-grid a {
  display: grid;
  place-items: center;
  min-height: 74px;
  padding: 16px;
  border: 1px solid rgba(7, 27, 61, 0.12);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seo-related-pages .module-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .custom-public-hero {
    grid-template-columns: 1fr;
  }

  .seo-keyword-grid,
  .seo-faq-grid {
    grid-template-columns: 1fr;
  }

  .custom-page-edit-card summary {
    flex-direction: column;
  }
}

/* Member access, transferable offers and graphical contact shortcuts */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.whatsapp-float,
.chatbot-toggle {
  display: grid;
  width: 60px;
  height: 60px;
  min-height: 0;
  place-items: center;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(7, 27, 61, 0.24);
}

.whatsapp-float img,
.chatbot-toggle img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-float:hover,
.chatbot-toggle:hover {
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(7, 27, 61, 0.3);
}

.admin-create-member {
  width: var(--page-width);
  margin: 0 auto 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.admin-create-member > summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.admin-create-member > summary::-webkit-details-marker {
  display: none;
}

.admin-create-member > summary span:first-child {
  display: grid;
  gap: 4px;
}

.admin-create-member > summary strong {
  font-size: 1.25rem;
}

.admin-create-member > summary small {
  color: var(--muted);
}

.admin-create-member > summary span:last-child {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(228, 187, 85, 0.75);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
}

.admin-create-member[open] > summary span:last-child {
  transform: rotate(45deg);
}

.admin-create-member-form {
  padding: 22px;
  background: #f8fafc;
  border-top: 1px solid var(--line);
}

.admin-form-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 20px;
}

.admin-form-intro h2 {
  margin: 8px 0 0;
}

.admin-form-intro p {
  margin: 0;
  color: var(--muted);
}

.promotion-transfer-panel {
  width: 100%;
  margin-top: 18px;
}

.admin-promotion-list article {
  grid-template-columns: auto 170px minmax(0, 1fr);
  align-items: start;
}

.admin-promotion-list article.is-inactive {
  opacity: 0.68;
}

.promotion-select {
  width: 22px;
  min-height: 22px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.home-promotions {
  overflow: hidden;
}

.home-promotion-card {
  min-height: 330px;
}

.promotion-detail-page {
  width: var(--page-width);
  margin: 0 auto;
  padding: 64px 0 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 34px;
  align-items: center;
}

.promotion-detail-media {
  min-height: 440px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promotion-detail-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.promotion-detail-copy h1 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.promotion-detail-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.promotion-member-proof {
  display: grid;
  gap: 4px;
  margin: 24px 0;
  padding: 16px;
  background: #e9f8f0;
  border: 1px solid rgba(15, 138, 84, 0.28);
  border-radius: 8px;
}

.promotion-member-proof span,
.promotion-member-proof small {
  color: var(--muted);
}

@media (max-width: 900px) {
  .admin-form-intro,
  .promotion-detail-page {
    grid-template-columns: 1fr;
  }

  .promotion-detail-page {
    padding: 38px 0 70px;
  }

  .promotion-detail-media {
    min-height: 300px;
  }

  .admin-promotion-list article {
    grid-template-columns: auto minmax(110px, 0.35fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .whatsapp-float,
  .chatbot-toggle {
    width: 52px;
    height: 52px;
    padding: 0;
  }

  .admin-create-member-form {
    padding: 16px;
  }

  .admin-promotion-list article {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .admin-promotion-list img {
    grid-column: 2;
    width: 100%;
    height: 160px;
    object-fit: contain;
  }

  .admin-promotion-list article > div {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .site-header .nav-links {
    width: auto;
    overflow-x: hidden;
    gap: 8px;
    padding: 10px;
  }
}
