:root {
  --red: #f1433e;
  --orange: #ff8a00;
  --yellow: #ffb02e;
  --sun: #fffb02;
  --navy: #07142e;
  --ink: #111a31;
  --text: #25324a;
  --muted: #67738a;
  --soft: #eef3f8;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.84);
  --glass-dark: rgba(7, 20, 46, 0.28);
  --line: rgba(255, 255, 255, 0.72);
  --stroke: rgba(136, 151, 176, 0.28);
  --shadow: 0 22px 60px rgba(7, 20, 46, 0.16);
  --shadow-soft: 0 12px 34px rgba(7, 20, 46, 0.1);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 176, 46, 0.18), transparent 28%),
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.98), transparent 26%),
    linear-gradient(135deg, #f5f8fc 0%, #e9f0f8 52%, #f8f4ed 100%);
  font-family: "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

.site-shell {
  min-height: 100vh;
}

.test-site-notice {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  padding: 7px 18px;
  color: #fff;
  background: linear-gradient(90deg, #07142e 0%, #14274d 52%, #07142e 100%);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.test-site-notice a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffd37a;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.test-site-notice a:hover,
.test-site-notice a:focus-visible {
  color: #fff;
}

.top-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0;
  pointer-events: none;
}

.header-card {
  width: 100%;
  min-height: 92px;
  margin: 0;
  padding: 8px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-areas: "navigation brand tools";
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 48px rgba(7, 20, 46, 0.12);
  backdrop-filter: blur(26px) saturate(1.32);
  pointer-events: auto;
}

.brand {
  grid-area: brand;
  justify-self: center;
  display: flex;
  align-items: center;
}

.brand img {
  width: 340px;
  max-width: min(30vw, 340px);
  min-width: 260px;
  height: auto;
}

.main-nav {
  grid-area: navigation;
  justify-self: start;
  min-width: 0;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link,
.nav-parent {
  min-height: 48px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-parent .icon {
  width: 12px;
  height: 12px;
}

.nav-link:hover,
.nav-parent:hover,
.nav-link.active,
.nav-parent.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  width: 280px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 160ms ease;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  min-height: 40px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.dropdown a:hover,
.dropdown a.active {
  color: var(--orange);
  background: rgba(255, 176, 46, 0.13);
}

.dropdown .icon {
  width: 13px;
  height: 13px;
}

.header-tools {
  grid-area: tools;
  height: auto;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-call-center {
  width: 320px;
  display: grid;
  gap: 4px;
}

.header-call-center > small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.header-phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
}

.header-phone-grid a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--orange);
  white-space: nowrap;
}

.header-phone-grid .icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.header-phone-grid strong {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 950;
}

.header-icon,
.account-link,
.button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 22px rgba(7, 20, 46, 0.08);
  backdrop-filter: blur(20px) saturate(1.24);
}

.header-icon {
  width: 42px;
  padding: 0;
  display: grid;
  place-items: center;
}

.account-link,
.button {
  max-width: 100%;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.button.primary {
  min-height: 48px;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(110deg, var(--red) 0%, var(--orange) 56%, var(--sun) 125%);
  box-shadow: 0 14px 34px rgba(241, 67, 62, 0.28), 0 0 30px rgba(255, 176, 46, 0.36);
}

.button.secondary {
  min-height: 48px;
  background: rgba(255, 255, 255, 0.74);
}

.menu-toggle {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 92px 18px auto;
  z-index: 49;
  max-height: calc(100vh - 112px);
  padding: 14px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(1.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 160ms ease;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a,
.mobile-menu strong {
  display: block;
  padding: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.mobile-sub {
  display: grid;
  gap: 4px;
  padding: 0 0 8px 12px;
}

.mobile-sub a {
  color: var(--muted);
  font-size: 13px;
  padding: 7px 10px;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  padding: 110px 24px 24px;
  background: rgba(238, 243, 248, 0.75);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: 160ms ease;
}

body.search-open .search-panel {
  opacity: 1;
  visibility: visible;
}

.search-box,
.search-results {
  width: min(880px, 100%);
  margin: 0 auto;
}

.search-box {
  min-height: 64px;
  padding: 0 10px 0 20px;
  display: grid;
  grid-template-columns: 24px 1fr 46px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.search-results {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.search-result {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.search-result strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.search-result span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.page {
  padding: 0 0 32px;
}

.page-hero {
  position: relative;
  width: 100%;
  min-height: 610px;
  margin: -92px 0 0;
  padding: 118px max(26px, calc((100vw - var(--container)) / 2 + 26px)) 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 0 0 20px 20px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.22) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.page-hero.theme-dark {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 15, 35, 0.9) 0%, rgba(4, 15, 35, 0.58) 42%, rgba(4, 15, 35, 0.2) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero.theme-soft {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 176, 46, 0.24), transparent 25%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.72) 55%, rgba(255, 245, 225, 0.5)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero.theme-home {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 15, 35, 0.94) 0%, rgba(4, 15, 35, 0.86) 34%, rgba(4, 15, 35, 0.48) 58%, rgba(4, 15, 35, 0.08) 82%, rgba(4, 15, 35, 0) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, rgba(239, 244, 250, 0.78) 72%, rgba(239, 244, 250, 0.96) 100%);
  pointer-events: none;
}

.theme-dark::after {
  background: linear-gradient(180deg, transparent 0%, rgba(7, 20, 46, 0.22) 48%, rgba(239, 244, 250, 0.96) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 42px;
}

.hero-copy {
  max-width: 650px;
  min-width: 0;
  padding-top: 24px;
}

.hero-inner-full {
  grid-template-columns: minmax(0, 1fr);
}

.hero-inner-full .hero-copy {
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.theme-dark .eyebrow {
  color: var(--yellow);
}

.hero-copy h1 {
  margin: 0;
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(40px, 4vw, 68px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.theme-dark .hero-copy h1 {
  color: #fff;
}

.hero-copy h1 span {
  display: block;
  color: var(--orange);
}

.hero-copy p {
  width: min(560px, 100%);
  margin: 22px 0 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.theme-dark .hero-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.hero-phone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.hero-phone-list a,
.hero-contact-email {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-phone-list a {
  justify-content: center;
}

.contact-hero-card h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-hero-card h2 .icon,
.hero-contact-email .icon {
  color: var(--orange);
}

.contact-hero-card .hero-contact-email {
  width: 100%;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.contact-identification {
  width: 100% !important;
  margin: 14px 0 0 !important;
  color: var(--text) !important;
  font-size: 12px !important;
  line-height: 1.5;
  font-weight: 800;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.account-lookup-link {
  width: min(100%, 480px);
  min-height: 64px;
  margin-top: 14px;
  padding: 10px 14px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 138, 0, 0.34);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.25);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.account-lookup-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.62);
  background: rgba(255, 255, 255, 0.86);
}

.account-lookup-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.82);
}

.account-lookup-link strong,
.account-lookup-link small {
  display: block;
}

.account-lookup-link strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 950;
}

.account-lookup-link small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.account-lookup-link > .icon {
  color: var(--orange);
}

.info-card {
  align-self: start;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(28px) saturate(1.35);
}

.theme-dark .info-card {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.info-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.15;
}

.info-list {
  display: grid;
  gap: 10px;
}

.info-row {
  min-height: 62px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.54);
}

.info-row .icon {
  color: var(--ink);
}

.info-row strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.info-row span {
  display: block;
  margin-top: 3px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.quick-tiles {
  position: relative;
  z-index: 3;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.tile {
  min-height: 106px;
  padding: 16px 14px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.38)),
    rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 16px 36px rgba(7, 20, 46, 0.13);
  backdrop-filter: blur(28px) saturate(1.4);
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 20px 40px rgba(7, 20, 46, 0.16);
}

.tile.active {
  border-color: rgba(255, 138, 0, 0.55);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.92), rgba(255, 176, 46, 0.18)),
    rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 18px 42px rgba(255, 138, 0, 0.18);
}

.tile.active .tile-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange) 58%, var(--sun));
}

.theme-home .quick-tiles {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.theme-home .tile {
  min-height: 92px;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-content: center;
  align-items: center;
  justify-items: stretch;
  text-align: left;
  gap: 10px;
  padding: 18px 16px 18px 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 16px 36px rgba(7, 20, 46, 0.13);
  backdrop-filter: blur(28px) saturate(1.4);
}

.theme-home .tile:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 20px 40px rgba(7, 20, 46, 0.16);
}

.theme-home .tile strong {
  grid-column: 1;
  grid-row: 1;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.12;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.theme-home .tile-icon {
  grid-column: 2;
  grid-row: 1;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  box-shadow: none;
}

.theme-home .tile-icon .icon {
  width: 30px;
  height: 30px;
  stroke-width: 2.4;
}

.theme-home .hero-copy {
  max-width: 780px;
}

.theme-home .hero-copy h1 {
  max-width: 760px;
  color: #fff;
  text-shadow: 0 2px 18px rgba(4, 15, 35, 0.2);
}

.theme-home .hero-copy h1 span {
  margin-top: 22px;
  max-width: 760px;
  color: var(--orange);
  font-size: clamp(30px, 3.2vw, 48px);
  line-height: 1.02;
}

.theme-home .info-card {
  width: min(340px, 100%);
}

.theme-home .info-row strong {
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.tile-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 0 24px rgba(255, 176, 46, 0.28);
}

.tile-icon .icon {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.tile strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.content-area {
  width: min(var(--container), calc(100vw - 36px));
  margin: 18px auto 0;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 16px;
}

.panel,
.wide-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(1.22);
}

.panel {
  min-width: 0;
  min-height: 235px;
  padding: 22px;
}

.panel-head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel h2,
.wide-panel h2,
.form-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.news-list,
.simple-list,
.document-list,
.faq-list {
  display: grid;
  gap: 12px;
}

.default-panel-grid > .panel:nth-child(2) {
  display: none;
}

.news-panel-wide {
  grid-column: span 2;
}

.news-panel-wide .news-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.news-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.news-row > span {
  min-width: 0;
}

.news-thumb {
  width: 84px;
  height: 66px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(241, 67, 62, 0.28), rgba(255, 176, 46, 0.2)),
    var(--thumb-image);
  background-size: cover;
  background-position: center;
}

.news-row small,
.small-muted {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.news-row strong {
  display: block;
  margin: 3px 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 950;
}

.tariff-card {
  display: grid;
  gap: 14px;
}

.tariff-main {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.tariff-value {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: var(--orange);
  font-size: 44px;
  line-height: 1;
  font-weight: 950;
}

.tariff-value span {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.app-panel {
  position: relative;
  overflow: hidden;
  padding-right: 150px;
}

.app-panel ul {
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.app-panel li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
}

.app-panel li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(255, 138, 0, 0.45);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  min-width: 120px;
  min-height: 42px;
  padding: 8px 12px;
  display: grid;
  align-content: center;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(7, 20, 46, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7, 20, 46, 0.14);
}

.phone-mock {
  position: absolute;
  right: 28px;
  bottom: -16px;
  width: 118px;
  height: 226px;
  border: 7px solid #0d1730;
  border-radius: 28px;
  background:
    linear-gradient(180deg, var(--orange), #fff 26%),
    #fff;
  box-shadow: 0 24px 40px rgba(7, 20, 46, 0.28);
  transform: rotate(8deg);
}

.phone-mock::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 8px;
  height: 5px;
  border-radius: 999px;
  background: #0d1730;
}

.phone-mock::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 54px;
  height: 10px;
  border-radius: 999px;
  background: rgba(7, 20, 46, 0.12);
  box-shadow:
    0 28px 0 rgba(7, 20, 46, 0.1),
    0 56px 0 rgba(7, 20, 46, 0.1),
    0 84px 0 rgba(7, 20, 46, 0.1),
    0 112px 0 rgba(255, 138, 0, 0.18);
}

.section-stack {
  margin-top: 18px;
  display: grid;
  gap: 18px;
}

.wide-panel,
.form-panel {
  padding: 24px;
}

.section-stack,
.wide-panel {
  min-width: 0;
  max-width: 100%;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.mini-card .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--orange);
}

.mini-card strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
}

.mini-card span,
.mini-card p {
  display: block;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
}

.doc-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.doc-table th,
.doc-table td {
  padding: 15px 14px;
  border-bottom: 1px solid rgba(136, 151, 176, 0.2);
  text-align: left;
  vertical-align: top;
}

.doc-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.doc-table td {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 176, 46, 0.16);
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.migration-note {
  max-width: 900px;
  margin: -2px 0 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.doc-filter-state {
  margin: 0 0 18px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 138, 0, 0.22);
  border-radius: 12px;
  background: rgba(255, 176, 46, 0.1);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.doc-filter-state span,
.doc-filter-state a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.doc-filter-state strong,
.doc-filter-state a {
  color: var(--orange);
}

.doc-filter-state .icon {
  width: 17px;
  height: 17px;
}

.doc-category-stack {
  display: grid;
  gap: 12px;
}

.doc-category {
  border: 1px solid rgba(136, 151, 176, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
  overflow: hidden;
}

.doc-category summary {
  min-height: 58px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

.doc-category summary::-webkit-details-marker {
  display: none;
}

.doc-category summary strong {
  min-width: 42px;
  min-height: 28px;
  padding: 0 10px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 138, 0, 0.12);
  color: var(--orange);
}

.doc-link-list {
  padding: 0 12px 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.doc-link-card {
  min-height: 76px;
  padding: 12px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(136, 151, 176, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.doc-file-type {
  min-height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 74, 50, 0.14), rgba(255, 176, 46, 0.22));
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
}

.doc-link-card strong {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 950;
}

.doc-link-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.doc-open {
  color: var(--orange);
}

.contact-source-grid,
.page-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-source-card,
.news-card,
.page-directory-card {
  padding: 14px;
  border: 1px solid rgba(136, 151, 176, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
}

.contact-source-card strong,
.news-card strong,
.page-directory-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.contact-source-card span,
.contact-source-card small,
.news-card small,
.news-card p,
.page-directory-card span,
.page-directory-card small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.news-featured-card {
  display: grid;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  min-height: 310px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(136, 151, 176, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.news-featured-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.34);
  background: rgba(255, 255, 255, 0.84);
}

.news-featured-media {
  display: block;
  min-height: 310px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.08), rgba(255, 255, 255, 0.08)), var(--thumb-image) center / cover;
}

.news-featured-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.news-featured-copy small,
.news-featured-copy p {
  color: var(--muted);
  font-weight: 750;
}

.news-featured-copy strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.16;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.news-featured-copy p {
  margin: 14px 0 20px;
  line-height: 1.55;
}

.news-featured-copy .panel-link {
  align-self: flex-start;
}

.news-archive-list {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  gap: 12px;
}

.news-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  min-height: 120px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.news-card > span:last-child,
.news-card strong,
.news-card p {
  min-width: 0;
  overflow-wrap: anywhere;
}

.news-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.32);
  background: rgba(255, 255, 255, 0.78);
}

.news-card .news-thumb {
  width: 170px;
  height: 112px;
}

.news-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.news-detail-media {
  display: block;
  min-height: 190px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.14), rgba(255, 255, 255, 0.24)), var(--thumb-image) center / cover;
  box-shadow: var(--shadow-soft);
}

.news-detail h2 {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.06;
  font-weight: 950;
}

.news-detail p {
  max-width: 920px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 750;
}

.legacy-panel {
  overflow: hidden;
}

.legacy-text {
  display: grid;
  gap: 14px;
}

.legacy-text p {
  margin: 0;
  max-width: 1120px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 760;
}

.news-body-flow {
  display: grid;
  gap: 16px;
}

.news-body-flow p {
  margin: 0;
}

.news-inline-image {
  margin: 8px 0;
}

.news-inline-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.news-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.news-gallery-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 31, 60, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.news-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.call-center-panel {
  display: grid;
  gap: 28px;
}

.call-center-panel .panel-head {
  margin-bottom: 0;
}

.call-center-lead {
  margin: -10px 0 0;
  max-width: 920px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 700;
}

.call-center-summary {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 12px;
}

.call-center-summary-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.call-center-panel > .legacy-links {
  margin-top: -4px;
}

.call-center-summary-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.call-center-summary-label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.call-center-summary-item strong,
.call-center-summary-item a {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 900;
  text-decoration: none;
}

.call-center-summary-item a:hover {
  color: var(--orange);
}

.call-center-summary-item small {
  color: var(--muted);
  line-height: 1.45;
  font-weight: 700;
}

.call-center-phone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 8px 22px;
}

.call-center-list-section {
  display: grid;
  gap: 14px;
}

.call-center-list-section h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.call-center-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
}

.call-center-list li {
  position: relative;
  padding: 10px 20px 10px 48px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 760;
}

.call-center-list li + li {
  border-top: 1px solid var(--line);
}

.call-center-list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 18px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 13px;
  font-weight: 950;
}

.call-center-list-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.call-center-list-compact li:nth-child(2) {
  border-top: 0;
}

.call-center-list-compact li:nth-child(even) {
  border-left: 1px solid var(--line);
}

@media (max-width: 760px) {
  .call-center-summary,
  .call-center-summary-compact,
  .call-center-list-compact {
    grid-template-columns: 1fr;
  }

  .call-center-phone-list {
    grid-template-columns: 1fr;
  }

  .call-center-list-compact li:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .call-center-list-compact li:nth-child(even) {
    border-left: 0;
  }
}

.legacy-links {
  margin-top: 24px;
}

.legacy-links h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.source-panel {
  overflow: hidden;
}

.payment-panel {
  display: grid;
  gap: 24px;
}

.payment-panel-head {
  margin-bottom: 0;
  align-items: flex-end;
}

.payment-account-link {
  min-height: 92px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 138, 0, 0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.11), rgba(255, 255, 255, 0.72));
  box-shadow: var(--shadow-soft);
}

.payment-account-link > .icon {
  color: var(--orange);
}

.payment-account-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.78);
}

.payment-account-icon .icon {
  width: 25px;
  height: 25px;
}

.payment-account-link strong,
.payment-account-link small {
  display: block;
}

.payment-account-link strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 950;
}

.payment-account-link small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.cashback-banner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.cashback-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 958 / 452;
  display: block;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.payment-section-head {
  display: grid;
  gap: 7px;
}

.payment-section-head h2,
.payment-section-head p {
  margin: 0;
}

.payment-section-head p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.payment-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.payment-service {
  min-width: 0;
  min-height: 160px;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20px;
  grid-template-rows: 94px auto;
  align-items: center;
  gap: 10px 12px;
  border: 1px solid rgba(136, 151, 176, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.payment-service:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.42);
  background: rgba(255, 255, 255, 0.88);
}

.payment-service-logo {
  grid-column: 1 / -1;
  height: 94px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
}

.payment-service-logo img {
  width: 86px;
  height: 86px;
  display: block;
  object-fit: contain;
}

.payment-service-logo img[src*="ipay.png"] {
  width: 150px;
  height: 150px;
}

.payment-service-logo img[src*="easypay.png"] {
  width: 110px;
  height: 110px;
}

.payment-service-logo img[src*="portmone.png"] {
  width: 150px;
  height: 150px;
}

.payment-service-logo img[src*="ips.png"] {
  width: 110px;
  height: 110px;
}

.payment-service-copy strong,
.payment-service-copy small {
  display: block;
}

.payment-service-copy strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.payment-service-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.payment-service > .icon {
  color: var(--orange);
}

.readings-panel {
  display: grid;
  gap: 24px;
  overflow: hidden;
}

.readings-intro {
  max-width: 780px;
}

.readings-intro h2,
.readings-intro p {
  margin: 0;
}

.readings-intro h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  font-weight: 950;
}

.readings-intro h2 span {
  display: block;
  color: var(--orange);
}

.readings-intro p {
  max-width: 660px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 750;
}

.reading-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reading-service {
  min-width: 0;
  min-height: 152px;
  padding: 20px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.reading-service:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 138, 0, 0.42);
  background: rgba(255, 255, 255, 0.9);
}

.reading-service-logo {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
}

.reading-service-logo img {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
}

.reading-service-logo .reading-logo-zoe {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.reading-service-logo .reading-logo-uz {
  width: 64px;
  height: auto;
  display: block;
  color: #173c8d;
}

.reading-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
}

.reading-mark--zoe {
  color: #1357a6;
  background: #eef6ff;
}

.reading-mark--uz {
  color: #ffffff;
  border-color: #173c8d;
  background: #173c8d;
}

.reading-service-copy strong,
.reading-service-copy small {
  display: block;
}

.reading-service-copy strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.28;
  font-weight: 950;
}

.reading-service-copy small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
}

.reading-service > .icon {
  color: var(--orange);
}

.reading-contact-section {
  padding: 20px;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(136, 151, 176, 0.18);
  border-radius: 14px;
  background: rgba(239, 246, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.reading-contact-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reading-contact-heading > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.86);
}

.reading-contact-heading h3,
.reading-contact-heading p {
  margin: 0;
}

.reading-contact-heading h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.reading-contact-heading p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.reading-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 14px;
}

.reading-contact-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.reading-contact-card-head strong,
.reading-contact-card-head small {
  display: block;
}

.reading-contact-card-head strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 950;
}

.reading-contact-card-head small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.reading-phone-list {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.reading-contact-card:last-child .reading-phone-list {
  grid-template-columns: 1fr;
}

.reading-phone-list a,
.reading-contact-email {
  min-width: 0;
  min-height: 58px;
  padding: 10px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(136, 151, 176, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 160ms ease, background 160ms ease;
}

.reading-phone-list a:hover,
.reading-contact-email:hover {
  border-color: rgba(255, 138, 0, 0.42);
  background: #ffffff;
}

.reading-phone-list .icon,
.reading-contact-email .icon {
  width: 21px;
  height: 21px;
  color: var(--orange);
}

.reading-phone-list strong,
.reading-phone-list small,
.reading-contact-email strong,
.reading-contact-email small {
  display: block;
}

.reading-phone-list strong,
.reading-contact-email strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.reading-phone-list small,
.reading-contact-email small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 750;
}

.reading-contact-email {
  margin-top: 8px;
}

.reading-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(136, 151, 176, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
}

.reading-benefit {
  min-width: 0;
  padding: 20px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.reading-benefit + .reading-benefit {
  border-left: 1px solid rgba(136, 151, 176, 0.18);
}

.reading-benefit > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.8);
}

.reading-benefit strong,
.reading-benefit small {
  display: block;
}

.reading-benefit strong {
  color: var(--ink);
  font-size: 14px;
  font-weight: 950;
}

.reading-benefit small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 750;
}

.source-panel-head {
  align-items: flex-end;
}

.source-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.source-updated {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.source-content {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 700;
}

.source-content p,
.source-content h2,
.source-content h3,
.source-content h4,
.source-content ul,
.source-content ol,
.source-content blockquote {
  max-width: 1160px;
  margin: 0;
}

.source-content h2,
.source-content h3,
.source-content h4,
.source-content strong {
  color: var(--ink);
}

.source-content h2 {
  margin-top: 18px;
  font-size: 24px;
}

.source-content h3 {
  margin-top: 12px;
  font-size: 19px;
}

.source-content ul,
.source-content ol {
  padding-left: 24px;
}

.source-content li + li {
  margin-top: 7px;
}

.source-content a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.source-content > p > a:only-child {
  width: 100%;
  padding: 13px 16px;
  display: block;
  border: 1px solid rgba(136, 151, 176, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.source-content > p > a:only-child:hover {
  border-color: rgba(255, 138, 0, 0.45);
  background: rgba(255, 255, 255, 0.82);
}

.contact-directory-page {
  gap: 28px;
}

.contact-directory-heading,
.directory-section-heading {
  padding: 0 8px;
}

.contact-directory-heading h2,
.directory-section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
}

.contact-directory-heading p,
.directory-section-heading p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 750;
}

.office-card-grid,
.branch-card-grid,
.contact-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.office-card,
.branch-card,
.contact-note,
.contact-law-note {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 42px rgba(40, 55, 83, 0.09);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
}

.office-card,
.branch-card {
  min-width: 0;
  padding: 24px;
}

.office-card-head,
.branch-card-head,
.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.office-icon,
.branch-card-head > span,
.contact-note > span {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: rgba(255, 138, 0, 0.1);
}

.office-icon .icon,
.branch-card-head > span .icon,
.contact-note > span .icon {
  width: 22px;
  height: 22px;
}

.office-card-head small,
.contact-note small {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.office-card h3,
.branch-card h3,
.contact-note h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.office-address-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.office-address-list > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
}

.office-address-list .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--orange);
}

.office-schedule {
  margin: 20px 0 0;
  border-top: 1px solid rgba(136, 151, 176, 0.2);
}

.office-schedule > div {
  min-height: 42px;
  padding: 9px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(136, 151, 176, 0.14);
}

.office-schedule dt,
.office-schedule dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.office-schedule dt {
  color: var(--muted);
  font-weight: 750;
}

.office-schedule dd {
  color: var(--ink);
  text-align: right;
  font-weight: 950;
}

.directory-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.directory-section-heading p {
  margin-bottom: 2px;
  text-align: right;
}

.branch-card-head p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}

.branch-contact-group {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(136, 151, 176, 0.2);
}

.branch-contact-group > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.directory-phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
}

.directory-phone,
.directory-email,
.contact-note a {
  min-width: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  text-decoration: none;
}

.directory-phone span,
.directory-email span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.directory-phone:hover,
.directory-email:hover,
.contact-note a:hover {
  color: var(--orange);
}

.directory-phone .icon,
.directory-email .icon,
.contact-note a .icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--orange);
}

.directory-email {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(136, 151, 176, 0.2);
}

.contact-note {
  padding: 22px;
}

.contact-note p,
.contact-note em {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 750;
}

.contact-note em {
  color: #9c5c22;
  font-size: 11px;
}

.contact-law-note {
  overflow: hidden;
}

.contact-law-note summary {
  min-height: 64px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 950;
  list-style: none;
}

.contact-law-note summary::-webkit-details-marker {
  display: none;
}

.contact-law-note summary span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-law-note summary .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.contact-law-note > p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.contact-law-note[open] summary > .icon {
  transform: rotate(180deg);
}

.legacy-links {
  margin-top: 28px;
}

.legacy-links > h3 {
  margin: 0 0 14px;
  font-size: clamp(22px, 2vw, 30px);
}

.service-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-link {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(21, 39, 70, 0.08);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 132, 0, 0.42);
  box-shadow: 0 18px 36px rgba(21, 39, 70, 0.12);
}

.service-link-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: rgba(255, 255, 255, 0.88);
}

.service-link-icon svg,
.service-link-action svg {
  width: 22px;
  height: 22px;
}

.service-link-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.service-link-copy strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

.service-link-copy small {
  color: var(--muted);
  font-weight: 700;
}

.service-link-action {
  display: grid;
  place-items: center;
  color: var(--orange);
}

@media (max-width: 900px) {
  .office-card-grid,
  .branch-card-grid,
  .contact-note-grid {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .service-link-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .directory-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .directory-section-heading p {
    text-align: left;
  }
}

/* Keep the centered brand and the four call-center numbers in separate zones. */
@media (min-width: 1501px) {
  .header-tools {
    gap: 8px;
  }

  .header-call-center {
    width: auto;
  }

  .header-phone-grid {
    grid-template-columns: repeat(2, max-content);
    gap: 6px 12px;
  }
}

@media (max-width: 1700px) and (min-width: 1501px) {
  .brand img {
    width: 280px;
    min-width: 280px;
  }
}

@media (max-width: 1500px) and (min-width: 901px) {
  .header-call-center {
    display: none;
  }
}

@media (max-width: 560px) {
  .contact-directory-page {
    gap: 20px;
  }

  .contact-directory-heading,
  .directory-section-heading {
    padding: 0 2px;
  }

  .office-card,
  .branch-card,
  .contact-note {
    padding: 18px;
  }

  .directory-phone-grid {
    grid-template-columns: 1fr;
  }

  .office-schedule > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .office-schedule dd {
    text-align: left;
  }
}

.source-content details {
  border: 1px solid rgba(136, 151, 176, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.source-content details summary {
  min-height: 58px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 950;
  cursor: pointer;
}

.source-content details[open] summary {
  border-bottom: 1px solid rgba(255, 138, 0, 0.25);
  background: rgba(255, 138, 0, 0.07);
}

.source-content details > div {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.source-content .accordion {
  display: grid;
  gap: 10px;
}

.source-content .accordion-item {
  border: 1px solid rgba(136, 151, 176, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

.source-content .accordion-header {
  max-width: none;
  margin: 0;
}

.source-content .accordion-button {
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  border: 0;
  display: flex;
  align-items: center;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
}

.source-content .accordion-button::after {
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.source-content .accordion-item.is-open > .accordion-header .accordion-button {
  border-bottom: 1px solid rgba(255, 138, 0, 0.25);
  background: rgba(255, 138, 0, 0.07);
}

.source-content .accordion-item.is-open > .accordion-header .accordion-button::after {
  transform: rotate(225deg);
}

.source-content .accordion-item > .accordion-collapse {
  display: none;
}

.source-content .accordion-item.is-open > .accordion-collapse {
  display: block;
}

.source-content .accordion-body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.gas-contact-card {
  padding: 24px;
  border: 1px solid rgba(136, 151, 176, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(13, 29, 54, 0.08);
}

.gas-license-notice {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  margin: 0 0 24px;
  padding: 22px;
  border: 1px solid rgba(255, 138, 0, 0.28);
  border-radius: 8px;
  background: rgba(255, 247, 237, 0.9);
}

.gas-license-notice-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: rgba(255, 138, 0, 0.11);
}

.gas-license-notice-icon .icon {
  width: 24px;
  height: 24px;
}

.gas-license-notice-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 720;
}

.gas-license-notice-copy > strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 950;
}

.gas-license-notice-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.gas-license-notice-links a {
  color: var(--orange);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-content > p.gas-law-summary > a:only-child {
  display: inline;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.source-content > p.gas-law-summary > a:only-child:hover {
  border: 0;
  background: none;
}

.gas-contact-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(136, 151, 176, 0.22);
}

.gas-contact-heading-icon,
.gas-contact-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 138, 0, 0.1);
}

.gas-contact-heading-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.gas-contact-heading-icon .icon,
.gas-contact-icon .icon {
  width: 24px;
  height: 24px;
}

.gas-contact-heading span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.gas-contact-heading h3 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.gas-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.gas-contact-detail {
  min-width: 0;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  border-bottom: 1px solid rgba(136, 151, 176, 0.2);
}

.gas-contact-detail:nth-child(odd) {
  border-right: 1px solid rgba(136, 151, 176, 0.2);
}

.gas-contact-detail:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.gas-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.gas-contact-detail strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 15px;
}

.gas-contact-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}

.gas-contact-detail a {
  color: var(--orange);
  text-decoration: none;
}

.gas-contact-detail a:hover {
  text-decoration: underline;
}

.source-content table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.source-content table,
.source-content div:has(> table) {
  overflow-x: auto;
}

.source-content th,
.source-content td {
  padding: 10px 12px;
  border: 1px solid rgba(136, 151, 176, 0.28);
  text-align: left;
  vertical-align: top;
}

.source-content th {
  color: var(--ink);
  background: rgba(236, 241, 247, 0.9);
  font-weight: 950;
}

.source-files {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(136, 151, 176, 0.22);
}

.source-files-heading {
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.source-files-heading h3,
.source-files-heading p {
  margin: 0;
}

.source-files-heading h3 {
  color: var(--ink);
  font-size: 21px;
}

.source-files-heading p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.admin-live-site-frame .source-files.is-hidden-from-public {
  padding: 22px;
  border: 2px dashed rgba(255, 136, 0, 0.55);
  border-radius: 14px;
  background: rgba(255, 247, 236, 0.5);
}

.admin-source-files-visibility {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  margin-left: auto;
}

.admin-source-files-visibility span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff0dc;
  color: #b75b00;
  font-size: 12px;
  font-weight: 900;
}

.admin-source-files-visibility button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 136, 0, 0.7);
  border-radius: 10px;
  background: #fff;
  color: #c96500;
  font: 800 13px/1.25 inherit;
  cursor: pointer;
}

.admin-source-files-visibility button:hover,
.admin-source-files-visibility button:focus-visible {
  border-color: #ff8800;
  background: #ffead1;
  outline: none;
}

.source-file-search {
  width: min(340px, 100%);
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(136, 151, 176, 0.28);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.source-file-search .icon {
  width: 19px;
  height: 19px;
  color: var(--muted);
}

.source-file-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.source-file-groups {
  display: grid;
  gap: 10px;
}

.source-file-group {
  border: 1px solid rgba(136, 151, 176, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.source-file-group summary {
  min-height: 50px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}

.source-file-group summary strong {
  min-width: 34px;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255, 138, 0, 0.1);
  color: var(--orange);
  text-align: center;
}

.source-file-group .doc-link-list {
  padding: 14px;
  border-top: 1px solid rgba(136, 151, 176, 0.18);
}

.source-file-empty {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 760px) {
  .source-panel-head,
  .source-files-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .source-updated {
    white-space: normal;
  }

  .source-content {
    font-size: 14px;
    line-height: 1.65;
  }

  .source-content h2 {
    font-size: 21px;
  }

  .source-content details summary {
    min-height: 54px;
    padding: 14px;
    font-size: 15px;
  }

  .source-content details > div {
    padding: 14px;
  }

  .source-file-search {
    width: 100%;
  }
}

.legacy-rich-panel {
  overflow: hidden;
}

.legacy-rich-text {
  display: grid;
  gap: 14px;
}

.legacy-rich-text p,
.legacy-rich-section-body p {
  margin: 0;
  max-width: 1160px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
  font-weight: 760;
}

.legacy-rich-text strong,
.legacy-rich-section-body strong {
  color: var(--ink);
  font-weight: 950;
}

.legacy-rich-text a,
.legacy-rich-section-body a {
  color: var(--orange);
  font-weight: 950;
  text-decoration: none;
}

.legacy-rich-text a:hover,
.legacy-rich-section-body a:hover {
  text-decoration: underline;
}

.legacy-rich-text .legacy-warning,
.source-content .legacy-warning {
  max-width: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(255, 74, 50, 0.24);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 74, 50, 0.1), rgba(255, 176, 46, 0.12));
  color: #9f1d12;
  font-weight: 850;
}

.legacy-rich-accordion {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.legacy-rich-section {
  border: 1px solid rgba(136, 151, 176, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.legacy-rich-section summary {
  min-height: 62px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

.legacy-rich-section summary::-webkit-details-marker {
  display: none;
}

.legacy-rich-section summary .icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--ink);
  transition: transform 160ms ease, color 160ms ease;
}

.legacy-rich-section[open] summary {
  border-bottom: 1px solid rgba(255, 138, 0, 0.28);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(255, 255, 255, 0.55));
}

.legacy-rich-section[open] summary .icon {
  transform: rotate(180deg);
  color: var(--orange);
}

.legacy-rich-section-body {
  padding: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 780;
}

.legacy-rich-section-body a {
  display: inline-flex;
  width: fit-content;
  margin: 2px 10px 2px 0;
}

.regulator-panel {
  overflow: hidden;
}

.regulator-intro {
  margin-bottom: 24px;
  display: grid;
  gap: 10px;
}

.regulator-intro p,
.regulator-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 760;
}

.regulator-accordion {
  display: grid;
  gap: 14px;
}

.regulator-section {
  border: 1px solid rgba(136, 151, 176, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.regulator-section summary {
  min-height: 72px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.regulator-section summary::-webkit-details-marker {
  display: none;
}

.regulator-section summary .icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--ink);
  transition: transform 160ms ease, color 160ms ease;
}

.regulator-section[open] summary {
  border-bottom: 1px solid rgba(255, 138, 0, 0.28);
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.1), rgba(255, 255, 255, 0.55));
}

.regulator-section[open] summary .icon {
  transform: rotate(180deg);
  color: var(--orange);
}

.regulator-body {
  padding: 22px;
  overflow-x: auto;
}

.regulator-body > div {
  display: grid;
  gap: 14px;
}

.regulator-body .page_title-text,
.regulator-body h2,
.regulator-body h3,
.regulator-body h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 950;
}

.regulator-body .page_title-desc,
.regulator-body small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.regulator-body a {
  color: var(--orange);
  font-weight: 900;
}

.regulator-body table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border: 1px solid rgba(136, 151, 176, 0.28);
  background: rgba(255, 255, 255, 0.7);
}

.regulator-body td,
.regulator-body th {
  padding: 10px 11px;
  border: 1px solid rgba(136, 151, 176, 0.28);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 760;
  vertical-align: top;
}

.regulator-body td strong,
.regulator-body th strong {
  color: var(--ink);
  font-weight: 950;
}

.faq-item {
  border: 1px solid rgba(136, 151, 176, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-weight: 950;
}

.faq-button span {
  line-height: 1.35;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 800;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer-intro {
  margin: 0 0 14px;
}

.faq-numbered-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  counter-reset: faq-list;
}

.faq-numbered-list > li {
  position: relative;
  min-height: 34px;
  padding: 7px 10px 7px 44px;
  border-left: 2px solid rgba(255, 138, 0, 0.28);
  border-radius: 0 6px 6px 0;
  background: rgba(255, 255, 255, 0.48);
  counter-increment: faq-list;
}

.faq-numbered-list > li::before {
  position: absolute;
  left: 10px;
  top: 7px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.12);
  color: var(--orange);
  content: counter(faq-list);
  font-size: 12px;
  font-weight: 950;
}

.faq-numbered-list ul {
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 6px;
  list-style: none;
}

.faq-numbered-list ul li {
  min-height: 0;
  padding: 0 0 0 18px;
  border: 0;
  background: transparent;
  font-weight: 750;
}

.faq-numbered-list ul li::before {
  top: 9px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  content: "";
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.contact-card .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--orange);
}

.contact-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
}

.contact-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(136, 151, 176, 0.3);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  outline: 0;
}

.form-grid textarea,
.form-grid .full {
  grid-column: 1 / -1;
}

.form-grid textarea {
  min-height: 126px;
  resize: vertical;
}

.complaint-intake__heading {
  max-width: 900px;
  margin-bottom: 22px;
}

.complaint-intake__heading h2 {
  margin-top: 6px;
}

.complaint-intake__heading p {
  max-width: 780px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}

.complaint-intake__heading .complaint-intake__recipient {
  color: var(--ink);
  font-weight: 900;
}

.complaint-intake__recipient a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.complaint-intake .form-grid label small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.complaint-intake__status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.site-footer {
  margin-top: 18px;
  padding: 0 12px 12px;
}

.admin-route .top-header,
.admin-route .test-site-notice,
.admin-route .mobile-menu,
.admin-route .search-panel,
.admin-route .site-footer {
  display: none;
}

.admin-route #app {
  min-height: 100vh;
}

.footer-card {
  width: min(var(--container), calc(100vw - 36px));
  margin: 0 auto;
  padding: 18px 22px 12px;
  border-radius: 12px;
  background: #07142e;
  color: #fff;
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.9fr 1.15fr 1.2fr;
  gap: 20px;
  align-items: start;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  margin-bottom: 8px;
  filter: drop-shadow(0 8px 22px rgba(255, 138, 0, 0.2));
}

.footer-card p,
.footer-card a,
.footer-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.footer-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 14px;
}

.footer-card nav {
  display: grid;
  gap: 5px;
}

.footer-cert {
  margin-top: 10px;
}

.footer-cert a {
  display: inline-block;
  border-radius: 8px;
  transition: transform 160ms ease, filter 160ms ease;
}

.footer-cert a:hover,
.footer-cert a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.footer-cert img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.quality-page {
  padding-block: 8px 24px;
}

.quality-copy {
  max-width: 840px;
}

.quality-copy h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
}

.quality-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.quality-documents {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 648px));
  gap: 22px;
  align-items: start;
}

.quality-document {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.quality-document figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(7, 20, 46, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.quality-document:hover figure,
.quality-document:focus-visible figure {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(7, 20, 46, 0.15);
}

.quality-image-frame {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 12px;
  background: #eef2f7;
}

.quality-image-frame img {
  display: block;
  width: 100%;
  max-width: 648px;
  height: auto;
  object-fit: contain;
}

.quality-document figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}

.quality-document figcaption strong {
  color: var(--ink);
  font-size: 16px;
}

.quality-document figcaption span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 760px) {
  .quality-documents {
    grid-template-columns: minmax(0, 1fr);
  }

  .quality-image-frame {
    padding: 8px;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.social-icon,
.social-icon img {
  display: block;
  width: 28px;
  height: 28px;
}

.social-icon img {
  object-fit: contain;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-contact > span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
}

.source-content .accordion-body > .accordion-item {
  margin: 0 !important;
}

.source-content h1:empty,
.source-content h2:empty,
.source-content h3:empty,
.source-content h4:empty,
.source-content h5:empty,
.source-content h6:empty,
.source-content p:empty {
  display: none !important;
  margin: 0 !important;
}

.footer-contact > span > span {
  display: block;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.footer-contact .icon {
  width: 17px;
  height: 17px;
  color: var(--yellow);
}

.footer-help {
  padding: 14px;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--red), var(--orange) 64%, var(--sun));
  color: #fff;
}

.footer-help p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-card .footer-help a.button.secondary {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.82);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 20, 46, 0.18);
}

.footer-card .footer-help a.button.secondary .icon {
  color: var(--navy);
}

.footer-bottom {
  margin-top: 12px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.consumption-calculator {
  --calculator-accent: #ff8700;
}

.calculator-intro,
.calculator-workspace,
.calculator-summary,
.calculator-reference {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(1.2);
}

.calculator-intro {
  padding: 24px 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  border-radius: 16px;
}

.calculator-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.calculator-intro h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 28px;
}

.calculator-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.calculator-rate {
  min-width: 210px;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.calculator-rate-input {
  min-height: 48px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(247, 249, 252, 0.9);
}

.calculator-rate input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
}

.calculator-rate b {
  color: var(--ink);
  white-space: nowrap;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: start;
  gap: 18px;
}

.calculator-workspace {
  min-width: 0;
  padding: 18px;
  border-radius: 16px;
}

.calculator-rows {
  display: grid;
  gap: 10px;
}

.calculator-row {
  min-width: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(220px, 1.45fr) repeat(3, minmax(105px, 0.55fr)) minmax(145px, 0.7fr) 42px;
  align-items: end;
  gap: 10px;
  border: 1px solid rgba(132, 151, 181, 0.2);
  border-radius: 12px;
  background: rgba(246, 249, 252, 0.88);
}

.calculator-row label,
.calculator-row-result {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.calculator-row label > span,
.calculator-row-result > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.calculator-row select,
.calculator-row input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.calculator-row select:focus,
.calculator-row input:focus,
.calculator-rate input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 135, 0, 0.12);
}

.calculator-row-result {
  min-height: 44px;
  padding: 7px 11px;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 138, 0, 0.1);
}

.calculator-row-result strong {
  color: var(--ink);
  font-size: 14px;
  white-space: nowrap;
}

.calculator-remove {
  width: 42px;
  min-height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 39, 48, 0.18);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.8);
  color: #bd2730;
}

.calculator-remove:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.calculator-add {
  margin-top: 14px;
}

.calculator-summary {
  position: sticky;
  top: 150px;
  padding: 24px;
  display: grid;
  border-radius: 16px;
  overflow: hidden;
}

.calculator-summary::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--sun));
}

.calculator-summary > span,
.calculator-cost > span,
.calculator-daily > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.calculator-summary > strong {
  margin-top: 7px;
  color: var(--orange);
  font-size: 48px;
  line-height: 1;
}

.calculator-summary > small {
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.calculator-cost,
.calculator-daily {
  margin-top: 20px;
  padding-top: 18px;
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--line);
}

.calculator-cost strong {
  color: var(--ink);
  font-size: 26px;
}

.calculator-daily strong {
  color: var(--ink);
  font-size: 16px;
}

.calculator-summary .button {
  margin-top: 22px;
}

.calculator-reference {
  border-radius: 16px;
  overflow: hidden;
}

.calculator-reference summary {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}

.calculator-reference summary::-webkit-details-marker {
  display: none;
}

.calculator-reference[open] summary .icon {
  transform: rotate(180deg);
}

.calculator-reference-grid {
  padding: 0 24px 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 18px;
}

.calculator-reference-grid div {
  min-width: 0;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.calculator-reference-grid span {
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
}

.calculator-reference-grid strong {
  color: var(--orange);
  font-size: 13px;
  white-space: nowrap;
}

.calculator-note {
  margin: 0;
  padding: 0 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calculator-summary {
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }

  .calculator-summary .button {
    grid-column: 1 / -1;
  }

  .calculator-row {
    grid-template-columns: minmax(210px, 1.4fr) repeat(3, minmax(92px, 0.55fr)) 42px;
  }

  .calculator-row-result {
    grid-column: 1 / -2;
  }
}

@media (max-width: 700px) {
  .calculator-intro {
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .calculator-intro h2 {
    font-size: 23px;
  }

  .calculator-rate {
    min-width: 0;
  }

  .calculator-workspace {
    padding: 12px;
  }

  .calculator-row {
    padding: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calculator-device-field,
  .calculator-row-result {
    grid-column: 1 / -1;
  }

  .calculator-remove {
    grid-column: 2;
    justify-self: end;
  }

  .calculator-summary {
    padding: 22px 20px;
    grid-template-columns: 1fr;
  }

  .calculator-summary > strong {
    font-size: 42px;
  }

  .calculator-reference-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  body {
    font-size: 17px;
  }

  .nav-link,
  .nav-parent,
  .dropdown a,
  .account-link,
  .button {
    font-size: 15px;
  }

  .header-call-center > small {
    font-size: 11px;
  }

  .header-phone-grid strong {
    font-size: 14px;
  }

  .eyebrow {
    font-size: 15px;
  }

  .hero-copy p {
    font-size: 19px;
  }

  .info-card h2 {
    font-size: 20px;
  }

  .info-row strong,
  .theme-home .info-row strong,
  .tile strong,
  .theme-home .tile strong {
    font-size: 15px;
  }

  .info-row small,
  .account-lookup-link small {
    font-size: 13px;
  }

  .panel h2,
  .wide-panel h2,
  .form-panel h2 {
    font-size: 26px;
  }

  .panel-link,
  .news-row small,
  .small-muted {
    font-size: 14px;
  }

  .news-row strong,
  .app-panel li,
  .doc-table td,
  .source-files-heading p {
    font-size: 15px;
  }

  .mini-card strong,
  .page-directory-card strong,
  .call-center-summary-item strong,
  .call-center-summary-item a {
    font-size: 17px;
  }

  .mini-card small,
  .page-directory-card small,
  .doc-link-card strong,
  .payment-section-head p {
    font-size: 14px;
  }

  .legacy-text p,
  .source-content,
  .legacy-rich-text p,
  .legacy-rich-section-body p,
  .faq-answer,
  .call-center-lead {
    font-size: 17px;
  }
}

@media (max-width: 1200px) {
  .brand img {
    width: 260px;
    max-width: min(24vw, 260px);
    min-width: 220px;
  }

  .nav-link,
  .nav-parent {
    padding: 0 3px;
    font-size: 12px;
  }

  .header-call-center {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .quick-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .panel-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1320px) and (min-width: 1201px) {
  .brand img {
    width: 280px;
    max-width: min(23vw, 280px);
    min-width: 240px;
  }

  .nav-link,
  .nav-parent {
    padding: 0 4px;
    font-size: 12px;
  }

  .header-call-center {
    display: none;
  }

  .header-phone-grid {
    gap: 4px 8px;
  }

  .header-phone-grid strong {
    font-size: 11px;
  }

  .account-link {
    padding: 0 12px;
  }
}

@media (max-width: 1320px) and (min-width: 901px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 900px) {
  .top-header {
    padding: 0;
  }

  .header-card {
    width: 100%;
    min-height: 64px;
    padding: 0 10px 0 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-radius: 0 0 10px 10px;
  }

  .header-tools {
    margin-left: auto;
  }

  .brand img {
    width: 250px;
    max-width: 58vw;
    min-width: 0;
  }

  .main-nav,
  .header-call-center {
    display: none;
  }

  .account-link {
    width: 42px;
    min-height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .account-link > span:last-child {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .page {
    padding: 0 0 24px;
  }

  .page-hero {
    width: 100%;
    min-height: auto;
    margin-top: -66px;
    padding: 90px 18px 22px;
    border-radius: 0 0 18px 18px;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    max-width: none;
    width: 100%;
    padding-top: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .info-card {
    margin-top: 22px;
  }

  .theme-home .info-card {
    width: 100%;
    max-width: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    font-size: 12px;
  }

  .quick-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .theme-home .quick-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-home .tile {
    min-height: 88px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 16px 18px;
    grid-template-columns: minmax(0, 1fr) 30px;
  }

  .theme-home .tile strong {
    font-size: 13px;
    min-width: 0;
    padding-right: 8px;
    overflow-wrap: break-word;
  }

  .theme-home .tile-icon {
    justify-self: end;
  }

  .theme-home .tile-icon .icon {
    width: 28px;
    height: 28px;
  }

  .tile {
    min-height: 116px;
  }

  .content-area {
    width: calc(100% - 24px);
  }

  .panel-grid,
  .cards-grid,
  .contact-grid,
  .contact-source-grid,
  .doc-link-list,
  .form-grid,
  .page-directory,
  .service-link-grid,
  .reading-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-panel-wide {
    grid-column: 1 / -1;
  }

  .news-panel-wide .news-list {
    grid-template-columns: 1fr;
  }

  .app-panel {
    padding-right: 22px;
  }

  .phone-mock {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px auto 0;
    transform: rotate(4deg);
  }

  .news-row {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .news-thumb {
    width: 78px;
    height: 62px;
  }

  .news-card {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 0;
  }

  .news-card .news-thumb {
    width: 88px;
    height: 66px;
  }

  .news-featured-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-featured-media {
    min-height: 210px;
  }

  .news-featured-copy {
    padding: 22px;
  }

  .news-featured-copy strong {
    font-size: 24px;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-detail-media {
    min-height: 170px;
  }

  .doc-link-card {
    grid-template-columns: 46px minmax(0, 1fr) 24px;
  }

  .doc-filter-state {
    display: grid;
  }

  .regulator-section summary {
    min-height: 62px;
    padding: 16px;
    font-size: 16px;
  }

  .legacy-rich-section summary {
    min-height: 58px;
    padding: 15px;
    font-size: 16px;
  }

  .legacy-rich-section-body {
    padding: 16px;
  }

  .regulator-body {
    padding: 16px;
  }

  .regulator-body table {
    min-width: 680px;
  }

  .footer-card {
    width: 100%;
    padding: 24px 18px 16px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 520px) {
  .header-icon,
  .account-link {
    width: 38px;
    min-height: 38px;
  }

  .brand img {
    width: min(225px, calc(100vw - 154px));
    max-width: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: min(100%, calc(100vw - 64px));
    min-width: 0;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-actions {
    width: min(100%, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
  }

  .account-lookup-link {
    width: min(100%, calc(100vw - 64px));
    padding: 10px 12px;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
  }

  .account-lookup-icon {
    width: 36px;
    height: 36px;
  }

  .account-lookup-link strong {
    font-size: 13px;
  }

  .hero-copy,
  .hero-copy p,
  .info-card,
  .quick-tiles {
    max-width: calc(100vw - 64px);
  }

  .hero-copy h1 {
    font-size: clamp(26px, 7vw, 29px);
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .quick-tiles {
    grid-template-columns: 1fr;
  }

  .theme-home .quick-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tile {
    padding: 14px 10px;
  }
}

.admin-page {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 40px;
}

.admin-login-page {
  width: 100%;
  min-height: 100vh;
  padding: 32px 16px;
  display: grid;
  place-items: center;
}

.admin-login-card {
  width: min(100%, 620px);
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px rgba(7, 20, 46, 0.13);
  backdrop-filter: blur(18px);
}

.admin-login-card .eyebrow {
  justify-content: center;
}

.admin-login-card h1 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.08;
  text-align: center;
}

.admin-login-card > p {
  max-width: 520px;
  margin: 0 auto 24px;
  color: #56647b;
  text-align: center;
}

.admin-login-card .admin-form {
  grid-template-columns: 1fr;
  padding: 0;
  border: 0;
  background: transparent;
}

.admin-login-card .admin-form .button {
  width: 100%;
  min-height: 52px;
}

.admin-login-card .admin-error {
  min-height: 20px;
  text-align: center;
}

.admin-demo-login {
  margin-top: 4px;
  color: #65728a;
  font-size: 13px;
  text-align: center;
}

.admin-command-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(122, 137, 163, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 30px rgba(7, 20, 46, 0.08);
}

.admin-identity,
.admin-actions,
.admin-mode-label,
.admin-status {
  display: flex;
  align-items: center;
}

.admin-identity {
  min-width: 0;
  gap: 14px;
}

.admin-identity img {
  width: 220px;
  max-width: 25vw;
}

.admin-identity-divider {
  width: 1px;
  align-self: stretch;
  background: #dde3ec;
}

.admin-identity > div {
  display: grid;
  gap: 3px;
}

.admin-mode-label {
  gap: 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-mode-label .icon {
  width: 14px;
  height: 14px;
}

.admin-identity strong {
  color: var(--navy);
  font-size: 18px;
}

.admin-actions {
  justify-content: flex-end;
  gap: 10px;
}

.admin-actions .button {
  min-height: 42px;
  padding: 9px 14px;
}

.admin-status {
  gap: 7px;
  margin-right: 6px;
  color: #65728a;
  font-size: 12px;
  font-weight: 800;
}

.admin-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25a968;
  box-shadow: 0 0 0 4px rgba(37, 169, 104, 0.12);
}

.admin-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px 16px;
}

.admin-intro h1 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 30px;
}

.admin-intro p,
.admin-storage-note {
  margin: 0;
  color: #65728a;
  font-size: 13px;
  font-weight: 700;
}

.admin-storage-note {
  padding: 8px 10px;
  border: 1px solid #e1e6ee;
  border-radius: 6px;
  background: #fff;
}

.admin-layout {
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(7, 20, 46, 0.07);
}

.admin-tabs {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  padding: 8px;
  border-bottom: 1px solid #dfe5ee;
  background: #edf2f7;
}

.admin-tab {
  min-height: 44px;
  padding: 8px 12px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #536077;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  cursor: pointer;
}

.admin-tab:hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.68);
}

.admin-tab.active {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 3px 12px rgba(7, 20, 46, 0.1);
}

.admin-workspace {
  padding: 22px;
}

.admin-section-heading,
.admin-library-head,
.admin-preview-label,
.admin-post-meta,
.admin-post-actions {
  display: flex;
  align-items: center;
}

.admin-section-heading {
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  scroll-margin-top: 16px;
}

.admin-section-heading h2,
.admin-library-head h3 {
  margin: 3px 0 4px;
  color: var(--navy);
}

.admin-section-heading p,
.admin-library-head p {
  margin: 0;
  color: #6a768b;
  font-size: 13px;
  font-weight: 650;
}

.admin-section-kicker {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-section-kicker .icon {
  width: 15px;
  height: 15px;
}

.admin-edit-mode,
.admin-create-mode {
  margin-bottom: 18px;
  border-radius: 8px;
}

.admin-edit-mode {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 138, 0, 0.45);
  border-left: 5px solid var(--orange);
  background: #fff7ea;
  box-shadow: 0 10px 26px rgba(196, 104, 0, 0.1);
}

.admin-edit-mode-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--orange);
}

.admin-edit-mode-icon .icon {
  width: 21px;
  height: 21px;
}

.admin-edit-mode > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.admin-edit-mode strong {
  color: #9a5000;
  font-size: 14px;
}

.admin-edit-mode > div > span {
  overflow: hidden;
  color: var(--navy);
  font-size: 13px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-edit-mode .button {
  min-height: 42px;
  padding: 9px 14px;
}

.admin-create-mode {
  display: flex;
  align-items: center;
  gap: 10px 18px;
  padding: 11px 14px;
  border: 1px solid #dfe5ee;
  background: #f8fafc;
  color: #68758b;
}

.admin-create-mode > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.admin-create-mode .icon {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.admin-post-form.is-editing {
  border-color: rgba(255, 138, 0, 0.48);
  box-shadow: inset 4px 0 0 var(--orange), 0 14px 34px rgba(196, 104, 0, 0.08);
}

.admin-count {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 6px;
  background: #fff4e7;
  color: #bd6200;
  font-size: 12px;
  font-weight: 850;
}

.admin-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: 20px;
  align-items: start;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 20px;
  border: 1px solid #e0e5ed;
  border-radius: 8px;
  background: #fff;
}

.admin-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  color: #4f5d73;
  font-size: 12px;
  font-weight: 850;
}

.admin-form label > span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-form label > span .icon {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.admin-form .full {
  grid-column: 1 / -1;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9e0e9;
  border-radius: 6px;
  background: #f8fafc;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.admin-form input,
.admin-form select {
  min-height: 44px;
  padding: 0 12px;
}

.admin-form textarea {
  padding: 12px;
  line-height: 1.5;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.12);
}

.admin-title-field input {
  min-height: 52px;
  font-size: 18px;
  font-weight: 800;
}

.admin-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column: 1 / -1;
  gap: 12px;
}

.admin-media-select {
  align-self: end;
}

.admin-image-upload {
  position: relative;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  align-items: center !important;
  gap: 4px 10px !important;
  min-height: 72px;
  padding: 13px 15px;
  overflow: hidden;
  border: 1px dashed #f0ad5c;
  border-radius: 7px;
  background: #fff9f1;
  color: var(--navy);
  cursor: pointer;
}

.admin-image-upload input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.admin-image-upload strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
}

.admin-image-upload strong .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.admin-image-upload small {
  color: #79849a;
  font-size: 11px;
  font-weight: 700;
}

.admin-image-upload:hover {
  border-color: var(--orange);
  background: #fff5e7;
}

.admin-form-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 10px;
}

.admin-form-actions .button {
  min-height: 44px;
}

.admin-live-preview {
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid #e0e5ed;
  border-radius: 8px;
  background: #f8fafc;
}

.admin-preview-label {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid #e0e5ed;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(12px);
}

/* Final responsive header balance: navigation has priority over phone numbers. */
@media (min-width: 1200px) {
  .main-nav {
    display: flex;
  }
}

@media (max-width: 1199px) and (min-width: 901px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 1500px) and (min-width: 901px) {
  .header-call-center {
    display: none;
  }
}

@media (max-width: 1700px) and (min-width: 1501px) {
  .main-nav .nav-link,
  .main-nav .nav-parent {
    padding-inline: 4px;
    font-size: 14px;
  }
}

@media (max-width: 1500px) and (min-width: 1151px) {
  .brand img {
    width: 280px;
    min-width: 260px;
  }

  .main-nav .nav-link,
  .main-nav .nav-parent {
    padding-inline: 2px;
    font-size: 13px;
  }
}

.admin-preview-label span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.admin-preview-switch {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid #dfe5ee;
  border-radius: 6px;
  background: #eef2f7;
}

.admin-preview-switch button {
  min-height: 30px;
  padding: 5px 9px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #748097;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.admin-preview-switch button.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(7, 20, 46, 0.08);
}

.admin-preview-post {
  margin: 14px;
  overflow: hidden;
  border: 1px solid #e1e6ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 20, 46, 0.08);
}

.admin-preview-image,
.admin-post-thumb {
  display: block;
  background-position: center;
  background-size: cover;
}

.admin-preview-image {
  aspect-ratio: 16 / 8;
  background-image: var(--preview-image);
}

.admin-preview-post > div {
  padding: 15px;
}

.admin-preview-post small {
  display: block;
  margin: 9px 0 6px;
  color: #758097;
  font-size: 11px;
  font-weight: 750;
}

.admin-preview-post h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
}

.admin-preview-post p {
  margin: 0;
  color: #5e6b80;
  font-size: 13px;
  line-height: 1.45;
}

.admin-library-head {
  justify-content: space-between;
  margin: 28px 0 14px;
}

.admin-post-list {
  display: grid;
  gap: 10px;
}

.admin-empty-state {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 34px 20px;
  border: 1px dashed #d8e0ea;
  border-radius: 8px;
  background: #f8fafc;
  color: #758198;
  text-align: center;
}

.admin-empty-state strong {
  color: var(--navy);
}

.admin-news-archive {
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  background: #f8fafc;
}

.admin-news-archive summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 20px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 16px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}

.admin-news-archive summary::-webkit-details-marker {
  display: none;
}

.admin-news-archive summary > span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 850;
}

.admin-news-archive summary strong {
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 5px;
  background: #fff1df;
  color: #b86000;
  font-size: 12px;
  text-align: center;
}

.admin-news-archive summary > .icon {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.admin-news-archive[open] summary > .icon {
  transform: rotate(180deg);
}

.admin-news-archive-body {
  padding: 0 14px 14px;
  border-top: 1px solid #dfe5ee;
  background: #fff;
}

.admin-news-archive-body > p {
  margin: 14px 0;
  color: #6c788e;
  font-size: 12px;
  font-weight: 700;
}

.admin-post-card {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 12px;
  border: 1px solid #e0e5ed;
  border-radius: 8px;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.admin-post-card:hover {
  border-color: #ccd5e2;
  box-shadow: 0 8px 22px rgba(7, 20, 46, 0.07);
}

.admin-post-thumb {
  width: 130px;
  height: 92px;
  border-radius: 6px;
  background-image: var(--post-image);
}

.admin-post-card-body {
  min-width: 0;
}

.admin-post-meta {
  gap: 9px;
  margin-bottom: 7px;
  color: #768198;
  font-size: 11px;
  font-weight: 750;
}

.admin-post-card h3 {
  margin: 0 0 5px;
  overflow: hidden;
  color: var(--navy);
  font-size: 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-post-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #667389;
  font-size: 12px;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.admin-post-actions {
  gap: 6px;
}

.admin-post-actions button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 36px;
  padding: 7px 9px;
  border: 1px solid #dce2eb;
  border-radius: 5px;
  background: #f8fafc;
  color: #46536a;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.admin-post-actions button:hover {
  border-color: #ffc173;
  color: #b65c00;
  background: #fff8ef;
}

.admin-post-actions button.danger:hover {
  border-color: #ffb4aa;
  color: #c53627;
  background: #fff4f2;
}

.admin-post-actions .icon {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .payment-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reading-service-grid {
    grid-template-columns: 1fr;
  }

  .reading-contact-grid {
    grid-template-columns: 1fr;
  }

  .reading-contact-card:last-child .reading-phone-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reading-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reading-benefit + .reading-benefit {
    border-left: 0;
  }

  .reading-benefit:nth-child(even) {
    border-left: 1px solid rgba(136, 151, 176, 0.18);
  }

  .reading-benefit:nth-child(n + 3) {
    border-top: 1px solid rgba(136, 151, 176, 0.18);
  }

  .admin-command-bar,
  .admin-intro {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .admin-status {
    width: 100%;
    margin-bottom: 4px;
  }

  .admin-tabs {
    display: flex;
    overflow-x: auto;
  }

  .admin-tab {
    min-width: 150px;
  }

  .admin-post-layout {
    grid-template-columns: 1fr;
  }

  .admin-live-preview {
    position: static;
  }

  .admin-post-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .admin-post-thumb {
    width: 96px;
    height: 80px;
  }

  .admin-post-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 520px) {
  .payment-panel {
    gap: 18px;
  }

  .payment-panel-head {
    align-items: flex-start;
  }

  .payment-account-link {
    padding: 16px;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .payment-account-link > .icon {
    display: none;
  }

  .payment-account-icon {
    width: 42px;
    height: 42px;
  }

  .payment-account-link strong {
    font-size: 15px;
  }

  .payment-service-grid {
    grid-template-columns: 1fr;
  }

  .payment-service {
    min-height: 148px;
    grid-template-rows: 88px auto;
  }

  .payment-service-logo {
    height: 88px;
  }

  .readings-panel {
    gap: 18px;
  }

  .readings-intro h2 {
    font-size: 30px;
  }

  .reading-service {
    min-height: 116px;
    padding: 16px;
    grid-template-columns: 54px minmax(0, 1fr) 18px;
    gap: 12px;
  }

  .reading-service-logo,
  .reading-service-logo img,
  .reading-mark {
    width: 54px;
    height: 54px;
  }

  .reading-service-logo .reading-logo-zoe {
    width: 54px;
    height: 54px;
  }

  .reading-service-logo .reading-logo-uz {
    width: 54px;
    height: auto;
  }

  .reading-mark {
    font-size: 15px;
  }

  .reading-contact-section {
    padding: 14px;
  }

  .reading-contact-heading {
    align-items: flex-start;
  }

  .reading-contact-heading h3 {
    font-size: 17px;
  }

  .reading-phone-list,
  .reading-contact-card:last-child .reading-phone-list {
    grid-template-columns: 1fr;
  }

  .reading-benefit-grid {
    grid-template-columns: 1fr;
  }

  .reading-benefit:nth-child(even) {
    border-left: 0;
  }

  .reading-benefit + .reading-benefit {
    border-top: 1px solid rgba(136, 151, 176, 0.18);
  }

  .theme-home .tile {
    min-height: 96px;
    padding: 14px 12px 14px 14px;
    grid-template-columns: minmax(0, 1fr) 26px;
  }

  .theme-home .tile strong {
    padding-right: 4px;
    font-size: 12px;
    line-height: 1.15;
  }

  .theme-home .tile-icon .icon {
    width: 25px;
    height: 25px;
  }

  .admin-page {
    width: min(100% - 20px, 1500px);
    padding-top: 10px;
  }

  .admin-identity {
    align-items: flex-start;
  }

  .admin-identity img {
    width: 150px;
    max-width: 42vw;
  }

  .admin-identity strong {
    font-size: 15px;
  }

  .admin-actions .button {
    width: auto;
  }

  .admin-workspace {
    padding: 14px;
  }

  .admin-section-heading,
  .admin-library-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-edit-mode {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .admin-edit-mode .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .admin-create-mode {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .admin-field-row {
    grid-template-columns: 1fr;
  }

  .admin-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-form-actions .button {
    width: 100%;
  }

  .admin-post-card {
    grid-template-columns: 1fr;
  }

  .admin-post-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
  }

  .admin-post-actions {
    justify-content: stretch;
  }

  .admin-post-actions button {
    flex: 1;
    justify-content: center;
  }
}

.admin-article-preview {
  margin: 14px;
  overflow: hidden;
  border: 1px solid #e1e6ee;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 20, 46, 0.08);
}

.admin-article-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 16px 0;
}

.admin-article-preview-head small {
  color: #758097;
  font-size: 11px;
  font-weight: 750;
}

.admin-article-preview > h3 {
  margin: 12px 16px 16px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.15;
}

.admin-article-cover {
  display: block;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  background: #edf1f6;
}

.admin-article-body {
  padding: 18px 16px;
}

.admin-article-body p {
  margin: 0;
  color: #5e6b80;
  font-size: 13px;
  line-height: 1.65;
  font-weight: 650;
}

.admin-article-body .news-inline-image {
  margin: 2px 0;
}

.admin-article-body .news-inline-image img {
  border-radius: 7px;
}

.admin-article-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0 16px 16px;
}

.admin-article-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 7px;
}

.admin-gallery-editor {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid #e0e5ed;
  border-radius: 8px;
  background: #f8fafc;
}

.admin-gallery-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-gallery-heading > div {
  display: grid;
  gap: 4px;
}

.admin-gallery-heading strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: 14px;
}

.admin-gallery-heading strong .icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.admin-gallery-heading small,
.admin-gallery-item small,
.admin-gallery-empty {
  color: #748097;
  font-size: 12px;
  font-weight: 700;
}

.admin-gallery-count {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 6px;
  background: #fff0dc;
  color: #b96500;
  font-size: 12px;
  font-weight: 850;
}

.admin-gallery-upload {
  min-height: 62px;
}

.admin-gallery-list {
  display: grid;
  gap: 8px;
}

.admin-gallery-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border: 1px solid #e0e5ed;
  border-radius: 7px;
  background: #fff;
}

.admin-gallery-item img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 6px;
}

.admin-gallery-item > div:not(.admin-gallery-actions) {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.admin-gallery-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-gallery-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-gallery-actions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid #dce2eb;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.admin-gallery-actions button:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.admin-gallery-actions button.danger {
  padding-inline: 8px;
  color: #bd2730;
}

.admin-gallery-actions .icon {
  width: 16px;
  height: 16px;
}

.admin-gallery-empty {
  margin: 0;
  padding: 10px 0 2px;
}

@media (max-width: 700px) {
  .admin-preview-label {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-preview-switch button {
    flex: 1;
  }

  .admin-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-gallery-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .admin-gallery-item img {
    width: 64px;
    height: 52px;
  }

  .admin-gallery-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .admin-gallery-actions button:first-child {
    flex: 1;
    justify-content: center;
  }

  .gas-license-notice {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .gas-contact-card {
    padding: 16px;
  }

  .gas-contact-heading {
    align-items: flex-start;
  }

  .gas-contact-heading h3 {
    font-size: 18px;
  }

  .gas-contact-grid {
    grid-template-columns: 1fr;
  }

  .gas-contact-detail,
  .gas-contact-detail:nth-child(odd),
  .gas-contact-detail:nth-last-child(-n + 2) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(136, 151, 176, 0.2);
  }

  .gas-contact-detail:last-child {
    border-bottom: 0;
  }
}

.admin-page-code-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-code-editor,
.admin-page-code-preview {
  border: 1px solid #d8dfeb;
  border-radius: 8px;
  background: #f8fafc;
  padding: 18px;
}

.admin-code-editor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.admin-code-editor-head > div {
  min-width: 0;
}

.admin-code-editor-head strong {
  display: block;
  color: #101a33;
  font-size: 16px;
}

.admin-code-editor-head small {
  display: block;
  max-width: 780px;
  margin-top: 5px;
  color: #64718a;
  line-height: 1.5;
}

.admin-form .admin-code-area {
  min-height: 320px;
  resize: vertical;
  border-color: #c7d0df;
  background: #0f172a;
  color: #e6edf7;
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  line-height: 1.55;
  tab-size: 2;
}

.admin-form .admin-code-area:focus {
  border-color: #ff8a00;
  background: #0f172a;
  color: #fff;
}

.admin-form .admin-css-area {
  min-height: 220px;
}

.admin-page-code-preview {
  background: #fff;
}

.admin-page-code-preview .source-content {
  min-height: 120px;
  padding: 8px 0 0;
}

.admin-page-preview-empty {
  margin: 20px 0;
  color: #718096;
}

.managed-page-content > :first-child {
  margin-top: 0;
}

.managed-page-content > :last-child {
  margin-bottom: 0;
}

.managed-page-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.admin-files-section {
  min-width: 0;
}

/* Full site navigation */
.header-tools .menu-toggle {
  display: grid;
}

@media (min-width: 901px) {
  .header-card {
    position: relative;
  }

  .header-tools .menu-toggle {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }

  .main-nav {
    padding-left: 54px;
  }
}

.mobile-menu {
  inset: 100px 24px auto auto;
  width: min(780px, calc(100vw - 48px));
  max-height: calc(100vh - 112px);
  padding: 20px;
  border-radius: 8px;
}

.site-menu-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 16px;
  border-bottom: 1px solid var(--line);
}

.site-menu-heading small,
.site-menu-heading strong {
  display: block;
  padding: 0;
}

.site-menu-heading small {
  margin-bottom: 4px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.site-menu-heading strong {
  color: var(--ink);
  font-size: 20px;
}

.site-menu-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.site-menu-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.site-menu-group > strong {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.site-menu-group .mobile-sub {
  padding: 0;
}

.site-menu-group .mobile-sub a {
  min-height: 38px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
}

.site-menu-group .mobile-sub a:hover,
.site-menu-group .mobile-sub a.active {
  color: var(--orange);
  background: rgba(255, 138, 0, 0.08);
}

.site-menu-group .mobile-sub .icon {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.home-direct-links {
  width: min(100%, 480px);
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-direct-links > a {
  min-width: 0;
  min-height: 58px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 16px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 138, 0, 0.26);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.2);
}

.home-direct-links > a:hover {
  border-color: rgba(255, 138, 0, 0.58);
  background: rgba(255, 255, 255, 0.9);
}

.home-direct-links > a > .icon:first-child,
.home-direct-links > a > .icon:last-child {
  color: var(--orange);
}

.home-direct-links strong,
.home-direct-links small {
  display: block;
}

.home-direct-links strong {
  font-size: 12px;
  line-height: 1.25;
}

.home-direct-links small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
}

/* Procurement information for participants */
.procurement-participant {
  display: grid;
  gap: 18px;
}

.procurement-intro {
  padding: 20px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 138, 0, 0.06);
}

.procurement-intro-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: #fff;
}

.procurement-intro h3,
.procurement-intro p {
  margin: 0;
}

.procurement-intro h3 {
  font-size: 22px;
}

.procurement-intro p {
  margin-top: 6px;
}

.procurement-requirements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.procurement-requirements article {
  padding: 18px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid rgba(136, 151, 176, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.procurement-requirements article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: rgba(255, 138, 0, 0.1);
  font-size: 13px;
  font-weight: 950;
}

.procurement-requirements h3,
.procurement-requirements p,
.procurement-requirements ul {
  margin: 0;
}

.procurement-requirements h3 {
  font-size: 18px;
}

.procurement-requirements ul {
  margin-top: 10px;
}

.procurement-forms {
  display: grid;
  gap: 10px;
}

.procurement-table-wrap {
  overflow-x: auto;
}

.procurement-table-wrap table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
}

.procurement-table-wrap th,
.procurement-table-wrap td {
  padding: 11px 12px;
  border: 1px solid rgba(136, 151, 176, 0.25);
  text-align: left;
  vertical-align: top;
}

.procurement-table-wrap th:first-child,
.procurement-table-wrap td:first-child {
  width: 54px;
  text-align: center;
}

.procurement-note {
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  border: 1px solid rgba(255, 138, 0, 0.36);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 138, 0, 0.08);
}

.procurement-note .icon {
  color: var(--orange);
}

.procurement-note p {
  margin: 0;
}

/* Printed bill delivery */
.bill-delivery-panel {
  display: grid;
  gap: 22px;
}

.bill-delivery-lead {
  padding: 20px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  border-left: 4px solid var(--orange);
  background: rgba(255, 138, 0, 0.06);
}

.bill-delivery-lead > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: #fff;
}

.bill-delivery-lead h3,
.bill-delivery-lead p,
.bill-delivery-steps p {
  margin: 0;
}

.bill-delivery-lead p {
  margin-top: 6px;
  color: var(--muted);
}

.bill-delivery-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.bill-delivery-steps li {
  min-width: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.bill-delivery-steps li > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-weight: 950;
}

.bill-delivery-steps strong {
  color: var(--ink);
}

.bill-delivery-steps p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.bill-delivery-steps a {
  color: var(--orange);
  font-weight: 900;
}

.bill-delivery-action {
  width: fit-content;
}

@media (max-width: 900px) {
  .mobile-menu {
    inset: 72px 12px auto;
    width: auto;
    max-height: calc(100vh - 84px);
  }

  .site-menu-grid,
  .procurement-requirements,
  .bill-delivery-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .mobile-menu {
    padding: 16px;
  }

  .site-menu-grid,
  .home-direct-links {
    grid-template-columns: 1fr;
  }

  .procurement-intro,
  .bill-delivery-lead {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 16px;
  }

  .procurement-intro-icon,
  .bill-delivery-lead > span {
    width: 40px;
    height: 40px;
  }

  .procurement-requirements article {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 15px;
  }

  .procurement-requirements article > span {
    width: 36px;
    height: 36px;
  }
}

.admin-file-create-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-file-create-row form,
.admin-file-upload-form {
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 12px;
  border: 1px solid #dbe2ec;
  border-radius: 8px;
  background: #f8fafc;
}

.admin-file-create-row label,
.admin-file-upload-form label,
.admin-file-filters label {
  display: grid;
  flex: 1;
  gap: 6px;
  min-width: 0;
  color: #536077;
  font-size: 12px;
  font-weight: 800;
}

.admin-file-create-row input,
.admin-file-filters input,
.admin-file-filters select,
.admin-file-upload-form input[type="file"] {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  font: inherit;
}

.admin-file-picker {
  max-width: 170px;
}

.admin-file-picker span {
  display: none;
}

.admin-file-manager {
  display: grid;
  grid-template-columns: minmax(290px, 0.36fr) minmax(0, 1fr);
  min-height: 720px;
  overflow: hidden;
  border: 1px solid #d8dfeb;
  border-radius: 8px;
  background: #fff;
}

.admin-file-browser {
  min-width: 0;
  border-right: 1px solid #d8dfeb;
  background: #f5f7fa;
}

.admin-file-filters {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid #d8dfeb;
}

.admin-file-count {
  padding: 9px 13px;
  border-bottom: 1px solid #e3e8f0;
  color: #6a768b;
  font-size: 12px;
  font-weight: 800;
}

.admin-file-list {
  max-height: 720px;
  overflow: auto;
  padding: 6px;
}

.admin-file-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 8px 9px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.admin-file-row:hover,
.admin-file-row.active {
  background: #fff;
  box-shadow: 0 2px 9px rgba(7, 20, 46, 0.08);
}

.admin-file-row.active {
  color: #b75b00;
  outline: 1px solid rgba(255, 138, 0, 0.35);
}

.admin-file-kind {
  display: grid;
  place-items: center;
  color: #77849a;
}

.admin-file-kind .icon {
  width: 18px;
  height: 18px;
}

.admin-file-row strong,
.admin-file-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-file-row strong {
  font-size: 13px;
}

.admin-file-row small {
  margin-top: 3px;
  color: #7a8699;
  font-size: 11px;
}

.admin-file-editor {
  min-width: 0;
  padding: 18px;
}

.admin-file-placeholder,
.admin-binary-file {
  min-height: 440px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 30px;
  color: #718096;
  text-align: center;
}

.admin-file-placeholder strong,
.admin-binary-file strong {
  color: var(--navy);
  font-size: 20px;
}

.admin-binary-file .icon {
  width: 48px;
  height: 48px;
  color: var(--orange);
}

.admin-binary-preview {
  display: block;
  max-width: min(100%, 680px);
  max-height: 430px;
  object-fit: contain;
  border: 1px solid #d8dfeb;
  border-radius: 7px;
  background: #fff;
}

.admin-file-editor-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.admin-file-editor-head h2 {
  margin: 5px 0 3px;
  color: var(--navy);
  font-size: 22px;
  overflow-wrap: anywhere;
}

.admin-file-editor-head p {
  margin: 0;
  color: #6a768b;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.admin-file-dirty {
  flex: 0 0 auto;
  padding: 7px 9px;
  border-radius: 5px;
  background: #e9f7ef;
  color: #1f7a4c;
  font-size: 11px;
  font-weight: 900;
}

.admin-file-dirty.is-dirty {
  background: #fff0dc;
  color: #9a4c00;
}

.admin-file-warning,
.admin-file-success {
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid #f1d2a9;
  border-radius: 6px;
  background: #fff8ee;
  color: #7b4a16;
  font-size: 12px;
  font-weight: 750;
}

.admin-file-success {
  border-color: #bfe5cf;
  background: #effaf4;
  color: #286848;
}

.admin-file-code {
  width: 100%;
  min-height: 520px;
  resize: vertical;
  padding: 16px;
  border: 1px solid #243149;
  border-radius: 7px;
  outline: 0;
  background: #0f172a;
  color: #e6edf7;
  font-family: Consolas, "Courier New", monospace;
  font-size: 14px;
  line-height: 1.55;
  tab-size: 2;
  white-space: pre;
}

.admin-file-code:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.12);
}

.admin-file-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 12px;
}

.button.danger-button {
  border-color: #e7b9bd;
  background: #fff;
  color: #b4232f;
}

.button.danger-button:hover {
  background: #fff1f2;
}

.admin-file-upload-form {
  margin-top: 12px;
}

.admin-file-history {
  margin-top: 14px;
  border-top: 1px solid #dfe5ee;
}

.admin-file-history summary {
  padding: 14px 2px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.admin-file-history > div {
  display: grid;
  gap: 7px;
  padding-bottom: 8px;
}

.admin-file-version {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #dfe5ee;
  border-radius: 6px;
  background: #fff;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
}

.admin-file-version:hover {
  border-color: rgba(255, 138, 0, 0.55);
}

.admin-file-version strong,
.admin-file-version small {
  display: block;
}

.admin-file-version small {
  margin-top: 2px;
  color: #748096;
}

.admin-file-empty {
  margin: 0;
  padding: 18px 12px;
  color: #718096;
  font-size: 13px;
}

@media (max-width: 800px) {
  .admin-page-code-form {
    grid-template-columns: 1fr;
  }

  .admin-code-editor,
  .admin-page-code-preview {
    padding: 14px;
  }

  .admin-code-editor-head {
    flex-direction: column;
  }

  .admin-code-editor-head .button {
    width: 100%;
  }

  .admin-file-create-row,
  .admin-file-manager {
    grid-template-columns: 1fr;
  }

  .admin-file-create-row form,
  .admin-file-upload-form,
  .admin-file-editor-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-file-browser {
    border-right: 0;
    border-bottom: 1px solid #d8dfeb;
  }

  .admin-file-list {
    max-height: 320px;
  }

  .admin-file-editor {
    padding: 12px;
  }

  .admin-file-code {
    min-height: 430px;
    font-size: 13px;
  }
}

/* Public-site readability pass for an audience that includes users aged 50+. */
.account-link {
  width: 42px;
  padding: 0;
  display: grid;
  place-items: center;
}

.account-link > span:last-child {
  display: none;
}

@media (min-width: 901px) {
  body:not(.admin-route) {
    font-size: 18px;
  }

  body:not(.admin-route) .hero-copy h1 {
    font-size: clamp(46px, 4.35vw, 74px);
  }

  body:not(.admin-route) .theme-home .hero-copy h1 span {
    font-size: clamp(36px, 3.55vw, 56px);
    line-height: 1.04;
  }

  body:not(.admin-route) .eyebrow,
  body:not(.admin-route) .button,
  body:not(.admin-route) .tile strong,
  body:not(.admin-route) .info-row strong,
  body:not(.admin-route) .home-direct-links strong,
  body:not(.admin-route) .account-lookup-link strong {
    font-size: 17px;
  }

  body:not(.admin-route) .page p,
  body:not(.admin-route) .page li,
  body:not(.admin-route) .page td,
  body:not(.admin-route) .page label,
  body:not(.admin-route) .page input,
  body:not(.admin-route) .page textarea,
  body:not(.admin-route) .page select {
    font-size: 17px;
    line-height: 1.6;
  }

  body:not(.admin-route) .page small,
  body:not(.admin-route) .footer-card p,
  body:not(.admin-route) .footer-card a,
  body:not(.admin-route) .footer-card span,
  body:not(.admin-route) .home-direct-links small,
  body:not(.admin-route) .account-lookup-link small,
  body:not(.admin-route) .header-call-center > small {
    font-size: 15px;
  }

  body:not(.admin-route) .panel h2,
  body:not(.admin-route) .wide-panel h2,
  body:not(.admin-route) .form-panel h2 {
    font-size: 30px;
  }

  body:not(.admin-route) .wide-panel h3,
  body:not(.admin-route) .form-panel h3 {
    font-size: 22px;
  }

  body:not(.admin-route) .footer-card h3 {
    font-size: 17px;
  }

  body:not(.admin-route) .header-phone-grid strong {
    font-size: 15px;
  }

  body:not(.admin-route) .main-nav .nav-link {
    font-size: 16px;
  }

  body:not(.admin-route) .hero-info-link span,
  body:not(.admin-route) .news-card small,
  body:not(.admin-route) .news-card strong,
  body:not(.admin-route) .site-footer p,
  body:not(.admin-route) .site-footer a,
  body:not(.admin-route) .site-footer span,
  body:not(.admin-route) .site-footer .button,
  body:not(.admin-route) .home-direct-links small {
    font-size: 16px;
  }

  body:not(.admin-route) .store-badge {
    font-size: 14px;
  }

  body:not(.admin-route) .hero-copy h1 {
    font-size: clamp(50px, 5.4vw, 80px);
  }

  body:not(.admin-route) .theme-home .hero-copy h1 span {
    font-size: clamp(40px, 4.2vw, 62px);
  }
}

@media (max-width: 900px) {
  body:not(.admin-route) {
    font-size: 17px;
  }

  body:not(.admin-route) .page p,
  body:not(.admin-route) .page li,
  body:not(.admin-route) .page td,
  body:not(.admin-route) .page label,
  body:not(.admin-route) .page input,
  body:not(.admin-route) .page textarea,
  body:not(.admin-route) .page select {
    font-size: 16px;
    line-height: 1.55;
  }

  body:not(.admin-route) .page small,
  body:not(.admin-route) .home-direct-links small,
  body:not(.admin-route) .account-lookup-link small {
    font-size: 14px;
  }

  body:not(.admin-route) .home-direct-links strong,
  body:not(.admin-route) .account-lookup-link strong {
    font-size: 16px;
  }
}

@media (max-width: 1700px) and (min-width: 1501px) {
  body:not(.admin-route) .main-nav .nav-link,
  body:not(.admin-route) .main-nav .nav-parent {
    padding-inline: 4px;
    font-size: 14px;
  }
}

@media (max-width: 1500px) and (min-width: 1151px) {
  body:not(.admin-route) .brand img {
    width: 280px;
    min-width: 260px;
  }

  body:not(.admin-route) .main-nav .nav-link,
  body:not(.admin-route) .main-nav .nav-parent {
    padding-inline: 2px;
    font-size: 13px;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    inset: 100px auto auto 24px;
  }
}

/* Final header readability overrides. */
:root {
  --muted: #49566c;
}

.header-phone-grid a {
  color: var(--ink);
}

.header-phone-grid .icon {
  color: var(--orange);
}

@media (min-width: 1501px) {
  body:not(.admin-route) .main-nav .nav-link,
  body:not(.admin-route) .main-nav .nav-parent {
    padding-inline: 8px;
    font-size: 16px;
  }
}

@media (min-width: 1321px) and (max-width: 1500px) {
  body:not(.admin-route) .main-nav .nav-link,
  body:not(.admin-route) .main-nav .nav-parent {
    padding-inline: 5px;
    font-size: 14px;
  }
}

/* Keep the home hero focused on the three primary customer journeys. */
.page-hero.theme-home {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding-bottom: 72px;
}

.page-hero.theme-home .hero-inner {
  width: 100%;
}

.home-secondary-services {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 36px 26px 0;
}

.home-secondary-heading {
  margin-bottom: 20px;
}

.home-secondary-heading small {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-secondary-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
}

.home-secondary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: stretch;
  gap: 24px;
}

.home-secondary-links {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 14px;
}

.home-secondary-services .account-lookup-link,
.home-secondary-services .home-direct-links {
  width: 100%;
  max-width: none;
  margin-top: 0;
}

.home-secondary-services .info-card {
  width: 100%;
  margin: 0;
}

.home-secondary-services .quick-tiles {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .page-hero.theme-home {
    min-height: 100svh;
    padding-bottom: 38px;
  }

  .home-secondary-services {
    padding: 28px 14px 0;
  }

  .home-secondary-grid {
    grid-template-columns: 1fr;
  }

  .home-secondary-heading h2 {
    font-size: 25px;
  }
}

/* Final collision guard for desktop zoom levels. */
@media (max-width: 1740px) and (min-width: 901px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 1550px) and (min-width: 901px) {
  .header-call-center {
    display: none;
  }
}

/* Match photo backgrounds to the home page. */
.page-hero:not(.theme-home) {
  color: #fff;
  background-image: linear-gradient(90deg, rgba(4, 15, 35, 0.94) 0%, rgba(4, 15, 35, 0.86) 34%, rgba(4, 15, 35, 0.48) 58%, rgba(4, 15, 35, 0.08) 82%, rgba(4, 15, 35, 0) 100%), url('assets/hero-home-zaporizhzhya.jpeg');
  background-size: cover;
  background-position: center;
}
.page-hero:not(.theme-home) .hero-copy h1 { color: #fff; }
.page-hero:not(.theme-home) .hero-copy p { color: rgba(255, 255, 255, 0.86); }
.page-hero:not(.theme-home)::after {
  background: linear-gradient(180deg, transparent 0%, rgba(239, 244, 250, 0.78) 72%, rgba(239, 244, 250, 0.96) 100%);
}

.page-hero:not(.theme-home)::after { height: 90px; }

/* Larger brand mark without increasing the header height. */
body:not(.admin-route) .brand img {
  width: 410px;
  max-width: min(38vw, 410px);
  min-width: 320px;
}

@media (max-width: 1150px) and (min-width: 901px) {
  body:not(.admin-route) .brand img {
    width: 360px;
    max-width: 42vw;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  body:not(.admin-route) .brand img {
    width: min(300px, calc(100vw - 150px));
    max-width: none;
    min-width: 0;
  }
}

/* Compact full-width service cards on phones. */
@media (max-width: 600px) {
  body:not(.admin-route) .home-secondary-services {
    width: 100%;
    padding-inline: 10px;
  }

  body:not(.admin-route) .home-secondary-services .quick-tiles {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body:not(.admin-route) .home-secondary-services .tile {
    width: 100%;
    min-height: 92px;
    padding: 16px 18px;
    grid-template-columns: 52px minmax(0, 1fr);
    align-content: center;
    align-items: center;
    justify-items: start;
    gap: 16px;
    text-align: left;
  }

  body:not(.admin-route) .home-secondary-services .tile-icon {
    grid-column: 1;
    grid-row: 1;
    width: 52px;
    height: 52px;
    justify-self: start;
  }

  body:not(.admin-route) .home-secondary-services .tile-icon .icon {
    width: 28px;
    height: 28px;
  }

  body:not(.admin-route) .home-secondary-services .tile strong {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
  }
}

/* September editorial refinements from the consolidated review. */
body:not(.admin-route) .brand img {
  filter: drop-shadow(0 2px 2px rgba(7, 20, 46, 0.34)) saturate(1.08) contrast(1.08);
}

@media (min-width: 901px) {
  body:not(.admin-route) .header-tools .menu-toggle {
    border-color: rgba(255, 126, 0, 0.64);
    color: #fff;
    background: linear-gradient(135deg, #ff4c39 0%, #ff8a00 62%, #ffd000 100%);
    box-shadow: 0 10px 26px rgba(255, 116, 0, 0.28);
  }
}

@media (min-width: 1551px) {
  body:not(.admin-route) .header-call-center {
    transform: translateX(-30px);
  }
}

.page-hero.route-contacts .hero-copy {
  max-width: 820px;
}

.page-hero.route-contacts .hero-copy h1 {
  max-width: 900px;
  font-size: clamp(40px, 3.4vw, 56px);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.page-hero.route-small-business .hero-copy h1 .accent-nowrap {
  display: inline;
  white-space: nowrap;
}

.home-secondary-services .quick-tiles {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-secondary-services .calculator-feature-link {
  margin-top: 0;
}

.office-address-list > a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
  text-decoration: none;
}

.office-address-list > a:hover {
  color: var(--orange);
}

.office-address-list > a .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--orange);
}

.branch-contact-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.branch-contact-groups .directory-phone-grid {
  grid-template-columns: 1fr;
}

.directory-email,
.contact-note a {
  font-size: 15px;
}

.contact-note em {
  font-size: 14px;
  line-height: 1.5;
}

.universal-service-overview {
  margin-bottom: 28px;
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 236, 0.88));
  box-shadow: 0 18px 44px rgba(37, 53, 83, 0.1);
}

.universal-service-overview h3 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 0.95;
}

.universal-service-overview h3 span,
.universal-service-overview h3 strong {
  display: block;
}

.universal-service-overview h3 strong {
  color: var(--orange);
}

.universal-audience-links {
  display: grid;
  gap: 12px;
}

.universal-audience-links a {
  min-height: 72px;
  padding: 15px 18px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 138, 0, 0.24);
  border-radius: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-decoration: none;
}

.universal-audience-links a:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.universal-audience-links .icon {
  color: var(--orange);
}

.source-page-vilni-tsiny .accordion-body a {
  display: inline-flex;
  margin-left: 24px;
}

.footer-logo {
  width: 265px;
}

.footer-contact > span {
  align-items: flex-start;
}

@media (max-width: 900px) {
  .page-hero.route-contacts .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 46px);
  }

  .home-secondary-services .quick-tiles,
  .universal-service-overview,
  .branch-contact-groups {
    grid-template-columns: 1fr;
  }

  .source-page-vilni-tsiny .accordion-body a {
    margin-left: 12px;
  }
}

/* Keep the mobile header inside the viewport when the enlarged logo is shown. */
@media (max-width: 600px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body:not(.admin-route) .site-shell,
  body:not(.admin-route) .top-header,
  body:not(.admin-route) .header-card,
  body:not(.admin-route) .page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body:not(.admin-route) .header-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand tools";
    gap: 8px;
    padding-inline: 10px;
  }

  body:not(.admin-route) .brand {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  body:not(.admin-route) .brand img {
    width: 100%;
    max-width: 225px;
    min-width: 0;
  }

  body:not(.admin-route) .header-tools {
    min-width: 0;
    margin-left: 0;
    gap: 6px;
  }

  body:not(.admin-route) .header-icon,
  body:not(.admin-route) .account-link {
    width: 38px;
    min-width: 38px;
    flex: 0 0 38px;
  }
}

/* Visual-only consumer feedback form. */
.violation-form-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255, 138, 0, 0.3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 190, 55, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 54px rgba(7, 20, 46, 0.1);
}

.violation-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--sun));
}

.violation-form-heading {
  max-width: 920px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.violation-form-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--orange);
  background: #fff;
  box-shadow: 0 12px 28px rgba(255, 138, 0, 0.16);
}

.violation-form-icon .icon {
  width: 27px;
  height: 27px;
}

.violation-form-heading small {
  display: block;
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.violation-form-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
}

.violation-form-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.violation-form {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.violation-form label {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
}

.violation-form label > span:first-child b {
  color: var(--red);
}

.violation-form-full {
  grid-column: 1 / -1;
}

.violation-form input:not([type="file"]),
.violation-form select,
.violation-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #d9e0ea;
  border-radius: 11px;
  outline: 0;
  background: rgba(248, 250, 253, 0.92);
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.violation-form input:not([type="file"]),
.violation-form select {
  min-height: 56px;
  padding: 0 16px;
}

.violation-form textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.violation-form input::placeholder,
.violation-form textarea::placeholder {
  color: #8a94a6;
  opacity: 1;
}

.violation-form input:focus,
.violation-form select:focus,
.violation-form textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.12);
}

.violation-form-upload {
  position: relative;
  min-height: 82px;
  padding: 15px 18px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  border: 1px dashed rgba(255, 138, 0, 0.58);
  border-radius: 12px;
  background: rgba(255, 248, 237, 0.74);
  cursor: pointer;
}

.violation-form-upload:hover {
  border-color: var(--orange);
  background: #fff7eb;
}

.violation-form-upload-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--orange));
}

.violation-form-upload-icon .icon {
  width: 21px;
  height: 21px;
}

.violation-form-upload strong,
.violation-form-upload small {
  display: block;
}

.violation-form-upload small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.violation-form-upload input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.violation-form-footer {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.violation-form-status {
  flex: 1 1 300px;
  min-height: 24px;
  margin: 0;
  color: #347251;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .violation-form-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .violation-form-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
  }

  .violation-form-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .violation-form-heading h3 {
    font-size: 23px;
  }

  .violation-form {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .violation-form-full {
    grid-column: auto;
  }

  .violation-form input:not([type="file"]),
  .violation-form select {
    min-height: 54px;
  }

  .violation-form-upload {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 13px;
  }

  .violation-form-upload-icon {
    width: 40px;
    height: 40px;
  }

  .violation-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .violation-form-footer .button {
    width: 100%;
  }

  .violation-form-status {
    flex-basis: auto;
  }
}

/* Visual site editor ------------------------------------------------------ */
.admin-route {
  background: #eef2f7;
}

.admin-route .site-shell,
.admin-route #app {
  width: 100%;
  max-width: none;
}

.admin-page.admin-studio {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.admin-studio-bar {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 70px;
  padding: 10px clamp(14px, 2.4vw, 34px);
  border-bottom: 1px solid #dce2eb;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(7, 20, 46, 0.08);
  backdrop-filter: blur(16px);
}

.admin-studio-title,
.admin-studio-nav,
.admin-studio-actions,
.admin-studio-nav button,
.admin-studio-preview {
  display: flex;
  align-items: center;
}

.admin-studio-title {
  gap: 12px;
  min-width: 0;
  color: #07142e;
}

.admin-studio-title img {
  width: 132px;
  height: 36px;
  object-fit: contain;
}

.admin-studio-title strong {
  padding-left: 12px;
  border-left: 1px solid #d7dde7;
  font-size: 15px;
  white-space: nowrap;
}

.admin-studio-nav {
  justify-content: center;
  gap: 5px;
  min-width: 0;
}

.admin-studio-nav button,
.admin-studio-preview,
.admin-studio-refresh,
.admin-studio-logout {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #20304e;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.admin-studio-nav button {
  gap: 8px;
  padding: 0 13px;
}

.admin-studio-nav button:hover,
.admin-studio-nav button.active {
  border-color: #dce3ed;
  background: #f3f6fa;
  color: #07142e;
}

.admin-studio-nav button.active {
  box-shadow: inset 0 -2px #ff8500;
}

.admin-studio-nav .icon,
.admin-studio-preview .icon,
.admin-studio-logout .icon {
  width: 18px;
  height: 18px;
}

.admin-studio-actions {
  justify-content: flex-end;
  gap: 7px;
}

.admin-studio-refresh,
.admin-studio-logout {
  width: 42px;
  padding: 0;
}

.admin-studio-refresh {
  font-size: 22px;
}

.admin-studio-preview {
  gap: 7px;
  padding: 0 12px;
  border-color: #dce3ed;
}

.admin-studio-save {
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  background: #d9dee6;
  color: #5e6878;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.admin-studio-save.is-dirty {
  background: linear-gradient(120deg, #ff4e36, #ff9700 68%, #ffd000);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 111, 0, 0.24);
}

.admin-studio-save:disabled {
  cursor: wait;
  opacity: 0.72;
}

.admin-studio-notice {
  position: fixed;
  z-index: 140;
  top: 78px;
  left: 50%;
  max-width: min(92vw, 680px);
  padding: 10px 16px;
  border: 1px solid #cdd7e4;
  border-radius: 8px;
  background: #fff;
  color: #273752;
  box-shadow: 0 14px 40px rgba(7, 20, 46, 0.16);
  font-size: 13px;
  font-weight: 800;
  transform: translateX(-50%);
}

.admin-studio-workspace {
  min-width: 0;
}

.admin-studio:not(.is-live-editor) .admin-studio-workspace {
  width: min(1500px, calc(100% - 32px));
  margin: 22px auto 0;
  padding-bottom: 36px;
}

.admin-live-editor {
  --inspector-width: 380px;
  min-height: calc(100vh - 70px);
}

.admin-live-pagebar {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 8px clamp(14px, 2.4vw, 34px);
  border-bottom: 1px solid #dce2eb;
  background: #f8fafc;
}

.admin-live-pagebar label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #66748a;
  font-size: 12px;
  font-weight: 800;
}

.admin-live-pagebar select {
  min-width: 250px;
  height: 38px;
  padding: 0 34px 0 11px;
  border: 1px solid #cfd8e5;
  border-radius: 7px;
  background: #fff;
  color: #07142e;
  font: inherit;
  font-weight: 800;
}

.admin-live-viewport {
  display: flex;
  padding: 3px;
  border: 1px solid #d6dee9;
  border-radius: 8px;
  background: #fff;
}

.admin-live-viewport button {
  min-height: 32px;
  padding: 0 11px;
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: #68768c;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.admin-live-viewport button.active {
  background: #07142e;
  color: #fff;
}

.admin-live-html-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d6dee9;
  border-radius: 8px;
  background: #fff;
  color: #30415d;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.admin-live-html-button:hover,
.admin-live-html-button.active {
  border-color: #ff8a00;
  background: #fff4e8;
  color: #c85f00;
}

.admin-live-archive-button {
  white-space: nowrap;
}

.admin-live-html-button:disabled,
.admin-live-html-button:disabled:hover {
  border-color: #dfe4eb;
  background: #eef1f5;
  color: #8b95a5;
  cursor: not-allowed;
}

.admin-live-help {
  margin-left: auto;
  color: #6e7b8f;
  font-size: 12px;
}

.admin-live-stage {
  display: block;
  min-height: calc(100vh - 128px);
}

.admin-live-canvas {
  min-width: 0;
  padding: 18px;
  overflow: auto;
  background: #e9eef5;
}

.admin-live-site-frame {
  container-name: admin-preview;
  container-type: inline-size;
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100vh - 164px);
  margin: 0 auto;
  border: 1px solid #cbd4e1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(7, 20, 46, 0.13);
  transition: width 180ms ease;
}

.admin-live-site-menu {
  position: absolute;
  z-index: 30;
  top: 92px;
  right: 18px;
  display: none;
  width: min(780px, calc(100% - 36px));
  max-height: min(720px, calc(100vh - 190px));
  padding: 18px;
  overflow: auto;
  border: 1px solid #d7dee9;
  border-radius: 16px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 68px rgba(7, 20, 46, .24);
}

.admin-live-site-menu.is-open {
  display: block;
}

.admin-live-site-menu .site-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
}

.admin-live-site-menu .site-menu-heading {
  margin-bottom: 16px;
}

.admin-live-site-menu .mobile-sub {
  display: grid;
  gap: 5px;
  margin-top: 8px;
}

.admin-live-site-menu .mobile-sub a {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #17223a;
  font-weight: 800;
  text-decoration: none;
}

.admin-live-site-menu .mobile-sub a:hover,
.admin-live-site-menu .mobile-sub a.active {
  color: #d66e00;
  background: #fff2df;
}

.admin-live-site-frame .news-row {
  cursor: pointer;
}

.admin-live-site-frame .news-row:hover {
  outline: 3px solid #ff8b00;
  outline-offset: 3px;
}

.admin-live-editor.is-mobile .admin-live-site-frame {
  width: 390px;
  max-width: 100%;
}

.admin-live-public-header {
  position: sticky;
  z-index: 3;
  top: 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 76px;
  padding: 10px 22px;
  border-bottom: 1px solid #e4e9f0;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 22px rgba(7, 20, 46, .08);
}

.admin-live-public-header .brand,
.admin-live-public-header .brand img {
  display: block;
}

.admin-live-public-header .brand img {
  width: min(300px, 100%);
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.admin-live-public-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-live-public-header nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #17223a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.admin-live-public-header nav a.active {
  background: #fff2df;
  color: #dd7300;
}

.admin-live-public-tools {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.admin-live-public-tools > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #e3e8ef;
  border-radius: 10px;
  color: #17223a;
  background: #fff;
}

.admin-live-public-tools svg {
  width: 18px;
  height: 18px;
}

.admin-live-public-page {
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.admin-live-header-card {
  position: relative;
  z-index: 3;
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.admin-live-header-card .brand img {
  filter: drop-shadow(0 2px 2px rgba(7, 20, 46, .34)) saturate(1.08) contrast(1.08);
}

@media (min-width: 901px) {
  .admin-live-header-card .header-tools .menu-toggle {
    border-color: rgba(255, 126, 0, .64);
    color: #fff;
    background: linear-gradient(135deg, #ff4c39 0%, #ff8a00 62%, #ffd000 100%);
    box-shadow: 0 10px 26px rgba(255, 116, 0, .28);
  }
}

@media (max-width: 600px) {
  .admin-live-header-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand tools";
    gap: 6px;
    padding-inline: 8px;
  }

  .admin-live-header-card .brand {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .admin-live-header-card .brand img {
    width: 100%;
    max-width: 218px;
    min-width: 0;
  }

  .admin-live-header-card .header-tools {
    min-width: 0;
    margin-left: 0;
    gap: 5px;
  }

  .admin-live-header-card .header-icon,
  .admin-live-header-card .account-link {
    width: 36px;
    min-width: 36px;
    flex: 0 0 36px;
  }
}

.admin-live-site-frame .admin-live-editable {
  cursor: pointer !important;
  outline: 2px dashed rgba(255, 139, 0, .72);
  outline-offset: 7px;
  border-radius: 3px;
}

.admin-live-site-frame .admin-live-editable:hover,
.admin-live-site-frame .admin-live-editable.is-selected {
  outline: 3px solid #ff8b00;
  background: rgba(255, 255, 255, .12);
}

.admin-live-site-frame .admin-visual-editable {
  cursor: pointer !important;
  outline: 1px dashed transparent;
  outline-offset: 4px;
  border-radius: 3px;
  transition: outline-color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.admin-live-site-frame .admin-visual-editable:hover,
.admin-live-site-frame .admin-visual-editable.is-selected {
  outline-color: rgba(255, 123, 0, .95);
  background-color: rgba(255, 245, 230, .22);
  box-shadow: 0 0 0 4px rgba(255, 139, 0, .12);
}

.admin-live-site-frame .admin-visual-image:hover,
.admin-live-site-frame .admin-visual-image.is-selected,
.admin-live-site-frame .admin-visual-file:hover,
.admin-live-site-frame .admin-visual-file.is-selected {
  outline-width: 3px;
  outline-style: solid;
}

.admin-live-site-frame .admin-visual-background {
  cursor: pointer;
}

.admin-visual-form {
  display: grid;
  gap: 13px;
}

.admin-visual-upload input[type="file"] {
  min-height: 48px;
  padding: 10px;
  border: 1px dashed #ff9c32;
  border-radius: 9px;
  background: #fff8ef;
}

.admin-live-site-frame .admin-live-document-zone {
  cursor: pointer !important;
  outline: 2px dashed rgba(255, 139, 0, .48);
  outline-offset: 8px;
}

.admin-live-inspector {
  position: fixed;
  z-index: 120;
  top: 138px;
  right: 18px;
  bottom: 18px;
  width: min(var(--inspector-width), calc(100vw - 36px));
  min-width: 0;
  padding: 22px 20px 36px;
  overflow: auto;
  border: 1px solid #d7dee9;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(7, 20, 46, .2);
  transition: transform 180ms ease, opacity 180ms ease;
}

.admin-live-inspector.is-closed {
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 28px));
}

.admin-live-sheet-handle {
  display: none;
}

.admin-live-inspector-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-live-inspector-heading small,
.admin-live-inspector-heading strong {
  display: block;
}

.admin-live-inspector-heading button {
  display: grid;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  place-items: center;
  border: 1px solid #d7dee9;
  border-radius: 10px;
  color: #17223a;
  background: #f7f9fc;
  cursor: pointer;
}

.admin-live-inspector-heading button:hover {
  color: #fff;
  border-color: #ff7a00;
  background: #ff7a00;
}

.admin-live-inspector-heading button .icon {
  width: 18px;
  height: 18px;
}

.admin-live-inspector-heading small {
  margin-bottom: 4px;
  color: #7a879a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.admin-live-inspector-heading strong {
  color: #07142e;
  font-size: 18px;
}

.admin-live-inspector-heading > span,
.admin-live-inspector-heading > button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #dce3ed;
  border-radius: 7px;
  background: #f8fafc;
  color: #30415d;
}

.admin-live-inspector-heading > button {
  display: grid;
  cursor: pointer;
}

.admin-live-inspector-heading .icon {
  width: 17px;
}

.admin-live-form label,
.admin-live-document-form label {
  display: grid;
  gap: 7px;
  color: #3a4961;
  font-size: 12px;
  font-weight: 850;
}

.admin-live-form textarea,
.admin-live-form input,
.admin-live-document-form input,
.admin-live-document-form select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid #cdd7e4;
  border-radius: 7px;
  background: #fff;
  color: #07142e;
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
}

.admin-live-form textarea:focus,
.admin-live-form input:focus,
.admin-live-document-form input:focus,
.admin-live-document-form select:focus {
  border-color: #ff8a00;
  outline: 3px solid rgba(255, 138, 0, 0.14);
}

.admin-html-area {
  min-height: 52vh;
  resize: vertical;
  tab-size: 2;
  white-space: pre;
  overflow: auto;
  border-color: #33435d !important;
  background: #101826 !important;
  color: #f8fafc !important;
  font-family: Consolas, "Courier New", monospace !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.admin-html-help {
  margin: 0;
  color: #65748a;
  font-size: 12px;
  line-height: 1.55;
}

.admin-html-help code {
  color: #d86600;
  font-weight: 900;
}

.admin-structure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-structure-actions .button {
  flex: 1 1 150px;
  min-height: 42px;
  justify-content: center;
}

.admin-live-field-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 12px;
}

.admin-live-field-switch button {
  min-height: 42px;
  padding: 7px 9px;
  border: 1px solid #d6dee9;
  border-radius: 7px;
  background: #fff;
  color: #506079;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.admin-live-field-switch button.active {
  border-color: #ff8a00;
  background: #fff6e9;
  color: #9a4b00;
}

.admin-live-documents {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid #e2e7ee;
}

.admin-live-document-list {
  display: grid;
  gap: 7px;
}

.admin-live-document-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 8px;
  border: 1px solid #dce3ed;
  border-radius: 7px;
  background: #fff;
}

.admin-live-document-row strong,
.admin-live-document-row small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-live-document-row strong {
  color: #1d2e4b;
  font-size: 12px;
}

.admin-live-document-row small {
  margin-top: 3px;
  color: #78859a;
  font-size: 10px;
}

.admin-live-drag {
  color: #8c98aa;
  font-weight: 900;
}

.admin-live-row-actions {
  display: flex;
  gap: 3px;
}

.admin-live-row-actions button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid #dce3ed;
  border-radius: 6px;
  background: #f8fafc;
  color: #31425e;
  cursor: pointer;
}

.admin-live-row-actions button:disabled {
  opacity: .3;
  cursor: default;
}

.admin-live-row-actions .icon {
  width: 14px;
}

.admin-live-add-document {
  width: 100%;
  margin-top: 10px;
}

.admin-live-document-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid #ffc77d;
  border-radius: 9px;
  background: #fffaf3;
}

.admin-live-document-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.admin-live-document-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.admin-live-document-form-actions .button {
  min-height: 42px;
  padding: 0 12px;
  font-size: 11px;
}

.admin-live-tip,
.admin-live-empty {
  margin: 18px 0 0;
  color: #6d7a8f;
  font-size: 12px;
  line-height: 1.55;
}

.admin-file-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  padding: 6px 12px;
  overflow-x: auto;
  border-bottom: 1px solid #e3e8f0;
  background: #fff;
  white-space: nowrap;
}

.admin-file-breadcrumbs button {
  padding: 4px 5px;
  border: 0;
  background: transparent;
  color: #284261;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.admin-file-breadcrumbs span {
  color: #a5afbd;
}

.admin-file-row.is-directory {
  grid-template-columns: 28px minmax(0, 1fr) 20px;
  background: rgba(255, 255, 255, 0.64);
}

.admin-file-open-arrow .icon {
  width: 15px;
  color: #8895a7;
}

@media (max-width: 1080px) {
  .admin-studio-bar {
    gap: 8px;
  }

  .admin-studio-title img {
    width: 96px;
  }

  .admin-studio-title strong,
  .admin-studio-preview span {
    display: none;
  }

  .admin-studio-title strong {
    border: 0;
  }

  .admin-studio-nav button {
    padding: 0 9px;
  }

  .admin-live-editor {
    --inspector-width: 340px;
  }
}

@media (max-width: 760px) {
  .admin-studio-bar {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    min-height: 116px;
    padding: max(8px, env(safe-area-inset-top)) 10px 8px;
  }

  .admin-studio-title img {
    display: none;
  }

  .admin-studio-title strong {
    display: block;
    padding: 0;
    font-size: 14px;
  }

  .admin-studio-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
    overflow-x: auto;
  }

  .admin-studio-nav button {
    flex: 1 0 auto;
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .admin-studio-actions {
    gap: 4px;
  }

  .admin-studio-refresh,
  .admin-studio-preview,
  .admin-studio-logout {
    display: none;
  }

  .admin-studio-save {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .admin-studio-notice {
    top: 122px;
  }

  .admin-studio:not(.is-live-editor) .admin-studio-workspace {
    width: calc(100% - 20px);
    margin-top: 12px;
  }

  .admin-live-pagebar {
    gap: 8px;
    min-height: 52px;
    padding: 7px 10px;
    overflow-x: auto;
  }

  .admin-live-pagebar label > span,
  .admin-live-help {
    display: none;
  }

  .admin-live-pagebar select {
    min-width: 190px;
    max-width: 52vw;
  }

  .admin-live-viewport button {
    min-height: 34px;
    padding: 0 9px;
    font-size: 10px;
  }

  .admin-live-stage {
    display: block;
    min-height: calc(100vh - 168px);
  }

  .admin-live-canvas {
    min-height: calc(100vh - 168px);
    padding: 8px;
  }

  .admin-live-site-frame {
    width: 100% !important;
    min-height: calc(100vh - 184px);
    border-radius: 9px;
  }

  .admin-live-public-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    padding: 8px 10px;
  }

  .admin-live-public-header .brand img {
    width: 230px;
    max-width: 100%;
    max-height: 46px;
  }

  .admin-live-public-header nav {
    display: none;
  }

  .admin-live-public-tools > span:first-child {
    display: none;
  }

  .admin-live-public-tools > span {
    width: 40px;
    height: 40px;
  }

  .admin-live-site-menu {
    top: 66px;
    right: 8px;
    width: calc(100% - 16px);
    max-height: calc(100vh - 190px);
    padding: 14px;
    border-radius: 14px;
  }

  .admin-live-site-menu .site-menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .admin-live-inspector {
    position: fixed;
    z-index: 120;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-height: min(68vh, 650px);
    padding: 14px 16px calc(20px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid #d6dee9;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -18px 50px rgba(7, 20, 46, 0.2);
    transition: transform 180ms ease;
  }

  .admin-live-inspector.is-closed {
    opacity: 0;
    transform: translateY(105%);
  }

  .admin-live-sheet-handle {
    display: block;
    width: 44px;
    height: 5px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: #c8d0dc;
  }

  .admin-live-inspector-heading > button {
    display: grid;
  }

  .admin-live-field-switch {
    display: flex;
    overflow-x: auto;
  }

  .admin-live-field-switch button {
    flex: 0 0 auto;
    min-width: 110px;
  }

  .admin-live-document-row {
    min-height: 64px;
  }

  .admin-live-row-actions button {
    width: 36px;
    height: 36px;
  }

  .admin-live-document-fields {
    grid-template-columns: 1fr;
  }

  .admin-file-manager {
    grid-template-columns: 1fr;
  }

  .admin-file-browser {
    border-right: 0;
    border-bottom: 1px solid #d8dfeb;
  }

  .admin-file-list {
    max-height: 52vh;
  }
}

/* ZEP_ADMIN_PREVIEW_CONTAINER_RULES_START */
/* Mobile and desktop breakpoints are evaluated against the preview width. */
@container admin-preview (max-width: 760px) {
  .call-center-summary,
  .call-center-summary-compact,
  .call-center-list-compact {
    grid-template-columns: 1fr;
  }

  .call-center-phone-list {
    grid-template-columns: 1fr;
  }

  .call-center-list-compact li:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .call-center-list-compact li:nth-child(even) {
    border-left: 0;
  }
}

@container admin-preview (max-width: 900px) {
  .office-card-grid,
  .branch-card-grid,
  .contact-note-grid {
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .service-link-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .directory-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .directory-section-heading p {
    text-align: left;
  }
}

@container admin-preview (min-width: 1501px) {
  .header-tools {
    gap: 8px;
  }

  .header-call-center {
    width: auto;
  }

  .header-phone-grid {
    grid-template-columns: repeat(2, max-content);
    gap: 6px 12px;
  }
}

@container admin-preview (max-width: 1700px) and (min-width: 1501px) {
  .brand img {
    width: 280px;
    min-width: 280px;
  }
}

@container admin-preview (max-width: 1500px) and (min-width: 901px) {
  .header-call-center {
    display: none;
  }
}

@container admin-preview (max-width: 560px) {
  .contact-directory-page {
    gap: 20px;
  }

  .contact-directory-heading,
  .directory-section-heading {
    padding: 0 2px;
  }

  .office-card,
  .branch-card,
  .contact-note {
    padding: 18px;
  }

  .directory-phone-grid {
    grid-template-columns: 1fr;
  }

  .office-schedule > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .office-schedule dd {
    text-align: left;
  }
}

@container admin-preview (max-width: 760px) {
  .source-panel-head,
  .source-files-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .source-updated {
    white-space: normal;
  }

  .source-content {
    font-size: 14px;
    line-height: 1.65;
  }

  .source-content h2 {
    font-size: 21px;
  }

  .source-content details summary {
    min-height: 54px;
    padding: 14px;
    font-size: 15px;
  }

  .source-content details > div {
    padding: 14px;
  }

  .source-file-search {
    width: 100%;
  }
}

@container admin-preview (max-width: 760px) {
  .quality-documents {
    grid-template-columns: minmax(0, 1fr);
  }

  .quality-image-frame {
    padding: 8px;
  }
}

@container admin-preview (max-width: 1100px) {
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .calculator-summary {
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }

  .calculator-summary .button {
    grid-column: 1 / -1;
  }

  .calculator-row {
    grid-template-columns: minmax(210px, 1.4fr) repeat(3, minmax(92px, 0.55fr)) 42px;
  }

  .calculator-row-result {
    grid-column: 1 / -2;
  }
}

@container admin-preview (max-width: 700px) {
  .calculator-intro {
    padding: 20px;
    align-items: stretch;
    flex-direction: column;
  }

  .calculator-intro h2 {
    font-size: 23px;
  }

  .calculator-rate {
    min-width: 0;
  }

  .calculator-workspace {
    padding: 12px;
  }

  .calculator-row {
    padding: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calculator-device-field,
  .calculator-row-result {
    grid-column: 1 / -1;
  }

  .calculator-remove {
    grid-column: 2;
    justify-self: end;
  }

  .calculator-summary {
    padding: 22px 20px;
    grid-template-columns: 1fr;
  }

  .calculator-summary > strong {
    font-size: 42px;
  }

  .calculator-reference-grid {
    grid-template-columns: 1fr;
  }
}

@container admin-preview (min-width: 901px) {
  body {
    font-size: 17px;
  }

  .nav-link,
  .nav-parent,
  .dropdown a,
  .account-link,
  .button {
    font-size: 15px;
  }

  .header-call-center > small {
    font-size: 11px;
  }

  .header-phone-grid strong {
    font-size: 14px;
  }

  .eyebrow {
    font-size: 15px;
  }

  .hero-copy p {
    font-size: 19px;
  }

  .info-card h2 {
    font-size: 20px;
  }

  .info-row strong,
  .theme-home .info-row strong,
  .tile strong,
  .theme-home .tile strong {
    font-size: 15px;
  }

  .info-row small,
  .account-lookup-link small {
    font-size: 13px;
  }

  .panel h2,
  .wide-panel h2,
  .form-panel h2 {
    font-size: 26px;
  }

  .panel-link,
  .news-row small,
  .small-muted {
    font-size: 14px;
  }

  .news-row strong,
  .app-panel li,
  .doc-table td,
  .source-files-heading p {
    font-size: 15px;
  }

  .mini-card strong,
  .page-directory-card strong,
  .call-center-summary-item strong,
  .call-center-summary-item a {
    font-size: 17px;
  }

  .mini-card small,
  .page-directory-card small,
  .doc-link-card strong,
  .payment-section-head p {
    font-size: 14px;
  }

  .legacy-text p,
  .source-content,
  .legacy-rich-text p,
  .legacy-rich-section-body p,
  .faq-answer,
  .call-center-lead {
    font-size: 17px;
  }
}

@container admin-preview (max-width: 1200px) {
  .brand img {
    width: 260px;
    max-width: min(24vw, 260px);
    min-width: 220px;
  }

  .nav-link,
  .nav-parent {
    padding: 0 3px;
    font-size: 12px;
  }

  .header-call-center {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 310px;
  }

  .quick-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .panel-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-panel {
    grid-column: 1 / -1;
  }
}

@container admin-preview (max-width: 1320px) and (min-width: 1201px) {
  .brand img {
    width: 280px;
    max-width: min(23vw, 280px);
    min-width: 240px;
  }

  .nav-link,
  .nav-parent {
    padding: 0 4px;
    font-size: 12px;
  }

  .header-call-center {
    display: none;
  }

  .header-phone-grid {
    gap: 4px 8px;
  }

  .header-phone-grid strong {
    font-size: 11px;
  }

  .account-link {
    padding: 0 12px;
  }
}

@container admin-preview (max-width: 1320px) and (min-width: 901px) {
  .main-nav {
    display: none;
  }
}

@container admin-preview (max-width: 900px) {
  .top-header {
    padding: 0;
  }

  .header-card {
    width: 100%;
    min-height: 64px;
    padding: 0 10px 0 12px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-radius: 0 0 10px 10px;
  }

  .header-tools {
    margin-left: auto;
  }

  .brand img {
    width: 250px;
    max-width: 58vw;
    min-width: 0;
  }

  .main-nav,
  .header-call-center {
    display: none;
  }

  .account-link {
    width: 42px;
    min-height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
  }

  .account-link > span:last-child {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .page {
    padding: 0 0 24px;
  }

  .page-hero {
    width: 100%;
    min-height: auto;
    margin-top: -66px;
    padding: 90px 18px 22px;
    border-radius: 0 0 18px 18px;
  }

  .hero-inner {
    display: block;
  }

  .hero-copy {
    max-width: none;
    width: 100%;
    padding-top: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.4vw, 40px);
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .info-card {
    margin-top: 22px;
  }

  .theme-home .info-card {
    width: 100%;
    max-width: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 10px;
    font-size: 12px;
  }

  .quick-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .theme-home .quick-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-home .tile {
    min-height: 88px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 16px 18px;
    grid-template-columns: minmax(0, 1fr) 30px;
  }

  .theme-home .tile strong {
    font-size: 13px;
    min-width: 0;
    padding-right: 8px;
    overflow-wrap: break-word;
  }

  .theme-home .tile-icon {
    justify-self: end;
  }

  .theme-home .tile-icon .icon {
    width: 28px;
    height: 28px;
  }

  .tile {
    min-height: 116px;
  }

  .content-area {
    width: calc(100% - 24px);
  }

  .panel-grid,
  .cards-grid,
  .contact-grid,
  .contact-source-grid,
  .doc-link-list,
  .form-grid,
  .page-directory,
  .service-link-grid,
  .reading-benefits,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .news-panel-wide {
    grid-column: 1 / -1;
  }

  .news-panel-wide .news-list {
    grid-template-columns: 1fr;
  }

  .app-panel {
    padding-right: 22px;
  }

  .phone-mock {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 18px auto 0;
    transform: rotate(4deg);
  }

  .news-row {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .news-thumb {
    width: 78px;
    height: 62px;
  }

  .news-card {
    grid-template-columns: 88px minmax(0, 1fr);
    min-height: 0;
  }

  .news-card .news-thumb {
    width: 88px;
    height: 66px;
  }

  .news-featured-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-featured-media {
    min-height: 210px;
  }

  .news-featured-copy {
    padding: 22px;
  }

  .news-featured-copy strong {
    font-size: 24px;
  }

  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-detail-media {
    min-height: 170px;
  }

  .doc-link-card {
    grid-template-columns: 46px minmax(0, 1fr) 24px;
  }

  .doc-filter-state {
    display: grid;
  }

  .regulator-section summary {
    min-height: 62px;
    padding: 16px;
    font-size: 16px;
  }

  .legacy-rich-section summary {
    min-height: 58px;
    padding: 15px;
    font-size: 16px;
  }

  .legacy-rich-section-body {
    padding: 16px;
  }

  .regulator-body {
    padding: 16px;
  }

  .regulator-body table {
    min-width: 680px;
  }

  .footer-card {
    width: 100%;
    padding: 24px 18px 16px;
  }

  .footer-bottom {
    display: grid;
  }
}

@container admin-preview (max-width: 520px) {
  .header-icon,
  .account-link {
    width: 38px;
    min-height: 38px;
  }

  .brand img {
    width: min(225px, calc(100vw - 154px));
    max-width: none;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: min(100%, calc(100vw - 64px));
    min-width: 0;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-actions {
    width: min(100%, calc(100vw - 64px));
    max-width: calc(100vw - 64px);
  }

  .account-lookup-link {
    width: min(100%, calc(100vw - 64px));
    padding: 10px 12px;
    grid-template-columns: 36px minmax(0, 1fr) 18px;
  }

  .account-lookup-icon {
    width: 36px;
    height: 36px;
  }

  .account-lookup-link strong {
    font-size: 13px;
  }

  .hero-copy,
  .hero-copy p,
  .info-card,
  .quick-tiles {
    max-width: calc(100vw - 64px);
  }

  .hero-copy h1 {
    font-size: clamp(26px, 7vw, 29px);
    line-height: 1.08;
  }

  .hero-copy p {
    font-size: 13px;
    line-height: 1.45;
  }

  .quick-tiles {
    grid-template-columns: 1fr;
  }

  .theme-home .quick-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tile {
    padding: 14px 10px;
  }
}

@container admin-preview (min-width: 1200px) {
  .main-nav {
    display: flex;
  }
}

@container admin-preview (max-width: 1199px) and (min-width: 901px) {
  .main-nav {
    display: none;
  }
}

@container admin-preview (max-width: 1500px) and (min-width: 901px) {
  .header-call-center {
    display: none;
  }
}

@container admin-preview (max-width: 1700px) and (min-width: 1501px) {
  .main-nav .nav-link,
  .main-nav .nav-parent {
    padding-inline: 4px;
    font-size: 14px;
  }
}

@container admin-preview (max-width: 1500px) and (min-width: 1151px) {
  .brand img {
    width: 280px;
    min-width: 260px;
  }

  .main-nav .nav-link,
  .main-nav .nav-parent {
    padding-inline: 2px;
    font-size: 13px;
  }
}

@container admin-preview (max-width: 900px) {
  .payment-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reading-service-grid {
    grid-template-columns: 1fr;
  }

  .reading-contact-grid {
    grid-template-columns: 1fr;
  }

  .reading-contact-card:last-child .reading-phone-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reading-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reading-benefit + .reading-benefit {
    border-left: 0;
  }

  .reading-benefit:nth-child(even) {
    border-left: 1px solid rgba(136, 151, 176, 0.18);
  }

  .reading-benefit:nth-child(n + 3) {
    border-top: 1px solid rgba(136, 151, 176, 0.18);
  }

  .admin-command-bar,
  .admin-intro {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .admin-status {
    width: 100%;
    margin-bottom: 4px;
  }

  .admin-tabs {
    display: flex;
    overflow-x: auto;
  }

  .admin-tab {
    min-width: 150px;
  }

  .admin-post-layout {
    grid-template-columns: 1fr;
  }

  .admin-live-preview {
    position: static;
  }

  .admin-post-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .admin-post-thumb {
    width: 96px;
    height: 80px;
  }

  .admin-post-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@container admin-preview (max-width: 520px) {
  .payment-panel {
    gap: 18px;
  }

  .payment-panel-head {
    align-items: flex-start;
  }

  .payment-account-link {
    padding: 16px;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .payment-account-link > .icon {
    display: none;
  }

  .payment-account-icon {
    width: 42px;
    height: 42px;
  }

  .payment-account-link strong {
    font-size: 15px;
  }

  .payment-service-grid {
    grid-template-columns: 1fr;
  }

  .payment-service {
    min-height: 148px;
    grid-template-rows: 88px auto;
  }

  .payment-service-logo {
    height: 88px;
  }

  .readings-panel {
    gap: 18px;
  }

  .readings-intro h2 {
    font-size: 30px;
  }

  .reading-service {
    min-height: 116px;
    padding: 16px;
    grid-template-columns: 54px minmax(0, 1fr) 18px;
    gap: 12px;
  }

  .reading-service-logo,
  .reading-service-logo img,
  .reading-mark {
    width: 54px;
    height: 54px;
  }

  .reading-service-logo .reading-logo-zoe {
    width: 54px;
    height: 54px;
  }

  .reading-service-logo .reading-logo-uz {
    width: 54px;
    height: auto;
  }

  .reading-mark {
    font-size: 15px;
  }

  .reading-contact-section {
    padding: 14px;
  }

  .reading-contact-heading {
    align-items: flex-start;
  }

  .reading-contact-heading h3 {
    font-size: 17px;
  }

  .reading-phone-list,
  .reading-contact-card:last-child .reading-phone-list {
    grid-template-columns: 1fr;
  }

  .reading-benefit-grid {
    grid-template-columns: 1fr;
  }

  .reading-benefit:nth-child(even) {
    border-left: 0;
  }

  .reading-benefit + .reading-benefit {
    border-top: 1px solid rgba(136, 151, 176, 0.18);
  }

  .theme-home .tile {
    min-height: 96px;
    padding: 14px 12px 14px 14px;
    grid-template-columns: minmax(0, 1fr) 26px;
  }

  .theme-home .tile strong {
    padding-right: 4px;
    font-size: 12px;
    line-height: 1.15;
  }

  .theme-home .tile-icon .icon {
    width: 25px;
    height: 25px;
  }

  .admin-page {
    width: min(100% - 20px, 1500px);
    padding-top: 10px;
  }

  .admin-identity {
    align-items: flex-start;
  }

  .admin-identity img {
    width: 150px;
    max-width: 42vw;
  }

  .admin-identity strong {
    font-size: 15px;
  }

  .admin-actions .button {
    width: auto;
  }

  .admin-workspace {
    padding: 14px;
  }

  .admin-section-heading,
  .admin-library-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-edit-mode {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .admin-edit-mode .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .admin-create-mode {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .admin-field-row {
    grid-template-columns: 1fr;
  }

  .admin-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-form-actions .button {
    width: 100%;
  }

  .admin-post-card {
    grid-template-columns: 1fr;
  }

  .admin-post-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
  }

  .admin-post-actions {
    justify-content: stretch;
  }

  .admin-post-actions button {
    flex: 1;
    justify-content: center;
  }
}

@container admin-preview (max-width: 700px) {
  .admin-preview-label {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-preview-switch button {
    flex: 1;
  }

  .admin-gallery-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-gallery-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .admin-gallery-item img {
    width: 64px;
    height: 52px;
  }

  .admin-gallery-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .admin-gallery-actions button:first-child {
    flex: 1;
    justify-content: center;
  }

  .gas-license-notice {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .gas-contact-card {
    padding: 16px;
  }

  .gas-contact-heading {
    align-items: flex-start;
  }

  .gas-contact-heading h3 {
    font-size: 18px;
  }

  .gas-contact-grid {
    grid-template-columns: 1fr;
  }

  .gas-contact-detail,
  .gas-contact-detail:nth-child(odd),
  .gas-contact-detail:nth-last-child(-n + 2) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(136, 151, 176, 0.2);
  }

  .gas-contact-detail:last-child {
    border-bottom: 0;
  }
}

@container admin-preview (min-width: 901px) {
  .header-card {
    position: relative;
  }

  .header-tools .menu-toggle {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
  }

  .main-nav {
    padding-left: 54px;
  }
}

@container admin-preview (max-width: 900px) {
  .mobile-menu {
    inset: 72px 12px auto;
    width: auto;
    max-height: calc(100vh - 84px);
  }

  .site-menu-grid,
  .procurement-requirements,
  .bill-delivery-steps {
    grid-template-columns: 1fr;
  }
}

@container admin-preview (max-width: 520px) {
  .mobile-menu {
    padding: 16px;
  }

  .site-menu-grid,
  .home-direct-links {
    grid-template-columns: 1fr;
  }

  .procurement-intro,
  .bill-delivery-lead {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 16px;
  }

  .procurement-intro-icon,
  .bill-delivery-lead > span {
    width: 40px;
    height: 40px;
  }

  .procurement-requirements article {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 15px;
  }

  .procurement-requirements article > span {
    width: 36px;
    height: 36px;
  }
}

@container admin-preview (max-width: 800px) {
  .admin-page-code-form {
    grid-template-columns: 1fr;
  }

  .admin-code-editor,
  .admin-page-code-preview {
    padding: 14px;
  }

  .admin-code-editor-head {
    flex-direction: column;
  }

  .admin-code-editor-head .button {
    width: 100%;
  }

  .admin-file-create-row,
  .admin-file-manager {
    grid-template-columns: 1fr;
  }

  .admin-file-create-row form,
  .admin-file-upload-form,
  .admin-file-editor-head {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-file-browser {
    border-right: 0;
    border-bottom: 1px solid #d8dfeb;
  }

  .admin-file-list {
    max-height: 320px;
  }

  .admin-file-editor {
    padding: 12px;
  }

  .admin-file-code {
    min-height: 430px;
    font-size: 13px;
  }
}

@container admin-preview (min-width: 901px) {
  body:not(.admin-route) {
    font-size: 18px;
  }

  body:not(.admin-route) .hero-copy h1 {
    font-size: clamp(46px, 4.35vw, 74px);
  }

  body:not(.admin-route) .theme-home .hero-copy h1 span {
    font-size: clamp(36px, 3.55vw, 56px);
    line-height: 1.04;
  }

  body:not(.admin-route) .eyebrow,
  body:not(.admin-route) .button,
  body:not(.admin-route) .tile strong,
  body:not(.admin-route) .info-row strong,
  body:not(.admin-route) .home-direct-links strong,
  body:not(.admin-route) .account-lookup-link strong {
    font-size: 17px;
  }

  body:not(.admin-route) .page p,
  body:not(.admin-route) .page li,
  body:not(.admin-route) .page td,
  body:not(.admin-route) .page label,
  body:not(.admin-route) .page input,
  body:not(.admin-route) .page textarea,
  body:not(.admin-route) .page select {
    font-size: 17px;
    line-height: 1.6;
  }

  body:not(.admin-route) .page small,
  body:not(.admin-route) .footer-card p,
  body:not(.admin-route) .footer-card a,
  body:not(.admin-route) .footer-card span,
  body:not(.admin-route) .home-direct-links small,
  body:not(.admin-route) .account-lookup-link small,
  body:not(.admin-route) .header-call-center > small {
    font-size: 15px;
  }

  body:not(.admin-route) .panel h2,
  body:not(.admin-route) .wide-panel h2,
  body:not(.admin-route) .form-panel h2 {
    font-size: 30px;
  }

  body:not(.admin-route) .wide-panel h3,
  body:not(.admin-route) .form-panel h3 {
    font-size: 22px;
  }

  body:not(.admin-route) .footer-card h3 {
    font-size: 17px;
  }

  body:not(.admin-route) .header-phone-grid strong {
    font-size: 15px;
  }

  body:not(.admin-route) .main-nav .nav-link {
    font-size: 16px;
  }

  body:not(.admin-route) .hero-info-link span,
  body:not(.admin-route) .news-card small,
  body:not(.admin-route) .news-card strong,
  body:not(.admin-route) .site-footer p,
  body:not(.admin-route) .site-footer a,
  body:not(.admin-route) .site-footer span,
  body:not(.admin-route) .site-footer .button,
  body:not(.admin-route) .home-direct-links small {
    font-size: 16px;
  }

  body:not(.admin-route) .store-badge {
    font-size: 14px;
  }

  body:not(.admin-route) .hero-copy h1 {
    font-size: clamp(50px, 5.4vw, 80px);
  }

  body:not(.admin-route) .theme-home .hero-copy h1 span {
    font-size: clamp(40px, 4.2vw, 62px);
  }
}

@container admin-preview (max-width: 900px) {
  body:not(.admin-route) {
    font-size: 17px;
  }

  body:not(.admin-route) .page p,
  body:not(.admin-route) .page li,
  body:not(.admin-route) .page td,
  body:not(.admin-route) .page label,
  body:not(.admin-route) .page input,
  body:not(.admin-route) .page textarea,
  body:not(.admin-route) .page select {
    font-size: 16px;
    line-height: 1.55;
  }

  body:not(.admin-route) .page small,
  body:not(.admin-route) .home-direct-links small,
  body:not(.admin-route) .account-lookup-link small {
    font-size: 14px;
  }

  body:not(.admin-route) .home-direct-links strong,
  body:not(.admin-route) .account-lookup-link strong {
    font-size: 16px;
  }
}

@container admin-preview (max-width: 1700px) and (min-width: 1501px) {
  body:not(.admin-route) .main-nav .nav-link,
  body:not(.admin-route) .main-nav .nav-parent {
    padding-inline: 4px;
    font-size: 14px;
  }
}

@container admin-preview (max-width: 1500px) and (min-width: 1151px) {
  body:not(.admin-route) .brand img {
    width: 280px;
    min-width: 260px;
  }

  body:not(.admin-route) .main-nav .nav-link,
  body:not(.admin-route) .main-nav .nav-parent {
    padding-inline: 2px;
    font-size: 13px;
  }
}

@container admin-preview (min-width: 901px) {
  .mobile-menu {
    inset: 100px auto auto 24px;
  }
}

@container admin-preview (min-width: 1501px) {
  body:not(.admin-route) .main-nav .nav-link,
  body:not(.admin-route) .main-nav .nav-parent {
    padding-inline: 8px;
    font-size: 16px;
  }
}

@container admin-preview (min-width: 1321px) and (max-width: 1500px) {
  body:not(.admin-route) .main-nav .nav-link,
  body:not(.admin-route) .main-nav .nav-parent {
    padding-inline: 5px;
    font-size: 14px;
  }
}

@container admin-preview (max-width: 900px) {
  .page-hero.theme-home {
    min-height: 100svh;
    padding-bottom: 38px;
  }

  .home-secondary-services {
    padding: 28px 14px 0;
  }

  .home-secondary-grid {
    grid-template-columns: 1fr;
  }

  .home-secondary-heading h2 {
    font-size: 25px;
  }
}

@container admin-preview (max-width: 1740px) and (min-width: 901px) {
  .main-nav {
    display: none;
  }
}

@container admin-preview (max-width: 1550px) and (min-width: 901px) {
  .header-call-center {
    display: none;
  }
}

@container admin-preview (max-width: 1150px) and (min-width: 901px) {
  body:not(.admin-route) .brand img {
    width: 360px;
    max-width: 42vw;
    min-width: 0;
  }
}

@container admin-preview (max-width: 900px) {
  body:not(.admin-route) .brand img {
    width: min(300px, calc(100vw - 150px));
    max-width: none;
    min-width: 0;
  }
}

@container admin-preview (max-width: 600px) {
  body:not(.admin-route) .home-secondary-services {
    width: 100%;
    padding-inline: 10px;
  }

  body:not(.admin-route) .home-secondary-services .quick-tiles {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body:not(.admin-route) .home-secondary-services .tile {
    width: 100%;
    min-height: 92px;
    padding: 16px 18px;
    grid-template-columns: 52px minmax(0, 1fr);
    align-content: center;
    align-items: center;
    justify-items: start;
    gap: 16px;
    text-align: left;
  }

  body:not(.admin-route) .home-secondary-services .tile-icon {
    grid-column: 1;
    grid-row: 1;
    width: 52px;
    height: 52px;
    justify-self: start;
  }

  body:not(.admin-route) .home-secondary-services .tile-icon .icon {
    width: 28px;
    height: 28px;
  }

  body:not(.admin-route) .home-secondary-services .tile strong {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.2;
    text-align: left;
  }
}

@container admin-preview (min-width: 901px) {
  body:not(.admin-route) .header-tools .menu-toggle {
    border-color: rgba(255, 126, 0, 0.64);
    color: #fff;
    background: linear-gradient(135deg, #ff4c39 0%, #ff8a00 62%, #ffd000 100%);
    box-shadow: 0 10px 26px rgba(255, 116, 0, 0.28);
  }
}

@container admin-preview (min-width: 1551px) {
  body:not(.admin-route) .header-call-center {
    transform: translateX(-30px);
  }
}

@container admin-preview (max-width: 900px) {
  .page-hero.route-contacts .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 46px);
  }

  .home-secondary-services .quick-tiles,
  .universal-service-overview,
  .branch-contact-groups {
    grid-template-columns: 1fr;
  }

  .source-page-vilni-tsiny .accordion-body a {
    margin-left: 12px;
  }
}

@container admin-preview (max-width: 600px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body:not(.admin-route) .site-shell,
  body:not(.admin-route) .top-header,
  body:not(.admin-route) .header-card,
  body:not(.admin-route) .page {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body:not(.admin-route) .header-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand tools";
    gap: 8px;
    padding-inline: 10px;
  }

  body:not(.admin-route) .brand {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  body:not(.admin-route) .brand img {
    width: 100%;
    max-width: 225px;
    min-width: 0;
  }

  body:not(.admin-route) .header-tools {
    min-width: 0;
    margin-left: 0;
    gap: 6px;
  }

  body:not(.admin-route) .header-icon,
  body:not(.admin-route) .account-link {
    width: 38px;
    min-width: 38px;
    flex: 0 0 38px;
  }
}

@container admin-preview (max-width: 720px) {
  .violation-form-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .violation-form-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 13px;
  }

  .violation-form-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .violation-form-heading h3 {
    font-size: 23px;
  }

  .violation-form {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .violation-form-full {
    grid-column: auto;
  }

  .violation-form input:not([type="file"]),
  .violation-form select {
    min-height: 54px;
  }

  .violation-form-upload {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 13px;
  }

  .violation-form-upload-icon {
    width: 40px;
    height: 40px;
  }

  .violation-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .violation-form-footer .button {
    width: 100%;
  }

  .violation-form-status {
    flex-basis: auto;
  }
}

@container admin-preview (min-width: 901px) {
  .admin-live-header-card .header-tools .menu-toggle {
    border-color: rgba(255, 126, 0, .64);
    color: #fff;
    background: linear-gradient(135deg, #ff4c39 0%, #ff8a00 62%, #ffd000 100%);
    box-shadow: 0 10px 26px rgba(255, 116, 0, .28);
  }
}

@container admin-preview (max-width: 600px) {
  .admin-live-header-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand tools";
    gap: 6px;
    padding-inline: 8px;
  }

  .admin-live-header-card .brand {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .admin-live-header-card .brand img {
    width: 100%;
    max-width: 218px;
    min-width: 0;
  }

  .admin-live-header-card .header-tools {
    min-width: 0;
    margin-left: 0;
    gap: 5px;
  }

  .admin-live-header-card .header-icon,
  .admin-live-header-card .account-link {
    width: 36px;
    min-width: 36px;
    flex: 0 0 36px;
  }
}

@container admin-preview (max-width: 1080px) {
  .admin-studio-bar {
    gap: 8px;
  }

  .admin-studio-title img {
    width: 96px;
  }

  .admin-studio-title strong,
  .admin-studio-preview span {
    display: none;
  }

  .admin-studio-title strong {
    border: 0;
  }

  .admin-studio-nav button {
    padding: 0 9px;
  }

  .admin-live-editor {
    --inspector-width: 340px;
  }
}

@container admin-preview (max-width: 760px) {
  .admin-studio-bar {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 7px;
    min-height: 116px;
    padding: max(8px, env(safe-area-inset-top)) 10px 8px;
  }

  .admin-studio-title img {
    display: none;
  }

  .admin-studio-title strong {
    display: block;
    padding: 0;
    font-size: 14px;
  }

  .admin-studio-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: stretch;
    overflow-x: auto;
  }

  .admin-studio-nav button {
    flex: 1 0 auto;
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .admin-studio-actions {
    gap: 4px;
  }

  .admin-studio-refresh,
  .admin-studio-preview,
  .admin-studio-logout {
    display: none;
  }

  .admin-studio-save {
    min-height: 40px;
    padding: 0 13px;
    font-size: 11px;
  }

  .admin-studio-notice {
    top: 122px;
  }

  .admin-studio:not(.is-live-editor) .admin-studio-workspace {
    width: calc(100% - 20px);
    margin-top: 12px;
  }

  .admin-live-pagebar {
    gap: 8px;
    min-height: 52px;
    padding: 7px 10px;
    overflow-x: auto;
  }

  .admin-live-pagebar label > span,
  .admin-live-help {
    display: none;
  }

  .admin-live-pagebar select {
    min-width: 190px;
    max-width: 52vw;
  }

  .admin-live-viewport button {
    min-height: 34px;
    padding: 0 9px;
    font-size: 10px;
  }

  .admin-live-stage {
    display: block;
    min-height: calc(100vh - 168px);
  }

  .admin-live-canvas {
    min-height: calc(100vh - 168px);
    padding: 8px;
  }

  .admin-live-site-frame {
    width: 100% !important;
    min-height: calc(100vh - 184px);
    border-radius: 9px;
  }

  .admin-live-public-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 64px;
    padding: 8px 10px;
  }

  .admin-live-public-header .brand img {
    width: 230px;
    max-width: 100%;
    max-height: 46px;
  }

  .admin-live-public-header nav {
    display: none;
  }

  .admin-live-public-tools > span:first-child {
    display: none;
  }

  .admin-live-public-tools > span {
    width: 40px;
    height: 40px;
  }

  .admin-live-site-menu {
    top: 66px;
    right: 8px;
    width: calc(100% - 16px);
    max-height: calc(100vh - 190px);
    padding: 14px;
    border-radius: 14px;
  }

  .admin-live-site-menu .site-menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .admin-live-inspector {
    position: fixed;
    z-index: 120;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-height: min(68vh, 650px);
    padding: 14px 16px calc(20px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid #d6dee9;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -18px 50px rgba(7, 20, 46, 0.2);
    transition: transform 180ms ease;
  }

  .admin-live-inspector.is-closed {
    opacity: 0;
    transform: translateY(105%);
  }

  .admin-live-sheet-handle {
    display: block;
    width: 44px;
    height: 5px;
    margin: 0 auto 12px;
    border-radius: 999px;
    background: #c8d0dc;
  }

  .admin-live-inspector-heading > button {
    display: grid;
  }

  .admin-live-field-switch {
    display: flex;
    overflow-x: auto;
  }

  .admin-live-field-switch button {
    flex: 0 0 auto;
    min-width: 110px;
  }

  .admin-live-document-row {
    min-height: 64px;
  }

  .admin-live-row-actions button {
    width: 36px;
    height: 36px;
  }

  .admin-live-document-fields {
    grid-template-columns: 1fr;
  }

  .admin-file-manager {
    grid-template-columns: 1fr;
  }

  .admin-file-browser {
    border-right: 0;
    border-bottom: 1px solid #d8dfeb;
  }

  .admin-file-list {
    max-height: 52vh;
  }
}
/* ZEP_ADMIN_PREVIEW_CONTAINER_RULES_END */

/* Desktop admin: make the 390px preview behave like the real phone header. */
.admin-live-editor.is-mobile .admin-live-header-card .main-nav,
.admin-live-editor.is-mobile .admin-live-header-card .header-call-center {
  display: none;
}

.footer-card .footer-old-site-link {
  color: #ffd06d;
  font-weight: 900;
}

.footer-card .footer-old-site-link:hover,
.footer-card .footer-old-site-link:focus-visible {
  color: #fff;
}

@media (max-width: 600px) {
  .test-site-notice {
    min-height: 44px;
    flex-wrap: wrap;
    gap: 3px 10px;
    padding: 7px 12px;
    font-size: 12px;
    line-height: 1.25;
  }
}

.admin-structure-actions .button.danger,
.admin-live-form > .button.danger {
  border-color: #f0b6b6;
  background: #fff3f3;
  color: #a52222;
}

.admin-structure-actions .button.danger:hover,
.admin-live-form > .button.danger:hover {
  border-color: #c92d2d;
  background: #c92d2d;
  color: #fff;
}

.admin-selected-fragment {
  display: grid;
  gap: 5px;
  padding: 10px 12px;
  border: 1px solid #ffd39d;
  border-radius: 8px;
  background: #fff8ee;
}

.admin-selected-fragment span {
  color: #8c5b20;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-selected-fragment strong {
  color: #07142e;
  font-size: 13px;
  line-height: 1.45;
}

.admin-rich-toolbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.admin-rich-toolbar button,
.admin-rich-toolbar select {
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid #d5deea;
  border-radius: 7px;
  background: #fff;
  color: #253650;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.admin-rich-toolbar button:hover {
  border-color: #ff8a00;
  background: #fff5e8;
  color: #c85f00;
}

.admin-editor-accordion-toggle {
  position: absolute;
  z-index: 8;
  right: 12px;
  top: 50%;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid #f2ad58;
  border-radius: 8px;
  background: #fff7ec;
  color: #d86c00;
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 160ms ease, background 160ms ease;
  cursor: pointer;
}

.admin-editor-accordion-toggle.is-open {
  background: #ff8a00;
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}

.admin-editor-add-file {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 42px;
  margin: 14px 0 18px;
  padding: 10px;
  border: 1px solid rgba(255, 136, 0, 0.55);
  border-radius: 12px;
  background: #fff7ed;
  color: #d96f00;
  box-shadow: 0 8px 22px rgba(255, 136, 0, 0.1);
}

.admin-editor-add-file:focus-within {
  border-color: #ff8800;
  background: #fff0dc;
}

.admin-editor-add-file label,
.admin-editor-add-file button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 136, 0, 0.6);
  border-radius: 9px;
  background: #fff;
  color: #c96500;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  cursor: pointer;
}

.admin-editor-add-file label:hover,
.admin-editor-add-file button:hover {
  border-color: #ff8800;
  background: #ffead1;
}

.admin-editor-add-file input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.admin-structure-upload {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.admin-structure-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.admin-live-site-frame details > summary,
.admin-live-site-frame .accordion-header {
  position: relative;
  padding-right: 58px !important;
}

.admin-live-draggable {
  position: relative;
}

.admin-live-drag-mount {
  position: relative;
}

.admin-editor-drag-handle {
  position: absolute;
  z-index: 9;
  top: 50%;
  left: 7px;
  display: grid;
  width: 28px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid #b8c4d4;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  color: #64748b;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
  cursor: grab;
  opacity: 0;
  transition: opacity 120ms ease, border-color 120ms ease, color 120ms ease;
}

.admin-live-draggable:hover > .admin-editor-drag-handle,
.admin-live-draggable:focus-within > .admin-editor-drag-handle,
.admin-live-drag-mount:hover > .admin-editor-drag-handle,
.admin-live-drag-mount:focus-within > .admin-editor-drag-handle,
.admin-live-draggable > .accordion-header > .admin-editor-drag-handle,
.admin-live-draggable > summary > .admin-editor-drag-handle {
  opacity: 1;
}

.admin-editor-drag-handle:active {
  cursor: grabbing;
}

.admin-live-draggable > .accordion-header,
.admin-live-draggable > summary {
  padding-left: 46px !important;
}

.admin-live-draggable:not(.accordion-item):not(details):not(table):not(.doc-link-card) {
  min-height: 38px;
  padding-left: 40px !important;
}

.admin-live-draggable:is(table) .admin-live-drag-mount {
  padding-left: 40px !important;
}

.admin-live-draggable.is-dragging {
  opacity: 0.46;
}

.admin-live-draggable.is-drag-before::before,
.admin-live-draggable.is-drag-after::after {
  position: absolute;
  z-index: 30;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 999px;
  background: #ff8a00;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.16);
  content: "";
}

.admin-live-draggable.is-drag-before::before { top: -5px; }
.admin-live-draggable.is-drag-after::after { bottom: -5px; }

.zep-text-small { font-size: .84em; }
.zep-text-normal { font-size: 1em; }
.zep-text-large { font-size: 1.24em; }
.zep-text-xlarge { font-size: 1.55em; }

.content-area .zep-content-accordion {
  margin: 14px 0;
  overflow: hidden;
  border: 1px solid #dce3ec;
  border-radius: 12px;
  background: #fff;
}

.content-area .zep-content-accordion > summary {
  padding: 18px 54px 18px 20px;
  list-style: none;
  color: #07142e;
  background: #fff8ef;
  font-weight: 900;
  cursor: pointer;
}

.content-area .zep-content-accordion > summary::-webkit-details-marker { display: none; }
.content-area .zep-content-accordion > div { padding: 18px 20px; }

.admin-live-editor.is-mobile .admin-live-header-card .header-tools .menu-toggle {
  position: static;
  inset: auto;
  order: initial;
  transform: none;
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 22px rgba(7, 20, 46, 0.08);
}
