﻿:root {
  --ink: #172421;
  --muted: #65746f;
  --line: #e2e9e4;
  --paper: #fbfaf5;
  --white: #ffffff;
  --teal: #14756d;
  --teal-dark: #0d514c;
  --gold: #b8802e;
  --soft-gold: #fff3d8;
  --charcoal: #152321;
  --mist: #eef5f1;
  --cream: #fffdf7;
  --shadow: 0 14px 34px rgba(19, 33, 31, 0.08);
  --page-gutter: clamp(16px, 3.4vw, 48px);
  --content-max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
}

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

ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin: 7px 0;
  color: var(--muted);
  line-height: 1.42;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  color: var(--white);
  background: rgba(15, 27, 25, 0.96);
}

.compact-header {
  background: var(--charcoal);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.brand,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.brand-mark-logo {
  display: inline-grid;
  place-items: center;
  inline-size: 36px;
  block-size: 36px;
  border-radius: 9px;
  color: var(--white);
  background:
    radial-gradient(circle at center, #198278 0 54%, transparent 55%),
    #152321;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}

.header-cta {
  padding: 11px 15px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle::before {
  top: 15px;
  box-shadow: 0 6px 0 var(--white);
}

.menu-toggle::after {
  top: 27px;
}

.nav-links {
  gap: 18px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 104px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter))) 48px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.9) 0%, rgba(8, 18, 16, 0.68) 48%, rgba(8, 18, 16, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 18, 16, 0.42), rgba(8, 18, 16, 0.02));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.lead-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  padding: 15px 20px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button.primary,
.lead-form button {
  color: var(--white);
  background: var(--teal);
}

.button.primary:hover,
.lead-form button:hover,
.newsletter-form button:hover {
  background: var(--teal-dark);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 46px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
}

.page-hero {
  padding: 118px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter))) 44px;
  color: var(--white);
  background: var(--charcoal);
}

.page-hero h1 {
  margin-bottom: 14px;
}

.page-hero p:last-child {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.6;
}

.intro-section,
.audit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.intro-section {
  background:
    radial-gradient(circle at top left, rgba(255, 243, 216, 0.85), transparent 34%),
    var(--paper);
}

.intro-copy p,
.service-card p,
.package-card p,
.steps p,
.audit-copy p,
.site-footer p,
.section-heading > p,
.form-note {
  color: var(--muted);
  line-height: 1.62;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-grid,
.package-grid,
.steps,
.blog-grid {
  display: grid;
  gap: 18px;
}

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

.service-card,
.package-card,
.steps article,
.lead-form,
.blog-card,
.blog-post,
.admin-panel {
  border: 1px solid rgba(226, 233, 228, 0.95);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 6px 18px rgba(19, 33, 31, 0.06);
}

.service-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.package-card:hover,
.steps article:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(19, 33, 31, 0.09);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  font-weight: 700;
}

.packages-section {
  background:
    linear-gradient(180deg, #f4faf6, #eef5f1);
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.package-card {
  padding: 24px;
}

.package-card.featured {
  border-color: rgba(15, 118, 110, 0.55);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.12);
}

.package-type,
.steps span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price {
  margin: 6px 0 18px;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.7vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.process-section {
  background: var(--paper);
}

.blog-section {
  min-height: 44vh;
}

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

.blog-card {
  overflow: hidden;
  padding: 22px;
}

.blog-card-image,
.post-image {
  display: block;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.blog-card-image {
  height: 190px;
  margin: -8px 0 18px;
}

.blog-card h2 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.blog-card a,
.back-link,
.admin-actions a {
  color: var(--teal);
  font-weight: 700;
}

.post-date {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.blog-post {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 48px);
}

.post-image {
  max-height: 430px;
  margin: 18px 0 26px;
}

.blog-post h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.post-content {
  margin-top: 26px;
}

.post-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.empty-state {
  color: var(--muted);
  font-weight: 600;
}

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

.steps article {
  padding: 22px;
  background: var(--white);
}

.audit-section {
  background:
    linear-gradient(135deg, rgba(20, 117, 109, 0.18), transparent 42%),
    var(--charcoal);
  color: var(--white);
}

.audit-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--white);
}

.form-note {
  margin: 0;
}

.form-status {
  min-height: 22px;
  font-weight: 700;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 700;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d7e3dd;
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: #fbfdfb;
  font: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.newsletter-form input:focus {
  outline: 3px solid rgba(20, 117, 109, 0.16);
  border-color: var(--teal);
  background: var(--white);
}

.lead-form textarea {
  min-height: 96px;
  padding-top: 12px;
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
  padding: 44px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  background: #13211f;
  color: var(--white);
  overflow: hidden;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand h2,
.footer-newsletter h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-weight: 700;
}

.footer-brand h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--white);
  font-weight: 600;
}

.fb-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: var(--white);
  background: #1877f2;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.footer-newsletter {
  display: grid;
  gap: 14px;
  min-width: 0;
  max-width: 560px;
}

.footer-signup {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(100%, 420px);
}

.footer-signup input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.footer-signup input:focus {
  outline: 3px solid rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.7);
}

.footer-signup button {
  width: fit-content;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer-signup button:hover {
  background: var(--teal-dark);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
  width: 100%;
}

.newsletter-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.newsletter-field label,
.newsletter-form label {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}

.newsletter-form input {
  width: 100%;
  max-width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.newsletter-form button {
  min-height: 46px;
  width: fit-content;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  color: var(--white);
  background: var(--teal);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.newsletter-status {
  min-height: 22px;
  font-weight: 600;
}

.newsletter-popup {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 16, 15, 0.66);
}

.newsletter-popup[hidden] {
  display: none;
}

.newsletter-modal {
  position: relative;
  width: min(100%, 560px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(26px, 5vw, 38px);
  background:
    radial-gradient(circle at top left, rgba(255, 243, 216, 0.9), transparent 42%),
    var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.newsletter-modal h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.65rem);
}

.newsletter-modal p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.newsletter-modal .newsletter-form {
  grid-template-columns: 1fr;
}

.newsletter-modal .newsletter-field label,
.newsletter-modal .newsletter-form label {
  color: var(--ink);
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.admin-body {
  background: #eef3ef;
}

.admin-shell {
  min-height: 100vh;
  padding: clamp(18px, 3vw, 36px);
}

.admin-panel {
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
}

.admin-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.admin-heading h1 {
  color: var(--ink);
  margin-bottom: 8px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 700;
}

.admin-heading p:last-child {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.5;
}

.admin-message {
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 600;
}

.admin-message.success {
  color: #0f5132;
  background: #d1e7dd;
}

.admin-message.error {
  color: #842029;
  background: #f8d7da;
}

.admin-form {
  box-shadow: none;
}

.admin-login {
  max-width: 420px;
}

.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(19, 33, 31, 0.08);
}

.admin-topbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr)) auto;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 18px;
}

.admin-stat {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #f8faf7;
}

.admin-stat span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.admin-stat strong {
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 700;
}

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

.admin-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 18px 0;
  border-bottom: 1px solid var(--line);
}

.admin-tab {
  border: 0;
  border-radius: 8px 8px 0 0;
  padding: 11px 14px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.admin-tab.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 -1px 0 var(--line), 1px 0 0 var(--line), -1px 0 0 var(--line);
}

.admin-tab-panels {
  display: block;
}

.admin-tab-panel {
  display: none;
}

.admin-tab-panel.active {
  display: block;
}

.admin-tab-panel .admin-card {
  max-width: 860px;
}

.admin-section-title h2,
.admin-actions h2 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.2;
  font-weight: 700;
}

.admin-section-title p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.content-input {
  min-height: 210px;
}

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

.admin-posts {
  margin-top: 0;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.admin-actions h2 {
  margin-right: auto;
}

.admin-posts article {
  display: grid;
  gap: 4px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.admin-posts strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.3;
  font-weight: 600;
}

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

.admin-request p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

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

.admin-table th {
  color: var(--ink);
  background: #f7faf8;
  font-weight: 700;
  white-space: nowrap;
}

.admin-table td {
  color: var(--muted);
  line-height: 1.45;
}

.admin-table tr:last-child td {
  border-bottom: 0;
}

.admin-table a {
  color: var(--teal);
  font-weight: 600;
  word-break: break-word;
}

.consultation-table td:nth-child(5) {
  min-width: 240px;
}

.admin-logout,
.admin-view-site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--white);
  background: var(--teal);
  font-weight: 700;
  white-space: nowrap;
}

.admin-view-site {
  color: var(--ink);
  background: var(--mist);
}

@media (max-width: 1100px) {
  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 2px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 8px;
    color: var(--white);
    background: rgba(16, 25, 24, 0.97);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 8px;
  }

  .nav-links a:focus,
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.09);
  }

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

  .package-grid {
    grid-template-columns: 1fr;
  }

  .admin-layout,
  .admin-topbar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .intro-section,
  .audit-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 20px;
  }

  .site-header {
    position: fixed;
    padding: 16px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 76vh;
    padding: 104px 20px 40px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button,
  .hero-actions,
  .button.primary,
  .button.secondary {
    width: 100%;
  }

  .button {
    text-align: center;
  }

  .section {
    padding: 54px 20px;
  }

  .site-footer {
    padding: 42px 20px;
  }

  .service-grid,
  .steps,
  .blog-grid,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .admin-shell {
    padding: 14px;
  }

  .admin-heading {
    display: grid;
  }

  .admin-panel {
    padding: 16px;
  }

  .admin-table-wrap {
    border: 0;
    overflow: visible;
  }

  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table th,
  .admin-table td {
    display: block;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tr {
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 12px;
    background: var(--white);
    overflow: hidden;
  }

  .admin-table td {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 10px;
    border-bottom: 1px solid var(--line);
  }

  .admin-table td::before {
    content: attr(data-label);
    color: var(--ink);
    font-weight: 700;
  }

  .admin-table td:last-child {
    border-bottom: 0;
  }
}

