
  :root {
    --teal: #4ed3cf; --teal-deep: #2db8b3; --teal-tint: #e6f9f8;
    --lime: #ccff00; --lime-shadow: rgba(204,255,0,0.4);
    --black: #0a0a0a; --ink: #1a1a1a; --ink-mid: #4a4a4a; --ink-soft: #6a6a6a;
    --line: #e8e8e8; --bg: #ffffff; --bg-soft: #fafafa; --bg-card: #f5f5f5;
    --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
    --sans: 'Inter Tight', -apple-system, system-ui, sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body { font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.55; overflow-x: hidden; }
  img, svg { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px; }

  .announce { background: var(--black); color: #fff; text-align: center; padding: 9px 20px; font-size: 13px; display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
  .announce strong { color: var(--lime); font-weight: 700; }

  nav.primary { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; padding: 0 28px; max-width: 1280px; margin: 0 auto; }
  .logo { display: inline-flex; align-items: center; line-height: 1; }
  .cdp-mark { font-family: var(--sans); font-weight: 800; font-size: 24px; letter-spacing: -0.07em; color: var(--black); line-height: 1; }
  .cdp-mark .c { color: var(--teal-deep); }
  .logo.on-dark .cdp-mark { color: #fff; }
  .logo.on-dark .cdp-mark .c { color: var(--teal); }
  .logo.lockup-h { align-items: baseline; gap: 12px; }
  .logo.lockup-h .cdp-mark { font-size: 28px; }
  .logo.lockup-h .cdp-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); border-left: 1px solid var(--line); padding-left: 12px; line-height: 1; }
  .logo.lockup-h.on-dark .cdp-tag { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); }
  .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--ink-mid); transition: color 0.15s; }
  .nav-links a:hover { color: var(--black); }
  .nav-actions { display: flex; gap: 12px; align-items: center; }
  .btn-ghost { padding: 10px 16px; font-size: 14px; font-weight: 600; color: var(--ink); border: 1px solid var(--line); border-radius: 8px; }
  .btn-cta { padding: 11px 22px; background: var(--lime); color: var(--black); font-size: 14px; font-weight: 700; border-radius: 8px; box-shadow: 0 0 0 0 var(--lime-shadow); transition: box-shadow 0.2s; }
  .btn-cta:hover { box-shadow: 0 0 0 6px var(--lime-shadow); }

  .breadcrumb { padding: 18px 0 6px; font-size: 13px; color: var(--ink-soft); font-family: var(--mono); }
  .breadcrumb a { color: var(--ink-mid); transition: color 0.15s; }
  .breadcrumb a:hover { color: var(--teal-deep); }
  .breadcrumb .sep { margin: 0 8px; opacity: 0.5; }
  .breadcrumb .current { color: var(--black); font-weight: 600; }

  .hero { padding: 28px 0 64px; background: var(--bg); position: relative; }
  .hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
  .hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--teal-tint); color: var(--teal-deep); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 999px; margin-bottom: 24px; }
  .hero-tag::before { content: ""; width: 6px; height: 6px; background: var(--teal-deep); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  .hero h1 { font-family: var(--sans); font-weight: 800; font-size: clamp(38px, 5.2vw, 68px); line-height: 1.02; letter-spacing: -0.035em; color: var(--black); margin-bottom: 22px; }
  .hero h1 em { font-family: var(--mono); font-style: italic; font-weight: 500; color: var(--teal-deep); letter-spacing: -0.04em; font-size: 0.88em; }
  .hero-sub { font-size: 18px; line-height: 1.6; color: var(--ink-mid); margin-bottom: 32px; max-width: 540px; }

  .local-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
  .stat { display: flex; flex-direction: column; gap: 4px; }
  .stat-num { font-family: var(--mono); font-size: 26px; font-weight: 500; letter-spacing: -0.04em; color: var(--black); line-height: 1; }
  .stat-num em { font-style: italic; font-weight: 600; color: var(--teal-deep); }
  .stat-label { font-family: var(--mono); font-size: 10px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

  .quote-card { background: #fff; border: 1.5px solid var(--black); border-radius: 16px; padding: 28px; box-shadow: 8px 8px 0 0 var(--black); position: relative; }
  .quote-card::before { content: "DENVER QUOTE"; position: absolute; top: -12px; left: 24px; background: var(--lime); color: var(--black); font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 4px; }

  /* ── Workmon embed mount + fallback ── */
  /* The #workmon-embed div is the stable mount point. When Workmon's embed */
  /* script loads, it replaces the contents of .embed-fallback. Until then, */
  /* the fallback renders below. */
  .workmon-embed { min-height: 280px; }
  .embed-fallback h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 10px; color: var(--black); }
  .embed-fallback .embed-pitch { font-size: 14px; line-height: 1.55; color: var(--ink-mid); margin-bottom: 22px; }
  .embed-fallback .embed-trust { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .embed-fallback .embed-trust li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink); font-weight: 500; }
  .embed-fallback .embed-trust li .ic { flex-shrink: 0; color: var(--teal-deep); }
  .embed-fallback .embed-cta { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 16px 18px; background: var(--lime); color: var(--black); font-weight: 800; font-size: 16px; border-radius: 10px; text-decoration: none; box-shadow: 4px 4px 0 0 var(--black); transition: transform 0.1s, box-shadow 0.2s; }
  .embed-fallback .embed-cta:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 0 var(--black); }
  .embed-fallback .embed-cta:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 0 var(--black); }
  .embed-fallback .embed-foot { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 12px; color: var(--ink-soft); text-align: center; }
  .embed-fallback .embed-foot strong { color: var(--ink); font-weight: 700; }

  .powered-band { background: var(--black); color: rgba(255,255,255,0.65); padding: 16px 0; }
  .powered-inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; }
  .powered-mark { display: inline-block; width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }
  .powered-copy { font-size: 13px; line-height: 1.5; }
  .powered-copy strong { color: var(--teal); font-weight: 700; }

  .section { padding: 88px 0; }
  .section-head { margin-bottom: 48px; max-width: 720px; }
  .section-tag { display: inline-block; padding: 5px 12px; background: var(--bg-card); color: var(--ink-mid); font-family: var(--mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 4px; margin-bottom: 18px; }
  .section h2 { font-family: var(--sans); font-weight: 800; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -0.03em; color: var(--black); margin-bottom: 16px; }
  .section h2 em { font-family: var(--mono); font-style: italic; font-weight: 500; letter-spacing: -0.04em; font-size: 0.88em; color: var(--teal-deep); }
  .section-sub { font-size: 17px; color: var(--ink-mid); line-height: 1.6; }

  .pricing-section { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .price-card { background: #fff; border: 1.5px solid var(--line); border-radius: 14px; padding: 24px 22px; transition: all 0.2s; display: flex; flex-direction: column; }
  .price-card:hover { border-color: var(--black); transform: translateY(-3px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.1); }
  .price-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
  .price-card-icon { width: 36px; height: 28px; color: var(--ink-mid); }
  .price-badge { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: var(--teal-tint); color: var(--teal-deep); padding: 3px 8px; border-radius: 3px; }
  .price-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 4px; }
  .price-card .desc { font-size: 13px; color: var(--ink-soft); line-height: 1.45; margin-bottom: 14px; }
  .price-card .price { font-family: var(--mono); font-size: 28px; font-weight: 600; letter-spacing: -0.04em; color: var(--black); line-height: 1; margin-bottom: 4px; }
  .price-card .price em { font-style: italic; color: var(--teal-deep); }
  .price-card .price-note { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); margin-bottom: 16px; }
  .price-card .book { margin-top: auto; width: 100%; padding: 10px; background: var(--black); color: #fff; border-radius: 8px; font-weight: 700; font-size: 13px; text-align: center; transition: background 0.15s; }
  .price-card .book:hover { background: var(--teal-deep); }

  .how-section { background: var(--black); color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
  .how-section::before { content: ""; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(78,211,207,0.15) 0%, transparent 70%); pointer-events: none; }
  .how-section h2 { color: #fff; }
  .how-section h2 em { color: var(--teal); }
  .how-section .section-tag { background: rgba(255,255,255,0.06); color: var(--teal); border: 1px solid rgba(255,255,255,0.1); }
  .how-section .section-sub { color: rgba(255,255,255,0.7); }
  .how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; z-index: 1; }
  .how-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 28px 22px 24px; transition: all 0.2s; }
  .how-step:hover { background: rgba(255,255,255,0.06); border-color: var(--teal); }
  .step-num { font-family: var(--mono); font-size: 36px; font-weight: 600; letter-spacing: -0.04em; color: var(--teal); line-height: 1; margin-bottom: 18px; display: block; }
  .step-num em { font-style: italic; }
  .how-step h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; }
  .how-step p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.65); }

  .faq-section { background: var(--bg-soft); border-top: 1px solid var(--line); }
  .faq-section .wrap { max-width: 880px; }
  .faq-list { margin-top: 8px; }
  .faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
  .faq-item:first-child { border-top: 1px solid var(--line); }
  .faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px; font-size: 18px; font-weight: 700; letter-spacing: -0.015em; color: var(--black); cursor: pointer; }
  .faq-icon { flex-shrink: 0; width: 32px; height: 32px; border: 1.5px solid var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: 18px; font-weight: 700; transition: transform 0.25s, background 0.2s, color 0.2s; }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--black); color: var(--lime); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding-top 0.3s ease; font-size: 15px; line-height: 1.65; color: var(--ink-mid); padding-right: 56px; }
  .faq-item.open .faq-a { max-height: 600px; padding-top: 14px; }
  .faq-a strong { color: var(--black); font-weight: 700; }

  .cities-section { background: #fff; }
  .cities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
  .city-tile { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; font-size: 14px; color: var(--ink); transition: all 0.15s; display: flex; align-items: center; justify-content: space-between; }
  .city-tile:hover { border-color: var(--black); background: var(--black); color: #fff; }
  .city-tile:hover .city-price { color: var(--lime); }
  .city-name { font-weight: 600; }
  .city-price { font-family: var(--mono); font-size: 11px; color: var(--ink-soft); font-weight: 500; }

  .cta-band { background: var(--teal); padding: 80px 0; position: relative; overflow: hidden; }
  .cta-band::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 50%, rgba(255,255,255,0.15) 0%, transparent 30%), radial-gradient(circle at 85% 50%, rgba(204,255,0,0.12) 0%, transparent 35%); pointer-events: none; }
  .cta-inner { text-align: center; position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
  .cta-inner h2 { font-family: var(--sans); font-weight: 800; font-size: clamp(36px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.03em; color: var(--black); margin-bottom: 16px; }
  .cta-inner h2 em { font-family: var(--mono); font-style: italic; font-weight: 500; letter-spacing: -0.04em; font-size: 0.88em; }
  .cta-inner p { font-size: 18px; color: var(--black); opacity: 0.85; margin-bottom: 32px; }
  .cta-btn { padding: 16px 32px; font-size: 16px; background: var(--black); color: var(--lime); font-weight: 700; border-radius: 8px; }
  .cta-or { display: block; margin-top: 18px; font-size: 13px; color: var(--black); opacity: 0.7; }

  footer { background: var(--black); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
  .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
  footer .logo { margin-bottom: 18px; }
  .footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 280px; margin-bottom: 20px; }
  .footer-attribution { font-size: 12px; line-height: 1.7; color: rgba(255,255,255,0.45); padding: 14px 0; margin-bottom: 18px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); max-width: 280px; }
  .footer-attribution strong { color: var(--teal); font-weight: 600; }
  .footer-call { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; font-size: 14px; font-weight: 600; color: #fff; }
  .footer-call:hover { border-color: var(--teal); }
  .footer-call .ic { color: var(--teal); }
  .footer-col h5 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
  .footer-col ul li a:hover { color: var(--teal); }
  .footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(255,255,255,0.4); }
  .footer-bottom a { margin-left: 14px; color: rgba(255,255,255,0.5); transition: color 0.15s; }
  .footer-bottom a:first-child { margin-left: 0; }
  .footer-bottom a:hover { color: var(--teal); }

  @media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .price-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid .footer-col:last-child { display: none; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .local-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
    .price-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-grid .footer-col:last-child { display: block; }
    .section, .how-section { padding: 64px 0; }
  }
  @media (max-width: 480px) {
    .cities-grid, .how-steps { grid-template-columns: 1fr; }
  }

  /* AEO direct-answer block */
  .answer-section{padding-top:38px;padding-bottom:0}
  .direct-answer{border-left:4px solid var(--teal-deep);background:var(--teal-tint);
    padding:22px 26px;border-radius:0 10px 10px 0;max-width:820px}
  .direct-answer .answer-q{font-size:1.18rem;font-weight:700;margin:0 0 8px;line-height:1.3}
  .direct-answer .answer-a{font-size:1.02rem;line-height:1.65;margin:0}
  /* per-city facts table */
  .local-facts{width:100%;max-width:560px;border-collapse:collapse;margin:26px 0 4px;font-size:.95rem}
  .local-facts caption{text-align:left;font-weight:700;padding-bottom:10px;font-size:.82rem;
    letter-spacing:.09em;text-transform:uppercase;color:var(--teal-deep)}
  .local-facts th,.local-facts td{padding:10px 14px;border-bottom:1px solid rgba(0,0,0,.09);text-align:left}
  .local-facts th{font-weight:600;width:58%}
  .local-facts td{font-variant-numeric:tabular-nums;font-family:'JetBrains Mono',monospace;font-size:.9rem}
  .price-card-icon{width:56px;height:34px;color:var(--teal-deep)}

  /* brand photography */
  .photo{margin:30px 0;max-width:820px}
  .photo picture{display:block}
  .photo img{width:100%;height:auto;display:block;border-radius:12px;
    background:#eef1f0;object-fit:cover;aspect-ratio:3/2}
  .photo figcaption{font-size:.86rem;line-height:1.5;color:#5a6663;margin-top:10px;
    padding-left:14px;border-left:3px solid var(--teal-deep)}
  .hero .photo{margin:24px 0 0;max-width:100%}
  .hero .photo figcaption{color:inherit;opacity:.85}
  @media (max-width:780px){.photo{margin:22px 0}.photo img{border-radius:9px}}

  /* CTA buttons (slideout triggers) */
  button.btn-cta, button.cta-btn, button.book { font: inherit; cursor: pointer; border: 0; }
  button.book { width: 100%; }
  .btn-price { display: inline-block; background: var(--lime); color: var(--black);
    border: 1.5px solid var(--black); box-shadow: 4px 4px 0 0 var(--black);
    font-family: inherit; font-weight: 800; font-size: 17px; letter-spacing: -0.01em;
    padding: 15px 30px; border-radius: 10px; cursor: pointer; margin-bottom: 8px;
    transition: transform .12s, box-shadow .12s; }
  .btn-price:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 0 var(--black); }
  .btn-price:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 0 var(--black); }

  /* trust badge strip + locations hero */
  .hub-hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
  @media (max-width: 900px) { .hub-hero-grid { grid-template-columns: 1fr; gap: 28px; } }
  .hub-hero-photo { margin: 0; }
  .hub-hero-photo img { width: 100%; height: auto; display: block; border-radius: 14px;
    border: 1.5px solid var(--black); box-shadow: 8px 8px 0 0 var(--black);
    aspect-ratio: 4/3; object-fit: cover; background: #eef1f0; max-height: 440px; }
  .h1-pin { width: .82em; height: .82em; display: inline-block; vertical-align: -0.08em;
    color: var(--teal-deep); margin-right: 6px; }

  /* blog article */
  .article-hero{padding:44px 0 8px}
  .article-hero .tag{display:inline-block;padding:6px 12px;background:var(--teal-tint);color:var(--teal-deep);font-family:'JetBrains Mono',monospace;font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;border-radius:999px;margin-bottom:18px}
  .article-hero h1{max-width:860px}
  .article-meta{font-size:.9rem;color:#5a6663;margin:10px 0 0}
  .article-body{max-width:760px;font-size:1.05rem;line-height:1.75}
  .article-body h2{margin:44px 0 14px}
  .article-body p{margin:0 0 18px}
  .article-body table{width:100%;border-collapse:collapse;margin:22px 0;font-size:.95rem}
  .article-body th,.article-body td{padding:11px 13px;border:1px solid rgba(0,0,0,.12);text-align:left}
  .article-body th{background:#f4f6f5;font-weight:700}
  .article-body ul{margin:0 0 18px 22px}
  .article-body li{margin-bottom:8px}
  .article-cta{border-left:4px solid var(--teal-deep);background:var(--teal-tint);padding:16px 20px;border-radius:0 10px 10px 0;margin:26px 0;display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap}
  .article-cta p{margin:0;font-weight:600}
  .author-box{display:flex;gap:16px;align-items:flex-start;border-top:1px solid rgba(0,0,0,.1);margin-top:48px;padding-top:26px;max-width:760px}
  .author-box .avatar{width:56px;height:56px;border-radius:50%;background:var(--teal-tint);display:flex;align-items:center;justify-content:center;font-weight:800;color:var(--teal-deep);flex-shrink:0}

  /* blog posts */
  .post-wrap { max-width: 780px; }
  .post h1 { font-size: clamp(34px, 4.4vw, 54px); line-height: 1.05; letter-spacing: -0.03em; margin: 10px 0 8px; }
  .post-byline { color: #5a6663; font-size: .92rem; margin-bottom: 26px; }
  .post-body h2 { font-size: 1.5rem; margin: 34px 0 12px; letter-spacing: -0.02em; }
  .post-body h3 { font-size: 1.12rem; margin: 26px 0 8px; }
  .post-body p { line-height: 1.75; margin: 0 0 16px; }
  .post-body ul { margin: 0 0 18px 22px; line-height: 1.7; }
  .post-table-wrap { overflow-x: auto; margin: 18px 0 24px; }
  .post-table { width: 100%; border-collapse: collapse; font-size: .93rem; }
  .post-table th, .post-table td { border: 1px solid rgba(0,0,0,.12); padding: 10px 12px; text-align: left; }
  .post-table th { background: var(--teal-tint); font-weight: 700; }
  .post-hero { margin: 4px 0 30px; }
  .post-hero img { width: 100%; height: auto; display: block; border-radius: 14px;
    border: 1.5px solid var(--black); box-shadow: 6px 6px 0 0 var(--black);
    aspect-ratio: 16/9; object-fit: cover; background: #eef1f0; }
  .post-cta { margin-top: 44px; border: 1.5px solid var(--black); border-radius: 14px;
    padding: 28px; box-shadow: 6px 6px 0 0 var(--black); }
  .post-cta h2 { margin: 0 0 6px; }
  .post-tile .city-name { white-space: normal; line-height: 1.35; }
