/* Hallmark · macrostructure: Registry Desk · tone: austere editorial · anchor hue: deep jade
 * pre-emit critique: P5 H5 E4 S5 R5 V4
 */
@import url("/static/css/tokens.css");

* { box-sizing: border-box; }
html, body { min-width: 0; overflow-x: clip; }
html { background: var(--color-paper); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-text);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--color-jade-muted) 72%, var(--color-white));
  outline-offset: 3px;
}
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.public-body {
  background:
    linear-gradient(90deg, color-mix(in oklch, var(--color-paper) 97%, var(--color-jade-pale)) 1px, transparent 1px),
    linear-gradient(color-mix(in oklch, var(--color-paper) 97%, var(--color-jade-pale)) 1px, transparent 1px),
    var(--color-paper);
  background-size: 64px 64px;
}
.public-header {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  padding: 0 clamp(var(--space-6), 7vw, 8.5rem);
  color: var(--color-white);
  background: var(--color-jade-deep);
  border-bottom: var(--rule-thin) solid color-mix(in oklch, var(--color-white) 20%, transparent);
}
.public-brand, .admin-brand, .login-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  min-width: 0;
}
.brand-mark {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--color-white);
  border: var(--rule-thin) solid color-mix(in oklch, var(--color-white) 76%, transparent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
}
.public-brand strong, .admin-brand strong, .login-brand strong {
  display: block;
  min-width: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}
.public-brand small, .admin-brand small, .login-brand small {
  display: block;
  margin-top: var(--space-1);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  line-height: 1.2;
  opacity: 0.82;
}
.public-header nav {
  display: flex;
  align-items: center;
  gap: clamp(var(--space-4), 2.2vw, var(--space-8));
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
}
.public-header nav a {
  position: relative;
  padding: var(--space-2) 0;
  color: color-mix(in oklch, var(--color-white) 84%, transparent);
  transition: color var(--dur-base) var(--ease-out);
}
.public-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--color-white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-base) var(--ease-out);
}
.public-header nav a:hover { color: var(--color-white); }
.public-header nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.public-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) clamp(var(--space-6), 7vw, 8.5rem);
  color: color-mix(in oklch, var(--color-white) 80%, transparent);
  background: var(--color-jade-deep);
  border-top: var(--rule-thin) solid color-mix(in oklch, var(--color-white) 16%, transparent);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
}
.public-footer strong { color: var(--color-white); font-weight: 600; }
.public-footer a { text-decoration: underline; text-underline-offset: 0.24em; }

.registry-hero {
  width: min(100%, 88rem);
  min-height: clamp(34rem, 66vh, 45rem);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(23rem, 0.75fr);
  align-items: center;
  gap: clamp(var(--space-10), 9vw, 11rem);
  margin: 0 auto;
  padding: clamp(var(--space-16), 10vw, 9rem) clamp(var(--space-6), 6vw, 5rem);
}
.registry-intro { min-width: 0; max-width: 42rem; }
.registry-kicker, .eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin: 0 0 var(--space-5);
  color: var(--color-jade);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
}
.registry-kicker::before, .eyebrow::before {
  width: 2.25rem;
  height: 1px;
  content: "";
  background: currentColor;
}
.registry-intro h1 {
  max-width: 10em;
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.registry-intro > p:last-child {
  max-width: 29rem;
  margin: var(--space-8) 0 0;
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 2;
}
.registry-query {
  position: relative;
  padding: clamp(var(--space-8), 4.5vw, var(--space-12));
  background: color-mix(in oklch, var(--color-white) 82%, var(--color-paper));
  border-top: 3px solid var(--color-jade);
  box-shadow: 0 1.5rem 3.75rem color-mix(in oklch, var(--color-jade-deep) 12%, transparent);
}
.registry-query::before {
  position: absolute;
  inset: var(--space-3);
  content: "";
  pointer-events: none;
  border: var(--rule-thin) solid var(--color-line);
}
.registry-query > * { position: relative; }
.registry-query__label {
  margin: 0 0 var(--space-8);
  color: var(--color-jade-deep);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.registry-query label, .certificate-form label, .login-card label {
  display: grid;
  gap: var(--space-2);
  color: var(--color-ink-soft);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.registry-query__controls { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: var(--space-3); }
input, select, textarea {
  width: 100%;
  min-width: 0;
  color: var(--color-ink);
  background: var(--color-white);
  border: var(--rule-thin) solid var(--color-line-strong);
  border-radius: 0;
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
input, select { min-height: 3.25rem; padding: 0 var(--space-4); }
textarea { min-height: 7.75rem; padding: var(--space-3) var(--space-4); resize: vertical; }
input::placeholder, textarea::placeholder { color: color-mix(in oklch, var(--color-muted) 66%, var(--color-white)); }
input:hover, select:hover, textarea:hover { border-color: var(--color-jade-muted); }
input:focus, select:focus, textarea:focus {
  border-color: var(--color-jade);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--color-jade-pale) 76%, transparent);
  outline: 0;
}
.button, .registry-query button, .admin-search button {
  min-height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0 var(--space-6);
  color: var(--color-ink);
  background: transparent;
  border: var(--rule-thin) solid var(--color-line-strong);
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
  transition: color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.button:hover, .registry-query button:hover, .admin-search button:hover {
  border-color: var(--color-jade-deep);
  color: var(--color-white);
  background: var(--color-jade-deep);
  box-shadow: 0 0.75rem 1.25rem color-mix(in oklch, var(--color-jade-deep) 18%, transparent);
  transform: translateY(-1px);
}
.button:active, .registry-query button:active, .admin-search button:active { transform: translateY(1px) scale(0.99); }
.button:disabled, .registry-query button:disabled, .admin-search button:disabled { cursor: not-allowed; opacity: 0.46; transform: none; box-shadow: none; }
.button.primary, .registry-query button { color: var(--color-white); background: var(--color-jade-deep); border-color: var(--color-jade-deep); }
.button.primary:hover, .registry-query button:hover { background: var(--color-jade); border-color: var(--color-jade); }
.button.secondary { color: var(--color-jade-deep); border-color: var(--color-jade-muted); }
.button.secondary:hover { color: var(--color-white); }
.button.danger { color: var(--color-danger); border-color: var(--color-danger); }
.button.danger:hover { color: var(--color-white); background: var(--color-danger); border-color: var(--color-danger); }
.registry-query__hint { margin: var(--space-4) 0 0; color: var(--color-muted); font-size: var(--text-xs); line-height: 1.8; }
.form-error {
  margin: var(--space-4) 0 0;
  padding: var(--space-3) var(--space-4);
  color: var(--color-danger);
  background: var(--color-danger-pale);
  border-left: 3px solid var(--color-danger);
  font-size: var(--text-sm);
}
.registry-notes {
  width: min(100%, 88rem);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(var(--space-10), 8vw, 10rem);
  margin: 0 auto;
  padding: var(--space-16) clamp(var(--space-6), 6vw, 5rem) var(--space-20);
  border-top: var(--rule-thin) solid var(--color-line);
}
.registry-notes__heading > p {
  margin: 0 0 var(--space-3);
  color: var(--color-jade);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.registry-notes h2 { margin: 0; color: var(--color-ink); font-family: var(--font-display); font-size: var(--text-2xl); line-height: 1.28; }
.registry-notes ol { display: grid; gap: var(--space-5); margin: 0; padding: 0; list-style: none; }
.registry-notes li { display: grid; grid-template-columns: 2.6rem minmax(0, 1fr); gap: var(--space-4); align-items: start; padding-bottom: var(--space-5); border-bottom: var(--rule-thin) solid var(--color-line); }
.registry-notes li:last-child { padding-bottom: 0; border-bottom: 0; }
.registry-notes li > span { color: var(--color-jade); font-family: var(--font-data); font-size: var(--text-sm); font-weight: 700; font-variant-numeric: tabular-nums; }
.registry-notes li p { margin: 0; color: var(--color-muted); font-size: var(--text-sm); line-height: 1.8; }
.registry-notes li strong { display: block; margin-bottom: var(--space-1); color: var(--color-ink); font-size: var(--text-base); }

.detail-page, .not-found {
  width: min(100%, 88rem);
  margin: 0 auto;
  padding: clamp(var(--space-10), 7vw, 6rem) clamp(var(--space-5), 5vw, 5rem) clamp(var(--space-16), 8vw, 8rem);
}
.detail-heading { max-width: 54rem; margin-bottom: clamp(var(--space-8), 5vw, 4rem); }
.detail-heading > a, .back-link {
  display: inline-flex;
  margin-bottom: var(--space-6);
  color: var(--color-jade-deep);
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.28em;
}
.detail-heading h1, .not-found h1 { margin: 0; color: var(--color-ink); font-family: var(--font-display); font-size: var(--text-2xl); letter-spacing: 0.06em; line-height: 1.2; }
.detail-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(19rem, 0.7fr); align-items: start; gap: clamp(var(--space-8), 5vw, 5rem); }
.certificate-image, .admin-certificate-preview { margin: 0; padding: var(--space-3); background: var(--color-white); border: var(--rule-thin) solid var(--color-line); box-shadow: 0 1.25rem 2.75rem color-mix(in oklch, var(--color-jade-deep) 10%, transparent); }
.certificate-image img, .admin-certificate-preview img { width: 100%; height: auto; }
.certificate-image figcaption, .admin-certificate-preview figcaption {
  margin: var(--space-3) var(--space-2) var(--space-1);
  color: var(--color-muted);
  font-family: var(--font-data);
  font-size: var(--text-xs);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.verification-panel, .admin-detail-card {
  position: sticky;
  top: var(--space-6);
  padding: clamp(var(--space-6), 3vw, var(--space-8));
  background: color-mix(in oklch, var(--color-white) 80%, var(--color-paper));
  border-top: 3px solid var(--color-jade);
  box-shadow: 0 1rem 2.75rem color-mix(in oklch, var(--color-jade-deep) 8%, transparent);
}
.status-mark { width: 2.35rem; height: 2.35rem; display: grid; place-items: center; margin: 0 0 var(--space-5); color: var(--color-white); background: var(--color-success); border-radius: 50%; font-weight: 800; }
.verification-panel__head { display: flex; align-items: center; gap: var(--space-4); }
.verification-panel__head .status-mark { flex: 0 0 auto; margin: 0; }
.verification-panel__eyebrow, .admin-detail-card__eyebrow {
  margin: 0 0 var(--space-1);
  color: var(--color-jade);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
}
.verification-panel h2, .admin-detail-card h2 { margin: 0; color: var(--color-ink); font-family: var(--font-display); font-size: var(--text-2xl); letter-spacing: 0.06em; line-height: 1.2; }
.status-note { margin: var(--space-4) 0 var(--space-6); color: var(--color-muted); font-size: var(--text-sm); line-height: 1.85; }
dl { margin: 0; }
dl > div { display: grid; grid-template-columns: minmax(6rem, 0.72fr) minmax(0, 1.28fr); gap: var(--space-4); padding: var(--space-3) 0; border-top: var(--rule-thin) solid var(--color-line); }
dt { color: var(--color-muted); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.04em; }
dd { min-width: 0; margin: 0; color: var(--color-ink); font-family: var(--font-data); font-size: var(--text-sm); font-weight: 700; overflow-wrap: anywhere; }
.detail-actions, .admin-actions { display: grid; gap: var(--space-3); margin-top: var(--space-6); }
.detail-actions .button, .admin-actions .button { width: 100%; }
.not-found { max-width: 58rem; min-height: 55vh; display: flex; flex-direction: column; justify-content: center; }
.not-found > p:not(.eyebrow) { max-width: 38rem; margin: var(--space-5) 0 var(--space-8); color: var(--color-muted); line-height: 2; }
.not-found .button { width: fit-content; }
.not-found__guidance {
  width: min(100%, 38rem);
  display: grid;
  gap: var(--space-2);
  margin: 0 0 var(--space-8);
  padding: var(--space-5) 0;
  color: var(--color-muted);
  border-top: var(--rule-thin) solid var(--color-line);
  border-bottom: var(--rule-thin) solid var(--color-line);
  font-size: var(--text-sm);
}
.not-found__guidance strong { color: var(--color-ink); }

.login-body { min-height: 100vh; display: grid; place-items: center; padding: var(--space-6); background: var(--color-jade-deep); }
.login-card { width: min(100%, 31rem); padding: clamp(var(--space-8), 6vw, var(--space-12)); color: var(--color-text); background: var(--color-paper); border-top: 3px solid var(--color-jade-muted); box-shadow: 0 2rem 4.5rem color-mix(in oklch, var(--color-ink) 42%, transparent); }
.login-brand { margin-bottom: var(--space-12); color: var(--color-jade-deep); }
.login-brand .brand-mark { color: var(--color-jade-deep); border-color: var(--color-jade); }
.login-brand small { color: var(--color-muted); opacity: 1; }
.login-card h1 { margin: 0; color: var(--color-ink); font-family: var(--font-display); font-size: var(--text-2xl); letter-spacing: 0.05em; }
.login-card > p:not(.form-error) { margin: var(--space-4) 0 var(--space-8); color: var(--color-muted); font-size: var(--text-sm); }
.login-card form { display: grid; gap: var(--space-5); }
.login-card .button { width: 100%; margin-top: var(--space-2); }
.login-card > a { display: inline-block; margin-top: var(--space-6); color: var(--color-jade-deep); font-size: var(--text-sm); text-decoration: underline; text-underline-offset: 0.25em; }

.admin-body { min-height: 100vh; display: grid; grid-template-columns: 16.5rem minmax(0, 1fr); background: var(--color-paper); }
.admin-sidebar { min-width: 0; display: flex; flex-direction: column; padding: var(--space-8) var(--space-5); color: color-mix(in oklch, var(--color-white) 86%, transparent); background: var(--color-jade-deep); }
.admin-brand { padding: 0 var(--space-3) var(--space-10); color: var(--color-white); border-bottom: var(--rule-thin) solid color-mix(in oklch, var(--color-white) 17%, transparent); }
.admin-sidebar nav { display: grid; gap: var(--space-2); margin-top: var(--space-8); }
.admin-sidebar nav a { padding: var(--space-3) var(--space-4); color: color-mix(in oklch, var(--color-white) 76%, transparent); border-left: 2px solid transparent; font-size: var(--text-sm); font-weight: 700; transition: color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out); }
.admin-sidebar nav a:hover { color: var(--color-white); background: color-mix(in oklch, var(--color-white) 9%, transparent); border-left-color: var(--color-white); }
.logout-form { margin-top: auto; padding: var(--space-6) var(--space-3) 0; border-top: var(--rule-thin) solid color-mix(in oklch, var(--color-white) 17%, transparent); }
.logout-form button { padding: 0; color: color-mix(in oklch, var(--color-white) 68%, transparent); background: transparent; border: 0; font: inherit; font-size: var(--text-sm); text-decoration: underline; text-underline-offset: 0.25em; }
.logout-form button:hover { color: var(--color-white); }
.admin-main { min-width: 0; }
.admin-page { width: min(100%, 94rem); margin: 0 auto; padding: clamp(var(--space-8), 5vw, 4.5rem) clamp(var(--space-5), 5vw, 4.5rem); }
.admin-page-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-6); margin-bottom: var(--space-8); padding-bottom: var(--space-6); border-bottom: var(--rule-thin) solid var(--color-line); }
.admin-page-heading .eyebrow { margin-bottom: var(--space-3); }
.admin-page-heading h1 { margin: 0; color: var(--color-ink); font-family: var(--font-display); font-size: var(--text-2xl); letter-spacing: 0.05em; line-height: 1.2; }
.admin-page-heading p:not(.eyebrow) { margin: var(--space-3) 0 0; color: var(--color-muted); font-size: var(--text-sm); }
.admin-search { display: grid; grid-template-columns: minmax(0, 1fr) 10rem auto; gap: var(--space-3); margin-bottom: var(--space-5); }
.admin-search--records {
  grid-template-columns: minmax(0, 1fr) minmax(10rem, 12rem) auto;
  align-items: end;
  margin-bottom: var(--space-8);
  padding: var(--space-5) 0;
  border-top: var(--rule-thin) solid var(--color-line);
  border-bottom: var(--rule-thin) solid var(--color-line);
}
.admin-search__field { display: grid; gap: var(--space-2); min-width: 0; }
.admin-search__field > span { color: var(--color-muted); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.07em; }
.admin-search--records button { min-width: 7rem; }
.certificate-table-wrap { overflow: auto; background: var(--color-white); border: var(--rule-thin) solid var(--color-line); }
table { width: 100%; min-width: 48rem; border-collapse: collapse; }
caption { padding: var(--space-4) var(--space-5); color: var(--color-jade-deep); text-align: left; font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; letter-spacing: 0.05em; }
th, td { padding: var(--space-4) var(--space-5); text-align: left; border-bottom: var(--rule-thin) solid var(--color-line); font-size: var(--text-sm); vertical-align: middle; }
th { color: var(--color-muted); background: color-mix(in oklch, var(--color-paper) 76%, var(--color-jade-pale)); font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.06em; white-space: nowrap; }
tbody tr { transition: background var(--dur-fast) var(--ease-out); }
tbody tr:hover { background: color-mix(in oklch, var(--color-jade-pale) 36%, var(--color-white)); }
.table-link { color: var(--color-jade-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 0.22em; }
.status { display: inline-flex; align-items: center; padding: 0.23rem 0.55rem; border-radius: var(--radius-sm); font-size: var(--text-xs); font-weight: 700; line-height: 1.4; white-space: nowrap; }
.status.draft { color: var(--color-warning); background: var(--color-warning-pale); }
.status.published { color: var(--color-success); background: var(--color-success-pale); }
.status.revoked { color: var(--color-danger); background: var(--color-danger-pale); }
.empty-state { padding: var(--space-16); color: var(--color-muted); text-align: center; }
.form-page { max-width: 76rem; }
.certificate-form { padding: clamp(var(--space-6), 4vw, var(--space-10)); background: var(--color-white); border-top: 3px solid var(--color-jade); box-shadow: 0 1.1rem 2.5rem color-mix(in oklch, var(--color-jade-deep) 7%, transparent); }
.certificate-form__section { min-width: 0; margin: 0; padding: 0; border: 0; }
.certificate-form__section > legend { padding: 0; color: var(--color-ink); font-family: var(--font-display); font-size: var(--text-xl); font-weight: 700; letter-spacing: 0.08em; }
.certificate-form__section > p { max-width: 42rem; margin: var(--space-3) 0 var(--space-8); color: var(--color-muted); font-size: var(--text-sm); line-height: 1.8; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-5) var(--space-6); }
.field-span-2 { grid-column: span 2; }
.form-submit { display: flex; align-items: center; gap: var(--space-5); margin-top: var(--space-8); padding-top: var(--space-6); border-top: var(--rule-thin) solid var(--color-line); color: var(--color-muted); font-size: var(--text-sm); }
.admin-detail-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr); align-items: start; gap: clamp(var(--space-6), 5vw, 4.5rem); }
.admin-detail-card h2 { margin-bottom: var(--space-5); }
.admin-actions > form { margin: 0; }

@media (max-width: 900px) {
  .public-header { min-height: 72px; padding-right: var(--space-6); padding-left: var(--space-6); }
  .registry-hero { grid-template-columns: 1fr; gap: var(--space-10); min-height: auto; padding-top: var(--space-16); padding-bottom: var(--space-16); }
  .registry-query { max-width: 41rem; }
  .registry-notes { grid-template-columns: 1fr; gap: var(--space-8); }
  .detail-grid, .admin-detail-grid { grid-template-columns: 1fr; }
  .verification-panel, .admin-detail-card { position: static; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: sticky; top: 0; z-index: 2; flex-direction: row; align-items: center; gap: var(--space-5); padding: var(--space-4) var(--space-5); }
  .admin-brand { flex: 0 0 auto; padding: 0; border: 0; }
  .admin-brand small { display: none; }
  .admin-sidebar nav { display: flex; gap: var(--space-2); margin: 0; }
  .admin-sidebar nav a { padding: var(--space-2) var(--space-3); border-left: 0; border-bottom: 2px solid transparent; }
  .admin-sidebar nav a:hover { border-bottom-color: var(--color-white); }
  .logout-form { margin: 0 0 0 auto; padding: 0; border: 0; }
}

@media (max-width: 620px) {
  .public-header { min-height: 64px; }
  .public-header nav { display: none; }
  .public-brand strong { font-size: 1.3rem; }
  .public-footer { display: grid; padding: var(--space-6); }
  .registry-hero, .registry-notes, .detail-page, .not-found { padding-right: var(--space-5); padding-left: var(--space-5); }
  .registry-intro h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .registry-intro > p:last-child { font-size: var(--text-base); }
  .registry-query { padding: var(--space-8) var(--space-6); }
  .registry-query__controls { grid-template-columns: 1fr; }
  .registry-query button, .detail-actions .button { width: 100%; }
  .registry-notes li { grid-template-columns: 2.1rem minmax(0, 1fr); gap: var(--space-3); }
  .detail-page { padding-top: var(--space-8); }
  .detail-actions { grid-template-columns: 1fr; }
  .login-card { padding: var(--space-8) var(--space-6); }
  .admin-sidebar { gap: var(--space-3); }
  .admin-sidebar nav a:last-child { display: none; }
  .admin-brand .brand-mark { width: 2rem; height: 2rem; font-size: 1rem; }
  .admin-brand strong { font-size: 1.18rem; }
  .logout-form button { font-size: var(--text-xs); }
  .admin-page { padding: var(--space-6) var(--space-5); }
  .admin-page-heading { display: grid; gap: var(--space-5); }
  .admin-page-heading .button { width: 100%; }
  .admin-search { grid-template-columns: 1fr; }
  .admin-search--records { gap: var(--space-4); }
  .admin-search--records button { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .field-span-2 { grid-column: auto; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .admin-detail-grid { gap: var(--space-6); }
  dl > div { grid-template-columns: 1fr; gap: var(--space-1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}

/* 5G-style public portal reconstruction: same information architecture, independent CSS artwork. */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.public-home {
  min-height: 100vh;
  overflow: hidden;
  color: #f2fdfb;
  background: #0b4f88;
}
.public-home .portal-header {
  color: #f2fdfb;
  background: linear-gradient(121deg, #0066a9 0%, #087bb5 43%, #5dc6dd 100%);
}
.public-home .portal-footer { color: #f2fdfb; }
.portal-header {
  position: relative;
  z-index: 5;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 5px clamp(1.5rem, 8.5vw, 15.5rem);
  color: var(--color-ink);
  background: var(--color-paper);
  border-bottom: 1px solid color-mix(in srgb, #1c48a0 45%, transparent);
}
.portal-brand { display: inline-flex; align-items: center; min-width: 0; color: inherit; }
.portal-brand__seal {
  width: 3.1rem;
  height: 3.1rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
}
.portal-brand__copy { display: grid; gap: 0.22rem; margin-left: 0.8rem; white-space: nowrap; }
.portal-brand strong { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.12em; line-height: 1; }
.portal-brand small { font-family: var(--font-data); font-size: 0.53rem; letter-spacing: 0.14em; opacity: 0.76; }
.portal-header nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(0.2rem, 0.85vw, 0.8rem); min-width: 0; }
.portal-header nav a {
  display: grid;
  min-width: 4.75rem;
  min-height: 2rem;
  place-items: center;
  padding: 0 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: inherit;
  font-size: 0.96rem;
  line-height: 1;
  white-space: nowrap;
  transition: border-color 160ms ease, background 160ms ease;
}
.portal-header nav a:hover, .portal-header nav a.is-current { border-color: currentColor; background: color-mix(in srgb, currentColor 6%, transparent); }
.portal-stage {
  position: relative;
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 52% 90% at 2% 58%, rgba(33, 200, 250, 0.56), transparent 73%),
    radial-gradient(ellipse 43% 86% at 100% 42%, rgba(15, 167, 236, 0.46), transparent 72%),
    linear-gradient(121deg, #0066a9 0%, #087bb5 43%, #5dc6dd 100%);
}
.portal-stage::before,
.portal-stage::after { position: absolute; inset: 0; z-index: -1; content: ""; pointer-events: none; }
.portal-stage::before {
  opacity: 0.5;
  background-image:
    radial-gradient(circle at 12% 21%, rgba(255, 255, 255, 0.96) 0 1px, transparent 1.9px),
    radial-gradient(circle at 24% 68%, rgba(255, 255, 255, 0.7) 0 1.2px, transparent 2px),
    radial-gradient(circle at 43% 37%, rgba(255, 255, 255, 0.74) 0 1px, transparent 1.9px),
    radial-gradient(circle at 67% 19%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.8px),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.8) 0 1.2px, transparent 2px);
  background-size: 19rem 16rem, 24rem 20rem, 28rem 25rem, 21rem 18rem, 27rem 23rem;
  animation: portal-drift 32s linear infinite;
}
.portal-stage::after { opacity: 0.18; background: linear-gradient(135deg, transparent 0 47%, rgba(255,255,255,0.56) 49%, transparent 51%) 0 0 / 21rem 21rem; }
.portal-stage__mesh { position: absolute; inset: 0; z-index: -1; opacity: 0.45; background: repeating-radial-gradient(ellipse at 50% 88%, transparent 0 2.8rem, rgba(212, 251, 255, 0.22) 2.9rem 2.96rem, transparent 3.02rem 5.1rem); transform: perspective(900px) rotateX(61deg) translateY(30%); transform-origin: bottom; }
.portal-stage__orbs i { position: absolute; z-index: -1; display: block; width: 11px; height: 11px; border-radius: 50%; background: #f0feff; box-shadow: 0 0 26px 8px rgba(236, 254, 255, 0.62); animation: portal-pulse 5s ease-in-out infinite; }
.portal-stage__orbs i:nth-child(1) { top: 25%; left: 11%; }
.portal-stage__orbs i:nth-child(2) { top: 48%; left: 24%; width: 6px; height: 6px; animation-delay: -1s; }
.portal-stage__orbs i:nth-child(3) { top: 18%; right: 18%; width: 7px; height: 7px; animation-delay: -2.2s; }
.portal-stage__orbs i:nth-child(4) { top: 64%; right: 11%; width: 12px; height: 12px; animation-delay: -3.1s; }
.portal-stage__orbs i:nth-child(5) { top: 35%; right: 37%; width: 5px; height: 5px; animation-delay: -4s; }
.portal-search { width: min(50vw, 58rem); min-width: 42rem; margin: -6.2rem 0 0; text-align: center; }
.portal-search__eyebrow { margin: 0 0 0.5rem; color: rgba(245, 255, 255, 0.75); font-family: var(--font-data); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.28em; }
.portal-search h1 { margin: 0; color: #fff; font-family: var(--font-display); font-size: clamp(2.3rem, 3.4vw, 3.7rem); font-weight: 700; letter-spacing: 0.08em; line-height: 1.25; text-shadow: 0 6px 24px rgba(5, 54, 100, 0.2); }
.portal-search__form { position: relative; display: flex; width: 80%; height: 55px; margin: 1.6rem auto 0; overflow: hidden; background: #fff; border-radius: 5px; box-shadow: 0 10px 30px rgba(5, 47, 95, 0.22); }
.portal-search__icon { position: relative; flex: 0 0 58px; }
.portal-search__icon::before { position: absolute; top: 17px; left: 21px; width: 15px; height: 15px; content: ""; border: 2px solid #9b9b9b; border-radius: 50%; }
.portal-search__icon::after { position: absolute; top: 32px; left: 36px; width: 9px; height: 2px; content: ""; background: #9b9b9b; transform: rotate(47deg); transform-origin: left center; }
.portal-search__form input { height: 55px; min-height: 55px; padding: 0 1rem 0 0; color: #3b3b3b; background: #fff; border: 0; box-shadow: none; font-size: 1rem; }
.portal-search__form input:focus { box-shadow: none; }
.portal-search__form button { width: 20%; min-width: 9rem; height: 55px; min-height: 55px; padding: 0; color: #333; background: #fff128; border: 0; border-radius: 0; box-shadow: none; font-size: 1rem; font-weight: 500; }
.portal-search__form button:hover { color: #222; background: #ffe936; transform: none; box-shadow: none; }
.portal-search__hint, .portal-search__error { margin: 0.9rem 0 0; color: rgba(247, 255, 255, 0.78); font-size: 0.78rem; letter-spacing: 0.04em; }
.portal-search__error { color: #fff9b2; font-weight: 700; }
.portal-footer {
  position: fixed;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 4rem);
  padding: 0.7rem 2rem;
  color: rgba(238, 247, 249, 0.96);
  background: linear-gradient(105deg, #0a74b2, #369bbf 55%, #55c3c9);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.76rem;
  text-align: center;
}
.portal-footer a { color: inherit; text-decoration: underline; text-underline-offset: 0.25em; }
@keyframes portal-drift { to { background-position: 19rem 16rem, -24rem 20rem, 28rem -25rem, -21rem 18rem, 27rem 23rem; } }
@keyframes portal-pulse { 50% { opacity: 0.36; transform: scale(0.58); } }
@media (max-width: 1100px) {
  .portal-header { padding-right: 2rem; padding-left: 2rem; }
  .portal-header nav a { min-width: auto; padding-right: 0.4rem; padding-left: 0.4rem; font-size: 0.85rem; }
  .portal-search { min-width: 0; width: min(80vw, 48rem); }
}
@media (max-width: 720px) {
  .public-home { overflow: auto; }
  .portal-header { min-height: 72px; padding: 0.55rem 1.15rem; }
  .portal-brand__seal { width: 2.35rem; height: 2.35rem; font-size: 1.1rem; }
  .portal-brand__copy { margin-left: 0.55rem; }
  .portal-brand strong { font-size: 1rem; letter-spacing: 0.08em; }
  .portal-brand small { font-size: 0.42rem; }
  .portal-header nav { display: none; }
  .portal-stage { min-height: calc(100vh - 72px); padding: 3rem 1.15rem 8.5rem; }
  .portal-search { width: min(100%, 30rem); margin: -2rem 0 0; }
  .portal-search h1 { font-size: clamp(2rem, 9vw, 2.8rem); }
  .portal-search__form { width: 100%; height: auto; flex-wrap: wrap; }
  .portal-search__icon { flex-basis: 48px; }
  .portal-search__form input { width: calc(100% - 48px); padding-right: 0.7rem; }
  .portal-search__form button { width: 100%; min-width: 0; }
  .portal-footer { position: static; display: grid; gap: 0.5rem; min-height: 0; padding: 1rem; }
}

/* 原官网 5gypt.cn 首屏复刻：保留本系统查询路由，其他视觉、素材和坐标按原页面实现。 */
.public-body.public-home--5gypt {
  min-width: 1200px;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
  background: #0b4f88 url('/static/img/5gypt/sy.jpg') center center / cover no-repeat fixed;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}
.public-home--5gypt #main-content { min-height: 0; }
.official-head { position: relative; z-index: 4; box-sizing: content-box; width: 100%; height: 80px; padding: 5px 0; background: transparent; border-bottom: 1px solid #1c48a0; }
.official-head__content { width: 63%; min-width: 1200px; height: 80px; margin: 0 auto; overflow: hidden; }
.official-logo { display: block; float: left; width: 302px; height: 80px; overflow: hidden; }
.official-logo img { width: 302px; height: 80px; object-fit: contain; }
.official-nav { display: flex; float: left; width: 60%; height: 80px; align-items: center; margin-left: 78px; overflow: hidden; white-space: nowrap; transform: translateY(-1px); }
.official-nav a { display: inline-flex; box-sizing: border-box; height: 30px; align-items: center; justify-content: center; margin: 0 8.25px; color: #f2fdfb; border: 1px solid transparent; border-radius: 20px; font-family: "Microsoft YaHei", "微软雅黑", sans-serif; font-size: 16px; line-height: 30px; white-space: nowrap; }
/* These widths match each label's rendered text, so they are positional: adding or
   removing a nav link means renumbering them, or the wrong label gets the wrong pill.
   Order today: 首页 / 关于我们 / 服务商 / 资讯中心 / 商通云. */
.official-nav a:nth-child(1) { width: 34px; }
.official-nav a:nth-child(2) { width: 64px; }
.official-nav a:nth-child(3) { width: 48px; }
.official-nav a:nth-child(4) { width: 64px; }
.official-nav a:nth-child(5) { width: 48px; }
.official-nav a:nth-child(2), .official-nav a:nth-child(4) { margin-left: 7.25px; margin-right: 9.25px; }
.official-nav a:hover, .official-nav a.is-current { color: #f2fdfb; border-color: #fff; }
.official-index { position: relative; min-height: calc(100vh - 91px); overflow: hidden; }
.official-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.official-canvas canvas { position: absolute; inset: 0; display: block; width: 100% !important; height: 100% !important; }
.official-search { position: absolute; z-index: 2; top: calc(30% - 37px); left: 25%; width: 50%; height: 200px; }
.official-search h1 { width: 100%; margin: 0; color: #fff; text-align: center; font-family: "Microsoft YaHei", "微软雅黑", sans-serif; font-size: 50px; font-weight: 400; line-height: normal; }
.official-search__form { display: flex; width: 80%; height: 55px; margin: 20px auto; overflow: hidden; background: #fff; border-radius: 5px; }
.official-search__icon { display: block; flex: 0 0 57px; width: 57px; height: 55px; padding: 10px 1%; }
.official-search__icon img { width: 35px; height: 35px; }
.official-search__form input { width: calc(80% - 57px); height: 55px; min-height: 55px; padding: 10px 0; color: #999; background: #fff; border: 0; border-radius: 0; box-shadow: none; font-family: "Microsoft YaHei", "微软雅黑", sans-serif; font-size: 16px; }
.official-search__form input:focus { box-shadow: none; }
.official-search__form button { width: 20%; min-width: 0; height: 55px; min-height: 55px; padding: 0; color: #222; background: #fff128; border: 0; border-radius: 0; box-shadow: none; font-family: "Microsoft YaHei", "微软雅黑", sans-serif; font-size: 16px; font-weight: 400; }
.official-search__form button:hover { color: #222; background: #fff128; box-shadow: none; transform: none; }
.official-search__error { margin: 0; color: #fff128; text-align: center; font-size: 14px; }
.official-footer { position: fixed; z-index: 5; right: 0; bottom: 0; left: 0; box-sizing: border-box; min-width: 1200px; height: 91px; min-height: 0; color: #eef7f9; background: transparent; font-family: "Microsoft YaHei", "微软雅黑", sans-serif; font-size: 14px; }
.official-footer__first { display: flex; width: 62.5%; height: 60px; align-items: center; justify-content: center; margin: 0 auto; }
.official-footer__first > span { display: inline-flex; height: 60px; align-items: center; justify-content: center; text-align: center; white-space: nowrap; }
.official-footer__first > span:first-child { width: 43%; }
.official-footer__first > span:last-child { width: 34%; }
.official-footer__records { width: 600px; gap: 5px; padding: 20px 0; }
.official-footer__records img { width: 20px; height: 20px; object-fit: contain; }
.official-footer__second { display: flex; height: 31px; align-items: flex-start; justify-content: center; gap: 60px; padding-bottom: 10px; color: #fff; line-height: 21px; }
.official-assistant { position: fixed; z-index: 8; right: 244px; bottom: 50px; display: block; width: 100px; height: 110px; overflow: hidden; }
.official-assistant img { display: block; width: 100%; height: 100%; }
@media (max-width: 1200px) {
  .public-body.public-home--5gypt { min-width: 0; overflow: auto; background-attachment: scroll; }
  .official-head__content { width: 100%; min-width: 0; padding: 0 20px; }
  .official-nav { width: calc(100% - 382px); margin-left: 80px; }
  .official-nav a { width: auto; flex: 1; min-width: 0; font-size: 14px; }
  .official-footer { min-width: 0; }
  .official-footer__first { width: 96%; }
}
@media (max-width: 720px) {
  .official-head { height: 76px; padding: 3px 0; }
  .official-head__content { height: 70px; padding: 0 16px; }
  .official-logo { width: 264px; height: 70px; }
  .official-logo img { width: 264px; height: 70px; }
  .official-nav { display: none; }
  .official-index { min-height: calc(100vh - 76px); }
  .official-search { top: 28%; left: 7%; width: 86%; }
  .official-search h1 { font-size: 31px; }
  .official-search__form { width: 100%; }
  .official-search__form input { width: calc(100% - 57px); }
  .official-search__form button { position: absolute; top: 65px; right: 0; width: 100%; }
  .official-footer { position: absolute; min-height: 52px; padding: 8px 16px; }
  .official-footer__first, .official-footer__second { display: none; }
}

/* 每个顶部菜单都有独立页面，沿用首屏的蓝色科技视觉与导航层级。 */
.public-body.public-info--5gypt {
  min-height: 100vh;
  color: #f2fdfb;
  background: #0b4f88 url('/static/img/5gypt/sy.jpg') center / cover fixed;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}
.official-info {
  min-height: calc(100vh - 91px);
  padding: 5.5rem max(8vw, calc((100% - 1120px) / 2));
  background: linear-gradient(112deg, rgba(3, 49, 137, 0.83), rgba(3, 128, 184, 0.5));
}
.official-info__hero { max-width: 58rem; }
.official-info__hero > p {
  margin: 0 0 1rem;
  color: #e4fdff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.official-info__hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.official-info__hero > span { display: block; width: 4rem; height: 2px; margin: 1.7rem 0; background: #fff128; }
.official-info__hero > div { max-width: 44rem; color: rgba(242, 253, 251, 0.9); font-size: 1.1rem; line-height: 2; }
.official-info__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 4rem; }
.official-info__card {
  min-height: 13.5rem;
  padding: 2rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(229, 251, 255, 0.35);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.2), 0 1.4rem 3rem rgba(0, 33, 103, 0.18);
  backdrop-filter: blur(7px);
}
.official-info__card > span { color: #fff128; font-family: var(--font-data); font-size: 0.8rem; letter-spacing: 0.14em; }
.official-info__card h2 { margin: 1.4rem 0 0.7rem; color: #fff; font-size: 1.35rem; font-weight: 500; letter-spacing: 0.08em; }
.official-info__card p { margin: 0; color: rgba(242, 253, 251, 0.86); font-size: 0.95rem; line-height: 1.9; }
.official-info__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8.8rem;
  min-height: 2.9rem;
  margin-top: 3.5rem;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 1.5rem;
  transition: color 160ms ease, background 160ms ease;
}
.official-info__back:hover { color: #183870; background: #fff128; border-color: #fff128; }
.official-footer.official-footer--flow { position: static; min-width: 0; height: auto; padding: 0.75rem 1rem; background: rgba(5, 77, 137, 0.9); }
.official-footer--flow .official-footer__first { width: min(100%, 1150px); height: auto; justify-content: space-between; gap: 1rem; }
.official-footer--flow .official-footer__first > span { width: auto; height: auto; white-space: normal; }
.official-footer--flow .official-footer__second { height: auto; padding: 0.5rem 0; }
@media (max-width: 720px) {
  .public-body.public-home--5gypt, .public-body.public-info--5gypt { min-width: 0; background-attachment: scroll; }
  .official-head { height: 116px; padding: 3px 0; }
  .official-head__content { height: 110px; overflow: visible; }
  .official-logo { float: none; width: 226px; height: 65px; margin: 0 auto; }
  .official-logo img { width: 245px; height: 65px; }
  .official-nav { display: flex; float: none; width: 100%; height: 40px; margin: 0; overflow-x: auto; scrollbar-width: none; }
  .official-nav::-webkit-scrollbar { display: none; }
  .official-nav a, .official-nav a:nth-child(n) { width: auto; min-width: max-content; flex: 0 0 auto; margin: 0 0.6rem; padding: 0 0.2rem; font-size: 14px; }
  .official-index { min-height: calc(100vh - 116px); }
  .official-search { top: 20%; left: 5%; width: 90%; height: auto; }
  .official-search h1 { font-size: clamp(1.65rem, 8vw, 2rem); letter-spacing: 0.035em; line-height: 1.35; overflow-wrap: anywhere; }
  .official-search__form { display: grid; grid-template-columns: 48px minmax(0, 1fr); grid-template-rows: 55px 55px; width: 100%; height: 110px; margin-top: 1rem; overflow: visible; }
  .official-search__icon { grid-column: 1; grid-row: 1; width: 48px; height: 55px; padding: 10px 6px; }
  .official-search__icon img { width: 35px; height: 35px; }
  .official-search__form input { grid-column: 2; grid-row: 1; width: 100%; min-width: 0; height: 55px; padding-right: 0.7rem; }
  .official-search__form button { position: static; grid-column: 1 / -1; grid-row: 2; width: 100%; min-width: 0; height: 55px; }
  .official-assistant { right: 16px; bottom: 16px; width: 72px; height: 79px; }
  .official-info { min-height: calc(100vh - 116px); padding: 3.3rem 1.3rem; }
  .official-info__hero h1 { font-size: 2.2rem; }
  .official-info__hero > div { font-size: 1rem; }
  .official-info__grid { grid-template-columns: 1fr; margin-top: 2.4rem; }
  .official-info__card { min-height: 0; padding: 1.45rem; }
  .official-footer.official-footer--flow { position: static; }
  .official-footer--flow .official-footer__first, .official-footer--flow .official-footer__second { display: grid; gap: 0.45rem; }
}

/* 原官网内页重构：沿用其页面密度、标题和栅格结构，每个入口都有真实详情/查询/登录动作。 */
.public-body.public-info--5gypt {
  min-width: 1200px;
  color: #161d28;
  background: #fff;
  font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}
.public-info--5gypt .official-head { background: linear-gradient(104deg, #075ba7 0%, #0a9cc4 48%, #71d4c2 100%); }
.public-info--5gypt .official-footer--flow { position: static; min-width: 1200px; height: auto; padding: 0.65rem 0 0.9rem; background: linear-gradient(104deg, #075ba7 0%, #0a9cc4 48%, #71d4c2 100%); }
.public-info--5gypt .official-footer--flow .official-footer__first { height: 42px; }
.portal-page #main-content { min-height: calc(100vh - 172px); }

/* 商城案例：居中标题 + 九宫格真实详情入口。 */
.case-show { width: 920px; min-height: calc(100vh - 172px); margin: 0 auto; padding: 24px 0 32px; }
.case-show > header { display: grid; place-items: center; margin-bottom: 26px; }
.case-show > header h1 { margin: 0; font-size: 28px; font-weight: 500; line-height: 1.25; }
.case-show > header span { position: relative; margin-top: 2px; padding-bottom: 12px; color: #31578f; font-family: Arial, sans-serif; font-size: 12px; }
.case-show > header span::before { position: absolute; right: -40px; bottom: 0; left: -40px; height: 1px; content: ""; background: #1c6bd1; }
.case-show > header span::after { position: absolute; bottom: -6px; left: calc(50% - 6px); width: 0; height: 0; content: ""; border-top: 6px solid #1c6bd1; border-right: 6px solid transparent; border-left: 6px solid transparent; }
.case-show__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 18px; }
.case-card { display: block; overflow: hidden; border: 4px solid #d7e8f8; border-radius: 11px; background: #fff; box-shadow: 0 5px 15px rgba(22, 81, 147, 0.08); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.case-card:hover { border-color: #84c7f8; box-shadow: 0 12px 26px rgba(14, 87, 164, 0.22); transform: translateY(-4px); }
.case-card__mockup { position: relative; height: 164px; overflow: hidden; background: linear-gradient(135deg, #122853, #265db2 64%, #75cad0); }
.case-card__mockup::before { position: absolute; top: 0; right: 0; left: 0; height: 26px; content: ""; background: repeating-linear-gradient(90deg, rgba(255,255,255,.16) 0 23px, transparent 23px 30px), rgba(6, 14, 50, .76); }
.case-card__mockup::after { position: absolute; top: 35px; bottom: 8px; left: 10px; width: 38px; content: ""; border-radius: 4px; background: linear-gradient(#1a3456 18%, #234d70 18% 23%, transparent 23% 33%, #234d70 33% 38%, transparent 38% 48%, #234d70 48% 53%, transparent 53% 63%, #234d70 63% 68%, transparent 68%); }
.case-card__mockup i { position: absolute; top: 40px; right: 18px; bottom: 13px; left: 58px; border: 2px solid rgba(78, 227, 214, .55); border-radius: 4px; background: linear-gradient(125deg, rgba(16, 190, 196, .36), rgba(1, 11, 49, .2)), radial-gradient(circle at 25% 52%, #ffd168 0 15%, transparent 16%), linear-gradient(135deg, transparent 45%, rgba(235,255,255,.18) 46% 48%, transparent 49%); }
.case-card__mockup b { position: absolute; top: 54px; right: 35px; width: 56%; height: 24px; border-radius: 2px; background: rgba(255,255,255,.77); }
.case-card__mockup em { position: absolute; right: 36px; bottom: 27px; width: 80px; height: 30px; border-radius: 3px; background: #ee4c35; }
.case-card__mockup span { position: absolute; right: 14px; bottom: 13px; width: 28px; height: 28px; border: 2px solid #60e7de; border-radius: 50%; }
.case-card--lime .case-card__mockup { background: linear-gradient(135deg, #f0f6e3, #abdf78 42%, #6b9b51); }
.case-card--lime .case-card__mockup i { background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,241,188,.5)), radial-gradient(circle at 25% 52%, #79ab45 0 15%, transparent 16%); }
.case-card--gold .case-card__mockup { background: linear-gradient(135deg, #742e20, #f5c277 58%, #fff6dc); }
.case-card--violet .case-card__mockup { background: linear-gradient(135deg, #111e45, #4a5c91 52%, #d3dce7); }
.case-card--jade .case-card__mockup { background: linear-gradient(135deg, #f1f8e9, #71b96f 48%, #f4c08d); }
.case-card--amber .case-card__mockup { background: linear-gradient(135deg, #173c62, #1b78af 55%, #eabf61); }
.case-card--green .case-card__mockup { background: linear-gradient(135deg, #f7f8ef, #d3e5a5 45%, #81b5bc); }
.case-card--purple .case-card__mockup { background: linear-gradient(135deg, #18234a, #33375f 50%, #a26180); }
.case-card--forest .case-card__mockup { background: linear-gradient(135deg, #1b2c27, #426e50 50%, #e8d0a1); }
.case-card__meta { position: relative; min-height: 78px; padding: 8px 12px 11px; }
.case-card__meta h2 { margin: 0; color: #1f2838; font-size: 16px; font-weight: 500; }
.case-card__meta time { display: block; margin-top: 3px; color: #a0aabd; font-size: 12px; }
.case-card__meta strong { position: absolute; right: 12px; bottom: 11px; color: #0d6ac2; font-size: 12px; font-weight: 500; }

/* 资讯中心：双栏十条列表、真实详情和分页。 */
.news-index { width: 1200px; min-height: calc(100vh - 172px); margin: 0 auto; padding: 50px 0 16px; }
.news-index > h1 { width: 152px; margin: 0 0 30px; padding: 7px 0; color: #fff128; border-radius: 999px; background: #0756a8; text-align: center; font-size: 24px; font-weight: 500; }
.news-index__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 70px; }
.news-card { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 22px; min-height: 111px; padding: 8px 0 12px; border-bottom: 1px dashed #dfe4ea; }
.news-card__thumb { position: relative; display: block; height: 76px; overflow: hidden; background: linear-gradient(172deg, #fff, #e8eef3); }
.news-card__thumb::before { position: absolute; top: 13px; left: 8px; width: 62px; height: 8px; content: ""; background: #e94629; }
.news-card__thumb::after { position: absolute; top: 31px; right: 9px; bottom: 13px; left: 15px; content: ""; background: repeating-linear-gradient(0deg, #c6cbd2 0 2px, transparent 2px 11px); opacity: .85; }
.news-card__thumb i { position: absolute; z-index: 2; right: 13px; bottom: 13px; width: 58px; height: 18px; background: #cdd5df; }
.news-card__thumb b { position: absolute; z-index: 2; top: 12px; right: 12px; width: 22px; height: 8px; border-radius: 6px; background: #f1f4f6; }
/* Ported article bodies bring their own inline styles; constrain what they can do
   to the page so a wide image or table cannot break the column. */
.portal-detail__article { max-width: 100%; overflow-x: auto; color: #2b3038; font-size: 16px; line-height: 1.9; }
.portal-detail__article img { max-width: 100%; height: auto; }
.portal-detail__article p { margin: 0 0 14px; }
.portal-detail__article table { max-width: 100%; }

/* Real article covers replace the placeholder mockup, so its CSS-drawn furniture
   has to stand down for those cards. */
.news-card__thumb--photo { background: #f2f4f7; }
.news-card__thumb--photo::before, .news-card__thumb--photo::after { content: none; }
.news-card__thumb--photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.news-card__thumb--teal { background: linear-gradient(140deg, #f9fafb, #d5e7de); }.news-card__thumb--violet { background: linear-gradient(140deg, #fafafa, #dbd6f0); }.news-card__thumb--gold { background: linear-gradient(140deg, #fff, #f4ddad); }.news-card__thumb--jade { background: linear-gradient(140deg, #fff, #c9e9dd); }.news-card__thumb--green { background: linear-gradient(140deg, #fff, #d7e8b8); }
.news-card h2 { margin: 5px 0 5px; font-size: 17px; font-weight: 500; line-height: 1.4; }.news-card h2 a:hover { color: #086ec5; text-decoration: underline; }.news-card time { display: block; color: #000; font-size: 16px; }.news-card p { display: none; }
.news-pagination { display: flex; justify-content: center; margin: 40px 0 0; }.news-pagination a, .news-pagination span { display: grid; width: 36px; height: 34px; place-items: center; color: #0f1116; background: #f4f5f7; font-size: 15px; }.news-pagination a:hover, .news-pagination .is-current { color: #fff; background: #1d71bb; }

/* 5G 优选：暗色首屏、检索、服务路径和能力区块。 */
.preferred-hero { position: relative; min-height: 620px; overflow: hidden; background: radial-gradient(ellipse at 55% 22%, rgba(103, 179, 203, .52), transparent 35%), linear-gradient(145deg, #071018, #172e36 55%, #243d3b); }
.preferred-hero::before { position: absolute; inset: 0; content: ""; opacity: .55; background: repeating-radial-gradient(ellipse at 50% 130%, transparent 0 78px, rgba(113, 217, 239, .34) 79px 81px, transparent 82px 140px), linear-gradient(180deg, transparent 35%, rgba(30, 71, 72, .88)); }.preferred-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.48), transparent 70%); }.preferred-hero__content { position: relative; z-index: 1; width: 960px; margin: 0 auto; padding: 95px 0 0; color: #eaf6f4; }.preferred-hero__kicker { margin: 0; color: #97bbc5; letter-spacing: .28em; }.preferred-hero h1 { margin: 14px 0 2px; font-size: 82px; line-height: 1; letter-spacing: .06em; }.preferred-hero h2 { margin: 0; font-size: 26px; letter-spacing: .24em; }.preferred-hero__content > p:not(.preferred-hero__kicker) { width: 440px; color: #b2c5c9; line-height: 1.9; }.preferred-hero__tiles { display: flex; gap: 12px; margin-top: 36px; }.preferred-hero__tiles span { display: grid; width: 128px; height: 148px; place-items: end center; padding-bottom: 17px; border: 2px solid rgba(221,246,249,.78); border-radius: 5px; background: linear-gradient(145deg, rgba(73,154,172,.82), rgba(13,30,37,.72)); font-weight: 700; }.preferred-query { position: relative; z-index: 2; width: 520px; margin: -45px auto 0; padding: 22px 30px 30px; color: #fff; text-align: center; background: rgba(24, 56, 68, .91); box-shadow: 0 10px 35px rgba(0,0,0,.25); }.preferred-query h2 { margin: 0; color: #69e3ef; font-size: 22px; letter-spacing: .28em; }.preferred-query p { margin: 7px 0 16px; color: #c8d9dc; font-size: 13px; }.preferred-query form { display: flex; overflow: hidden; border: 5px solid rgba(255,255,255,.15); border-radius: 999px; background: #fff; }.preferred-query input { min-height: 42px; padding-left: 22px; border: 0; border-radius: 0; }.preferred-query button { width: 110px; color: #fff; background: #295ee8; border: 0; border-radius: 0; }.preferred-path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; width: 960px; margin: 0 auto; padding: 85px 0 68px; }.preferred-path article { position: relative; min-height: 150px; padding: 0 20px 0 32px; border-left: 1px dashed #8faeb4; }.preferred-path span { color: #55cdd4; font-size: 28px; font-weight: 700; }.preferred-path h2 { margin: 5px 0; font-size: 20px; }.preferred-path p { margin: 0; color: #667680; line-height: 1.8; }.preferred-points { padding: 70px 0 100px; color: #fff; background: linear-gradient(126deg, #5c8deb, #26d0e3); text-align: center; }.preferred-points header p { margin: 0; opacity: .72; }.preferred-points h2 { margin: 7px 0 36px; font-size: 28px; }.preferred-points > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; width: 960px; margin: 0 auto; }.preferred-points article { padding: 30px; text-align: left; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.34); }.preferred-points i { display: block; width: 34px; height: 34px; border: 2px solid #fff; border-radius: 50%; }.preferred-points h3 { margin: 15px 0 5px; font-size: 20px; }.preferred-points p { margin: 0; line-height: 1.8; opacity: .86; }

/* 关于我们：复刻原页的彩色叙事带与图文节奏。 */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 325px; padding: 55px calc((100% - 1120px) / 2); color: #fff; background: linear-gradient(106deg, #0c74fb, #03bff0); }.about-hero__copy { max-width: 500px; }.about-hero__copy > p { margin: 0; font-size: 14px; letter-spacing: .2em; }.about-hero h1 { margin: 12px 0; font-size: 34px; }.about-hero strong { display: block; line-height: 1.75; font-weight: 400; }.about-hero ul { display: flex; gap: 16px; padding: 0; list-style: none; font-size: 13px; }.about-hero li::before { content: "●"; margin-right: 5px; color: #e5ff8c; }.about-hero__art { position: relative; min-height: 200px; overflow: hidden; }.about-hero__art span { position: absolute; top: 15px; right: 100px; display: grid; width: 160px; height: 160px; place-items: center; color: #246aeb; background: #fff; border-radius: 18px; font-size: 60px; font-weight: 700; transform: rotate(9deg); box-shadow: 0 18px 36px rgba(0,55,135,.2); }.about-hero__art i, .about-hero__art b, .about-hero__art em { position: absolute; display: block; border: 2px solid #bafef2; border-radius: 9px; transform: rotate(26deg); }.about-hero__art i { top: 50px; right: 5px; width: 38px; height: 70px; }.about-hero__art b { top: 146px; right: 280px; width: 48px; height: 35px; }.about-hero__art em { top: 7px; right: 250px; width: 30px; height: 50px; }.about-intro, .about-card { width: 1040px; margin: 0 auto; padding: 75px 0; }.about-intro header, .about-card header { text-align: center; }.about-intro header p, .about-card header p { margin: 0; color: #cddbef; letter-spacing: .4em; }.about-intro h2, .about-card h2 { margin: 7px 0 35px; font-size: 34px; font-weight: 500; }.about-intro__grid { display: grid; grid-template-columns: 340px minmax(0,1fr); gap: 65px; align-items: center; }.about-orbit { position: relative; width: 250px; height: 250px; margin: 0 auto; border: 2px solid #2a85fd; border-radius: 50%; transform: rotate(-20deg); }.about-orbit::before, .about-orbit::after { position: absolute; inset: 35px -38px; content: ""; border: 1px solid #2a85fd; border-radius: 50%; }.about-orbit::after { transform: rotate(65deg); }.about-orbit strong { position: absolute; inset: 0; display: grid; place-items: center; color: #287bf1; font-size: 36px; transform: rotate(20deg); }.about-intro article p { margin: 0 0 16px; color: #4e5560; line-height: 2; text-indent: 2em; }.about-system { display: grid; grid-template-columns: 1fr 1fr; min-height: 410px; padding: 72px calc((100% - 1040px) / 2); color: #fff; background: linear-gradient(124deg,#2693ff,#4a7eea); }.about-system h2 { margin: 5px 0 12px; font-size: 34px; font-weight: 500; }.about-system strong { display: block; max-width: 440px; font-weight: 400; line-height: 1.8; }.about-system ul { display: grid; gap: 17px; margin: 38px 0 0; padding: 0; list-style: none; }.about-system li { display: grid; grid-template-columns: 100px minmax(0,1fr); gap: 12px; }.about-system b { font-size: 18px; }.about-system span { color: rgba(255,255,255,.8); }.about-chart { position: relative; width: 300px; height: 230px; margin: 40px auto 0; border: 16px solid #fff; border-radius: 13px; background: #f5ffff; box-shadow: 0 22px 30px rgba(27,59,176,.35); transform: perspective(600px) rotateX(52deg) rotateZ(-9deg); }.about-chart i { position: absolute; bottom: 36px; width: 9px; border-radius: 9px 9px 0 0; background: #58d9f4; }.about-chart i:nth-child(1) { left: 52px; height: 72px; }.about-chart i:nth-child(2) { left: 112px; height: 130px; }.about-chart i:nth-child(3) { left: 172px; height: 95px; }.about-chart b { position: absolute; top: 34px; left: 90px; color: #ef5f8e; font-size: 38px; }.about-card > div { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 55px; }.about-card__art { position: relative; height: 230px; overflow: hidden; border-radius: 50% 50% 0 0; background: radial-gradient(circle at 50% 70%, #dff9ff 0 18%, transparent 19%), linear-gradient(180deg,transparent 48%,#eaf9ff 49%); }.about-card__art::before { position: absolute; top: 30px; left: 24%; width: 210px; height: 210px; content: ""; border: 2px solid #91d7ff; border-radius: 50%; }.about-card__art span { position: absolute; top: 88px; left: 44%; display: grid; width: 54px; height: 54px; place-items: center; color: #fff; border-radius: 50%; background: #30c8af; }.about-card article { padding: 22px 30px; box-shadow: 0 4px 18px rgba(21,87,170,.12); }.about-card article p { padding: 14px 0; margin: 0; color: #66717f; border-bottom: 1px solid #eef0f4; }.about-card article p:last-child { border: 0; }.about-card article b { display: block; margin-bottom: 5px; color: #2f333c; }.about-faq { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 470px; padding: 70px calc((100% - 1040px) / 2); color: #fff; background: linear-gradient(145deg,#048df7,#0768d6); }.about-faq h2 { margin: 0 0 22px; font-size: 30px; font-weight: 500; }.about-faq ul { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }.about-faq li { display: grid; gap: 3px; }.about-faq strong { font-size: 15px; }.about-faq span { max-width: 530px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.65; }.about-faq__art { position: relative; width: 250px; height: 210px; margin: 70px auto 0; transform: rotate(-8deg); }.about-faq__art::before { position: absolute; right: 20px; bottom: 0; left: 20px; height: 80px; content: ""; border-radius: 8px; background: #dff6ff; box-shadow: 0 14px 0 #0a5ac0; }.about-faq__art i, .about-faq__art b, .about-faq__art em { position: absolute; bottom: 75px; display: block; width: 48px; background: #effbff; box-shadow: 10px 9px 0 #0b58ae; }.about-faq__art i { left: 55px; height: 120px; }.about-faq__art b { left: 112px; height: 170px; }.about-faq__art em { left: 170px; height: 106px; }

/* 服务商入口与案例/资讯详情。 */
.provider-gateway { position: relative; min-height: calc(100vh - 91px); overflow: hidden; background: radial-gradient(circle at 76% 47%, rgba(28,221,255,.7) 0 4px, transparent 5px), radial-gradient(circle at 75% 45%, transparent 0 16%, rgba(72,225,255,.62) 16.4% 16.8%, transparent 17.2%), linear-gradient(114deg,#064eaf,#101561 62%,#080a58); }.provider-gateway::before { position: absolute; inset: 0; content: ""; opacity: .5; background: linear-gradient(25deg, transparent 30%, rgba(73,223,255,.55) 30.1% 30.3%, transparent 30.5%), linear-gradient(-27deg, transparent 66%, rgba(73,223,255,.44) 66.1% 66.3%, transparent 66.5%); }.provider-gateway__card { position: relative; z-index: 2; width: 570px; margin: 100px 0 0 calc(50% - 360px); padding: 52px 80px 58px; background: #fff; border-radius: 12px; box-shadow: 0 14px 24px rgba(23,39,148,.52); text-align: center; }.provider-gateway__card p { margin: 0; color: #2abef0; letter-spacing: .26em; }.provider-gateway__card h1 { margin: 12px 0 6px; color: #30bdea; font-size: 34px; font-weight: 400; }.provider-gateway__card > span { color: #30bdea; font-size: 21px; }.provider-gateway__rows { display: grid; gap: 0; margin: 60px 0 22px; text-align: left; }.provider-gateway__rows i { padding: 14px 0; color: #777; border-bottom: 1px solid #e8e8e8; font-style: normal; }.provider-gateway__card > a { display: grid; height: 54px; place-items: center; color: #fff; background: #30bdea; }.provider-gateway__card > a:hover { background: #159bc8; }.provider-gateway__mesh { position: absolute; top: 7%; right: 4%; width: 600px; height: 600px; border: 2px solid rgba(83,234,255,.5); border-radius: 50%; transform: rotate(19deg) skew(5deg); }.provider-gateway__mesh::before, .provider-gateway__mesh::after { position: absolute; content: ""; border: 2px solid rgba(83,234,255,.4); border-radius: 50%; }.provider-gateway__mesh::before { inset: 85px -32px; }.provider-gateway__mesh::after { inset: -32px 85px; }.provider-gateway__mesh i { position: absolute; display: block; width: 11px; height: 11px; border-radius: 50%; background: #75f3ff; box-shadow: 0 0 18px #75f3ff; }.provider-gateway__mesh i:nth-child(1) { top: 26px; left: 180px; }.provider-gateway__mesh i:nth-child(2) { top: 130px; right: 5px; }.provider-gateway__mesh i:nth-child(3) { right: 125px; bottom: 40px; }.provider-gateway__mesh i:nth-child(4) { bottom: 125px; left: 7px; }.provider-gateway__mesh i:nth-child(5) { top: 260px; left: 278px; }
.portal-detail__body { width: 900px; min-height: calc(100vh - 172px); margin: 0 auto; padding: 45px 0 78px; }.portal-detail__back { color: #1c6bd1; font-size: 15px; }.portal-detail__eyebrow { margin: 48px 0 6px; color: #1e83dc; font-size: 13px; font-weight: 700; letter-spacing: .2em; }.portal-detail h1 { max-width: 700px; margin: 0; font-size: 38px; line-height: 1.35; }.portal-detail time { display: block; margin: 12px 0 25px; color: #758398; }.portal-detail__visual { position: relative; height: 340px; overflow: hidden; margin: 10px 0 30px; border-radius: 10px; background: linear-gradient(135deg,#0d2150,#2977bd 62%,#87d4dd); }.portal-detail__visual::before { position: absolute; top: 0; right: 0; left: 0; height: 46px; content: ""; background: repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 48px, transparent 48px 59px), rgba(8,14,40,.8); }.portal-detail__visual i { position: absolute; top: 75px; right: 100px; bottom: 65px; left: 120px; border: 3px solid rgba(124,243,230,.7); background: linear-gradient(135deg,rgba(20,204,198,.45),rgba(255,255,255,.05)); }.portal-detail__visual b { position: absolute; top: 110px; right: 160px; width: 42%; height: 52px; background: rgba(255,255,255,.78); }.portal-detail__visual em { position: absolute; right: 160px; bottom: 95px; width: 132px; height: 45px; background: #ee5139; }.portal-detail__visual span { position: absolute; right: 60px; bottom: 60px; width: 58px; height: 58px; border: 4px solid #63e7df; border-radius: 50%; }.portal-detail__visual--violet { background: linear-gradient(135deg,#292652,#887dd0,#d8d7f0); }.portal-detail__visual--gold { background: linear-gradient(135deg,#6d2b16,#f2af55,#fbf0ca); }.portal-detail__visual--jade { background: linear-gradient(135deg,#f3f9ee,#69b872,#efbc88); }.portal-detail__visual--green { background: linear-gradient(135deg,#e7f4dc,#7fba77,#38715b); }.portal-detail__visual--purple { background: linear-gradient(135deg,#1c2347,#695b99,#e0a0af); }.portal-detail__paragraph { max-width: 760px; margin: 0 0 17px; color: #4f5b68; font-size: 16px; line-height: 2; text-indent: 2em; }.portal-detail__action { display: inline-grid; min-width: 150px; height: 46px; place-items: center; margin-top: 20px; color: #fff; background: #1b72c9; }.portal-detail__action:hover { background: #075cae; }

@media (max-width: 720px) {
  .public-body.public-info--5gypt { min-width: 0; }.public-info--5gypt .official-footer--flow { min-width: 0; }.public-info--5gypt .official-footer--flow .official-footer__first { height: auto; }.portal-page #main-content { min-height: 0; }
  .case-show, .news-index, .portal-detail__body { width: auto; min-height: 0; margin: 0; padding: 30px 16px; }.case-show__grid { grid-template-columns: 1fr; gap: 16px; }.case-card__mockup { height: 180px; }.news-index { padding-top: 30px; }.news-index__grid { grid-template-columns: 1fr; }.news-card { grid-template-columns: 120px minmax(0, 1fr); gap: 12px; }.news-card__thumb { height: 67px; }.news-card h2 { margin-top: 0; font-size: 15px; }.news-card time { font-size: 13px; }.news-pagination { margin-top: 25px; }.news-pagination a, .news-pagination span { width: 30px; }
  .preferred-hero { min-height: 530px; }.preferred-hero__content { width: auto; padding: 60px 22px; }.preferred-hero h1 { font-size: 57px; }.preferred-hero h2 { font-size: 19px; }.preferred-hero__content > p:not(.preferred-hero__kicker) { width: auto; }.preferred-hero__tiles { display: grid; grid-template-columns: repeat(3, 1fr); }.preferred-hero__tiles span { width: auto; height: 80px; padding-bottom: 9px; font-size: 12px; }.preferred-query { width: calc(100% - 32px); padding: 18px; }.preferred-path, .preferred-points > div { grid-template-columns: 1fr; gap: 18px; width: auto; padding-right: 22px; padding-left: 22px; }.preferred-path { padding-top: 65px; padding-bottom: 45px; }.preferred-points { padding: 52px 0; }
  .about-hero, .about-system, .about-faq { grid-template-columns: 1fr; padding: 52px 22px; }.about-hero { min-height: 510px; }.about-hero h1 { font-size: 29px; }.about-hero ul { flex-wrap: wrap; }.about-hero__art { min-height: 150px; }.about-hero__art span { top: 0; right: 18%; width: 120px; height: 120px; font-size: 45px; }.about-intro, .about-card { width: auto; padding: 52px 22px; }.about-intro h2, .about-card h2, .about-system h2 { font-size: 28px; }.about-intro__grid, .about-card > div { grid-template-columns: 1fr; gap: 25px; }.about-system { min-height: 0; }.about-chart { transform: scale(.82) perspective(600px) rotateX(52deg) rotateZ(-9deg); }.about-faq__art { margin-top: 25px; }.provider-gateway { min-height: calc(100vh - 116px); }.provider-gateway__card { width: calc(100% - 32px); margin: 55px auto; padding: 42px 28px; }.provider-gateway__card h1 { font-size: 27px; }.provider-gateway__mesh { top: auto; right: -200px; bottom: -230px; transform: scale(.7); }.portal-detail h1 { font-size: 28px; }.portal-detail__visual { height: 205px; }.portal-detail__visual i { top: 55px; right: 45px; bottom: 35px; left: 65px; }.portal-detail__visual b { top: 72px; right: 70px; height: 35px; }.portal-detail__visual em { right: 70px; bottom: 52px; width: 85px; height: 32px; }
}
