:root {
  --green: #0f7039;
  --green-dark: #0b5a2d;
  --ink: #111827;
  --muted: #64748b;
  --line: #e8edf2;
  --bg: #f5f7fa;
  --navy: #0b1220;
  --gutter: clamp(16px, 3vw, 40px);
  --wrap: 1200px;
  --wrap-wide: 1600px;
  --radius: 14px;
  --shadow: 0 8px 22px rgba(15, 23, 42, .12);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: clip; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.5;
  background: #fff;
}
main { flex: 1 0 auto; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
.wrap { width: min(var(--wrap), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.wrap--wide { width: min(var(--wrap-wide), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.center { text-align: center; }
.muted { color: var(--muted); }
.lede { color: #4b5563; max-width: 760px; }
.empty { color: var(--muted); padding: 20px 0; }
.explore-empty {
  margin: 8px 0 28px;
  padding: 28px 24px;
  border-radius: 16px;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(31, 143, 78, 0.12), transparent 55%),
    linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
  border: 1px solid rgba(31, 143, 78, 0.18);
  text-align: center;
}
.explore-empty__eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green-dark, #0b5a2d);
}
.explore-empty__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--navy, #0b1c33);
}
.explore-empty__copy {
  margin: 0 auto 18px;
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.5;
}
.explore-empty__cta { min-width: 11rem; }
.explore-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.explore-empty--filtered {
  background: #fafafa;
  border-color: rgba(0, 0, 0, 0.08);
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.notice { background: #e8f5ee; color: var(--green-dark); padding: 12px 14px; border-radius: 10px; }
.error { background: #fee2e2; color: #991b1b; padding: 12px 14px; border-radius: 10px; }
.account-verify-flag { color: #b45309; font-weight: 600; }
.account-verify {
  background: #fff7ed; color: #9a3412; border: 1px solid #fdba74; border-radius: 12px;
  padding: 14px 16px; margin: 0 0 16px; max-width: 640px;
}
.account-verify p { margin: 0 0 10px; }
.account-verify p:last-child { margin: 0; }

.account-hero .account-hero__inner {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.account-hero__identity { display: flex; align-items: center; gap: 18px; min-width: min(100%, 420px); }
.account-avatar {
  width: 88px; height: 88px; border-radius: 50%; overflow: hidden; flex: 0 0 auto;
  border: 3px solid rgba(255,255,255,.28); box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-hero__eyebrow {
  margin: 0 0 4px; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: rgba(255,255,255,.72);
}
.account-hero h1 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.account-hero__meta, .account-hero__sub {
  display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; margin: 8px 0 0; color: rgba(255,255,255,.82);
}
.account-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.account-hero .btn--line {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.35);
}
.account-hero .btn--line:hover { background: rgba(255,255,255,.1); color: #fff; border-color: #fff; }
.account-pill {
  display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 999px;
  background: rgba(255,255,255,.12); color: #fff; font-size: 12px; font-weight: 600;
}
.account-pill--ok { background: rgba(34,197,94,.22); color: #bbf7d0; }
.account-pill--warn { background: rgba(251,146,60,.22); color: #fed7aa; }

.account-dash { background: var(--bg); }
.account-stats {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 12px; margin: 0 0 22px;
}
.account-stat {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 1px 0 rgba(15,23,42,.02);
}
.account-stat__label { display: block; color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.account-stat strong { font-size: 1.6rem; letter-spacing: -.02em; }

.account-analytics { margin: 0 0 18px; }
.account-analytics .account-panel__head { align-items: flex-start; gap: 12px; }
.account-analytics__totals {
  display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 0; color: var(--muted); font-size: 13px; font-weight: 700;
}
.account-analytics__totals span { display: inline-flex; align-items: center; gap: 6px; }
.account-analytics__swatch {
  width: 10px; height: 10px; border-radius: 999px; display: inline-block;
}
.account-analytics__swatch--views { background: #0f766e; }
.account-analytics__swatch--clicks { background: #1d4ed8; }
.account-analytics__swatch--ctas { background: #c2410c; }
.account-analytics__chart { position: relative; margin-top: 4px; }
.account-analytics__svg {
  display: block; width: 100%; height: 220px; background: #f8fafc; border: 1px solid #eef2f6; border-radius: 12px;
}
.account-analytics__grid { stroke: #e2e8f0; stroke-width: 1; }
.account-analytics__area--views { fill: rgba(15, 118, 110, .12); }
.account-analytics__line {
  fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.account-analytics__line--views { stroke: #0f766e; }
.account-analytics__line--clicks { stroke: #1d4ed8; }
.account-analytics__line--ctas { stroke: #c2410c; }
.account-analytics__labels {
  position: relative; height: 22px; margin-top: 6px; color: var(--muted); font-size: 11px; font-weight: 600;
}
.account-analytics__labels span {
  position: absolute; transform: translateX(-50%); white-space: nowrap;
}
.account-analytics__note {
  margin: 10px 0 0; color: var(--muted); font-size: 12px;
}

.account-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; padding: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
}
.account-tabs__link {
  padding: 10px 14px; border-radius: 10px; color: var(--ink); font-weight: 600; font-size: 14px;
}
.account-tabs__link:hover { background: #f3faf6; color: var(--green-dark); }
.account-tabs__link.is-active { background: var(--navy); color: #fff; }

.account-grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .9fr); gap: 16px;
}
.account-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px;
}
.account-panel__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px;
}
.account-panel__head h2 { margin: 0; font-size: 1.15rem; }

.account-table-wrap { overflow-x: auto; }
.account-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.account-table th {
  text-align: left; color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase;
  letter-spacing: .04em; padding: 0 10px 10px; border-bottom: 1px solid var(--line);
}
.account-table td {
  padding: 12px 10px; border-bottom: 1px solid #eef2f6; vertical-align: top;
}
.account-table tr:last-child td { border-bottom: 0; }
.account-table__muted { display: block; color: var(--muted); font-size: 12px; font-weight: 400; margin-top: 2px; }
.account-table__actions {
  white-space: nowrap;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}
.account-table__actions a,
.account-table__actions button {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.account-status {
  display: inline-flex; align-items: center; padding: 4px 9px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.account-status--active { background: #ecfdf3; color: #166534; }
.account-status--expired { background: #fef2f2; color: #991b1b; }
.account-status--pending { background: #fff7ed; color: #9a3412; }
.account-status--paused { background: #f1f5f9; color: #475569; }
.account-table__actions form { display: inline; margin: 0; }
.account-table__actions button {
  border: 0; background: none; padding: 0; font: inherit;
  cursor: pointer;
}

.account-dl { display: grid; gap: 12px; margin: 0; }
.account-dl > div { display: grid; gap: 2px; }
.account-dl dt { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.account-dl dd { margin: 0; font-weight: 600; }
.account-bio {
  margin: 16px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: #334155;
}

.account-form__avatar {
  display: flex; align-items: center; gap: 16px; margin-bottom: 18px;
}
.account-form__avatar img {
  width: 88px; height: 88px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line);
}
.account-file span { display: block; font-weight: 600; margin-bottom: 6px; }
.account-form__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px;
}
.account-form label span, .account-form__bio span {
  display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: #334155;
}
.account-form input, .account-form select, .account-form textarea {
  width: 100%; border: 1px solid #dbe3ec; border-radius: 10px; padding: 11px 12px; font: inherit; background: #fff;
}
.account-form input:disabled { background: #f8fafc; color: var(--muted); }
.account-form__bio { display: block; margin-bottom: 16px; }
.account-form__actions { display: flex; gap: 10px; }

.account-reviews { display: grid; gap: 12px; }
.account-review {
  border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: #fbfdff;
}
.account-review__top {
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; margin-bottom: 8px;
}
.account-review h3 { margin: 0 0 4px; font-size: 1rem; }
.account-review__meta { display: flex; flex-wrap: wrap; gap: 8px 12px; align-items: center; margin: 0; color: var(--muted); font-size: 13px; }
.account-review__title { margin: 0 0 6px; font-weight: 700; }
.account-review .account-pill { background: #eef2f6; color: var(--ink); }
.account-review__side {
  display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0;
}
.account-review__actions {
  display: flex; flex-wrap: wrap; gap: 10px 12px; align-items: center; justify-content: flex-end;
  font-size: 13px; font-weight: 600;
}
.account-review__actions form { display: inline; margin: 0; }
.account-review__actions button {
  border: 0; background: none; padding: 0; font: inherit; color: #b91c1c;
  cursor: pointer; text-decoration: underline; text-underline-offset: 2px;
}
.account-review__actions a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.account-review__form { display: grid; gap: 12px; margin-top: 8px; }
.account-review__form label { display: grid; gap: 4px; }
.account-review__form label span { font-size: 13px; font-weight: 600; }
.account-review__form input[type="text"],
.account-review__form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; font: inherit;
}
.account-review__rating { border: 0; margin: 0; padding: 0; }
.account-review__rating legend { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.account-review__stars { display: flex; flex-wrap: wrap; gap: 8px; }
.account-review__stars label {
  display: inline-flex; align-items: center; gap: 4px; margin: 0;
  font-size: 13px; font-weight: 600; cursor: pointer;
}
.account-review__form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.account-subtabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px;
}
.account-subtabs__link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); font-size: 13px; font-weight: 700;
}
.account-subtabs__link span {
  display: inline-flex; min-width: 1.4em; justify-content: center;
  padding: 1px 6px; border-radius: 999px; background: #eef2f6; font-size: 11px;
}
.account-subtabs__link:hover { border-color: var(--green); color: var(--green-dark); }
.account-subtabs__link.is-active {
  background: var(--navy); border-color: var(--navy); color: #fff;
}
.account-subtabs__link.is-active span { background: rgba(255,255,255,.18); color: #fff; }
.account-review__reply {
  margin-top: 12px; padding: 12px 14px; border-radius: 12px;
  background: #f3faf6; border: 1px solid #d8eee2;
}
.account-review__reply strong {
  display: block; margin-bottom: 4px; font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em; color: #166534;
}
.account-review__reply p { margin: 0 0 4px; }
.account-review__reply time { color: var(--muted); font-size: 12px; }

@media (max-width: 980px) {
  .account-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .account-grid { grid-template-columns: 1fr; }
  .account-form__grid { grid-template-columns: 1fr; }
  .account-analytics__svg { height: 180px; }
}
@media (max-width: 640px) {
  .account-hero__identity { align-items: flex-start; }
  .account-stats { grid-template-columns: 1fr 1fr; }
  .account-stat:last-child { grid-column: 1 / -1; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px; border-radius: 10px; font-weight: 700;
  border: 0; cursor: pointer; background: #fff; color: var(--ink);
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); color: #fff; }
.btn--line { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn--line:hover { border-color: var(--green); color: var(--green); }
.btn--ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.is-inner .btn--ghost { color: #fff; }

.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header--overlay {
  position: sticky;
  background: var(--navy);
}
.site-header__inner {
  display: flex; align-items: stretch; gap: 18px;
  width: min(var(--wrap-wide), calc(100% - var(--gutter) * 2));
  margin: 0 auto; padding: 12px 0;
}
.logo, .header-search, .header-actions { align-self: center; }
.logo img { width: 150px; height: auto; }
.header-search {
  display: flex; align-items: center; flex: 1 1 auto; min-width: 200px; max-width: none;
  height: 40px; box-sizing: border-box; overflow: hidden;
  border: 1px solid rgba(255,255,255,.28); border-radius: 12px;
  padding: 0 4px 0 0;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.88);
}
.header-search__shell {
  position: relative; display: flex; align-items: center;
  flex: 1 1 auto; min-width: 0; height: 100%; margin: 0; padding: 0;
  font: inherit; color: inherit; cursor: text;
}
.header-search__hint {
  position: absolute; inset: 0 auto 0 14px; z-index: 0;
  display: inline-flex; align-items: center; gap: .4em;
  max-width: calc(100% - 22px); overflow: hidden;
  color: rgba(255,255,255,.78); font-size: 15px; font-weight: 500;
  pointer-events: none; white-space: nowrap;
}
.header-search__hint.is-hidden { opacity: 0; visibility: hidden; }
.header-search__hint-prefix { flex: 0 0 auto; }
.header-search__hint-slot {
  position: relative; display: inline-block;
  height: 1.2em; min-width: 5.5em; overflow: hidden;
  vertical-align: middle;
}
.header-search__hint-word {
  display: block; line-height: 1.2; will-change: transform, opacity;
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .28s ease;
}
.header-search__hint-word.is-out {
  transform: translateY(-110%); opacity: 0;
}
.header-search__hint-word.is-in {
  transform: translateY(110%); opacity: 0;
  transition: none;
}
.header-search__hint--light { color: #94a3b8; font-size: 14px; left: 0; }
.header-search input {
  position: relative; z-index: 1;
  width: 100%; min-width: 0; height: 100%; max-height: 100%; min-height: 0;
  border: 0; border-radius: 0; outline: none; box-shadow: none;
  background: transparent; color: #fff;
  font: inherit; font-size: 15px;
  padding: 0 8px 0 14px; margin: 0;
  text-overflow: ellipsis;
  box-sizing: border-box;
  appearance: none; -webkit-appearance: none;
}
.header-search input:focus,
.header-search input:focus-visible {
  border: 0; outline: none; box-shadow: none;
}
.header-search input::-webkit-search-decoration,
.header-search input::-webkit-search-cancel-button { display: none; }
.header-search input::placeholder { color: transparent; }
.header-search__btn {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 32px; width: 32px; height: 32px; margin: 0; padding: 0; line-height: 0;
  border: 0; border-radius: 10px; background: transparent; color: #fff; cursor: pointer;
}
.header-search__btn svg { display: block; width: 18px; height: 18px; flex: none; }
.header-search__btn:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-desktop { display: flex; align-items: stretch; gap: 22px; margin-left: auto; }
.nav-desktop > a, .nav-drop > a { color: #fff; font-weight: 600; }
.nav-desktop > a { display: inline-flex; align-items: center; }
.nav-drop { position: relative; display: flex; align-items: stretch; }
.nav-drop > a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 2px; margin: -12px 0;
}
.nav-caret {
  width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid currentColor; opacity: .85;
}
.nav-drop:hover > a, .nav-drop:focus-within > a { color: #fff; }
.nav-drop--mega { position: static; }
.nav-drop__menu {
  display: grid; position: absolute; top: calc(100% - 6px); right: 0; left: auto;
  min-width: 220px; background: #fff; color: var(--ink); border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .16); padding: 18px 16px 16px;
  grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 8px 6px; border: 1px solid #e8edf2; z-index: 60;
  opacity: 0; visibility: hidden;
  transition: opacity .1s ease, visibility 0s linear .22s;
}
.nav-drop__menu::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 100%; height: 24px;
}
.nav-drop--mega .nav-drop__menu {
  left: 50%; right: auto; transform: translateX(-50%);
  width: min(1440px, calc(100vw - var(--gutter) * 2)); min-width: 0;
  padding: 20px 18px 12px;
}
.nav-drop--mega::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: min(1440px, calc(100vw - var(--gutter) * 2));
  bottom: 0; height: 22px; display: none;
}
.nav-drop--mega:hover::after, .nav-drop--mega:focus-within::after { display: block; }
.nav-drop__menu--simple { min-width: 220px; grid-template-columns: 1fr; padding: 10px; transform: none; }
.nav-drop:hover .nav-drop__menu, .nav-drop:focus-within .nav-drop__menu {
  opacity: 1; visibility: visible;
  transition: opacity .1s ease, visibility 0s;
}
.nav-drop__menu > div { min-width: 0; padding: 0 10px; border-left: 1px solid #eef2f6; }
.nav-drop__menu > div:first-child { border-left: 0; padding-left: 6px; }
.nav-drop--mega .nav-drop__menu > div { overflow: hidden; }
.nav-drop__menu strong {
  display: block; margin: 0 0 8px; padding-bottom: 8px; border-bottom: 2px solid var(--green);
  color: var(--ink); font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
}
.nav-drop__menu a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  color: #334155; padding: 7px 8px; margin: 0 -8px; border-radius: 8px;
  font-size: 14px; font-weight: 600; white-space: nowrap;
}
.nav-drop--mega .nav-drop__menu a {
  white-space: normal;
  align-items: flex-start;
  gap: 8px;
}
.nav-drop--mega .nav-drop__menu a > span:not(.nav-drop__count) {
  min-width: 0;
  flex: 1;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nav-drop__menu a:hover { background: #f3faf6; color: var(--green-dark); }
.nav-drop__type {
  margin: 0 0 8px !important; padding: 0 0 8px !important; border-radius: 0 !important;
  border-bottom: 2px solid var(--green);
}
.nav-drop__type strong {
  margin: 0; padding: 0; border: 0; color: inherit;
}
.nav-drop__type:hover { background: transparent; color: var(--green-dark); }
.nav-drop__count {
  color: #94a3b8; font-size: 12px; font-weight: 700; min-width: 1.25em; text-align: right;
  flex-shrink: 0;
}
.nav-drop--mega .nav-drop__count { padding-top: 1px; }
.nav-drop__type .nav-drop__count { color: #86b89a; }
.nav-drop__menu--simple a { white-space: normal; }
.nav-drop__foot {
  grid-column: 1 / -1; border-left: 0 !important; margin-top: 8px; padding: 10px 6px 2px !important;
  border-top: 1px solid #eef2f6; text-align: center;
}
.nav-drop__foot a { color: var(--green); font-size: 13px; font-weight: 700; }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-account {
  display: inline-flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; white-space: nowrap;
}
.header-account:hover { color: #fff; opacity: .85; }
.btn--add {
  position: relative;
  background: var(--green); color: #fff; border-radius: 10px; gap: 6px; padding: 0 16px; min-height: 42px;
}
.btn--add:hover { background: var(--green-dark); color: #fff; }
.icon-btn { background: none; border: 0; color: #fff; cursor: pointer; display: inline-flex; }
.nav-toggle {
  display: none; position: relative; background: none; border: 0;
  width: 40px; height: 40px; padding: 0; cursor: pointer;
}
.nav-toggle span {
  position: absolute; left: 10px; right: 10px; height: 2px; background: #fff;
  border-radius: 1px; top: 50%; margin: 0;
  transition: transform .18s ease, opacity .18s ease;
}
.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }
.mobile-nav {
  display: none; background: #f4f4f4; padding: 12px var(--gutter) 18px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav__search {
  display: flex; align-items: center; gap: 8px;
  min-height: 46px; height: 46px; margin: 0 0 12px; padding: 0 8px 0 12px;
  box-sizing: border-box;
  background: #fff; border: 1px solid #e5eaf0; border-radius: 12px; color: #64748b;
}
.mobile-nav__search-shell {
  position: relative; display: flex; align-items: center;
  flex: 1 1 auto; min-width: 0; height: 100%; margin: 0; cursor: text;
}
.mobile-nav__search input {
  position: relative; z-index: 1;
  flex: 1; width: 100%; min-width: 0; height: 100%; min-height: 0; border: 0; background: none;
  font: inherit; font-size: 14px; color: var(--ink); outline: none;
  appearance: none; -webkit-appearance: none;
}
.mobile-nav__search input::placeholder { color: transparent; }
.mobile-nav__search button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; flex: 0 0 auto; padding: 0; line-height: 0;
  border: 0; border-radius: 9px; background: var(--green); color: #fff; cursor: pointer;
}
.mobile-nav__search button svg { display: block; }
.mobile-nav__types {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin: 0 0 12px;
}
.mobile-nav__type {
  display: flex; align-items: center; gap: 8px; min-width: 0; min-height: 48px;
  padding: 6px 10px 6px 6px; background: #fff; color: var(--ink);
  border-radius: 12px; font-size: 13px; font-weight: 700;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .04);
}
.mobile-nav__type .chip__icon { width: 32px; height: 32px; flex: 0 0 auto; }
.mobile-nav__type.is-active { background: var(--green); color: #fff; }
.mobile-nav__links {
  background: #fff; border-radius: 12px; overflow: hidden; margin: 0 0 12px;
}
.mobile-nav__links > a, .mobile-nav__drop summary {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-height: 46px; padding: 0 14px; color: var(--ink); font-weight: 700;
  border-bottom: 1px solid #f1f5f9;
}
.mobile-nav__links > a:last-child { border-bottom: 0; }
.mobile-nav__links > a.is-active { color: var(--green); }
.mobile-nav__drop summary {
  list-style: none; cursor: pointer;
}
.mobile-nav__drop summary::-webkit-details-marker { display: none; }
.mobile-nav__drop summary::after {
  content: ""; width: 8px; height: 8px; flex: 0 0 auto;
  border-right: 2px solid #94a3b8; border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg); margin-top: -4px;
}
.mobile-nav__drop[open] summary { border-bottom-color: #f1f5f9; }
.mobile-nav__drop[open] summary::after { transform: rotate(225deg); margin-top: 2px; }
.mobile-nav__sub a {
  display: block; min-height: 40px; padding: 8px 14px 8px 22px;
  color: #475569; font-size: 14px; font-weight: 600; border-top: 1px solid #f8fafc;
}
.mobile-nav__sub a:hover, .mobile-nav__links > a:hover { color: var(--green); }
.mobile-nav__actions { display: flex; flex-direction: column; gap: 8px; }
.mobile-nav__cta { width: 100%; justify-content: center; min-height: 46px; border-radius: 12px; }
.mobile-nav__account {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; color: #334155; font-weight: 700;
}

.hero {
  position: relative; width: 100%; min-height: 380px; height: min(44vh, 460px);
  display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
  overflow: visible; background: var(--navy);
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%; max-width: none;
  object-fit: cover; object-position: center center;
}
.hero__overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, .45); }
.hero__inner {
  position: relative; z-index: 1; flex: 1 1 auto; min-height: 0; width: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; color: #fff; padding: 20px 20px 8px;
}
.hero__inner h1 { font-size: clamp(1.85rem, 4.2vw, 3.15rem); margin: 0 0 10px; letter-spacing: -.02em; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hero__inner p { font-size: clamp(1.05rem, 2.2vw, 1.45rem); margin: 0; font-weight: 600; }

.type-chips {
  display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap;
  width: 100%; margin: 0; position: relative; z-index: 3;
  padding: 4px 20px 28px;
}
.chip {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--ink);
  border-radius: 10px; box-shadow: var(--shadow); min-height: 52px; padding: 8px 16px 8px 8px; font-weight: 600;
}
.chip:hover { color: var(--green); transform: translateY(-2px); }
.chip__icon { width: 40px; height: 40px; background: transparent center/60% no-repeat; }
.chip__icon--briefcase { background-image: url("../img/icons/business.svg"); }
.chip__icon--ticket { background-image: url("../img/icons/events.svg"); }
.chip__icon--pin { background-image: url("../img/icons/places.svg"); }
.chip__icon--user { background-image: url("../img/icons/jobs.svg"); }
.chip__icon--tag { background-image: url("../img/icons/classifieds.svg"); }
.chip__icon--home { background-image: url("../img/icons/property.svg"); }
.chip__icon--stay { background-image: url("../img/icons/stays.svg"); }
.chip__icon--experts { background-image: url("../img/icons/experts.svg"); }
.chip__icon--car { background-image: url("../img/icons/motors.svg"); }

.section { padding: 40px 0; }
.hero + .section { padding-top: 56px; }
.section--muted { background: var(--bg); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.section-head h2, .section h2 { margin: 0 0 8px; }
.section-head--center { justify-content: center; text-align: center; }
.section-head--center h2 { margin: 0; }
.city-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.city-card { position: relative; border-radius: 16px; overflow: hidden; min-height: 160px; color: #fff; }
.city-card img { width: 100%; height: 160px; object-fit: cover; }
.city-card strong { position: absolute; left: 12px; bottom: 12px; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.5); z-index: 1; }

.bento { padding: 8px 0 28px; }
.bento__wrap { width: min(1600px, calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.bento__grid { display: grid; gap: 14px; grid-template-columns: repeat(12, minmax(0, 1fr)); }
.bento__item {
  background: #1e293b center/cover no-repeat; border-radius: 18px; color: #fff;
  display: flex; flex-direction: column; min-height: 180px; overflow: hidden; position: relative;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
a.bento__item:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(15,23,42,.18); }
.bento__item--half { grid-column: span 6; min-height: 240px; }
.bento__item--quarter { grid-column: span 3; min-height: 190px; }
.bento__item--wide { grid-column: span 6; min-height: 210px; align-items: center; justify-content: flex-end; padding-bottom: 28px; }
.bento__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(rgba(15,23,42,.15), rgba(15,23,42,.45) 55%, rgba(15,23,42,.62));
}
.bento__title {
  position: relative; z-index: 2; margin: auto; padding: 20px; text-align: center;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem); font-weight: 700; letter-spacing: -.01em;
  text-shadow: 0 2px 14px rgba(0,0,0,.35);
}
.bento__item--wide .bento__title { margin: 0; }
.bento__item--quote {
  grid-column: span 3; min-height: 210px; background: #fff; color: var(--ink);
  border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(15,23,42,.06);
  align-items: center; justify-content: center; padding: 28px 22px; text-align: center; margin: 0;
}
.bento__quote-mark { color: #cbd5e1; font-family: Georgia, "Times New Roman", serif; font-size: 3.4rem; font-weight: 700; line-height: .8; }
.bento__item--quote p {
  color: #334155; font-family: Georgia, "Times New Roman", serif; font-size: clamp(.95rem, 1.4vw, 1.1rem);
  font-style: italic; line-height: 1.45; margin: 10px 0 16px; max-width: 18em;
}
.bento__item--quote cite { color: var(--ink); font-size: .95rem; font-weight: 800; font-style: normal; }

.quote-band { background: var(--navy); color: #fff; text-align: center; padding: 48px 0; }
.quote-band blockquote { font-size: clamp(1.2rem, 2vw, 1.8rem); margin: 0 0 8px; }

.job-list { display: grid; gap: 0; }
.job-card { background: #fff; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 18px 16px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.job-card:has(.job-card__tag) { grid-template-columns: minmax(0, 1fr) minmax(160px, 220px) auto; }
.job-card:last-child { border-bottom: 0; }
.job-explore-line { border: 0; border-top: 1px solid var(--line); margin: 22px 0 14px; }
.job-explore { margin: 0; font-size: 15px; font-weight: 700; line-height: 1.5; }
.job-explore a { color: var(--ink); }
.job-explore a:hover { color: var(--green); }
.job-card__tag {
  background: #edf7f0; border: 1px solid #c5e4ce; border-radius: 6px;
  color: var(--green); font-size: 12px; font-weight: 600; line-height: 1.35;
  padding: 8px 10px; text-align: center;
}
.job-card__body { color: inherit; display: flex; align-items: center; gap: 12px; min-width: 0; }
.job-card__logo { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; background: #f1f5f9; flex-shrink: 0; }
.job-card__copy { min-width: 0; }
.job-card strong { display: block; font-size: 1.05rem; }
.job-card__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: 14px; }
.job-card__btn { background: var(--green); color: #fff; border-radius: 8px; padding: 10px 16px; font-weight: 700; white-space: nowrap; justify-self: end; align-self: center; }
.job-card__btn:hover { color: #fff; background: var(--green-dark); }
.job-card--expired { background: #f8fafc; }
.job-card__tag--expired { background: #f1f5f9; border-color: #e2e8f0; color: #64748b; }
.job-card__btn--ghost { background: #fff; color: #334155; border: 1px solid var(--line); }
.job-card__btn--ghost:hover { background: #f8fafc; color: var(--ink); }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.news-grid--3 { grid-template-columns: repeat(3, 1fr); }
.news-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; height: 100%; }
.news-card a { color: inherit; display: flex; flex-direction: column; flex: 1; min-height: 0; }
.news-card img { width: 100%; height: 160px; object-fit: cover; background: #dbe4ee; display: block; }
.news-card__ph { width: 100%; height: 160px; background: linear-gradient(135deg, #dbe4ee, #cfd9e6); display: block; }
.news-card strong, .news-card time, .news-card__cat { display: block; padding: 0 14px; }
.news-card__cat { padding-top: 12px; color: var(--green); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.news-card strong {
  padding-top: 12px;
  font-size: 15px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.news-card time { padding: 10px 14px 14px; color: var(--muted); font-size: 13px; margin-top: auto; }

.search-page { padding-top: 28px; }
.search-page .search-form { margin-bottom: 28px; }
.search-block { margin-bottom: 36px; }
.search-block__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.search-block__head h2 { margin: 0; font-size: 1.25rem; }
.search-block__count { color: var(--muted); font-size: 13px; font-weight: 700; }
.search-listings {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.search-listings .job-card { padding: 16px 18px; }
.search-articles { align-items: stretch; }
.search-articles .news-card:hover { box-shadow: 0 12px 28px rgba(15, 23, 42, .1); transform: translateY(-2px); transition: box-shadow .15s ease, transform .15s ease; }

.cover-grid, .event-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.event-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cover-card { border-radius: 14px; overflow: hidden; min-height: 220px; position: relative; background: #1e293b; }
.cover-card img, .cover-card__ph { width: 100%; height: 220px; object-fit: cover; display: block; }
.cover-card__ph { background: linear-gradient(135deg, #1e3a5f, #334155); }
.cover-card__body { position: absolute; inset: auto 0 0; padding: 14px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.7)); }
.cover-card__body span { display: block; font-size: 13px; opacity: .9; }
.ex-card {
  background: #fff; border: 1px solid #eef2f6; border-radius: 18px; overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05); display: flex; flex-direction: column;
  min-width: 0; transition: transform .18s ease, box-shadow .18s ease;
}
.ex-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(15, 23, 42, .1); }
.ex-card__media { position: relative; display: block; background: var(--navy); }
.ex-card__media img, .ex-card__ph { width: 100%; height: 180px; object-fit: cover; display: block; }
.ex-card__ph { background: var(--navy); }
.ex-card--expert .ex-card__media--square {
  aspect-ratio: 1 / 1;
  background: #f1f5f9;
}
.ex-card--expert .ex-card__media--square img,
.ex-card--expert .ex-card__media--square .ex-card__ph {
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 18%;
}
.ex-card__locs--media {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  margin: 0;
  min-height: 0;
  max-width: calc(100% - 20px);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ex-card__locs--media .ex-card__loc-chip {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 6px 16px rgba(15, 23, 42, .14);
}
.ex-card--expert .ex-card__hours {
  top: 10px;
  left: auto;
  right: 10px;
}
.ex-card--expert .ex-card__meta {
  justify-content: flex-start;
}
.ex-card--expert .ex-card__reviews--foot {
  margin: auto 0 0;
  justify-content: flex-start;
  max-width: 100%;
  min-height: 26px;
}
.ex-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.ex-card__main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
.ex-card__logo {
  width: 48px; height: 48px; border-radius: 10px; object-fit: contain; flex-shrink: 0;
  background: #f8fafc; border: 1px solid #eef2f6;
}
.ex-card__logo--mark {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 14px; font-weight: 800;
}
.ex-card__copy { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 4px; width: 100%; }
.ex-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}
.ex-card__cat {
  color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  min-width: 0; flex: 1 1 auto;
}
.ex-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.3;
  min-height: calc(1.05rem * 1.3 * 2);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ex-card__title a { color: var(--ink); }
.ex-card__title a:hover { color: var(--green); }
.ex-card__loc { margin: auto 0 0; color: var(--muted); font-size: 13px; }
.ex-card__locs {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
  min-height: 0;
  align-items: center;
}
.ex-card__loc-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.ex-card__loc-chip--more {
  background: #eef2f7;
  color: #334155;
}
.ex-card__reviews {
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
}
.ex-card__reviews .stars__item { font-size: 12px; }
.ex-card--plain .ex-card__body,
.ex-card--classified .ex-card__body { display: flex; flex-direction: column; }
.ex-card--plain .ex-card__main { gap: 0; }
.ex-card__price {
  position: absolute; left: 10px; bottom: 10px;
  background: #fff; color: var(--ink); font-weight: 800; font-size: 13px;
  padding: 4px 10px; border-radius: 999px; box-shadow: 0 6px 16px rgba(15, 23, 42, .18);
}
.ex-card__price--free { background: var(--green); color: #fff; }
.ex-card__hours {
  position: absolute; top: 10px; left: 10px;
  font-weight: 800; font-size: 12px; letter-spacing: .02em;
  padding: 4px 10px; border-radius: 999px; box-shadow: 0 6px 16px rgba(15, 23, 42, .18);
}
.ex-card__hours--open { background: var(--green); color: #fff; }
.ex-card__hours--closed { background: #b91c1c; color: #fff; }
.ex-card__hours--cat { background: rgba(15, 23, 42, .78); color: #fff; }
.listing-hero__price {
  margin: 10px 0 0; font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 800; color: #fff;
}
.listing-hero--plain .listing-hero__price { color: var(--green); }
.listing-hero__facts { margin: 6px 0 0; color: rgba(255,255,255,.82); font-weight: 600; }
.listing-hero--plain .listing-hero__facts { color: var(--muted); }

.hub { margin: 32px 0; }
.hub__head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.hub__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hub__grid h4 { margin: 0 0 6px; }
.tabs { display: flex; gap: 8px; margin: 16px 0; flex-wrap: wrap; }
.tabs--types { margin: 22px 0 0; justify-content: center; }
.tabs a { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink); font-weight: 600; }
.tabs a.is-active { background: var(--green); color: #fff; border-color: var(--green); }

.page-hero { background: var(--navy); color: #fff; padding: 32px 0 28px; }
.page-hero h1 { margin: 0 0 8px; font-size: clamp(1.85rem, 3.2vw, 2.5rem); letter-spacing: -.03em; line-height: 1.15; }
.page-hero .lede { color: rgba(255,255,255,.72); max-width: 540px; margin: 0; }
.page-hero__inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.page-hero__copy { min-width: 0; }
.page-hero__crumb { margin: 0 0 8px; font-size: 13px; color: rgba(255,255,255,.55); }
.page-hero__crumb a { color: rgba(255,255,255,.7); }
.page-hero__crumb a:hover { color: #fff; }
.page-hero__aside { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; max-width: 420px; }
.page-hero__chip {
  display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.08);
  color: #fff; font-size: 13px; font-weight: 700;
}
.page-hero__chip:hover { background: rgba(255,255,255,.16); color: #fff; }
@media (max-width: 800px) {
  .page-hero__inner { flex-direction: column; align-items: flex-start; }
  .page-hero__aside { justify-content: flex-start; }
}

.miss { padding: 56px 0 12px; background: #fff; }
.miss__intro { text-align: center; max-width: 680px; margin: 0 auto; }
.miss__code {
  margin: 0 0 10px; font-size: 13px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green);
}
.miss h1 {
  margin: 0 0 14px; font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  letter-spacing: -.03em; color: var(--green); line-height: 1.15;
}
.miss .lede { margin: 0 auto 24px; max-width: 640px; color: #4b5563; font-size: 1.05rem; }
.miss__actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.miss-explore { padding-top: 20px; padding-bottom: 8px; }
.miss-types { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.miss-type {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; min-width: 160px; padding: 8px 22px; border-radius: 10px;
  background: var(--green); color: #fff; font-weight: 700;
}
.miss-type:hover { background: var(--green-dark); color: #fff; }
.miss-type .chip__icon { width: 28px; height: 28px; filter: invert(1); }
.listing-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; }
.filters label { display: block; font-weight: 600; margin-bottom: 12px; }
.filters input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),
.filters select,
form:not(.header-search):not(.mobile-nav__search) input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),
form:not(.header-search):not(.mobile-nav__search) select,
form:not(.header-search):not(.mobile-nav__search) textarea {
  width: 100%; min-height: 42px; border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; margin-top: 6px; font: inherit;
}
form input[type="checkbox"],
form input[type="radio"] {
  width: 16px; height: 16px; min-width: 16px; min-height: 16px;
  margin: 0; padding: 0; border: 0; border-radius: 3px;
  flex: none; accent-color: var(--green);
}
.filters button { margin: 8px 0 16px; }
.filter-cats a { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 14px; }
.result-count { color: var(--muted); }

.explore { padding: 36px 0 64px; background: #f4f4f4; }
.explore-head { text-align: center; margin: 0 0 28px; }
.explore-head h1 {
  margin: 0 0 10px; color: var(--green);
  font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.03em; line-height: 1.15;
}
.explore-head p, .explore-head__intro { margin: 0 0 22px; max-width: none; width: 100%; color: #4b5563; }
.explore-head__intro { text-align: left; line-height: 1.7; }
.explore-head__intro p { margin: 0 0 14px; }
.explore-head__intro p:last-child { margin-bottom: 0; }
.text-more { position: relative; }
.text-more__btn { display: none; }
.explore-article { margin-top: 36px; }
.explore-article .content-card { padding: 28px 32px; }
.explore-article .prose > :first-child { margin-top: 0; }
.explore-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.explore-ad { margin: 8px 0 24px; }
.explore-tab {
  display: inline-flex; align-items: center; gap: 10px; background: #fff; color: var(--ink);
  border-radius: 12px; min-height: 52px; padding: 8px 16px 8px 8px; font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}
.explore-tab:hover { color: var(--green); }
.explore-tab.is-active { background: var(--green); color: #fff; }
.explore-tab.is-active .chip__icon { background-color: #fff; }
.explore-tab--listing {
  max-width: 220px; padding: 8px 16px; font-size: 13px; font-weight: 600;
}
.explore-tab--listing span {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.explore-search {
  display: grid; grid-template-columns: minmax(0, 1fr) 220px auto; gap: 10px; align-items: center;
  background: #fff; border-radius: 16px; padding: 12px; margin-bottom: 28px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  position: sticky;
  top: 72px;
  z-index: 30;
}
.explore-search input, .explore-search select {
  margin-top: 0; border-color: #e5eaf0; background: #f8fafb;
}
.explore-search .btn { min-width: 120px; }
.explore-search__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.explore-search__actions .explore-near {
  white-space: nowrap;
}
.explore-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.explore-side {
  min-width: 0;
  align-self: stretch;
}
.explore-panel {
  display: flex; flex-direction: column; width: 100%; min-height: 0;
  background: #fff; border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  position: sticky;
  top: 148px;
  max-height: calc(100vh - 164px);
  overflow: hidden;
  z-index: 5;
}
.explore-panel__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  flex: 0 0 auto; padding: 14px 12px 0 18px;
}
.explore-panel__title {
  margin: 0; font-size: 15px; font-weight: 800; color: var(--ink);
}
.explore-panel__collapse {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; padding: 0; flex: 0 0 auto;
  border: 1px solid #e5eaf0; border-radius: 8px; background: #f8fafb; color: #475569;
  cursor: pointer;
}
.explore-panel__collapse:hover { border-color: #cbd5e1; color: var(--ink); background: #fff; }
.explore-panel__collapse svg { display: block; transition: transform .18s ease; transform: rotate(180deg); }
.explore-panel.is-collapsed .explore-panel__head { padding-bottom: 14px; }
.explore-panel.is-collapsed .explore-panel__collapse svg { transform: rotate(0deg); }
.explore-panel.is-collapsed .explore-panel__body { display: none; }
.explore-panel__body { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; overflow: auto; padding: 12px 10px 18px 18px; }
.explore-panel label { display: block; font-weight: 700; margin: 0 0 14px; color: #334155; }
.explore-panel .btn { width: 100%; }
.explore-clear { display: block; flex: 0 0 auto; text-align: center; margin-top: 10px; font-weight: 700; }
.explore-cats { list-style: none; margin: 0; padding: 0; }
.explore-cats a {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  min-width: 0; padding: 9px 6px;
  border-bottom: 1px solid #f1f5f9; color: #334155; font-weight: 600;
}
.explore-cats a:hover, .explore-cats a.is-active { color: var(--green); }
.explore-cats a > span:first-child { flex: 1 1 auto; min-width: 0; }
.explore-cats a > span:last-child {
  flex: 0 0 auto; min-width: 28px; text-align: center; background: #eef8f2; color: var(--green-dark);
  border-radius: 999px; padding: 1px 8px; font-size: 12px; line-height: 1.4;
}
.explore-cats--tree {
  flex: 0 1 auto; min-height: 0; overflow-x: hidden; overflow-y: auto; scrollbar-gutter: stable;
}
.explore-cats__sub { list-style: none; margin: 0 0 6px; padding: 0 0 0 12px; }
.explore-cats__sub a { padding: 7px 4px; font-size: 13px; font-weight: 600; }
.explore-cats__sub .explore-cats__sub { padding-left: 10px; }
.explore-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 0 0 16px; }
.explore-toolbar p { margin: 0; color: var(--muted); }
.explore-toolbar__actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px; }
.explore-near {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px; border: 1px solid #dbe3ec;
  background: #fff; color: var(--ink); font: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer; text-decoration: none; line-height: 1.2;
}
.explore-near::before {
  content: ""; width: 14px; height: 14px; flex: 0 0 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M12 2C8.1 2 5 5.1 5 9c0 5.2 7 13 7 13s7-7.8 7-13c0-3.9-3.1-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.explore-near:hover { border-color: #cbd5e1; color: var(--green-dark); }
.explore-near.is-active, .explore-near.is-loading {
  background: var(--green); border-color: var(--green); color: #fff;
}
.explore-near:disabled { opacity: .7; cursor: wait; }
.explore-expired {
  display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #334155;
  font-size: 13px; font-weight: 700; white-space: nowrap;
}
.explore-expired span {
  min-width: 1.5em; padding: 1px 6px; border-radius: 999px; background: #eef2f6; color: #475569; font-size: 12px;
}
.explore-expired:hover { border-color: #cbd5e1; color: var(--ink); }
.explore-expired.is-active { background: #111827; border-color: #111827; color: #fff; }
.explore-expired.is-active span { background: rgba(255,255,255,.16); color: #fff; }
.explore-results .job-list { display: grid; gap: 0; }
.explore-results .job-list .ad-slot { margin: 12px 0; }
.ad-slot {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center;
  min-height: 90px; padding: 16px 20px;
  background: #f8fafb; border: 1px dashed #cbd5e1; border-radius: 12px;
}
.ad-slot__label { color: #94a3b8; font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.ad-slot--leaderboard { min-height: 100px; }
.ad-slot--billboard { min-height: 250px; }
.ad-slot--incontent { min-height: 100px; margin: 22px 0; grid-column: auto; }
.explore-results .cover-grid > .ad-slot,
.explore-results .ev-cards > .ad-slot {
  grid-column: 1 / -1;
  margin: 8px 0 4px;
}
.home-ad { padding: 20px 0 24px; }
.hero + .home-ad { padding-top: 28px; }
.home-ad .ad-slot { margin: 0; }
.explore-results .cover-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.explore-results .cover-grid--experts { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.explore-results .ev-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.listing-single, .post-single { padding: 32px 0 56px; }
.crumbs { color: var(--muted); font-size: 14px; }
.crumbs a { color: inherit; }
.crumbs--light, .crumbs--light a { color: rgba(255,255,255,.86); }
.crumbs span { margin: 0 6px; opacity: .7; }
.crumbs__now { display: inline; }
.listing-single__head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.badge { display: inline-block; background: #e8f5ee; color: var(--green-dark); border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.listing-hero .badge { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(6px); }
.listing-cover { width: 100%; height: auto; max-height: none; object-fit: contain; border-radius: 16px; margin: 16px 0; background: #0b1220; }
.listing-page { padding-bottom: 56px; }
.listing-hero {
  position: relative; display: block;
  color: #fff; overflow: hidden; background: var(--navy); margin-bottom: 0;
}
.listing-hero__bg {
  position: absolute; inset: -12px; width: calc(100% + 24px); height: calc(100% + 24px);
  object-fit: cover; object-position: center; display: block;
  filter: blur(6px);
}
.listing-hero__overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,16,24,.42) 0%, rgba(7,16,24,.78) 100%);
}
.listing-hero__inner {
  position: relative; z-index: 1; padding: 20px 0 24px;
}
.listing-hero__copy { min-width: 0; }
.listing-hero--plain { display: block; height: auto; min-height: 0; background: var(--navy); }
.listing-hero--plain .listing-hero__inner { padding: 20px 0 24px; }
.listing-hero--plain h1 { text-shadow: none; }
.listing-photo {
  position: relative;
  margin: 0 0 16px; padding: 0; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}
.listing-photo img {
  display: block; width: 100%; height: auto;
  object-fit: contain;
}
.listing-hero__logo {
  width: 64px; height: 64px; object-fit: contain; background: #fff;
  border-radius: 14px; padding: 6px; margin: 0 0 12px; display: block;
}
.listing-hero__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.listing-hero__expired {
    margin: 8px 0 0;
    color: #fff3cd;
    font-size: 14px;
}
.listing-hero h1 {
  font-size: clamp(1.7rem, 3vw, 2.55rem); line-height: 1.15; letter-spacing: -.03em;
  margin: 0; width: auto; max-width: none; flex: 1 1 260px; min-width: 0;
}
.listing-hero__headline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 10px;
}
.listing-hero__bar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 16px; margin-top: 10px;
}
.listing-hero__stars {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; text-decoration: none; flex-shrink: 0;
}
.listing-hero__stars .stars { color: rgba(255, 211, 90, .72); }
.listing-hero__stars .stars__item { font-size: 20px; }
.listing-hero__stars .stars__item.is-on { color: #ffd35a; }
.listing-hero__stars span { font-size: 13px; font-weight: 700; opacity: .85; }
.listing-hero__reviews { font-weight: 600; opacity: .75; }
.listing-hero__stars:hover { opacity: .85; }
.listing-hero__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; }
.listing-hero__meta span {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 6px 12px; min-height: 34px;
  font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap;
}
.listing-hero__actions {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  flex: 0 0 auto; margin-left: auto; padding-top: 2px;
}
.listing-dock { display: none; }
.btn--light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.btn--light:hover { background: #fff; color: var(--navy); }
.btn--block { width: 100%; margin-top: 14px; }
body.is-modal { overflow: hidden; }
.modal {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(11, 18, 32, .55); }
.modal__box {
  position: relative; z-index: 1; width: min(420px, 100%);
  background: #fff; border-radius: 16px; padding: 28px 24px 24px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, .22);
}
.modal__box h2 { margin: 0 0 14px; font-size: 1.2rem; }
.modal__box--form { width: min(480px, 100%); max-height: calc(100vh - 40px); overflow: auto; }
.claim-form { margin-top: 12px; }
.btn[aria-disabled="true"] { opacity: .72; pointer-events: none; }
.modal__close {
  position: absolute; top: 10px; right: 12px; appearance: none;
  border: 0; background: transparent; color: #64748b;
  font: inherit; font-size: 28px; line-height: 1; cursor: pointer;
}
.job-apply__email {
  display: block; margin: 0 0 16px; padding: 10px 12px;
  background: #edf7f0; border: 1px solid #c5e4ce; border-radius: 10px;
  color: var(--green); font-weight: 800; overflow-wrap: anywhere; text-align: center;
}
.job-apply__email--muted { color: #64748b; font-weight: 600; }
.job-apply__hint { margin: 0 0 10px; color: #475569; font-size: 14px; line-height: 1.45; }
.job-apply__cv { display: inline-flex; font-weight: 800; }
.job-updates { display: grid; gap: 10px; }
.job-updates h2 { margin-bottom: 4px; }
.job-updates__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; border-radius: 8px; color: #fff; font-weight: 800;
}
.job-updates__btn:hover { color: #fff; }
.job-updates__btn--wa { background: #25d366; }
.job-updates__btn--wa:hover { background: #1ebe5d; }
.job-updates__btn--li { background: #0077b5; }
.job-updates__btn--li:hover { background: #005983; }
.job-updates__btn--fb { background: #1877f2; }
.job-updates__btn--fb:hover { background: #166fe5; }
.btn--sm { padding: 7px 12px; font-size: 12px; border-radius: 8px; font-weight: 700; white-space: nowrap; }
.company-jobs .aside-card__head { margin-bottom: 8px; }
.company-jobs__list { list-style: none; margin: 0; padding: 0; }
.company-jobs__list li {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px;
  align-items: center; padding: 12px 0; border-top: 1px solid var(--line);
}
.company-jobs__list li:first-child { border-top: 0; padding-top: 2px; }
.company-jobs__link { color: inherit; min-width: 0; }
.company-jobs__link strong { display: block; font-size: 14px; line-height: 1.35; color: var(--ink); }
.company-jobs__link span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.company-jobs__empty { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.stars { display: inline-flex; gap: 1px; color: #d1d5db; letter-spacing: 0; line-height: 1; }
.stars__item { font-size: 15px; }
.stars__item.is-on { color: #f5b301; }
.listing-hero__score {
  display: inline-flex; align-items: baseline; gap: 6px;
  color: #fff; text-decoration: none; margin-right: 4px;
}
.listing-hero__score strong { font-size: 1.15rem; letter-spacing: -.02em; }
.listing-hero__score span { font-size: 13px; font-weight: 600; opacity: .8; }
.listing-hero__score:hover { color: #fff; opacity: .85; }
.reviews-card__score { display: flex; align-items: center; gap: 8px; margin: 0 0 14px; }
.reviews-card__score strong { font-size: 1.35rem; }
.reviews-card__score span { color: var(--muted); }
.reviews-card__empty { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.reviews-panel { margin-top: 16px; }
.reviews-panel__head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; margin-bottom: 18px; }
.reviews-panel__head h2 { margin: 0; font-size: 1.35rem; }
.reviews-panel__avg { margin: 0; display: flex; align-items: center; gap: 8px; color: var(--muted); }
.reviews-panel__empty { color: var(--muted); }
.review-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.review-item { padding: 16px 0; border-top: 1px solid var(--line); }
.review-item:first-child { border-top: 0; padding-top: 0; }
.review-item__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; }
.review-item h3 { margin: 8px 0 6px; font-size: 1.05rem; }
.review-item p { margin: 0 0 8px; color: #1f2937; line-height: 1.6; }
.review-item time { color: var(--muted); font-size: 13px; }
.review-item__reply {
  margin-top: 12px; padding: 12px 14px; border-radius: 12px;
  background: #f3faf6; border: 1px solid #d8eee2;
}
.review-item__reply strong {
  display: block; margin-bottom: 4px; font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em; color: #166534;
}
.review-item__reply p { margin: 0 0 4px; }
.review-item__reply time { display: block; }
.leave-review { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.leave-review h3 { margin: 0 0 14px; }
.review-form { display: grid; gap: 12px; }
.review-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ink); }
.review-form input, .review-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 11px 12px;
  font: inherit; font-weight: 400; background: #fff;
}
.review-form__guest { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.review-form__hint { margin: 0; color: var(--muted); font-size: 13px; }
.review-signin { margin: 0 0 14px; color: var(--muted); font-size: 15px; }
.star-picker { border: 0; padding: 0; margin: 0; }
.star-picker legend { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.star-picker__row { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 2px; }
.star-picker input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.star-picker label { font-size: 28px; color: #d1d5db; cursor: pointer; line-height: 1; font-weight: 400; }
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: #f5b301; }
.form-success { background: #ecfdf3; color: #166534; border-radius: 10px; padding: 10px 12px; margin: 0 0 14px; }
.form-error { background: #fef2f2; color: #991b1b; border-radius: 10px; padding: 10px 12px; margin: 0 0 14px; }
.listing-body { padding-top: 32px; }
.listing-aside .ad-slot { min-height: 250px; margin-bottom: 16px; }
.related__all { display: none; }
.listing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  grid-template-areas:
    "main aside"
    "main jobs";
  gap: 32px;
  align-items: start;
}
.listing-grid--motor {
  grid-template-areas:
    "photos aside"
    "main aside"
    "main jobs";
}
.listing-main { grid-area: main; min-width: 0; }
.listing-photos { grid-area: photos; min-width: 0; }
.listing-aside {
  grid-area: aside;
  position: sticky;
  top: 88px;
  align-self: start;
}
.listing-grid > .company-jobs {
  grid-area: jobs;
  margin-bottom: 0;
}
.content-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 32px 36px; box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}
.content-card__kicker {
  margin: 0 0 18px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); font-weight: 800;
}
.offer-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px;
}
.offer-grid[hidden] {
  display: none !important;
}
.offer-card {
  padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #f8fafc;
}
.offer-card[hidden] { display: none !important; }
.offer-card__kind {
  display: inline-block; margin-bottom: 8px; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase; color: var(--green);
}
.offer-card h3 { margin: 0 0 6px; font-size: 1.02rem; }
.offer-card p { margin: 0; color: var(--muted); font-size: 14px; }
.offer-card strong { display: block; margin-top: 10px; font-size: 14px; }
.aside-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 20px 20px 18px; margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}
.aside-card h2 { margin: 0 0 14px; font-size: 1.05rem; }
.aside-card__note {
  margin: -6px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.aside-card--cv .btn--block { margin-top: 0; }
.aside-card--countdown { background: var(--navy); color: #fff; border: 0; }
.aside-card--countdown h2 { color: rgba(255,255,255,.8); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.countdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; text-align: center; }
.countdown div { background: rgba(255,255,255,.08); border-radius: 12px; padding: 12px 6px; }
.countdown strong { display: block; font-size: 1.7rem; line-height: 1.1; }
.countdown span { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.detail-list { list-style: none; padding: 0; margin: 0; }
.detail-list li {
  display: flex; justify-content: space-between; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 14px;
}
.detail-list li:last-child { border-bottom: 0; }
.detail-list span { color: var(--muted); flex: 0 0 auto; }
.detail-list strong { text-align: right; max-width: 68%; overflow-wrap: anywhere; font-weight: 700; }
.detail-list strong a { color: inherit; }
.detail-list__wide { flex-direction: column; align-items: flex-start; gap: 4px; }
.detail-list__wide strong { text-align: left; max-width: 100%; }
.hours-details { width: 100%; }
.hours-details summary {
  list-style: none; cursor: pointer; display: grid; gap: 2px;
}
.hours-details summary::-webkit-details-marker { display: none; }
.hours-status { display: block; font-size: 15px; color: var(--green); }
.hours-status--off { color: #b91c1c; font-weight: 700; }
.hours-details summary em {
  font-style: normal; color: var(--muted); font-size: 12px; font-weight: 600;
}
.hours-details summary::after {
  content: "Weekly schedule"; display: inline-block; margin-top: 6px;
  color: var(--green); font-size: 12px; font-weight: 800;
}
.hours-details[open] summary::after { content: "Hide weekly schedule"; }
.hours-week { list-style: none; padding: 8px 0 0; margin: 8px 0 0; width: 100%; border-top: 1px solid var(--line); }
.hours-week li {
  display: flex; justify-content: space-between; gap: 12px; padding: 7px 0;
  border: 0; font-size: 13px;
}
.hours-week li.is-today strong { color: var(--green); }
.hours-local { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.listing-social { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 2px 0 0; margin: 0; width: 100%; }
.detail-list .listing-social li {
  display: block; justify-content: initial; align-items: initial;
  padding: 0; border: 0; font-size: inherit; gap: 0;
}
.listing-social__link {
  display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 700;
  color: var(--ink); background: #f8fafc;
}
.listing-social__link:hover { border-color: var(--green); color: var(--green); }
.listing-social--icons { gap: 8px; }
.listing-social__icon {
  display: inline-flex; align-items: center; justify-content: center;
  box-sizing: border-box; width: 38px; height: 38px; padding: 0; margin: 0;
  border-radius: 12px; border: 1px solid #e2e8f0; background: #f8fafc; color: #334155;
  line-height: 0; vertical-align: middle;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.listing-social__icon svg {
  display: block; width: 18px; height: 18px; margin: 0; flex: none;
  overflow: visible;
}
.listing-social__icon:hover {
  transform: translateY(-1px);
  border-color: currentColor;
}
.listing-social__icon--website { color: #0f766e; }
.listing-social__icon--facebook { color: #1877f2; }
.listing-social__icon--instagram { color: #c13584; }
.listing-social__icon--twitter { color: #111827; }
.listing-social__icon--linkedin { color: #0a66c2; }
.listing-social__icon--youtube { color: #ff0000; }
.listing-social__icon--tiktok { color: #111827; }
.listing-social__icon--whatsapp { color: #16a34a; }
.listing-social__icon:hover { background: #fff; }
.social-block { align-items: flex-start; gap: 8px; }
.social-block > span { margin-bottom: 2px; }
.office-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.office-list__item {
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.office-list__item:last-child { padding-bottom: 0; border-bottom: 0; }
.office-list__item h3 {
  margin: 0 0 4px; font-size: 15px; display: flex; align-items: center; gap: 8px;
}
.office-list__item h3 em {
  font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--green);
}
.office-list__item p { margin: 0 0 3px; font-size: 13px; color: var(--muted); }
.office-list__item a { color: inherit; font-weight: 700; }
.office-hours {
  margin: 8px 0 4px;
  padding: 8px 10px;
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 10px;
}
.office-hours > summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  gap: 2px;
}
.office-hours > summary::-webkit-details-marker { display: none; }
.office-hours > summary em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.office-hours .hours-week { margin-top: 8px; }
.admin-location-list { display: grid; gap: 16px; }
.admin-location {
  padding: 18px; border: 1px solid #e8edf2; border-radius: 16px; background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, .04);
  display: grid; gap: 16px;
}
.admin-location__top {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding-bottom: 12px; border-bottom: 1px solid #eef2f6;
}
.admin-location__title { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; min-width: 0; }
.admin-location__title strong { font-size: 15px; }
.admin-hq {
  display: inline-flex; align-items: center; gap: 6px; cursor: pointer;
  padding: 4px 10px; border-radius: 999px; border: 1px solid #dbe3ea;
  background: #f8fafc; font-size: 12px; font-weight: 700; color: #475569;
}
.admin-hq input[type="checkbox"] {
  width: 14px; height: 14px; min-width: 14px; min-height: 14px;
  margin: 0; padding: 0; border: 0; flex: none; accent-color: var(--green);
  transform: none; appearance: auto;
}
.admin-hq:has(input:checked) {
  border-color: #86efac; background: #ecfdf3; color: var(--green-dark);
}
.admin-location__remove {
  border: 0; background: none; color: #b91c1c; font: inherit; font-size: 13px;
  font-weight: 700; cursor: pointer; padding: 0;
}
.admin-hours {
  padding: 14px; border: 1px solid #e8edf2; border-radius: 14px; background: #f8fafc;
  display: grid; gap: 12px;
}
.admin-hours__head { display: grid; gap: 2px; }
.admin-hours__head strong {
  font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #64748b;
}
.admin-hours__head span { color: var(--muted); font-size: 12px; }
.admin-hours__list { display: grid; gap: 8px; }
.admin-hours__row {
  display: grid; grid-template-columns: 96px minmax(0, 1fr); gap: 10px; align-items: center;
  margin: 0;
}
.admin-hours__day {
  font-size: 13px; font-weight: 700; color: #334155;
}
.admin-hours__row input {
  width: 100%; min-height: 42px; margin: 0;
}
.admin-hours--profile { margin-bottom: 4px; }
.hours-editor {
  padding: 12px; border: 1px solid #e8edf2; border-radius: 12px; background: #fff;
  display: grid; gap: 10px;
}
.hours-editor__toolbar { display: grid; gap: 8px; }
.hours-editor__intro { display: grid; gap: 1px; }
.hours-editor__intro strong { font-size: 14px; color: var(--ink); }
.hours-editor__intro span { color: var(--muted); font-size: 12px; }
.hours-editor__presets { display: flex; flex-wrap: wrap; gap: 6px; }
.hours-editor__chip {
  border: 1px solid #dbe3ea; background: #f8fafc; color: #334155;
  border-radius: 999px; padding: 4px 10px; font: inherit; font-size: 11px; font-weight: 700;
  cursor: pointer;
}
.hours-editor__chip:hover { border-color: var(--green); color: var(--green); background: #f3faf6; }
.hours-editor__chip--ghost { background: #fff; color: #64748b; }
.hours-editor__days {
  display: grid; gap: 0;
  border: 1px solid #eef2f6; border-radius: 10px; overflow: hidden; background: #fff;
}
.hours-editor__day {
  display: grid; grid-template-columns: 76px 72px minmax(0, 220px); gap: 8px; align-items: center;
  padding: 6px 10px; border: 0; border-bottom: 1px solid #eef2f6; border-radius: 0; background: #fff;
}
.hours-editor__day:last-child { border-bottom: 0; }
.hours-editor__day.is-closed { background: #f8fafc; opacity: .92; }
.hours-editor__day.is-closed .hours-editor__input { background: #f1f5f9; color: #94a3b8; }
.hours-editor__label { font-size: 12px; font-weight: 700; color: #0f172a; }
.hours-editor__toggle {
  display: inline-flex; align-items: center; gap: 5px; margin: 0;
  font-size: 11px; font-weight: 700; color: #64748b; cursor: pointer; white-space: nowrap;
}
.hours-editor__toggle input { margin: 0; accent-color: #94a3b8; }
.hours-editor__day:not(.is-closed) .hours-editor__toggle { color: #16a34a; }
.hours-editor__day:not(.is-closed) .hours-editor__toggle input { accent-color: var(--green); }
.hours-editor__input {
  width: 100%; max-width: 220px; min-height: 32px; height: 32px; margin: 0;
  border-radius: 8px; padding: 4px 8px; font-size: 13px;
}
.admin-socials {
  margin-top: 4px; padding: 14px; border: 1px solid #e8edf2; border-radius: 14px; background: #fff;
  display: grid; gap: 12px;
}
.admin-socials__list { display: grid; gap: 8px; }
.admin-socials__row {
  display: grid; grid-template-columns: minmax(120px, 160px) minmax(0, 1fr) auto;
  gap: 8px; align-items: end;
}
.admin-socials__row .admin-field { margin: 0; gap: 0; }
.admin-socials__row .admin-field input,
.admin-socials__row .admin-field select {
  margin-top: 0; min-height: 40px;
}
.admin-socials__remove {
  border: 0; background: none; color: #b91c1c; font: inherit; font-size: 13px;
  font-weight: 700; cursor: pointer; padding: 0 4px 10px; white-space: nowrap;
}
.admin-socials__empty { margin: 0; color: var(--muted); font-size: 13px; }
.admin-socials__actions { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 700px) {
  .admin-socials__row { grid-template-columns: 1fr auto; }
  .admin-socials__network { grid-column: 1 / -1; }
  .admin-socials__remove { padding-bottom: 8px; }
}
@media (max-width: 700px) {
  .hours-editor__day { grid-template-columns: 1fr auto; }
  .hours-editor__input { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 560px) {
  .admin-hours__row { grid-template-columns: 1fr; gap: 4px; }
}
.admin-location-hours {
  margin: 12px 0 4px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf2;
  border-radius: 12px;
}
.admin-location-hours > strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
}
.event-when { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.event-when__day { color: var(--ink); font-size: 15px; line-height: 1.35; }
.event-when__time { color: var(--muted); font-size: 13px; font-weight: 600; }
.event-when__slot {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 8px;
  color: var(--ink); font-size: 14px; line-height: 1.35;
}
.event-when__slot em {
  font-style: normal; color: var(--muted); font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; min-width: 44px;
}
.event-cal {
  display: inline-flex; margin: 10px 0 2px; font-size: 13px; font-weight: 700;
}
.prose { font-size: 17px; line-height: 1.8; color: #1f2937; }
.prose > *:first-child { margin-top: 0; }
.prose h2, .prose h3 { margin: 1.6em 0 .55em; color: var(--ink); line-height: 1.25; }
.prose h2 { font-size: 1.35rem; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.prose p { margin: 0 0 1em; }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 1em; }
.prose li { margin: 0 0 .4em; }
.prose img { border-radius: 12px; }
.listing-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.listing-gallery a { display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 10; background: #e5e7eb; }
.listing-gallery img { width: 100%; height: 100%; object-fit: cover; }
.cover-card__logo { width: 36px; height: 36px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; background: #fff; }
.related { margin-top: 48px; }
.related h2 { margin: 0 0 18px; }
.related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.related-grid--experts,
.related .cover-grid--experts {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.city-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 28px; }
.city-links a { background: #e8f5ee; color: var(--green-dark); padding: 8px 12px; border-radius: 999px; font-weight: 600; }

.auth-card { max-width: 420px; padding: 48px 0; }
.auth-card--wide { max-width: 640px; }
.auth-card form, .aside-card form, .search-form { display: grid; gap: 10px; }

.auth-gate {
  position: relative;
  isolation: isolate;
  min-height: min(78vh, 820px);
  padding: 48px 0 64px;
  overflow: hidden;
  background: #eef3f7;
}
.auth-gate__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 40%;
  filter: saturate(.75) brightness(1.08);
  transform: scale(1.02);
}
.auth-gate__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(245, 248, 251, .94) 0%, rgba(245, 248, 251, .82) 42%, rgba(245, 248, 251, .55) 68%, rgba(245, 248, 251, .35) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, .1) 40%, rgba(11, 18, 32, .08));
}
.auth-gate__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.auth-gate__intro { max-width: 520px; }
.auth-gate__eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
}
.auth-gate__intro h1 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.15; letter-spacing: -.02em;
  color: var(--navy);
}
.auth-gate__lede {
  margin: 0 0 28px;
  color: #475569;
  font-size: 1.05rem;
  max-width: 38ch;
}
.auth-gate__points {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 16px;
}
.auth-gate__points li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}
.auth-gate__point-icon {
  width: 40px; height: 40px; border-radius: 999px;
  display: grid; place-items: center;
  background: #e8f5ee; color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(15, 112, 57, .08);
}
.auth-gate__points strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  margin-bottom: 2px;
}
.auth-gate__points span span { color: var(--muted); font-size: 13px; }
.auth-gate__aside { position: relative; }
.auth-gate__card {
  position: relative; z-index: 1;
  background: #fff;
  border: 1px solid rgba(232, 237, 242, .9);
  border-radius: 22px;
  padding: 28px 26px 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .12);
}
.auth-gate__card h2 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  color: var(--navy);
  letter-spacing: -.02em;
}
.auth-gate__sub { margin: 0 0 18px; color: var(--muted); font-size: 14px; }
.auth-gate__error {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
}
.auth-gate__form { display: grid; gap: 12px; }
.auth-field {
  position: relative;
  display: block;
  margin: 0;
}
.auth-field__icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #94a3b8; display: grid; pointer-events: none;
}
.auth-field input {
  width: 100%;
  min-height: 50px;
  padding: 12px 44px 12px 44px;
  border: 1px solid #dbe3ea;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.auth-field input:focus {
  border-color: #9ecfb4;
  box-shadow: 0 0 0 3px rgba(15, 112, 57, .12);
}
.auth-field__toggle {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border: 0; border-radius: 8px;
  background: transparent; color: #94a3b8; cursor: pointer;
  display: grid; place-items: center;
}
.auth-field__toggle:hover { color: var(--ink); background: #f1f5f9; }
.auth-strength {
  display: grid;
  gap: 6px;
  margin-top: -2px;
}
.auth-strength[hidden] { display: none !important; }
.auth-strength__track {
  height: 4px;
  border-radius: 999px;
  background: #e8edf2;
  overflow: hidden;
}
.auth-strength__bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: #ef4444;
  transition: width .2s ease, background-color .2s ease;
}
.auth-strength__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.auth-strength[data-level="weak"] .auth-strength__bar { width: 25%; background: #ef4444; }
.auth-strength[data-level="weak"] .auth-strength__meta { color: #b91c1c; }
.auth-strength[data-level="fair"] .auth-strength__bar { width: 50%; background: #f59e0b; }
.auth-strength[data-level="fair"] .auth-strength__meta { color: #b45309; }
.auth-strength[data-level="good"] .auth-strength__bar { width: 75%; background: #84cc16; }
.auth-strength[data-level="good"] .auth-strength__meta { color: #4d7c0f; }
.auth-strength[data-level="strong"] .auth-strength__bar { width: 100%; background: var(--green); }
.auth-strength[data-level="strong"] .auth-strength__meta { color: var(--green-dark); }
.auth-strength__hint {
  margin: 0;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.35;
}
.auth-strength[hidden] .auth-strength__hint { display: none; }
.auth-gate__row {
  display: flex; justify-content: flex-end; margin-top: -2px;
}
.auth-gate__forgot { font-size: 13px; font-weight: 600; }
.auth-gate__submit {
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.auth-gate__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 18px 0 14px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
  text-transform: lowercase;
}
.auth-gate__divider::before,
.auth-gate__divider::after {
  content: "";
  height: 1px;
  background: #e8edf2;
}
.auth-gate__switch {
  margin: 0;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}
.auth-gate__switch a { font-weight: 700; }
.auth-gate__flourish {
  position: absolute;
  right: -8%;
  bottom: 8%;
  margin: 0;
  z-index: 0;
  color: rgba(100, 116, 139, .38);
  font-family: "Segoe Script", "Apple Chancery", "Bradley Hand", cursive;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 600;
  letter-spacing: .01em;
  transform: rotate(-8deg);
  pointer-events: none;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .auth-gate { min-height: 0; padding: 28px 0 40px; }
  .auth-gate__inner { grid-template-columns: 1fr; gap: 24px; }
  .auth-gate__intro { max-width: none; order: 1; }
  .auth-gate__aside { order: 0; }
  .auth-gate__flourish { display: none; }
  .auth-gate__points { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .auth-gate__card { padding: 22px 16px 18px; border-radius: 18px; }
  .auth-gate__intro h1 { font-size: 1.65rem; }
}
.add-listing { background: #f8fafc; padding: 0 0 72px; }
.wrap--listing-form { max-width: none; }
.add-card {
  background: #fff;
  border: 0;
  border-radius: 20px;
  padding: 28px 32px 32px;
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04), 0 18px 40px rgba(15, 23, 42, .06);
  display: grid; gap: 0; max-width: none; width: 100%; margin: -36px auto 0;
}
.add-steps {
  margin: 0 0 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid #eef2f6;
}
.add-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.add-steps__item { min-width: 0; }
.add-steps__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background .15s ease, color .15s ease;
}
.add-steps__btn:hover { background: #f8fafc; color: var(--ink); }
.add-steps__num {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  background: #eef2f6;
  color: #64748b;
}
.add-steps__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.add-steps__item.is-current .add-steps__btn {
  background: #f3faf6;
  color: var(--ink);
}
.add-steps__item.is-current .add-steps__num {
  background: var(--green);
  color: #fff;
}
.add-steps__item.is-done .add-steps__num {
  background: #dcfce7;
  color: var(--green-dark);
}
.add-steps__item.is-done .add-steps__btn { color: var(--ink); }
.add-card__block {
  border: 0; margin: 0; padding: 22px 0;
  min-width: 0; display: grid; gap: 14px;
  border-bottom: 0;
}
.add-card__block:first-of-type,
.add-step.is-active { padding-top: 4px; }
.add-step { display: none !important; }
.add-step.is-active { display: grid !important; }
.add-card__block legend {
  padding: 0; margin: 0;
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.02em; text-transform: none; color: var(--ink);
}
.add-card__type {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  padding: 0; border: 0; border-radius: 0; background: transparent;
}
.add-card__type-label { display: none; }
.add-card__type-value {
  display: inline-flex; align-items: center; min-height: 28px; padding: 3px 12px;
  border-radius: 999px; background: #ecfdf3; color: var(--green-dark); font-size: 13px; font-weight: 700;
}
.add-card__type-hint { color: var(--muted); font-size: 13px; margin-left: 0; }
.add-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(112px, 1fr)); gap: 8px; }
.add-card [hidden] { display: none !important; }
.add-type {
  display: grid; gap: 2px; padding: 12px 12px; border: 1px solid #e8edf2;
  border-radius: 12px; background: #fff; cursor: pointer; text-align: left; position: relative;
  transition: border-color .15s ease, background .15s ease;
}
.add-type input { position: absolute; opacity: 0; pointer-events: none; }
.add-type strong { font-size: 14px; color: var(--ink); font-weight: 700; }
.add-type span { color: var(--muted); font-size: 11px; font-weight: 500; line-height: 1.35; }
.add-type:hover { border-color: #cbd5e1; }
.add-type:has(input:checked) {
  border-color: var(--green); background: #f3faf6;
  box-shadow: none;
}
.add-card__actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding: 20px 0 0; margin-top: 4px; border-top: 1px solid #eef2f6;
}
.add-card__actions--steps { align-items: center; }
.add-card__actions--steps .btn--primary { margin-left: 0; }
.add-card__note { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.45; }
.add-card__subhead {
  margin: 4px 0 0; font-size: 15px; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
}
.add-card .admin-grid { gap: 12px 14px; }
.add-card .admin-field { gap: 5px; }
.add-card .admin-field > span {
  font-size: 12px; font-weight: 600; color: #64748b; letter-spacing: 0;
}
.add-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]),
.add-card select,
.add-card textarea {
  width: 100%; min-height: 42px; margin-top: 0;
  border: 1px solid #e2e8f0; border-radius: 10px;
  padding: 10px 12px; background: #fff;
  box-shadow: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.add-card textarea { min-height: 120px; resize: vertical; }
.add-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):focus,
.add-card select:focus,
.add-card textarea:focus {
  outline: none; border-color: #86efac;
  box-shadow: 0 0 0 3px rgba(15, 112, 57, .12);
}
.add-photos {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
}
.add-photos--expert {
  grid-template-columns: minmax(160px, 200px) minmax(0, 1fr);
  gap: 20px;
}
.add-photos--expert [data-add-portfolio] { grid-column: 2; grid-row: 1 / span 2; }
.add-photo {
  display: grid; gap: 8px; padding: 0; border: 0;
  border-radius: 0; background: transparent; align-content: start;
}
.add-photo--portfolio { min-width: 0; }
.add-photo__label { font-size: 12px; font-weight: 600; color: #64748b; }
.add-photo__label em { font-style: normal; font-weight: 500; color: #94a3b8; }
.add-photo__limit { margin: 0; color: #b45309; font-size: 12px; font-weight: 600; }
.add-photo__error {
  margin: 8px 0 0;
  color: #b91c1c;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
}
.add-photo__preview {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 160px; border-radius: 14px; overflow: hidden;
  background: #f8fafc; border: 1px dashed #dbe3ea; cursor: pointer;
}
.add-photos--expert .add-photo__preview--logo,
.add-photos--expert .add-photo__preview--logo img {
  min-height: 200px; height: 200px; aspect-ratio: 1 / 1;
}
.add-photo__preview img {
  display: block; width: 100%; height: 160px; object-fit: cover;
}
.add-photo__preview--logo img { object-fit: cover; background: #f8fafc; }
.add-photo__preview.has-image { border-style: solid; border-color: #e8edf2; background: #fff; }
.add-photo__empty { color: #94a3b8; font-size: 12.5px; font-weight: 500; text-align: center; padding: 0 12px; }
.add-photo__stage { position: relative; }
.add-photo__preview input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer;
}
.add-photo__x {
  position: absolute; top: 8px; right: 8px; z-index: 2;
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(15, 23, 42, .7); color: #fff; cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, .18);
}
.add-photo__x:hover { background: #b91c1c; }
.add-photo__file {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 0 12px; border-radius: 10px; cursor: pointer;
  background: transparent; border: 1px solid #e2e8f0; color: #334155;
  font-weight: 600; font-size: 12.5px; width: fit-content;
}
.add-photo__file:hover { border-color: var(--green); color: var(--green); }
.add-photo__file input { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.add-photo__remove { margin: 0; }
.add-photo__remove-btn { display: none; }
.add-portfolio-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px;
}
.add-portfolio-item {
  position: relative; display: block; border-radius: 12px; overflow: hidden;
  border: 1px solid #e8edf2; background: #fff;
}
.add-portfolio-item img {
  display: block; width: 100%; height: 72px; object-fit: cover;
}
.add-portfolio-item__x {
  position: absolute; top: 5px; right: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(15, 23, 42, .7); color: #fff; cursor: pointer;
}
.add-portfolio-item__x:hover { background: #b91c1c; }
.add-portfolio-item__remove { display: none; }

/* Nested editors inside listing form */
.add-card .hours-editor,
.add-card .admin-socials,
.add-card .admin-location {
  padding: 0; border: 0; border-radius: 0; background: transparent;
  box-shadow: none;
}
.add-card .hours-editor { display: grid; gap: 12px; }
.add-card .hours-editor__intro strong { font-size: 13px; font-weight: 600; color: #64748b; }
.add-card .hours-editor__intro span { display: none; }
.add-card .hours-editor__presets { gap: 6px; }
.add-card .hours-editor__chip {
  border-radius: 999px; padding: 5px 10px; font-size: 11px; font-weight: 600;
  background: #f8fafc;
}
.add-card .hours-editor__days {
  border: 1px solid #eef2f6; border-radius: 12px; overflow: hidden;
}
.add-card .admin-socials { gap: 10px; margin-top: 16px; padding-top: 16px; border-top: 1px solid #eef2f6; }
.add-card .admin-hours__head strong {
  font-size: 15px; font-weight: 700; letter-spacing: -.01em;
  text-transform: none; color: var(--ink);
}
.add-card .admin-location-list { gap: 12px; }
.add-card .admin-location {
  padding: 14px; border: 1px solid #eef2f6; border-radius: 14px; background: #fafbfc;
  display: grid; gap: 12px;
}
.add-card .admin-location__top {
  padding-bottom: 10px; border-bottom: 1px solid #eef2f6;
}
.add-card .admin-location-services {
  margin-top: 4px; padding-top: 12px; border-top: 1px solid #eef2f6;
}

@media (max-width: 700px) {
  .add-photos,
  .add-photos--expert { grid-template-columns: 1fr; }
  .add-photos--expert [data-add-portfolio] { grid-column: auto; grid-row: auto; }
  .add-photos--expert .add-photo__preview--logo,
  .add-photos--expert .add-photo__preview--logo img {
    min-height: 160px; height: 160px;
  }
}
.ad-slot--rail {
  min-height: 320px;
  align-items: center;
}
.page-hero--listing-form {
  background: linear-gradient(180deg, #0b1220 0%, #121a2b 100%);
  padding: 28px 0 56px;
}
.page-hero--listing-form h1 {
  font-size: clamp(1.7rem, 2.8vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -.03em;
}
.page-hero--listing-form .lede {
  max-width: 520px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.5;
}
.page-hero--listing-form .page-hero__crumb {
  margin-bottom: 10px;
  font-size: 12px;
}
.contact-page { background: var(--bg); padding: 36px 0 64px; }
.contact-page__grid {
  display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 28px; align-items: start;
}
.contact-aside h2 { margin: 0 0 10px; font-size: 1.45rem; }
.contact-aside > p { margin: 0 0 18px; color: #475569; line-height: 1.6; }
.contact-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contact-points li {
  background: #fff; border: 1px solid #e8edf2; border-radius: 14px; padding: 14px 16px;
}
.contact-points strong { display: block; margin-bottom: 4px; }
.contact-points span { color: var(--muted); font-size: 14px; }
@media (max-width: 800px) {
  .contact-page__grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .add-types { grid-template-columns: 1fr 1fr; }
  .add-card { padding: 18px 16px 22px; margin-top: -28px; border-radius: 16px; }
  .add-card__type-hint { margin-left: 0; width: 100%; }
  .page-hero--listing-form { padding: 22px 0 48px; }
  .add-steps__btn { padding: 8px 4px; gap: 6px; justify-content: center; flex-direction: column; }
  .add-steps__label { font-size: 11px; }
  .add-steps__num { width: 24px; height: 24px; font-size: 12px; }
}
.search-form { grid-template-columns: 1fr auto; max-width: 720px; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); border: 0;
}

.feat { background: var(--bg); padding: 28px 0 36px; }
.feat__grid { display: grid; grid-template-columns: 1.05fr 1.25fr 1fr; gap: 18px; align-items: stretch; }
.feat-col {
  background: #fff; border-radius: 22px; padding: 22px 20px 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06); min-height: 100%;
}
.feat-col--news { padding: 22px 16px 16px; }
.feat-col__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 14px; padding: 0 6px; }
.feat-col__head h2 { margin: 0; font-size: 1.35rem; }
.feat-col__head a { font-weight: 700; color: var(--green); }
.feat-job, .feat-biz {
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
  padding: 14px 6px; border-top: 1px solid #f1f5f9;
}
.feat-job:first-child, .feat-biz:first-child { border-top: 0; }
.feat-job__title, .feat-biz__title { display: block; color: var(--green); font-weight: 800; line-height: 1.3; }
.feat-job__cat, .feat-biz__cat { display: block; color: var(--green); font-size: 13px; margin-top: 4px; }
.feat-job__loc, .feat-biz__loc { display: block; color: #94a3b8; font-size: 13px; margin-top: 2px; }
.feat-biz__reviews { margin-top: 4px; }
.feat-job__loc::before, .feat-biz__loc::before { content: "• "; }
.feat-job__btn, .feat-biz__btn {
  background: var(--green); color: #fff; border-radius: 999px; padding: 10px 16px;
  font-weight: 700; white-space: nowrap; font-size: 14px;
}
.feat-job__btn:hover, .feat-biz__btn:hover { background: var(--green-dark); color: #fff; }
.feat-biz { grid-template-columns: 48px 1fr auto; }
.feat-biz__logo, .feat-biz__mark {
  width: 48px; height: 48px; border-radius: 50%; object-fit: contain; background: #e8f5ee;
}
.feat-biz__mark { display: flex; align-items: center; justify-content: center; color: var(--green); font-weight: 800; }
.feat-news__hero {
  position: relative; display: block; border-radius: 16px; overflow: hidden; color: #fff;
}
.feat-news__hero img { width: 100%; height: auto; object-fit: contain; display: block; }
.feat-news__overlay {
  position: absolute; inset: auto 0 0; padding: 18px 16px 16px;
  background: linear-gradient(transparent, rgba(8, 40, 24, .92));
}
.feat-news__overlay em, .feat-news__more em {
  display: block; font-style: normal; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 800;
}
.feat-news__overlay em { color: rgba(255,255,255,.85); }
.feat-news__overlay strong { display: block; color: #fff; font-size: 1.15rem; margin: 4px 0; }
.feat-news__overlay time { color: rgba(255,255,255,.8); font-size: 13px; }
.feat-news__more { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.feat-news__more a { color: inherit; display: grid; gap: 8px; }
.feat-news__more img { width: 100%; height: auto; object-fit: contain; border-radius: 10px; background: #dbe4ee; display: block; }
.feat-news__more em { color: var(--green); }
.feat-news__more strong { display: block; font-size: 13px; line-height: 1.35; }

.tc { background: #f3f7f4; padding: 48px 0 36px; text-align: center; }
.tc h2 { margin: 0 0 8px; font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.tc > .wrap > .lede { margin: 0 auto 22px; }
.tc-tabs { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 22px; }
.tc-tab {
  display: inline-flex; align-items: center; gap: 8px; border: 0; cursor: pointer;
  background: #fff; color: #334155; border-radius: 999px; padding: 10px 16px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .06);
}
.tc-tab.is-active { background: var(--green); color: #fff; }
.tc-tab img { width: 18px; height: 18px; }
.tc-tab.is-active img { filter: brightness(0) invert(1); }
.tc-panel { display: none; text-align: left; }
.tc-panel.is-active { display: block; }
.tc-panel[hidden] { display: none !important; }
.tc-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.tc-intro {
  position: relative; min-height: 360px; border-radius: 22px; overflow: hidden; color: #fff;
  background: #123 center/cover no-repeat; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px 22px 22px; grid-row: span 2;
}
.tc-intro__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,16,24,.1), rgba(7,16,24,.78)); }
.tc-intro h3, .tc-intro p, .tc-intro__btn { position: relative; z-index: 1; }
.tc-intro h3 { margin: 0 0 8px; font-size: 1.55rem; line-height: 1.2; color: #fff; }
.tc-intro p { margin: 0 0 16px; color: rgba(255,255,255,.9); }
.tc-intro__btn {
  display: inline-flex; align-self: flex-start; background: var(--green); color: #fff;
  border-radius: 999px; padding: 10px 16px; font-weight: 700;
}
.tc-intro:hover { color: #fff; }
.tc-city { background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 24px rgba(15,23,42,.06); display: flex; flex-direction: column; }
.tc-city__media img { width: 100%; height: 120px; object-fit: cover; }
.tc-city__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tc-city h3 { margin: 0; font-size: 1.02rem; }
.tc-city ul { list-style: none; margin: 0; padding: 0; }
.tc-city li a { display: block; color: #334155; font-size: 13px; padding: 4px 0; }
.tc-city__empty { color: var(--muted); font-size: 13px; margin: 0; }
.tc-city__more { margin-top: auto; font-weight: 700; font-size: 13px; }
.tc-add { border: 1px solid #d7eadc; }
.tc-add__media {
  display: flex; align-items: center; justify-content: center;
  height: 120px; background: linear-gradient(160deg, #127a3d, #0b5a2d);
}
.tc-add__plus {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.16); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 34px; font-weight: 400; line-height: 1;
}
.tc-add li { color: #334155; font-size: 13px; padding: 4px 0; }

.ev { padding: 12px 0 24px; }
.ev-hero {
  position: relative; min-height: 280px; border-radius: 24px; overflow: hidden;
  background: #eef6f1 center/cover no-repeat; padding: 36px 40px 28px; display: flex; align-items: center;
}
.ev-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.78) 36%, rgba(255,255,255,0) 64%);
}
.ev-hero__copy { position: relative; z-index: 1; max-width: 640px; }
.ev-hero h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--green); }
.ev-hero p { margin: 0 0 18px; color: #334155; max-width: 34em; }
.ev-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.ev-tabs a, .walkin__tabs a {
  background: #fff; color: var(--ink); border: 1px solid #dbe7df; border-radius: 999px;
  padding: 8px 16px; font-weight: 700;
}
.ev-tabs a.is-active, .walkin__tabs a.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.ev-body { background: #fff; border-radius: 0 0 22px 22px; padding: 18px 8px 20px; }
.ev-toolbar { display: flex; justify-content: space-between; gap: 16px; align-items: center; flex-wrap: wrap; padding: 0 8px 16px; }
.ev-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.ev-chip {
  background: #fff; border: 1px solid var(--line); color: #334155; border-radius: 999px;
  padding: 8px 14px; font-weight: 600; font-size: 14px;
}
.ev-chip.is-active { background: #e8f5ee; color: var(--green-dark); border-color: #b7dfc6; }
.ev-region select { min-width: 180px; min-height: 42px; border: 1px solid var(--line); border-radius: 10px; padding: 0 12px; background: #fff; }
.ev-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.ev-card { background: #fff; border: 1px solid #eef2f6; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 24px rgba(15,23,42,.05); display: flex; flex-direction: column; height: 100%; }
.ev-card__media { position: relative; display: block; background: var(--navy); }
.ev-card__media img,
.ev-card__ph {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: var(--navy);
}
.ev-card__ph {
  background: var(--navy);
}
.ev-card__status {
  position: absolute; left: 12px; top: 12px; border-radius: 8px; padding: 4px 10px;
  color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.ev-card__status--ongoing { background: #e67e22; }
.ev-card__status--upcoming, .ev-card__status--region { background: #15803d; }
.ev-card__body {
  padding: 16px 16px 18px;
  display: grid;
  grid-template-rows: 28px 18px minmax(2.6em, 2.6em) minmax(58px, auto) auto;
  gap: 8px;
  flex: 1;
  align-content: start;
}
.ev-card__terms {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.ev-card__cat {
  display: inline-block; background: #eef8f2; color: var(--green-dark); border-radius: 999px;
  padding: 4px 10px; font-size: 12px; font-weight: 700;
  max-width: 52%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ev-card__cat--ghost { visibility: hidden; }
.ev-card__date {
  margin: 0; min-height: 18px; color: var(--green); font-size: 12px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ev-card__date.is-empty { visibility: hidden; }
.ev-card__title {
  margin: 0; font-size: 1.15rem; line-height: 1.3;
  min-height: 2.6em;
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  overflow: hidden;
}
.ev-card__title a { color: var(--ink); }
.ev-card__reviews {
  margin: 0 0 0 auto;
  min-height: 22px;
  display: flex; flex-wrap: nowrap; align-items: center; justify-content: flex-end; gap: 4px;
  color: var(--muted); font-size: 11px; font-weight: 600;
  flex: 0 1 auto; max-width: 48%;
}
.ev-card__reviews .stars__item { font-size: 12px; }
.ev-card__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: 13px; }
.ev-card__countdown-slot { min-height: 58px; display: flex; align-items: stretch; }
.ev-card__countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; width: 100%; }
.ev-card__countdown div {
  background: var(--navy); color: #fff; border-radius: 10px;
  padding: 8px 4px; text-align: center;
}
.ev-card__countdown strong { display: block; font-size: 1.15rem; line-height: 1.1; }
.ev-card__countdown span {
  font-size: 10px; letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.ev-card__footer { margin-top: 0; padding-top: 4px; align-self: end; }
.ev-card__button {
  display: inline-flex; align-items: center; justify-content: center; width: 100%;
  min-height: 44px; background: var(--green); color: #fff; border-radius: 12px; font-weight: 800;
}
.ev-card__button:hover { background: var(--green-dark); color: #fff; }
.ev-explore { text-align: center; margin: 20px 0 8px; padding: 0 0 12px; position: relative; z-index: 2; }
.ev-explore .btn { min-width: 160px; border-radius: 12px; }

.walkin { padding: 28px 0 20px; }
.walkin__hero {
  position: relative; min-height: 280px; border-radius: 24px; overflow: hidden;
  background: #eef6f1 center/cover no-repeat; margin-bottom: 18px;
  padding: 36px 32px; display: flex; align-items: center;
}
.walkin__hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.72) 42%, rgba(255,255,255,0) 68%);
}
.walkin__copy { position: relative; z-index: 1; max-width: 560px; }
.walkin__copy h2 { margin: 0 0 10px; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--green); }
.walkin__copy p { margin: 0 0 18px; max-width: 36em; color: #334155; }
.walkin__tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.walkin__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.walk-card { background: #fff; border: 1px solid #eef2f6; border-radius: 20px; padding: 16px; box-shadow: 0 8px 22px rgba(15,23,42,.05); display: flex; flex-direction: column; }
.walk-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.walk-card__head img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; }
.walk-card__head h3 { margin: 0; font-size: 1.05rem; }
.walk-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 auto;
  min-height: 0;
}
.walk-card__chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef8f2;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}
.walk-card__chip:hover { background: #dff3e8; color: var(--green-dark); }
.walk-card__empty { color: var(--muted); font-size: 14px; margin: 0 0 auto; }
.walk-card__all { margin-top: auto; padding-top: 12px; font-weight: 700; }

.biz-banner {
  background: linear-gradient(90deg, #0b5a2d 0%, #0d4c38 42%, #0b1c33 100%);
  color: #fff; padding: 42px 0;
}
.biz-banner__inner { display: grid; grid-template-columns: 1.15fr auto 1fr; gap: 28px; align-items: center; }
.biz-banner h2 { margin: 0 0 6px; font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: #fff; }
.biz-banner p { margin: 0 0 12px; color: rgba(255,255,255,.86); }
.biz-banner ul { list-style: none; margin: 0 0 18px; padding: 0; }
.biz-banner li { position: relative; padding-left: 22px; margin: 0 0 6px; }
.biz-banner li::before { content: "✓"; position: absolute; left: 0; color: #f0c14b; font-weight: 800; }
.biz-banner__btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px;
  padding: 0 18px; border-radius: 10px; background: #e8b84a; color: #1a1a1a; font-weight: 800;
}
.biz-banner__btn:hover { background: #f0c14b; color: #1a1a1a; }
.biz-banner__logo { width: min(240px, 100%); height: auto; justify-self: center; }
.biz-banner__stats { display: flex; justify-content: flex-end; gap: 16px; }
.biz-banner__stats div {
  width: 112px; height: 112px; border-radius: 50%; border: 2px solid rgba(255,255,255,.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.biz-banner__stats strong { font-size: 1.45rem; line-height: 1.1; }
.biz-banner__stats span { font-size: 12px; color: rgba(255,255,255,.8); }

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.74);
  margin-top: auto;
  border-top: 4px solid var(--green);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(140px, 1fr));
  gap: 36px 32px;
  padding: 48px 0 40px;
}
.footer-logo { display: inline-block; }
.footer-logo img { width: 158px; height: auto; }
.footer-brand p {
  margin: 14px 0 18px;
  max-width: 360px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.65;
}
.site-footer h2 {
  margin: 6px 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.72);
  font-weight: 600;
  font-size: 14px;
}
.footer-links a:hover { color: #fff; }
.social { display: flex; flex-wrap: wrap; gap: 10px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.social a:hover { background: var(--green); color: #fff; }
.footer-cta {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 16px; min-height: 40px; padding: 0 16px;
  background: var(--green); color: #fff; border-radius: 999px; font-weight: 800; font-size: 13px;
}
.footer-cta:hover { background: var(--green-dark); color: #fff; }
.footer-bar { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bar__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap; padding: 16px 0; font-size: 13px; color: rgba(255,255,255,.48);
}
.footer-bar p { margin: 0; }
.footer-bar a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bar a:hover { color: #fff; }

body.is-admin-preview { margin: 0; background: #fff; min-height: 0; display: block; }
.admin-page-preview { padding: 4px 2px 20px; }
.admin-page-preview > h1 {
  margin: 0 0 16px; font-size: clamp(1.7rem, 3vw, 2.2rem); line-height: 1.2;
}
.article-page { padding: 28px 0 56px; background: var(--bg); }
.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 28px; align-items: start;
}
.article-page--cv .article-layout { grid-template-columns: minmax(0, 1fr); }
.article-head { text-align: center; margin: 8px 0 12px; }
.article-head h1 { margin: 0 0 16px; font-size: clamp(1.85rem, 3.4vw, 2.55rem); line-height: 1.18; overflow-wrap: anywhere; }
.article-cat {
  display: inline-block; background: var(--green); color: #fff; border-radius: 999px;
  padding: 6px 14px; font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; margin: 0 0 12px;
}
.article-cat:hover { background: var(--green-dark); color: #fff; }
.article-byline {
  margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2px 0;
}
.article-byline span + span::before { content: "•"; margin: 0 8px; color: #94a3b8; }
.article-main { min-width: 0; }
.article-main .listing-cover {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: center;
  margin: 4px 0 20px;
  background: transparent;
}
.article-main .content-card { padding: 28px 32px 36px; }
.author-box {
  margin-top: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 28px 28px; box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
}
.author-box__kicker {
  margin: 0 0 16px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); font-weight: 800;
}
.author-box__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.author-card {
  display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 16px;
  padding-top: 18px; border-top: 1px solid var(--line);
}
.author-card:first-child { padding-top: 0; border-top: 0; }
.author-card__avatar {
  width: 76px; height: 76px; border-radius: 50%; object-fit: cover;
  background: #ecfdf3; border: 3px solid #dcfce7;
}
.author-card__avatar--mark {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green); font-weight: 800; font-size: 1.15rem;
}
.author-card__top h3 { margin: 4px 0 2px; font-size: 1.15rem; }
.author-card__role {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--green);
}
.author-card__job { margin: 0; color: var(--muted); font-size: 14px; font-weight: 600; }
.author-card__bio { margin: 10px 0 0; color: #334155; font-size: 15px; line-height: 1.6; }
.author-card__chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; }
.author-card__chips span {
  background: #f8fafc; border: 1px solid #e8edf2; border-radius: 999px;
  padding: 4px 10px; font-size: 12px; font-weight: 700; color: #334155;
}
.author-card__meta {
  list-style: none; margin: 10px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px 14px; color: var(--muted); font-size: 13px; font-weight: 600;
}
.author-card__links { display: flex; flex-wrap: wrap; gap: 10px 14px; margin: 12px 0 0; font-size: 13px; font-weight: 800; }
.prose { overflow-x: auto; }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 1.2em; table-layout: fixed; }
.prose th, .prose td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 15px; line-height: 1.45; overflow-wrap: anywhere; }
.prose th { color: #fff; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; background: var(--green); border-bottom-color: var(--green-dark); }
.prose td { color: var(--ink); }
.prose th:first-child,
.prose td:first-child { width: 32%; font-weight: 700; }
.article-aside { display: grid; gap: 14px; align-content: start; }
@media (min-width: 1101px) {
  .article-aside {
    height: 0;
    min-height: calc(100% + 48px);
    overflow: hidden;
  }
}
.toc ol { list-style: none; margin: 0; padding: 0; }
.toc h2, .aside-card__head h2, .aside-promo h2 { margin: 0 0 10px; font-size: 1.02rem; }
.toc a {
  display: block; padding: 7px 10px; border-left: 3px solid transparent; color: #334155;
  font-size: 14px; border-radius: 0 8px 8px 0;
}
.toc a:hover, .toc a.is-active { background: #e8f5ee; color: var(--green-dark); border-left-color: var(--green); }
.toc__item--h3 a { padding-left: 18px; font-size: 13px; font-weight: 600; }
.aside-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.aside-card__head h2 { margin: 0; }
.aside-card__head a { font-size: 13px; font-weight: 700; }
.aside-list { list-style: none; margin: 0; padding: 0; }
.aside-list a { display: block; padding: 10px 0; border-top: 1px solid var(--line); color: inherit; }
.aside-list li:first-child a { border-top: 0; padding-top: 2px; }
.aside-list strong { display: block; color: var(--ink); font-size: 14px; line-height: 1.35; }
.aside-list span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.aside-list--media a { display: grid; gap: 8px; align-items: start; }
.aside-list__media { position: relative; display: block; width: 100%; }
.aside-list--media img,
.aside-list__ph {
  width: 100%; height: 148px; object-fit: cover; border-radius: 10px; background: #e8edf2;
}
.aside-list__hours {
  position: absolute; top: 8px; left: 8px; z-index: 1;
  display: inline-block; margin: 0; font-weight: 800; font-size: 11px; letter-spacing: .02em;
  padding: 3px 8px; border-radius: 999px; box-shadow: 0 6px 16px rgba(15, 23, 42, .18);
}
.aside-list .aside-list__hours--open { background: var(--green); color: #fff; }
.aside-list .aside-list__hours--closed { background: #b91c1c; color: #fff; }
.aside-list__copy { min-width: 0; }
.aside-list__copy span { margin-top: 3px; }
.aside-promo {
  background: linear-gradient(160deg, #0b5a2d 0%, #0b1c33 100%);
  color: #fff; border: 0;
}
.aside-promo__kicker {
  margin: 0 0 6px; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: #f0c14b; font-weight: 800;
}
.aside-promo h2 { color: #fff; }
.aside-promo p { color: rgba(255,255,255,.86); margin: 0 0 14px; }
.aside-promo .btn { background: #e8b84a; color: #1a1a1a; width: 100%; }
.aside-promo .btn:hover { background: #f0c14b; color: #1a1a1a; }
.prose h2, .prose h3 { scroll-margin-top: 18px; }

.prose--elementor { overflow: visible; }
.prose--elementor h2,
.prose--elementor h3 {
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
  color: inherit;
}
.elementor { display: flex; flex-direction: column; gap: 28px; }
.e-con-boxed > .e-con-inner,
.e-con-full { width: 100%; }
.e-con-inner,
.e-con.e-flex { display: flex; flex-direction: column; gap: 18px; }
.e-con.e-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: stretch;
}
.e-con.e-grid.elementor-element-739fb0d,
.e-con.e-grid.elementor-element-0a11d93 {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  align-items: center;
  gap: 24px;
}
.e-con.e-grid.elementor-element-f680a58 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.e-con.e-grid.elementor-element-78670b3,
.e-con.e-grid.elementor-element-a4ec8e8,
.e-con.e-grid.elementor-element-d8ce2c0 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.e-con.e-grid.elementor-element-0503033 { grid-template-columns: 1fr; }
.e-con.e-flex.elementor-element-d2870e0 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.elementor-element-d2870e0 > .e-con {
  background: #f7faf8;
  border: 1px solid #e4eee8;
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  align-items: center;
}
.elementor-widget-heading .elementor-heading-title {
  color: var(--green);
  text-align: center;
  line-height: 1.25;
}
.elementor h1.elementor-heading-title {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
  margin: 0 0 8px;
}
.elementor h2.elementor-heading-title {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin: 18px 0 6px;
}
.elementor h3.elementor-heading-title { font-size: 1.05rem; margin: 0; color: var(--ink); }
.elementor-widget-text-editor p { margin: 0 0 1em; }
.elementor-widget-text-editor p:last-child { margin-bottom: 0; }
.elementor-widget-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}
.elementor-icon-box-wrapper {
  height: 100%;
  background: #fff;
  border: 1px solid #e6eef3;
  border-radius: 16px;
  padding: 20px 16px 18px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}
.elementor-icon-box-icon { margin-bottom: 10px; }
.elementor-icon,
.elementor-icon-wrapper { display: inline-flex; align-items: center; justify-content: center; }
.elementor-icon svg,
.e-font-icon-svg {
  width: 38px;
  height: 38px;
  fill: var(--green);
  display: block;
}
.elementor-icon-box-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.3;
}
.elementor-icon-box-title a { color: inherit; }
.elementor-icon-box-description { margin: 0; color: #4b5563; font-size: 14px; line-height: 1.55; }
.e-n-tabs { display: flex; flex-direction: column; gap: 16px; }
.e-n-tabs-heading {
  display: flex; flex-wrap: wrap; gap: 8px;
  border-bottom: 1px solid var(--line); padding-bottom: 10px;
}
.e-n-tab-title {
  appearance: none; border: 1px solid #dbe7df; background: #f4f8f6; color: var(--ink);
  border-radius: 999px; min-height: 40px; padding: 0 16px; font: inherit; font-weight: 700;
  cursor: pointer;
}
.e-n-tab-title[aria-selected="true"] {
  background: var(--green); color: #fff; border-color: var(--green);
}
.e-n-tabs-content > [role="tabpanel"] { display: none; }
.e-n-tabs-content > [role="tabpanel"].e-active { display: block; }
.e-n-accordion { display: flex; flex-direction: column; gap: 10px; }
.e-n-accordion-item {
  border: 1px solid #e4eee8; border-radius: 14px; background: #fff; overflow: hidden;
}
.e-n-accordion-item-title {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  list-style: none; cursor: pointer; padding: 14px 16px; font-weight: 700;
}
.e-n-accordion-item-title::-webkit-details-marker { display: none; }
.e-n-accordion-item-title-text { text-transform: none; }
.e-n-accordion-item-title-icon { display: inline-flex; color: var(--green); flex: 0 0 auto; }
.e-n-accordion-item-title-icon svg { width: 14px; height: 14px; fill: currentColor; }
.e-n-accordion-item:not([open]) .e-opened,
.e-n-accordion-item[open] .e-closed { display: none; }
.e-n-accordion-item [role="region"] { padding: 0 16px 16px; color: #4b5563; }
.ays-chart-container-google { display: none; }
.elementor-widget-shortcode script { display: none; }

.pager { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.explore-results .pager { justify-content: center; }
.explore-pager {
  display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: 24px;
  margin: 28px 0 32px; padding: 8px 0 16px;
}
.explore-pager .pager { grid-column: 2; justify-content: center; margin-top: 0; }
.pager__link {
  min-width: 40px; min-height: 40px; padding: 0 14px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 10px; color: var(--ink);
  font-weight: 700; line-height: 1; background: #fff;
}
.pager__link.is-active { background: var(--green); color: #fff; border-color: var(--green); }
.pager__link:hover:not(.is-active) { border-color: var(--green); color: var(--green); }

.admin { display: grid; grid-template-columns: 248px 1fr; min-height: 100vh; background: var(--bg); }
.admin-nav {
  background: var(--navy); color: #fff; padding: 22px 16px 18px;
  display: flex; flex-direction: column; gap: 22px; position: sticky; top: 0; height: 100vh;
}
.admin-nav__brand {
  display: flex; align-items: center; gap: 10px; color: #fff; padding: 0 8px;
}
.admin-nav__brand img { width: 118px; height: auto; }
.admin-nav__brand span {
  font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: #f0c14b; background: rgba(255,255,255,.08); border-radius: 999px; padding: 4px 8px;
}
.admin-nav__brand:hover { color: #fff; }
.admin-nav__links { display: grid; gap: 4px; }
.admin-nav a { color: rgba(255,255,255,.78); }
.admin-nav__links a {
  display: block; padding: 10px 12px; border-radius: 10px; font-weight: 600; color: rgba(255,255,255,.78);
}
.admin-nav__links a:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-nav__links a.is-active { background: var(--green); color: #fff; }
.admin-nav__foot { margin-top: auto; display: grid; gap: 6px; padding: 0 8px; }
.admin-nav__foot a { font-size: 13px; color: rgba(255,255,255,.7); }
.admin-nav__foot a:hover { color: #fff; }
.admin-nav__foot p { margin: 10px 0 0; font-size: 12px; color: rgba(255,255,255,.45); }
.admin-main { padding: 28px 32px 40px; background: var(--bg); min-width: 0; }
.admin-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 20px; }
.admin-kicker { margin: 0 0 4px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.admin-main h1 { margin: 0; font-size: 1.7rem; }
.admin-count { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 22px; }
.admin-stat {
  display: block; background: #fff; padding: 18px 16px 16px; border-radius: 16px;
  border: 1px solid #e8edf2; box-shadow: 0 8px 20px rgba(15, 23, 42, .04); color: inherit;
}
.admin-stat:hover { color: inherit; border-color: #cfe3d6; transform: translateY(-1px); }
.admin-stat strong { display: block; font-size: 1.7rem; line-height: 1.1; letter-spacing: -.03em; }
.admin-stat span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; font-weight: 700; }
.admin-panel { background: #fff; border: 1px solid #e8edf2; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 20px rgba(15, 23, 42, .04); }
.admin-panel__head { display: flex; justify-content: space-between; align-items: center; padding: 16px 18px 0; }
.admin-panel h2 { margin: 0; font-size: 1.05rem; }
.admin-empty { margin: 0; padding: 36px 18px; color: var(--muted); text-align: center; }
.admin-head__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 16px;
}
.admin-tabs a {
  display: inline-flex; align-items: center; min-height: 36px; padding: 6px 14px;
  border-radius: 999px; background: #fff; border: 1px solid #e8edf2;
  color: #334155; font-weight: 700; font-size: 13px;
}
.admin-tabs a:hover { border-color: #cfe3d6; color: var(--green); }
.admin-tabs a.is-active { background: var(--green); border-color: var(--green); color: #fff; }
.admin-muted { color: var(--muted); font-size: 12px; }
.admin-badge {
  display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 700; vertical-align: middle;
}
.admin-badge--warn { background: #fff1f2; color: #b91c1c; }
.admin-link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.admin-link-list a { font-weight: 600; }
.btn--small {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 32px; padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 700;
  background: #e8f5ee; color: var(--green-dark);
}
.btn--small:hover { background: var(--green); color: #fff; }
.admin-form { display: grid; gap: 16px; width: 100%; max-width: none; background: none; padding: 0; border: 0; }
@media (min-width: 1100px) {
  .admin-form:not(.admin-ads):not(.admin-form--stack):has(.admin-form-card + .admin-form-card) {
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: start;
  }
  .admin-form:not(.admin-ads):not(.admin-form--stack):has(.admin-form-card + .admin-form-card) .admin-form-card:first-of-type { grid-column: 1; }
  .admin-form:not(.admin-ads):not(.admin-form--stack):has(.admin-form-card + .admin-form-card) .admin-form-card:nth-of-type(2) { grid-column: 2; grid-row: 1; }
  .admin-form:not(.admin-ads):not(.admin-form--stack):has(.admin-form-card + .admin-form-card) .admin-form-actions { grid-column: 1 / -1; }
}
.admin-form-card {
  background: #fff; padding: 20px; border-radius: 16px; border: 1px solid #e8edf2;
  display: grid; gap: 14px; box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}
.admin-form-card h2 { margin: 0; font-size: 1.02rem; }
.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.admin-field { display: grid; gap: 6px; }
.admin-field--full { grid-column: 1 / -1; }
.admin-field span { font-size: 13px; font-weight: 700; color: #334155; }
.admin-field small { color: var(--muted); font-size: 12px; }
.admin-check { display: inline-flex; align-items: flex-start; gap: 8px; font-weight: 600; color: #334155; cursor: pointer; }
.admin-check input { margin-top: 2px; }
.admin-form-actions { display: flex; gap: 8px; }
.admin-form--stack,
.admin-form--stack:has(.admin-form-card + .admin-form-card) {
  grid-template-columns: 1fr;
}
.admin-form--stack .admin-form-card,
.admin-form--stack:has(.admin-form-card + .admin-form-card) .admin-form-card {
  grid-column: 1 / -1;
  grid-row: auto;
}
.admin-ads,
.admin-form.admin-ads,
.admin-form.admin-ads:has(.admin-form-card + .admin-form-card) {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
.admin-ads .admin-form-card { grid-column: 1 / -1; }
.admin-ads__toggles { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.admin-ads__setup { display: grid; gap: 14px; }
.admin-ads__setup-head {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
}
.admin-ads__setup-head h2 { margin: 0; }
.admin-ad-list { display: grid; gap: 10px; }
.admin-ad-row {
  display: grid; gap: 10px; padding: 14px 16px;
  border: 1px solid #e8edf2; border-radius: 12px; background: #f8fafc;
}
.admin-ad-row__top { display: grid; gap: 2px; }
.admin-ad-row__top .admin-check { align-items: center; font-size: 14px; }
.admin-ad-row p { margin: 0; color: var(--muted); font-size: 13px; padding-left: 24px; }
.admin-ad-row textarea { min-height: 72px; }
.admin-ad-row .admin-grid { align-items: start; }
.admin-ads__count { color: var(--muted); font-size: 12px; font-weight: 700; }
.admin-filter--media { align-items: center; }
.admin-filter--media input, .admin-filter--media select { min-width: 140px; flex: 1 1 140px; }
.admin-filter__check {
  display: inline-flex; align-items: center; gap: 8px; margin: 0; font-size: 13px; font-weight: 700;
  white-space: nowrap; color: var(--ink);
}
.admin-filter__check input { width: auto; min-width: 0; flex: none; }
.admin-media-views { display: inline-flex; margin-left: auto; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.admin-media-views__btn {
  padding: 8px 12px; font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  color: var(--muted); background: #fff;
}
.admin-media-views__btn.is-active { background: #111; color: #fff; }
.admin-media-row { display: flex; align-items: center; gap: 12px; color: inherit; min-width: 0; }
.admin-media-row:hover { color: inherit; }
.admin-media-row strong { display: block; }
.admin-media-row small { display: block; color: var(--muted); font-size: 12px; overflow-wrap: anywhere; }
.admin-media-row__thumb {
  width: 64px; height: 64px; flex: none; border-radius: 10px; overflow: hidden;
  background: #f1f5f9; display: grid; place-items: center;
}
.admin-media-row__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.admin-media-table__check { width: 44px; vertical-align: middle; }
.admin-sort {
  display: inline-flex; align-items: center; gap: 6px;
  color: inherit; font: inherit; letter-spacing: inherit; text-transform: inherit;
  white-space: nowrap;
}
.admin-sort:hover { color: var(--ink); }
.admin-sort.is-asc, .admin-sort.is-desc { color: var(--ink); }
.admin-sort__arrows {
  display: inline-flex; flex-direction: column; gap: 1px;
  font-size: 8px; line-height: 1; color: #cbd5e1; transform: translateY(-1px);
}
.admin-sort__arrows::before { content: "▲"; }
.admin-sort__arrows::after { content: "▼"; }
.admin-sort.is-asc .admin-sort__arrows::before,
.admin-sort.is-desc .admin-sort__arrows::after { color: var(--green); }
.admin-media-card__badge {
  position: absolute; left: 8px; bottom: 8px; padding: 3px 7px; border-radius: 999px;
  background: rgba(15, 23, 42, .78); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.admin-media-card__badge--alt { left: auto; right: 8px; background: #b45309; }
.admin-media-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); gap: 14px;
}
.admin-media-card {
  position: relative; background: #fff; border: 1px solid #e8edf2; border-radius: 14px; overflow: hidden;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}
.admin-media-card__link { display: grid; color: inherit; }
.admin-media-card__link:hover { color: inherit; }
.admin-media-card__thumb {
  position: relative; display: block; aspect-ratio: 1; background: #f1f5f9; overflow: hidden;
}
.admin-media-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.admin-media-card__file {
  display: flex; align-items: center; justify-content: center; height: 100%; min-height: 148px;
  color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .06em;
}
.admin-media-card strong {
  display: block; padding: 10px 12px 12px; font-size: 13px; line-height: 1.35;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.admin-media-card__check {
  position: absolute; inset: 0; z-index: 2; margin: 0; cursor: pointer;
}
.admin-media-card__check input {
  position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none;
}
.admin-media-card__tick {
  position: absolute; top: 8px; left: 8px; width: 22px; height: 22px;
  border: 2px solid rgba(15, 23, 42, .2); border-radius: 6px; background: #fff;
  box-shadow: 0 2px 10px rgba(15, 23, 42, .18);
}
.admin-media-card__tick::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); opacity: 0;
}
.admin-media-card__check input:checked + .admin-media-card__tick {
  background: var(--green); border-color: var(--green);
}
.admin-media-card__check input:checked + .admin-media-card__tick::after { opacity: 1; }
.admin-media-card:has(input:checked) {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(15, 112, 57, .22);
}
.admin-media-card__check--row {
  position: static; display: inline-flex; width: 22px; height: 22px;
}
.admin-media-card__check--row .admin-media-card__tick { position: static; box-shadow: none; }
.admin-media.is-bulk .admin-media-card__link,
.admin-media.is-bulk .admin-media-row { pointer-events: none; }
.admin-media__bulk {
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px 16px;
  margin-bottom: 12px; padding: 10px 14px;
  background: #fff; border: 1px solid #e8edf2; border-radius: 12px;
}
.admin-media__bulk[hidden] { display: none; }
.admin-media__count { margin-right: auto; color: var(--muted); font-size: 13px; font-weight: 700; }
.admin-media__delete {
  min-height: 38px; padding: 0 14px; background: #fef2f2; color: #b91c1c;
}
.admin-media__delete:hover { background: #fee2e2; color: #991b1b; }
.admin-media-drop { position: relative; text-align: center; padding: 36px 24px; border: 2px dashed #cbd5e1; background: #f8fafc; }
.admin-media-drop.is-over { border-color: var(--green); background: #f0fdf4; }
.admin-media-drop p { margin: 0; color: var(--muted); }
.admin-media-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.admin-media-drop .admin-form-actions { justify-content: center; margin-top: 8px; }
.admin-media-drop__names { font-weight: 700; color: var(--ink); }
.admin-media-edit { align-items: start; }
.admin-media-preview {
  display: flex; align-items: center; justify-content: center;
  min-height: 280px; background: #0f172a; border-radius: 12px; overflow: hidden;
}
.admin-media-preview img { max-width: 100%; max-height: 62vh; display: block; }
.admin-media-meta { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.admin-media-meta li { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.admin-media-meta span { color: var(--muted); }
.admin-media-meta strong { text-align: right; }
.admin-media-danger { margin-top: 16px; }
.admin-media-url { display: flex; gap: 8px; align-items: center; }
.admin-media-url input { flex: 1; min-width: 0; font-size: 12px; }
.admin-media-used { display: grid; gap: 8px; }
.admin-media-used h3 { margin: 0; font-size: 13px; }
.admin-media-used p { margin: 0; color: var(--muted); font-size: 13px; }
.admin-media-used ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.admin-media-used li {
  display: grid; gap: 2px; padding: 8px 10px; border: 1px solid #e8edf2;
  border-radius: 10px; background: #f8fafc; font-size: 13px;
}
.admin-media-used li span { color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.admin-media-used li strong { overflow-wrap: anywhere; }
.admin-media-used li a { font-weight: 800; }
.admin-media-used__url { display: block; font-size: 12px; font-weight: 600; color: var(--muted); overflow-wrap: anywhere; }
.admin-author-pick { display: grid; gap: 8px; }
.admin-author-pick__item {
  display: grid; grid-template-columns: auto 40px minmax(0, 1fr) 140px; align-items: center; gap: 12px;
  padding: 10px 12px; background: #f8fafc; border: 1px solid #e8edf2; border-radius: 12px; cursor: pointer;
}
.admin-author-pick__item.is-on, .admin-author-pick__item:has(input:checked) {
  background: #f3faf6; border-color: #b7dcc6;
}
.admin-author-pick__item input { width: 16px; height: 16px; accent-color: var(--green); }
.admin-author-pick__item img, .admin-author-pick__mark {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.admin-author-pick__mark {
  display: grid; place-items: center; background: #111827; color: #fff;
  font-size: 12px; font-weight: 800;
}
.admin-author-pick__copy { min-width: 0; display: grid; gap: 2px; }
.admin-author-pick__copy strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-author-pick__copy small { color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-author-pick__hint { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.admin-author-row {
  display: flex; align-items: center; gap: 10px; color: inherit; font-weight: 700;
}
.admin-author-row:hover { color: inherit; }
.admin-author-row img, .admin-author-row .admin-author-pick__mark {
  width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex: none;
}
.admin-author-row small { display: block; color: var(--muted); font-size: 12px; font-weight: 600; }
.admin-filter { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 16px; background: #fff; padding: 16px; border-radius: 14px; border: 1px solid #e8edf2; }
.admin-filter input, .admin-filter select { min-width: 180px; flex: 1; }
.admin-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.admin-form select, .admin-form textarea,
.admin-filter input:not([type="checkbox"]):not([type="radio"]),
.admin-filter select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: #fff;
}
.admin-form input[type="checkbox"],
.admin-form input[type="radio"],
.admin-filter input[type="checkbox"],
.admin-check input {
  width: 16px; height: 16px; min-width: 16px; min-height: 16px;
  margin: 0; padding: 0; border: 0; border-radius: 3px;
  background: none; flex: none; accent-color: var(--green);
}
.admin-form textarea { min-height: 140px; resize: vertical; }
.admin-form textarea.admin-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px; line-height: 1.55; min-height: 0; height: 100%;
  border: 0; border-radius: 0; resize: none; white-space: pre; overflow: auto;
  padding: 12px 14px 12px 10px; tab-size: 2;
}
.admin-code-wrap {
  display: grid; grid-template-columns: auto minmax(0, 1fr);
  min-height: 420px; height: 68vh; border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden; background: #fff;
}
.admin-code-lines {
  margin: 0; padding: 12px 10px; min-width: 3.2em; text-align: right;
  background: #f8fafc; color: #94a3b8; border-right: 1px solid #eef2f6;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px; line-height: 1.55; overflow: hidden; user-select: none;
}
.admin-editor-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.admin-editor-tabs { display: inline-flex; padding: 3px; background: #f1f5f9; border-radius: 999px; }
.admin-editor-tabs button {
  border: 0; background: transparent; color: #64748b; cursor: pointer;
  padding: 6px 12px; border-radius: 999px; font: inherit; font-size: 12px; font-weight: 700;
}
.admin-editor-tabs button.is-active { background: #fff; color: #0f172a; box-shadow: 0 1px 2px rgba(15, 23, 42, .08); }
.admin-editor-pane[hidden] { display: none; }
.admin-editor-frame {
  display: block; width: 100%; min-height: 560px; height: 68vh; border: 1px solid var(--line);
  border-radius: 10px; background: #fff;
}
.admin--editor .admin-main { padding: 0; display: flex; flex-direction: column; min-height: 100vh; }
.admin-compose { display: flex; flex-direction: column; flex: 1; min-height: 100vh; background: var(--bg); }
.admin-compose__top {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 12px 20px; background: #fff; border-bottom: 1px solid #e8edf2; position: sticky; top: 0; z-index: 6;
}
.admin-compose__top h1 { font-size: 1.2rem; }
.admin-compose__body {
  display: grid; grid-template-columns: minmax(0, 1fr) 0; flex: 1; min-height: 0; align-items: stretch;
  transition: grid-template-columns .2s ease;
}
.admin-compose__body.is-sidebar-open { grid-template-columns: minmax(0, 1fr) 320px; }
.admin-compose__canvas { min-width: 0; padding: 22px 24px 36px; display: grid; gap: 16px; align-content: start; }
.admin-field--title input { font-size: 1.35rem; font-weight: 700; }
.admin-compose--post { background: #fff; }
.admin-compose--post .admin-compose__top { padding: 8px 16px; }
.admin-compose--post .admin-compose__top h1 {
  font-size: 13px; font-weight: 600; color: #1e1e1e;
}
.admin-compose--post .admin-head__actions .btn {
  min-height: 36px; padding: 0 12px; font-size: 13px; border-radius: 8px;
}
.admin-compose--post .admin-icon-btn { height: 36px; }
.admin-compose--post .admin-compose__canvas {
  background: #fff; padding: 28px 24px 72px; justify-items: center;
}
.admin-post-paper { width: min(760px, 100%); min-width: 0; }
.admin-post-title-wrap { display: block; }
.admin-form.admin-compose--post input.admin-post-title:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]) {
  border: 0; border-radius: 0; padding: 8px 0 20px; background: transparent;
  font-size: clamp(2.1rem, 4vw, 2.75rem); font-weight: 400; line-height: 1.2;
  box-shadow: none;
}
.admin-form.admin-compose--post input.admin-post-title::placeholder { color: #c3c4c7; }
.admin-post-write { position: relative; }
.admin-form.admin-compose--post textarea.admin-post-body {
  border: 0; border-radius: 0; padding: 10px 52px 48px 0; min-height: 48vh;
  background: transparent; font-size: 1.05rem; line-height: 1.75; resize: vertical;
}
.admin-form.admin-compose--post textarea.admin-post-body::placeholder { color: #8c8f94; }
.admin-block-add {
  position: absolute; top: 8px; right: 0; width: 36px; height: 36px;
  border: 1px solid #dcdcde; border-radius: 50%; background: #fff; color: #1e1e1e;
  font-size: 22px; line-height: 1; cursor: pointer;
}
.admin-block-add:hover, .admin-block-add.is-open { border-color: #1e1e1e; }
.admin-block-menu {
  position: absolute; top: 50px; right: 0; z-index: 4; display: grid; min-width: 188px;
  padding: 6px; background: #fff; border: 1px solid #dcdcde; border-radius: 8px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .12);
}
.admin-block-menu[hidden] { display: none; }
.admin-block-menu button {
  border: 0; background: transparent; text-align: left; padding: 8px 10px;
  border-radius: 6px; cursor: pointer; font: inherit; font-weight: 600;
}
.admin-block-menu button:hover { background: #f0f0f1; }
.admin-featured { display: grid; gap: 8px; }
.admin-featured__set {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; width: 100%; min-height: 132px; border: 1px dashed #c3c4c7;
  background: #f6f7f7; color: #3858e9; font: inherit; font-weight: 600; cursor: pointer;
}
.admin-featured__set:hover { background: #eef0f1; }
.admin-featured__preview img {
  width: 100%; height: 150px; object-fit: cover; display: block; background: #f0f0f1;
}
.admin-featured__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.admin-featured__actions button,
.admin-featured__actions a {
  background: none; border: 0; padding: 0; color: #3858e9;
  font: inherit; font-size: 13px; font-weight: 600; cursor: pointer;
}
.admin-featured__actions [data-featured-remove] { color: #cc1818; }
.admin-compose--post .admin-sidebar__row {
  display: grid; grid-template-columns: 92px minmax(0, 1fr);
  align-items: center; gap: 8px; margin: 0;
}
.admin-compose--post .admin-sidebar__row > span { font-size: 13px; color: #1e1e1e; }
.admin-form.admin-compose--post .admin-sidebar__row input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.admin-form.admin-compose--post .admin-sidebar__row select {
  border: 0; background: transparent; padding: 2px 0; border-radius: 0;
  color: #3858e9; text-align: right; font-weight: 600;
}
.admin-compose--post .admin-sidebar__row b {
  text-align: right; font-size: 13px; font-weight: 600; color: #1e1e1e;
}
.admin-compose--post .admin-sidebar .admin-author-pick__item {
  grid-template-columns: auto 32px minmax(0, 1fr); padding: 8px; gap: 8px;
}
.admin-compose--post .admin-sidebar .admin-author-pick__item img,
.admin-compose--post .admin-sidebar .admin-author-pick__mark {
  width: 32px; height: 32px;
}
.admin-compose--post .admin-sidebar .admin-author-pick__item select {
  grid-column: 1 / -1; color: inherit; text-align: left;
  border: 1px solid #e8edf2; border-radius: 8px; padding: 6px 8px; font-weight: 600;
}
.admin-compose--post .admin-sidebar .admin-author-pick__hint { margin: 6px 0 0; font-size: 12px; }
.admin-compose--post .admin-compose__top .error { margin: 0; padding: 6px 10px; font-size: 13px; }
.admin-icon-btn {
  display: inline-flex; align-items: center; gap: 6px; height: 40px; padding: 0 12px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: #334155;
  font: inherit; font-size: 13px; font-weight: 700; cursor: pointer;
}
.admin-icon-btn:hover, .admin-icon-btn.is-active { border-color: var(--green); color: var(--green-dark); background: #f3faf6; }
.admin-sidebar {
  background: #fff; border-left: 1px solid #e8edf2; width: 320px; min-height: 100%;
  overflow: auto; transform: translateX(24px); opacity: 0; pointer-events: none;
  transition: transform .2s ease, opacity .2s ease;
}
.admin-compose__body.is-sidebar-open .admin-sidebar { transform: none; opacity: 1; pointer-events: auto; }
.admin-sidebar__head {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 14px 16px; border-bottom: 1px solid #e8edf2; position: sticky; top: 0; background: #fff; z-index: 1;
}
.admin-sidebar__head strong { font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }
.admin-sidebar__close {
  width: 32px; height: 32px; border: 0; background: #f1f5f9; border-radius: 8px;
  font-size: 22px; line-height: 1; cursor: pointer; color: #475569;
}
.admin-sidebar__close:hover { background: #e2e8f0; }
.admin-sidebar__body { padding: 8px 0 24px; }
.admin-sidebar__section { padding: 16px 16px 8px; border-bottom: 1px solid #eef2f6; display: grid; gap: 12px; }
.admin-sidebar__section:last-child { border-bottom: 0; }
.admin-sidebar__section h2 { margin: 0; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: #64748b; }
.admin-sidebar__meta { display: grid; gap: 4px; margin: 0; }
.admin-sidebar__meta span { font-size: 12px; font-weight: 700; color: #64748b; }
.admin-sidebar__meta b { font-size: 13px; font-weight: 600; color: #0f172a; }
.admin-sidebar textarea { min-height: 96px; }
.admin-field__top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.admin-field .admin-seo-count {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: #c2410c;
}
.admin-field .admin-seo-count b { font-weight: 700; color: inherit; }
.admin-seo-count__dot {
  width: 8px; height: 8px; border-radius: 50%; background: #f97316; flex: 0 0 auto;
}
.admin-field .admin-seo-count.is-good { color: #15803d; }
.admin-field .admin-seo-count.is-good .admin-seo-count__dot { background: #16a34a; }
.admin-field .admin-seo-count.is-ok { color: #c2410c; }
.admin-field .admin-seo-count.is-ok .admin-seo-count__dot { background: #f97316; }
.admin-field .admin-seo-count.is-bad { color: #b91c1c; }
.admin-field .admin-seo-count.is-bad .admin-seo-count__dot { background: #dc2626; }
@media (max-width: 1100px) {
  .admin-compose__body.is-sidebar-open { grid-template-columns: minmax(0, 1fr); }
  .admin-sidebar {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 20;
    box-shadow: -16px 0 40px rgba(15, 23, 42, .12);
  }
  .admin-compose--post .admin-sidebar { top: 53px; }
}
.admin-views { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 0 0 14px; font-size: 13px; font-weight: 700; }
.admin-views a { color: var(--muted); }
.admin-views a.is-active { color: var(--ink); }
.admin-views a:not(:last-child)::after { content: "|"; margin-left: 10px; color: #cbd5e1; font-weight: 500; }
.admin-panel--wide { overflow-x: auto; }
.admin-pages-table { min-width: 920px; }
.admin-pages-table .is-meta { max-width: 260px; color: #475569; font-size: 13px; font-weight: 700; }
.admin-pages-table .is-meta.is-good { color: #15803d; }
.admin-pages-table .is-meta.is-ok { color: #c2410c; }
.admin-pages-table .is-meta.is-bad { color: #b91c1c; }
.admin-pages-table .is-meta.is-missing { color: #94a3b8; }
.admin-pages-table .is-num { text-align: center; width: 88px; }
.admin-pages-table .is-num strong,
.admin-link-count { display: block; width: 100%; font-size: 16px; font-weight: 800; }
.admin-pages-table .is-num .is-zero { color: #94a3b8; }
.admin-link-count {
  background: none; border: 0; padding: 0; color: var(--green-dark); cursor: pointer; font: inherit;
}
.admin-link-count:hover { text-decoration: underline; }
.admin-links-dialog { border: 0; padding: 0; background: transparent; max-width: 640px; width: calc(100% - 32px); }
.admin-links-dialog::backdrop { background: rgba(15, 23, 42, .45); }
.admin-links-dialog__card { background: #fff; border-radius: 16px; box-shadow: 0 24px 60px rgba(15, 23, 42, .2); overflow: hidden; }
.admin-links-dialog header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.admin-links-dialog h2 { margin: 0; font-size: 16px; }
.admin-links-dialog__close { width: 32px; height: 32px; border: 0; background: #f1f5f9; border-radius: 8px; font-size: 20px; cursor: pointer; }
.admin-links-dialog ul { list-style: none; margin: 0; padding: 12px 18px 18px; display: grid; gap: 10px; max-height: 62vh; overflow: auto; }
.admin-links-dialog li { display: grid; gap: 2px; padding: 10px 12px; border: 1px solid #e8edf2; border-radius: 10px; background: #f8fafc; }
.admin-links-dialog li span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.admin-links-dialog li strong { overflow-wrap: anywhere; }
.admin-links-dialog__url { display: block; font-size: 12px; color: var(--muted); overflow-wrap: anywhere; }
.admin-pages-table__title { font-weight: 800; }
.admin-pages-table__kind { display: block; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.admin-row-actions { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 6px; font-size: 12px; }
.admin-row-actions form { display: inline; margin: 0; }
.admin-seo-dots { display: inline-flex; gap: 6px; align-items: center; }
.admin-seo-dots i { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.admin-seo-dots i.is-good { background: #16a34a; }
.admin-seo-dots i.is-ok { background: #f97316; }
.admin-seo-dots i.is-bad { background: #dc2626; }
.admin-seo-dots i.is-missing { background: #cbd5e1; }
.table { width: 100%; border-collapse: collapse; background: #fff; }
.table th, .table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); font-size: 14px; }
.table th { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; background: #f8fafc; }
.table tr:last-child td { border-bottom: 0; }
.admin-main .table td { overflow-wrap: anywhere; }
.admin-pill {
  display: inline-flex; align-items: center; padding: 3px 8px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
  background: #eef2f6; color: #475569;
}
.admin-pill--publish, .admin-pill--on { background: #e8f5ee; color: var(--green-dark); }
.admin-pill--warn { background: #fff7ed; color: #9a3412; }
.admin-pill--expired, .admin-pill--off { background: #f1f5f9; color: #64748b; }
.admin-pill--banned { background: #fef2f2; color: #991b1b; }
.admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 16px;
    align-items: center;
}
.admin-filters input[type="search"],
.admin-filters select {
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid #d6dde6;
    border-radius: 8px;
    background: #fff;
}
.admin-filters input[type="search"] { min-width: 220px; flex: 1; }
.admin-notice {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 14px 16px;
    margin: 0 0 16px;
}
.admin-notice__code {
    display: block;
    margin-top: 10px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #dcfce7;
    word-break: break-all;
    font-size: 13px;
}
.admin-row-actions--bar {
    margin: 0 0 18px;
    gap: 10px;
}
.admin-row-actions button {
    background: none;
    border: 0;
    padding: 0;
    color: var(--green-dark, #146c36);
    cursor: pointer;
    font: inherit;
}
.admin-row-actions button:hover { text-decoration: underline; }
.admin-warn { color: #9a3412 !important; }
.admin-warn-btn, .admin-delete-btn {
    border: 1px solid #fecaca !important;
    background: #fff !important;
    color: #991b1b !important;
}
.admin-warn-btn {
    border-color: #fed7aa !important;
    color: #9a3412 !important;
}
.admin-inline-ban {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.admin-inline-ban input {
    min-height: 38px;
    padding: 6px 10px;
    border: 1px solid #d6dde6;
    border-radius: 8px;
    min-width: 180px;
}
.admin-user-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin: 0 0 14px;
}
.table tr.is-banned td { background: #fffafa; }
.impersonate-bar {
    position: sticky;
    top: 0;
    z-index: 80;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    background: #0f172a;
    color: #fff;
    font-size: 14px;
}
.impersonate-bar button {
    border: 0;
    border-radius: 8px;
    background: var(--green, #146c36);
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    font: inherit;
}
.admin-pill--draft, .admin-pill--pending { background: #fff7ed; color: #9a3412; }
.admin-approve {
  background: none; border: 0; color: var(--green); font: inherit; font-weight: 700; cursor: pointer; padding: 0;
}
.admin-approve:hover { color: var(--green-dark); }
.admin-delete {
  background: none; border: 0; color: #b91c1c; font: inherit; font-weight: 700; cursor: pointer; padding: 0;
}
.admin-delete:hover { color: #991b1b; }

@media (max-width: 1100px) {
  .city-grid { grid-template-columns: repeat(4, 1fr); }
  .bento__item--half, .bento__item--wide { grid-column: span 6; }
  .bento__item--quarter, .bento__item--quote { grid-column: span 6; }
  .cover-grid, .event-grid, .news-grid, .hub__grid, .feat__grid, .ev-cards, .tc-grid, .walkin__grid { grid-template-columns: repeat(2, 1fr); }
  .listing-layout, .biz-banner__inner, .article-layout, .explore-layout, .explore-pager { grid-template-columns: 1fr; }
  .listing-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "aside"
      "main"
      "jobs";
    gap: 18px;
  }
  .listing-grid--motor {
    grid-template-areas:
      "photos"
      "aside"
      "main"
      "jobs";
  }
  .listing-aside { position: static; top: auto; }
  .listing-aside .ad-slot {
    display: flex;
    min-height: 100px;
    margin-bottom: 12px;
  }
  .article-aside { height: auto; min-height: 0; overflow: visible; }
  .explore-side { height: auto; min-height: 0; overflow: visible; }
  .explore-panel {
    position: static;
    max-height: none;
    overflow: hidden;
  }
  .explore-pager .pager { grid-column: 1; }
  .explore-search {
    grid-template-columns: 1fr 200px auto;
    top: 64px;
  }
  .explore-results .cover-grid, .explore-results .ev-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-main .content-card { padding: 20px; }
  .e-con.e-grid.elementor-element-739fb0d,
  .e-con.e-grid.elementor-element-0a11d93,
  .e-con.e-grid.elementor-element-f680a58,
  .e-con.e-grid.elementor-element-78670b3,
  .e-con.e-grid.elementor-element-a4ec8e8,
  .e-con.e-grid.elementor-element-d8ce2c0,
  .e-con.e-flex.elementor-element-d2870e0 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tc-intro { grid-row: auto; min-height: 280px; }
  .biz-banner__stats { justify-content: flex-start; }
  .listing-hero, .listing-hero--plain { height: auto; min-height: 0; }
  .listing-hero__inner, .listing-hero--plain .listing-hero__inner {
    padding: 18px 0 22px;
  }
  .listing-hero__actions { margin-left: 0; }
  .related-grid, .listing-gallery { grid-template-columns: 1fr 1fr; }
  .related-grid--experts,
  .related .cover-grid--experts {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .content-card { padding: 20px; }
  .add-types { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .mobile-nav.is-open { display: block; }
  .header-account span { display: none; }
  .header-actions { margin-left: auto; }
  .hero { min-height: 280px; height: min(42vh, 380px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; padding: 36px 0 32px; }
}
@media (max-width: 700px) {
  .miss { padding: 36px 0 8px; }
  .miss-type { flex: 1 1 calc(50% - 12px); min-width: 0; }
  .city-grid, .news-grid, .cover-grid, .event-grid, .hub__grid, .feat__grid, .ev-cards, .tc-grid, .walkin__grid, .feat-news__more, .related-grid { grid-template-columns: 1fr; }
  .related-grid--experts,
  .related .cover-grid--experts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bento__grid { grid-template-columns: 1fr; }
  .bento__item--half, .bento__item--wide, .bento__item--quarter, .bento__item--quote { grid-column: auto; }
  .job-card,
  .job-card:has(.job-card__tag),
  .feat-job,
  .feat-biz { grid-template-columns: 1fr; }
  .feat-job__btn, .feat-biz__btn { width: 100%; text-align: center; }
  .feat-biz { grid-template-columns: 48px 1fr; }
  .feat-biz__btn { grid-column: 1 / -1; }
  .job-card__btn { width: 100%; text-align: center; justify-self: stretch; }
  .job-card__tag { text-align: left; max-width: none; }
  .ex-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .ex-card__cat { flex: 0 1 auto; width: auto; max-width: 100%; }
  .ex-card__reviews { justify-content: flex-start; }
  .ex-card__title { min-height: 0; }
  .ex-card__body { padding: 12px 14px 14px; }
  .related { margin-top: 28px; }
  .related h2 { font-size: 1.2rem; line-height: 1.3; margin-bottom: 14px; }
  .header-search, .header-account { display: none; }
  .site-header__inner { gap: 10px; padding: 10px 0; }
  .logo img { width: 118px; }
  .nav-toggle { width: 36px; height: 36px; flex: 0 0 auto; }
  .btn--add { min-width: 40px; min-height: 40px; padding: 0 10px; border-radius: 10px; }
  /* Keep label in accessibility tree (display:none removes it from a11y name). */
  .btn--add__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .hero { min-height: 220px; height: min(38vh, 280px); }
  .hero__inner { padding: 16px 16px 6px; }
  .type-chips {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
    margin: 0; padding: 4px var(--gutter) 16px;
  }
  .chip {
    width: 100%; justify-content: flex-start; min-height: 46px;
    padding: 6px 12px 6px 6px; font-size: 13px;
  }
  .chip__icon { width: 32px; height: 32px; }
  .section { padding: 28px 0; }
  .hero + .section { padding-top: 28px; }
  .explore { padding: 22px 0 48px; }
  .explore-head { margin-bottom: 18px; }
  .explore-head h1 { font-size: 1.55rem; letter-spacing: -.02em; }
  .explore-head p, .explore-head__intro {
    margin-bottom: 16px; font-size: 14px; line-height: 1.55; text-align: left;
  }
  .text-more__body.is-clamped {
    display: block;
    max-height: calc(1.55em * 5);
    overflow: hidden;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
  }
  .text-more:not(.is-open):has(.text-more__body.is-clamped)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1.5rem;
    height: 4.5em;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.15) 25%,
      rgba(255, 255, 255, 0.45) 50%,
      rgba(255, 255, 255, 0.78) 75%,
      rgba(255, 255, 255, 0.96) 90%,
      #fff 100%
    );
  }
  .text-more__btn {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 2px;
    padding: 0;
    border: 0;
    background: none;
    color: var(--green);
    font: inherit;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
  }
  .text-more__btn:hover { color: var(--green-dark); text-decoration: underline; }
  .explore-article { margin-top: 24px; }
  .explore-article .content-card { padding: 20px; }
  .explore-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .explore-tab {
    width: 100%; justify-content: flex-start; min-height: 46px;
    padding: 6px 12px 6px 6px; font-size: 13px; border-radius: 10px;
  }
  .explore-tab .chip__icon { width: 32px; height: 32px; }
  .explore-search { padding: 10px; margin-bottom: 18px; border-radius: 14px; }
  .explore-search .btn { min-width: 0; width: 100%; }
  .explore-search__actions { width: 100%; }
  .explore-search__actions .btn,
  .explore-search__actions .explore-near { flex: 1 1 auto; justify-content: center; }
  .explore-toolbar { flex-wrap: wrap; align-items: flex-start; }
  .page-hero { padding: 22px 0 18px; }
  .city-links { gap: 8px; }
  .city-links a { padding: 7px 10px; font-size: 13px; }
  .article-page { padding: 18px 0 36px; }
  .article-head h1 { font-size: 1.55rem; }
  .listing-hero h1 {
    font-size: 1.35rem; line-height: 1.25; letter-spacing: -.02em;
    overflow-wrap: anywhere;
  }
  .listing-hero__copy { overflow-wrap: anywhere; }
  .listing-hero .crumbs { font-size: 12px; margin: 0 0 8px; }
  .listing-hero .crumbs__now { display: none; }
  .listing-hero__logo { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 10px; }
  .listing-hero__tags { display: none; }
  .listing-hero__meta { display: none; }
  .listing-hero__headline { margin-top: 8px; gap: 8px; }
  .listing-hero__bar, .listing-hero__actions { width: 100%; }
  .listing-hero__actions { display: none; }
  .listing-page { padding-bottom: 88px; }
  .listing-dock {
    display: flex; gap: 8px; align-items: center;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    padding: 10px max(16px, env(safe-area-inset-right)) calc(10px + env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    background: #fff; border-top: 1px solid #e8edf2;
    box-shadow: 0 -10px 24px rgba(15, 23, 42, .08);
  }
  .listing-dock .btn { flex: 1 1 0; min-height: 44px; }
  .listing-dock .btn--line { background: #fff; }
  .listing-aside .aside-card .btn--primary.btn--block { display: none; }
  .listing-aside .aside-card {
    padding: 16px 14px 14px;
    border-radius: 14px;
    margin-bottom: 12px;
  }
  .related__all {
    display: flex;
    margin-top: 16px;
    justify-content: center;
    min-height: 44px;
  }
  .listing-aside .aside-card h2 {
    margin: 0 0 10px;
    font-size: 1rem;
  }
  .detail-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    padding: 10px 0;
  }
  .detail-list span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 600;
  }
  .detail-list strong {
    text-align: left;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.4;
  }
  .detail-list__wide { gap: 3px; }
  .listing-body { padding-top: 18px; }
  .listing-page .content-card { padding: 18px 16px 22px; }
  .listing-page .content-card .prose { overflow-wrap: anywhere; }
  .prose { overflow-x: visible; }
  .prose table {
    display: block;
    width: 100%;
    margin: 0 0 1.4em;
    border: 0;
  }
  .prose thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .prose tbody {
    display: grid;
    gap: 10px;
  }
  .prose tr {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 12px;
  }
  .prose th,
  .prose td {
    display: block;
    width: 100% !important;
    max-width: none;
    padding: 0;
    border: 0;
    white-space: normal;
  }
  .prose td:first-child {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .prose td:not(:first-child) {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
  }
  .job-card { padding: 14px 12px; gap: 10px; }
  .job-card__meta { gap: 4px 10px; font-size: 13px; }
  .job-card__meta em,
  .job-card__meta span { overflow-wrap: anywhere; }
  .ex-card__hours { top: 8px; left: 8px; font-size: 11px; padding: 3px 8px; }
  .section-head {
    flex-wrap: wrap; align-items: flex-start; gap: 6px 12px; margin-bottom: 16px;
  }
  .section-head h2 { font-size: 1.35rem; line-height: 1.25; }
  .section-head a { font-size: 14px; white-space: nowrap; }
  .feat-col { padding: 16px 12px; border-radius: 14px; }
  .feat-col--news { padding: 16px 12px 12px; }
  .feat-col__head { margin-bottom: 12px; padding: 0; }
  .feat-col__head h2 { font-size: 1.2rem; }
  .feat-news__hero {
    display: grid; gap: 10px; color: inherit; background: transparent;
  }
  .feat-news__hero img {
    width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: contain; object-position: center;
    border-radius: 12px; background: #e8eef4;
  }
  .feat-news__overlay {
    position: static; inset: auto; padding: 0 2px 2px;
    background: none;
  }
  .feat-news__overlay em { color: var(--green); }
  .feat-news__overlay strong {
    color: var(--ink); font-size: 1.05rem; line-height: 1.35; margin: 2px 0 4px;
  }
  .feat-news__overlay time { color: var(--muted); }
  .feat-news__more { gap: 14px; margin-top: 14px; }
  .feat-news__more a { gap: 8px; }
  .feat-news__more img {
    width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: contain; object-position: center;
    background: #e8eef4;
  }
  .feat-news__more strong { font-size: 14px; }
  .ev-hero {
    min-height: 0; padding: 20px 16px; border-radius: 16px;
  }
  .ev-hero::before {
    background: linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.88) 55%, rgba(255,255,255,.55) 100%);
  }
  .ev-hero h2 { font-size: 1.45rem; }
  .ev-hero p { font-size: 14px; margin-bottom: 14px; }
  .ev-tabs {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
  }
  .ev-tabs a { text-align: center; padding: 10px 8px; }
  .ev-body { padding: 14px 0 18px; border-radius: 0 0 16px 16px; }
  .ev-toolbar {
    flex-direction: column; align-items: stretch; gap: 12px; padding: 0 0 14px;
  }
  .ev-chips {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; width: 100%;
  }
  .ev-chip {
    display: flex; align-items: center; justify-content: center;
    width: 100%; text-align: center; padding: 10px 8px; box-sizing: border-box;
  }
  .ev-region { width: 100%; }
  .ev-region select { width: 100%; min-width: 0; }
  .ev-cards { gap: 14px; }
  .ev-card { width: 100%; min-width: 0; }
  .ev-card__media img,
  .ev-card__ph {
    height: auto;
    aspect-ratio: 16 / 10;
    display: block;
  }
  .ev-card__countdown { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; }
  .ev-card__countdown strong { font-size: 1rem; }
  .ev-card__countdown span { font-size: 9px; }
  .city-card { min-height: 0; }
  .city-card img { height: 140px; }
  .hero__inner h1 { font-size: clamp(1.45rem, 7vw, 1.85rem); margin-bottom: 6px; }
  .hero__inner p { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding: 32px 0 28px; }
  .footer-bar__inner { justify-content: center; text-align: center; }
  .admin { grid-template-columns: 1fr; }
  .admin-nav { position: static; height: auto; }
  .admin-nav__links { grid-template-columns: repeat(3, 1fr); }
  .admin-main { padding: 20px 16px 32px; }
  .admin-grid { grid-template-columns: 1fr; }
  .admin-author-pick__item { grid-template-columns: auto 40px minmax(0, 1fr); }
  .admin-author-pick__item select { grid-column: 2 / -1; }
  .author-card { grid-template-columns: 1fr; }
  .ev-hero, .walkin__hero { padding: 20px 14px; }
  .walkin__tabs {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px;
  }
  .walkin__tabs a { text-align: center; }
  .explore-search { grid-template-columns: 1fr; }
  .explore-search__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .explore-results .cover-grid, .explore-results .ev-cards { grid-template-columns: 1fr; }
  .review-form__guest { grid-template-columns: 1fr; }
  .e-con.e-grid.elementor-element-739fb0d,
  .e-con.e-grid.elementor-element-0a11d93,
  .e-con.e-grid.elementor-element-f680a58,
  .e-con.e-grid.elementor-element-78670b3,
  .e-con.e-grid.elementor-element-a4ec8e8,
  .e-con.e-grid.elementor-element-d8ce2c0,
  .e-con.e-flex.elementor-element-d2870e0 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .site-header__inner { gap: 8px; padding: 10px 0; }
  .logo img { width: 100px; }
  .btn--add { min-width: 38px; min-height: 38px; padding: 0; }
  .explore-head h1 { font-size: 1.35rem; }
  .add-types { grid-template-columns: 1fr 1fr; }
  .listing-hero--plain .listing-hero__inner,
  .listing-hero__inner { padding: 14px 0 16px; }
  .listing-hero h1 { font-size: 1.2rem; margin-top: 8px; }
  .listing-hero .badge { font-size: 11px; padding: 3px 8px; }
  :root { --gutter: 14px; }
  .hero {
    min-height: 0; height: auto;
    padding-bottom: 0;
  }
  .hero__inner { padding: 28px 14px 10px; min-height: 150px; }
  .hero__inner h1 { font-size: 1.35rem; line-height: 1.2; }
  .hero__inner p { font-size: .95rem; }
  .type-chips {
    gap: 8px; padding: 4px 14px 16px; margin: 0;
  }
  .chip {
    min-height: 44px; padding: 6px 10px 6px 6px; font-size: 12px; gap: 8px;
  }
  .chip__icon { width: 28px; height: 28px; }
  .section { padding: 22px 0; }
  .section-head h2 { font-size: 1.2rem; }
  .city-card img { height: 120px; }
  .feat-col__head h2 { font-size: 1.1rem; }
  .tc { padding: 32px 0 28px; }
  .tc h2 { font-size: 1.35rem; }
  .tc-tab { padding: 8px 12px; font-size: 13px; }
  .walkin__hero, .ev-hero { padding: 20px 14px; }
  .biz-banner__inner { padding: 24px 16px; }
}

/* Community forums */
.community-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 28px;
}
.community-stats > div {
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 14px;
}
.community-stats strong { display: block; font-size: 1.35rem; letter-spacing: -.02em; }
.community-stats span { color: var(--muted); font-size: 13px; }
.community-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(240px, .9fr);
  gap: 36px;
  align-items: start;
}
.community-heading { margin: 0 0 14px; font-size: 1.15rem; }
.community--narrow { max-width: 820px; }
.community--thread { max-width: none; }
.section--forum { background: #f5f7fa; padding-top: 28px; padding-bottom: 56px; }
.forum-topbar {
  background: var(--navy); color: #fff; padding: 14px 0;
}
.forum-topbar__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.forum-topbar__crumb { margin: 0; font-size: 13px; color: rgba(255,255,255,.55); }
.forum-topbar__crumb a { color: rgba(255,255,255,.75); }
.forum-topbar__crumb a:hover { color: #fff; }
.forum-topbar__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.forum-topbar .btn--ghost {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35);
  min-height: 40px; padding: 0 14px; border-radius: 10px; font-weight: 700; font-size: 14px;
  display: inline-flex; align-items: center;
}
.forum-topbar .btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.thread-head {
  background: #fff; border: 1px solid #eef2f6; border-radius: 16px;
  padding: 22px 22px 18px; margin-bottom: 14px;
}
.thread-head h1 {
  margin: 0 0 16px; font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -.02em; line-height: 1.25; color: var(--ink);
}
.thread-head__meta { display: flex; align-items: center; gap: 12px; }
.thread-head__meta strong { display: inline; color: var(--ink); font-size: 15px; }
.thread-head__meta p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.forum-cat-head h1 { margin-bottom: 8px; }
.forum-cat-head__lede { margin: 0 0 10px; color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 42em; }
.forum-cat-head__meta { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; }
.page-hero--thread h1 { max-width: 18ch; }
.thread-hero-meta {
  display: flex; align-items: center; gap: 12px; margin-top: 16px;
}
.thread-hero-meta strong { display: block; color: #fff; font-size: 15px; }
.thread-hero-meta p { margin: 2px 0 0; color: rgba(255,255,255,.62); font-size: 13px; }
.thread-hero-meta .forum-loc { color: rgba(255,255,255,.55); margin-left: 6px; }
.forum-avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px; flex: 0 0 42px;
  font-size: 13px; font-weight: 800; letter-spacing: .02em; color: #fff;
}
.forum-avatar--pine { background: #0f7039; }
.forum-avatar--teal { background: #0f766e; }
.forum-avatar--navy { background: #1e3a5f; }
.forum-avatar--sand { background: #9a6b2f; }
.forum-avatar--olive { background: #4d7c0f; }
.forum-cats, .forum-threads, .forum-recent, .forum-posts { list-style: none; margin: 0; padding: 0; }
.forum-cat {
  display: flex; justify-content: space-between; gap: 20px; align-items: flex-start;
  padding: 16px 18px; margin-bottom: 10px; color: inherit;
  background: #fff; border: 1px solid #eef2f6; border-radius: 14px;
}
.forum-cat:hover { color: inherit; border-color: #d8e8de; }
.forum-cat:hover strong { color: var(--green); }
.forum-cat__copy { display: grid; gap: 4px; min-width: 0; }
.forum-cat__copy strong { font-size: 1.05rem; }
.forum-cat__copy span, .forum-cat__meta, .forum-thread__meta, .forum-recent span {
  color: var(--muted); font-size: 13px;
}
.forum-cat__meta { display: grid; gap: 2px; text-align: right; white-space: nowrap; }
.forum-side-card {
  background: #fff; border: 1px solid #eef2f6; border-radius: 16px;
  padding: 18px; margin-bottom: 14px;
}
.forum-side-card__lede { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.forum-side-card .btn--ghost {
  display: inline-flex; width: 100%; justify-content: center;
  border: 1px solid var(--line); background: #fff; color: var(--ink); border-radius: 10px;
  min-height: 40px; align-items: center; font-weight: 700; font-size: 14px;
}
.forum-side-card .btn--ghost:hover { border-color: #cbd5e1; color: var(--green-dark); }
.forum-recent li { padding: 12px 0; border-bottom: 1px solid var(--line); display: grid; gap: 4px; }
.forum-recent li:last-child { border-bottom: 0; padding-bottom: 0; }
.forum-recent a { color: var(--ink); font-weight: 600; }
.forum-recent a:hover { color: var(--green); }
.forum-threads { display: grid; gap: 10px; }
.forum-thread {
  padding: 16px 18px; display: grid; gap: 6px;
  background: #fff; border: 1px solid #eef2f6; border-radius: 14px;
}
.forum-thread.is-pinned { border-color: #b7dfc6; background: #f7fcf9; }
.forum-thread__title { color: var(--ink); font-weight: 700; font-size: 1.05rem; }
.forum-thread__title:hover { color: var(--green); }
.forum-thread__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; }
.forum-badge {
  display: inline-block; margin-right: 0; padding: 2px 8px; border-radius: 999px;
  background: #ecfdf3; color: #166534; font-size: 11px; font-weight: 700; vertical-align: middle;
}
.forum-badge--muted { background: #f1f5f9; color: #475569; }
.forum-loc { color: var(--muted); font-size: 13px; font-weight: 500; }
.forum-posts { display: grid; gap: 14px; }
.forum-post {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid #eef2f6;
  border-radius: 16px;
}
.forum-post.is-op { border-color: #c5e6d1; box-shadow: 0 8px 22px rgba(15, 112, 57, .06); }
.forum-post__avatar { width: 48px; height: 48px; border-radius: 14px; font-size: 14px; }
.forum-post__main { min-width: 0; }
.forum-post__head {
  display: flex; flex-wrap: wrap; align-items: flex-start; gap: 8px 12px; margin-bottom: 10px;
}
.forum-post__who { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 8px; min-width: 0; }
.forum-post__who strong { font-size: 15px; }
.forum-post__head time { color: var(--muted); font-size: 12px; margin-left: auto; white-space: nowrap; }
.forum-post__body { white-space: normal; line-height: 1.65; overflow-wrap: anywhere; color: #1f2937; }
.forum-post__actions { margin-top: 12px; }
.forum-post__actions button {
  background: none; border: 0; padding: 0; color: var(--muted); font: inherit; font-size: 13px; cursor: pointer;
}
.forum-post__actions button:hover { color: #b91c1c; }
.forum-reply {
  margin-top: 18px; padding: 20px; background: #fff;
  border: 1px solid #eef2f6; border-radius: 16px;
}
.forum-reply__head { margin-bottom: 14px; }
.forum-reply__head h2 { margin: 0 0 4px; font-size: 1.15rem; }
.forum-reply__head p { margin: 0; color: var(--muted); font-size: 14px; }
.forum-reply__gate { margin: 0; }
.forum-form { display: grid; gap: 14px; }
.forum-form label { display: grid; gap: 6px; }
.forum-form label > span { font-weight: 600; font-size: 14px; }
.forum-form input, .forum-form select, .forum-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px;
  font: inherit; background: #fff; color: var(--ink);
}
.forum-form textarea { resize: vertical; min-height: 120px; }
.forum-form__actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.forum-form__actions .btn--ghost {
  color: var(--ink); border-color: var(--line); background: #fff;
}
.forum-form__actions .btn--ghost:hover { border-color: #cbd5e1; color: var(--ink); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 860px) {
  .community-layout { grid-template-columns: 1fr; gap: 28px; }
  .forum-cat { flex-direction: column; gap: 10px; }
  .forum-cat__meta { text-align: left; grid-auto-flow: column; grid-template-columns: auto auto; gap: 12px; }
  .forum-post { grid-template-columns: 40px minmax(0, 1fr); gap: 12px; padding: 14px; }
  .forum-post__avatar { width: 40px; height: 40px; border-radius: 12px; }
  .forum-post__head time { margin-left: 0; width: 100%; }
  .thread-head { padding: 16px; }
  .forum-topbar__inner { align-items: flex-start; }
  .community-stats { grid-template-columns: 1fr; }
}

.expert-portfolio { margin-top: 0; }
.listing-main > .expert-portfolio + .content-card,
.listing-main > .content-card + .content-card { margin-top: 18px; }
.motor-gallery { margin-top: 0; margin-bottom: 0; padding-top: 16px; padding-bottom: 16px; }
.listing-photos .motor-gallery { margin-bottom: 0; }
.motor-gallery .expert-portfolio__carousel { margin: 0; }
.expert-portfolio__carousel {
  display: grid;
  gap: 12px;
}
.expert-portfolio__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
  background: #e5e7eb;
  border: 1px solid #e8edf2;
}
.expert-portfolio__stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-portfolio__stage img[hidden] { display: none; }
.expert-portfolio__solo {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #e5e7eb;
  border: 1px solid #e8edf2;
}
.expert-portfolio__solo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-portfolio__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 8px;
}
.expert-portfolio__thumb {
  appearance: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e5e7eb;
  cursor: pointer;
  transition: border-color .15s ease, opacity .15s ease;
}
.expert-portfolio__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-portfolio__thumb:hover { opacity: .92; }
.expert-portfolio__thumb.is-active {
  border-color: var(--green);
}
@media (max-width: 700px) {
  .expert-portfolio__stage,
  .expert-portfolio__solo { aspect-ratio: 4 / 3; border-radius: 14px; }
  .expert-portfolio__thumbs { grid-template-columns: repeat(auto-fit, minmax(56px, 1fr)); gap: 6px; }
}
.listing-photo__stage {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #e5e7eb;
}
.listing-photo__stage img {
  display: block; width: 100%; height: 100%;
  object-fit: cover;
}
.listing-photo__stage img[hidden] { display: none; }
.listing-photo--expert .listing-photo__stage {
  aspect-ratio: 1 / 1;
  background: #f1f5f9;
}
.listing-photo--expert .listing-photo__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.listing-photo__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border: 0; border-radius: 999px;
  background: rgba(11, 18, 32, .72); color: #fff;
  display: grid; place-items: center; cursor: pointer;
  opacity: .92; transition: background .15s ease, opacity .15s ease;
}
.listing-photo__nav:hover { background: rgba(11, 18, 32, .92); opacity: 1; }
.listing-photo__nav--prev { left: 10px; }
.listing-photo__nav--next { right: 10px; }
.listing-photo__expand {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 18, 32, .72);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: .94;
  transition: background .15s ease, opacity .15s ease, transform .15s ease;
}
.listing-photo__expand:hover,
.listing-photo__expand:focus-visible {
  background: rgba(11, 18, 32, .92);
  opacity: 1;
  outline: none;
}
.listing-photo__expand:active { transform: scale(.96); }
body.gallery-lightbox-open { overflow: hidden; }
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: max(12px, env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) max(12px, env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  background: rgba(7, 12, 22, .92);
  backdrop-filter: blur(4px);
}
.gallery-lightbox__frame {
  max-width: min(1200px, 100%);
  max-height: min(90vh, 100%);
  display: grid;
  place-items: center;
}
.gallery-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(86vh, 100%);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .45);
}
.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s ease;
}
.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover { background: rgba(255, 255, 255, .24); }
.gallery-lightbox__close {
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
}
.gallery-lightbox__nav--prev { left: max(12px, env(safe-area-inset-left)); top: 50%; transform: translateY(-50%); }
.gallery-lightbox__nav--next { right: max(12px, env(safe-area-inset-right)); top: 50%; transform: translateY(-50%); }
.gallery-lightbox__count {
  position: absolute;
  left: 50%;
  bottom: max(16px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, .75);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 700px) {
  .listing-photo__expand {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }
  .gallery-lightbox__nav {
    width: 40px;
    height: 40px;
  }
  .gallery-lightbox__img {
    max-height: min(78vh, 100%);
    border-radius: 6px;
  }
}
.listing-photo__count {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
  padding: 4px 10px; border-radius: 999px;
  background: rgba(11, 18, 32, .72); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .02em;
}
.office-list__cover {
  margin: 0 0 10px; border-radius: 12px; overflow: hidden;
  aspect-ratio: 16 / 9; background: #e5e7eb;
}
.office-list__cover img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.office-list__item { padding-bottom: 16px; }

/* Location-specific services */
.services-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 16px; margin-bottom: 12px; }
.services-head .content-card__kicker { margin: 0; }
.services-head__note { margin: 0; color: var(--muted); font-size: 13px; }
.service-areas {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 8px 14px;
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.service-areas__item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.service-areas__item input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--brand, #1f8f4e);
}
.service-areas__all {
  grid-column: 1 / -1;
  padding-bottom: 6px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.services-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 12px; margin: 0 0 16px;
}
.services-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0; flex: 1;
}
.services-kind { margin: 0; }
.services-kind select {
  min-height: 40px; padding: 8px 36px 8px 12px; border: 1px solid var(--line);
  border-radius: 999px; background: #fff; font: inherit; font-size: 13px; font-weight: 700;
  color: var(--ink); cursor: pointer;
}
.services-tabs__btn {
  appearance: none; border: 1px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 999px; padding: 8px 12px; font: inherit; font-size: 13px; font-weight: 700;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.services-tabs__btn span {
  min-width: 1.4em; padding: 1px 6px; border-radius: 999px;
  background: #f1f5f9; color: var(--muted); font-size: 11px;
}
.services-tabs__btn.is-active {
  border-color: var(--green); background: #ecfdf3; color: var(--green-dark);
}
.services-tabs__btn.is-active span { background: #dcfce7; color: var(--green-dark); }
.offer-card[hidden] { display: none !important; }
.offer-empty { grid-column: 1 / -1; color: var(--muted); padding: 8px 0; list-style: none; }
@media (max-width: 700px) {
  .services-head {
    flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 10px;
  }
  .services-toolbar {
    flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 14px;
  }
  .services-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
    padding-bottom: 2px;
    margin: 0 -4px;
    padding-left: 4px;
    padding-right: 4px;
  }
  .services-tabs::-webkit-scrollbar { display: none; }
  .services-tabs__btn {
    flex: 0 0 auto;
    max-width: 78vw;
    padding: 7px 10px;
    font-size: 12px;
    white-space: nowrap;
  }
  .services-tabs__btn span { font-size: 10px; }
  .services-kind select {
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .offer-card {
    padding: 14px;
    border-radius: 12px;
  }
  .offer-card h3 { font-size: .98rem; }
  .listing-main > .content-card {
    padding: 18px 16px 20px;
    border-radius: 14px;
  }
}
.office-list__item.is-active {
  outline: 2px solid rgba(15, 112, 57, .28);
  outline-offset: 4px;
  border-radius: 12px;
}
.office-list__select {
  width: 100%; appearance: none; border: 0; background: transparent; padding: 0;
  text-align: left; cursor: pointer; color: inherit; font: inherit;
  display: grid; gap: 10px;
}
.office-list__select-copy { display: grid; gap: 2px; }
.office-list__select-copy strong {
  font-size: 15px; display: flex; align-items: center; gap: 8px;
}
.office-list__select-copy strong em {
  font-style: normal; font-size: 11px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--green);
}
.office-list__select-copy span { color: var(--muted); font-size: 12px; font-weight: 600; }
.admin-location-services {
  margin-top: 0; padding: 14px; border: 1px solid #e8edf2; border-radius: 14px; background: #f8fafc;
  display: grid; gap: 12px;
}
.admin-location-services__head { display: grid; gap: 2px; }
.admin-location-services__head strong {
  font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: #64748b;
}
.admin-location-services__head span { color: var(--muted); font-size: 12px; }
.admin-location-services__list { display: grid; gap: 10px; }
.admin-location-service {
  padding: 12px; border: 1px solid #e8edf2; border-radius: 12px; background: #fff;
  display: grid; gap: 8px;
}
