:root {
    --ink: #14201b;
    --muted: #5d6b64;
    --line: #dce4de;
    --paper: #fbfcf8;
    --soft: #eef4ef;
    --green: #154b36;
    --green-2: #0d3427;
    --red: #bf1f2a;
    --red-2: #981923;
    --gold: #d4a84d;
    --white: #fff;
    --shadow: 0 22px 70px rgba(20, 32, 27, .13);
    --radius: 8px;
    --max: 1180px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.5;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button, input, textarea, select { font: inherit; }
  main { overflow: clip; }

  .topbar {
    background: var(--green-2);
    color: rgba(255,255,255,.88);
    font-size: 13px;
  }
  .topbar-inner {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .topbar-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .topbar a { border-bottom: 1px solid rgba(255,255,255,.28); }
  .topbar-location { color: rgba(255,255,255,.74); }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251,252,248,.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20,32,27,.08);
  }
  .nav {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
  }
  .brand-mark {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex: 0 0 auto;
  }
  .brand-copy { display: grid; gap: 2px; min-width: 0; }
  .brand-name {
    color: var(--green-2);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
  }
  .brand-sub {
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: var(--green-2);
    font-size: 14px;
  }
  .nav-links a {
    padding: 8px 0;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] { border-color: var(--red); }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--green-2);
    cursor: pointer;
  }
  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    margin: 4px auto;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: var(--green);
    color: var(--white);
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  }
  .btn:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(21,75,54,.18); }
  .btn.red { background: var(--red); }
  .btn.red:hover { background: var(--red-2); }
  .btn.ghost {
    background: rgba(255,255,255,.76);
    border-color: rgba(20,32,27,.16);
    color: var(--green-2);
    box-shadow: none;
  }
  .btn.block {
    width: 100%;
    margin-top: 16px;
  }
  .btn.block.roomy {
    margin-top: 18px;
  }
  .btn.roomy {
    margin-top: 18px;
  }

  section { padding: 84px 0; }
  .container {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
  }
  .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 28px;
    align-items: end;
    margin-bottom: 32px;
  }
  .section-kicker {
    margin: 0 0 10px;
    color: var(--red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  h1, h2, h3, p { overflow-wrap: anywhere; }
  h1 {
    margin: 14px 0 18px;
    max-width: 760px;
    font-size: 64px;
    line-height: .98;
    letter-spacing: 0;
  }
  h2 {
    margin: 0;
    font-size: 44px;
    line-height: 1.08;
    letter-spacing: 0;
  }
  h3 { margin: 0; font-size: 24px; line-height: 1.18; }
  p { margin: 0; }
  .section-note {
    color: var(--muted);
    font-size: 16px;
  }
  .section-actions {
    display: grid;
    gap: 16px;
    justify-items: start;
  }

  .hero {
    position: relative;
    overflow: hidden;
    min-height: 580px;
    display: grid;
    align-items: stretch;
    background: var(--green-2);
    color: var(--white);
  }
  .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(11,31,24,.95) 0%, rgba(11,31,24,.78) 38%, rgba(11,31,24,.23) 70%, rgba(11,31,24,.08) 100%),
      linear-gradient(0deg, rgba(11,31,24,.34), rgba(11,31,24,.08));
  }
  .hero-inner {
    position: relative;
    z-index: 1;
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0 46px;
    display: grid;
    grid-template-columns: minmax(0, 680px) minmax(260px, 1fr);
    gap: 42px;
    align-items: end;
  }
  .hero-inner > *,
  .page-hero .container > *,
  .split > *,
  .detail-layout > *,
  .contact-layout > *,
  .section-head > * {
    min-width: 0;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--gold);
  }
  .hero-lead {
    max-width: 610px;
    color: rgba(255,255,255,.84);
    font-size: 18px;
    margin-bottom: 24px;
  }
  .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .quick-contact {
    align-self: end;
    justify-self: end;
    width: min(100%, 360px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius);
    background: rgba(251,252,248,.95);
    color: var(--ink);
    box-shadow: var(--shadow);
    padding: 18px;
  }
  .quick-contact h2 { margin-bottom: 12px; font-size: 20px; }
  .quote-steps {
    margin: 0 0 10px;
    padding: 0 0 0 18px;
    color: var(--muted);
    font-size: 14px;
  }
  .quote-steps li {
    padding: 6px 0;
  }
  .contact-row,
  .contact-line {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
  }
  .contact-row b,
  .contact-line b {
    color: var(--green-2);
    text-align: right;
    overflow-wrap: anywhere;
  }

  .hero-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
    max-width: 820px;
  }
  .strip-item {
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    background: rgba(255,255,255,.1);
    padding: 13px;
    min-height: 82px;
  }
  .strip-item strong {
    display: block;
    color: var(--white);
    font-size: 20px;
    line-height: 1.1;
    margin-bottom: 6px;
  }
  .strip-item span {
    color: rgba(255,255,255,.75);
    font-size: 13px;
  }

  .page-hero {
    background: var(--green-2);
    color: var(--white);
    padding: 74px 0;
  }
  .page-hero .container {
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(260px, 1fr);
    gap: 40px;
    align-items: end;
  }
  .page-hero p {
    max-width: 640px;
    color: rgba(255,255,255,.78);
    font-size: 18px;
  }

  .rail-wrap { position: relative; }
  .rail-actions {
    position: absolute;
    top: -64px;
    right: 0;
    display: flex;
    gap: 8px;
  }
  .rail-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--green-2);
    font-size: 24px;
    cursor: pointer;
  }
  .product-rail,
  .image-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 380px);
    gap: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 4px 4px 18px;
    scrollbar-color: var(--green) transparent;
  }
  .product-rail > *,
  .image-rail > * { scroll-snap-align: start; }
  .product-card,
  .info-card,
  .trust-item,
  .contact-card,
  .qr-card,
  .contact-media-card,
  .spec-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 14px 44px rgba(20,32,27,.08);
  }
  .product-card {
    display: grid;
    grid-template-rows: 220px minmax(0, 1fr);
    overflow: hidden;
    min-height: 510px;
    height: 100%;
  }
  .product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
  }
  .featured-products-grid .product-card {
    min-height: 548px;
  }
  .product-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .product-card-body .btn {
    align-self: flex-start;
    margin-top: auto;
  }
  .tag {
    width: fit-content;
    border-radius: 999px;
    background: #f7ebe8;
    color: var(--red-2);
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 900;
  }
  .product-card h3 { font-size: 22px; }
  .product-card p,
  .info-card p,
  .trust-item p {
    color: var(--muted);
    font-size: 15px;
  }
  .mini-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
  }
  .mini-specs span {
    border-top: 1px solid var(--line);
    padding-top: 8px;
  }

  .split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 28px;
    align-items: stretch;
  }
  .visual-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #e9eee8;
    min-height: 380px;
  }
  .visual-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .info-stack { display: grid; gap: 14px; }
  .info-card { padding: 20px; }
  .info-card h3 { margin-bottom: 8px; }

  .trust-band {
    background: var(--green-2);
    color: var(--white);
  }
  .trust-band .section-kicker { color: #f0c96a; }
  .trust-band .section-note,
  .trust-band .trust-item p { color: rgba(255,255,255,.74); }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .trust-proof-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    gap: 16px;
    align-items: stretch;
  }
  .trust-proof-layout .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-item {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    box-shadow: none;
    padding: 20px;
    min-height: 166px;
  }
  .trust-item strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .license-card {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    color: var(--ink);
    box-shadow: 0 18px 48px rgba(0,0,0,.16);
  }
  .license-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid var(--line);
  }
  .license-card figcaption {
    padding: 14px 16px 16px;
    color: var(--muted);
    font-size: 14px;
  }
  .proof-gallery {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }
  .proof-card {
    grid-column: span 3;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--radius);
    background: rgba(255,255,255,.92);
    color: var(--ink);
    box-shadow: 0 18px 48px rgba(0,0,0,.16);
  }
  .proof-card img {
    width: 100%;
    height: 286px;
    object-fit: cover;
  }
  .proof-card-license img {
    object-position: center;
  }
  .proof-card figcaption {
    padding: 13px 16px 15px;
    color: var(--green-2);
    font-size: 15px;
    font-weight: 800;
  }

  .category-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
  }
  .chip {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--green-2);
    padding: 0 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
  }
  .chip[aria-pressed="true"] {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .product-grid .product-card { min-height: 500px; }

  .detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 430px);
    gap: 32px;
    align-items: start;
  }
  .product-gallery {
    display: grid;
    gap: 16px;
    min-width: 0;
  }
  .product-gallery .visual-panel {
    background: #f5f6f3;
  }
  .product-gallery .visual-panel img {
    object-fit: contain;
  }
  .product-hero-image {
    min-height: 560px;
  }
  .product-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .product-thumbs .visual-panel {
    min-height: 176px;
  }
  .spec-panel {
    position: sticky;
    top: 104px;
  }
  .spec-panel { padding: 24px; }
  .spec-panel-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  .spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
  }
  .spec-table th,
  .spec-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
  }
  .spec-table th { width: 42%; color: var(--muted); font-weight: 700; }

  .breadcrumb {
    padding: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
  }
  .breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .breadcrumb a {
    color: var(--green-2);
    border-bottom: 1px solid rgba(13,52,39,.22);
  }
  .breadcrumb span:last-child {
    color: var(--ink);
    font-weight: 700;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
  .related-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    padding: 12px;
    box-shadow: 0 14px 44px rgba(20,32,27,.08);
  }
  .related-card img {
    width: 112px;
    height: 92px;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
  }
  .related-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .related-card span {
    color: var(--muted);
    font-size: 14px;
  }

  .contact-section {
    background: linear-gradient(135deg, #f6f0e4 0%, #eef3ed 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    gap: 24px;
    align-items: start;
  }
  .contact-card { padding: 24px; }
  .contact-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
  }
  .contact-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    color: var(--muted);
  }
  .contact-list b {
    color: var(--ink);
    text-align: right;
    overflow-wrap: anywhere;
  }
  .qr-card {
    padding: 24px;
    text-align: center;
  }
  .contact-media-card {
    overflow: hidden;
    background: var(--white);
  }
  .contact-media-card > img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    border-bottom: 1px solid var(--line);
  }
  .contact-media-card h3 {
    padding: 20px 22px 0;
    font-size: 24px;
  }
  .contact-media-card .channel-list,
  .contact-media-card .note {
    margin-left: 22px;
    margin-right: 22px;
  }
  .contact-media-card .note {
    margin-bottom: 22px;
    text-align: left;
  }
  .channel-list {
    display: grid;
    gap: 12px;
    margin: 18px 0 16px;
    padding: 0;
    list-style: none;
    text-align: left;
  }
  .channel-list li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    border-top: 1px solid var(--line);
    padding-top: 12px;
    color: var(--muted);
  }
  .channel-list strong {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 14px;
  }
  .note {
    color: var(--muted);
    font-size: 14px;
  }

  .footer {
    padding: 34px 0;
    background: #101b16;
    color: rgba(255,255,255,.78);
    font-size: 14px;
  }
  .footer-inner {
    width: min(var(--max), calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) auto minmax(0, 1.1fr) auto;
    gap: 20px;
    align-items: center;
  }
  .footer strong { color: var(--white); }
  .footer-brand,
  .footer-links,
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
  }
  .footer-links a,
  .footer-contact a {
    border-bottom: 1px solid rgba(255,255,255,.26);
  }
  .footer-contact { justify-content: center; }
  .footer-copy { text-align: right; }

  @media (max-width: 980px) {
    .topbar-inner {
      align-items: flex-start;
      flex-direction: column;
      gap: 6px;
      padding: 8px 0;
    }
    .nav { min-height: 70px; }
    .menu-toggle { display: block; }
    .nav-links {
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      background: var(--paper);
      border-bottom: 1px solid var(--line);
      padding: 8px 16px 16px;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
    }
    .nav-actions { display: none; }
    h1 { font-size: 50px; }
    h2 { font-size: 36px; }
    .hero { min-height: auto; }
    .hero-inner,
    .page-hero .container,
    .split,
    .detail-layout,
    .contact-layout,
    .section-head {
      grid-template-columns: 1fr;
    }
    .hero-inner { padding: 48px 0 38px; }
    .quick-contact { display: none; }
    .spec-panel { position: static; }
    .product-hero-image { min-height: 430px; }
    .product-thumbs,
    .related-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-strip,
    .featured-products-grid,
    .trust-grid,
    .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .proof-gallery {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .proof-card {
      grid-column: auto;
    }
    .trust-proof-layout {
      grid-template-columns: 1fr;
    }
    .footer-inner {
      grid-template-columns: 1fr;
      align-items: start;
    }
    .footer-links,
    .footer-contact { justify-content: flex-start; }
    .footer-copy { text-align: left; }
  }

  @media (max-width: 640px) {
    .topbar-note { display: none; }
    .topbar-location { display: none; }
    .topbar-inner {
      width: min(var(--max), calc(100% - 24px));
      min-height: auto;
    }
    .topbar-links {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: nowrap;
    }
    .topbar-phone { display: none; }
    .topbar-links a { width: fit-content; max-width: 50%; overflow-wrap: anywhere; }
    .brand-mark { width: 48px; height: 48px; }
    .brand-name { font-size: 20px; }
    .brand-sub { font-size: 10px; }
    section { padding: 58px 0; }
    .page-hero { padding: 52px 0; }
    h1 { font-size: 36px; }
    .page-hero h1 { font-size: 32px; }
    h2 { font-size: 29px; }
    h3 { font-size: 21px; }
    .page-hero p { font-size: 16px; }
    .hero-lead { display: none; }
    .hero-inner { padding: 42px 0 32px; }
    .hero-actions .btn { width: 100%; }
    .hero-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-top: 22px;
    }
    .strip-item {
      min-height: auto;
      padding: 10px;
    }
    .strip-item strong { font-size: 17px; margin-bottom: 0; }
    .strip-item span { display: none; }
    .product-rail,
    .image-rail {
      grid-auto-columns: minmax(270px, 82vw);
    }
    .rail-actions { display: none; }
    .featured-products-grid,
    .product-grid,
    .trust-grid {
      grid-template-columns: 1fr;
    }
    .proof-gallery {
      grid-template-columns: 1fr;
    }
    .proof-card img {
      height: 218px;
    }
    .license-card img { height: 210px; }
    .visual-panel { min-height: 260px; }
    .product-hero-image { min-height: 300px; }
    .product-thumbs,
    .related-grid {
      grid-template-columns: 1fr;
    }
    .product-thumbs .visual-panel { min-height: 220px; }
    .spec-panel-title { font-size: 26px; }
    .spec-table,
    .spec-table tbody,
    .spec-table tr,
    .spec-table th,
    .spec-table td {
      display: block;
      width: 100%;
    }
    .spec-table th {
      padding-bottom: 3px;
      border-bottom: 0;
    }
    .spec-table td {
      padding-top: 0;
    }
    .related-card {
      grid-template-columns: 96px minmax(0, 1fr);
    }
    .related-card img {
      width: 96px;
      height: 78px;
    }
    .contact-row,
    .contact-list li,
    .contact-line {
      display: grid;
      gap: 4px;
    }
    .contact-row b,
    .contact-list b,
    .contact-line b {
      text-align: left;
    }
  }
