/* ============================================================
   HorseTradingPost.com — design system
   Mobile-first, no framework, WCAG AA contrast
   ============================================================ */
:root {
  /* navy from the Horse-Classifieds badge logo; gold accent family (WCAG-AA checked) */
  --navy-900: #122840;
  --navy-800: #1b3a5c;
  --navy-700: #23486e;
  --navy-600: #2f5a85;
  --navy-100: #e8eef5;
  --tan-50:  #faf7f2;
  --tan-100: #f3ede2;
  --tan-200: #e7dcc8;
  --brown-700: #5c4632;
  --gold-300: #e9b757;
  --gold-500: #d4a133;
  --gold-600: #c8922d;
  --gold-700: #7d641a;
  --ink-900: #1e2420;
  --ink-700: #3d453f;
  --ink-500: #5f6a63;
  --white: #ffffff;
  --danger: #b3372f;
  --success: #2c7a4b;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-1: 0 1px 3px rgba(30, 36, 32, .08), 0 1px 2px rgba(30, 36, 32, .04);
  --shadow-2: 0 6px 20px rgba(30, 36, 32, .12);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink-900);
  background: var(--tan-50); line-height: 1.55; font-size: 16px;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-700); }
h1, h2, h3 { line-height: 1.2; margin: 0 0 .5em; }
h1 { font-size: clamp(1.5rem, 3.6vw, 2.2rem); }
h2 { font-size: clamp(1.2rem, 2.6vw, 1.6rem); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--gold-500);
  color: var(--ink-900); padding: 10px 16px; z-index: 200; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 600; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; border-radius: var(--radius);
  padding: 10px 18px; min-height: 44px; transition: background .15s, color .15s, border-color .15s;
}
.btn-primary { background: var(--navy-800); color: var(--white); }
.btn-primary:hover { background: var(--navy-700); }
.btn-accent { background: var(--gold-500); color: var(--ink-900); }
.btn-accent:hover { background: var(--gold-600); color: var(--ink-900); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline { background: var(--white); color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-100); }
.btn-danger { background: var(--white); color: var(--danger); border-color: var(--danger); }
.btn-danger:hover { background: #fbeeed; }
.btn-lg { padding: 14px 26px; font-size: 1.06rem; }
.btn-sm { min-height: 36px; padding: 6px 12px; font-size: .9rem; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--gold-500); outline-offset: 2px;
}

/* ---------- header ---------- */
.site-header {
  background: var(--navy-800); color: var(--white);
  position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-1);
}
.header-inner { display: flex; align-items: center; gap: 16px; min-height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); }
.brand-mark { color: var(--gold-500); flex: none; }
.brand-text { font-weight: 800; font-size: 1.15rem; letter-spacing: .2px; white-space: nowrap; }
.brand-text span { color: var(--gold-300); } /* light gold: ≥4.5:1 on the navy header */
.brand-logo { height: 44px; width: 44px; flex: none; border-radius: 50%; }
.main-nav { display: none; gap: 4px; margin-left: 8px; }
.main-nav a {
  color: var(--white); text-decoration: none; font-weight: 600; padding: 8px 14px;
  border-radius: var(--radius);
}
.main-nav a:hover { background: rgba(255,255,255,.12); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.btn-post span { display: none; }
.btn-post { padding: 10px 12px; }
.nav-toggle { background: none; border: 0; color: var(--white); padding: 8px; cursor: pointer; display: block; }

.user-menu { position: relative; }
.user-menu summary { list-style: none; cursor: pointer; display: block; }
.user-menu summary::-webkit-details-marker { display: none; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--gold-500); color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center; font-weight: 700;
}
.user-menu-panel {
  position: absolute; right: 0; top: calc(100% + 8px); background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-2); min-width: 180px; padding: 6px; z-index: 50;
}
.user-menu-panel a { display: block; padding: 10px 14px; text-decoration: none; color: var(--ink-900); border-radius: 6px; }
.user-menu-panel a:hover { background: var(--tan-100); }

.signin-btn { display: none; }
@media (min-width: 560px) { .signin-btn { display: inline-flex; } .main-nav .nav-auth { display: none; } }
@media (min-width: 800px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
  .btn-post span { display: inline; }
  .btn-post { padding: 10px 18px; }
}
@media (max-width: 380px) { .brand-text { font-size: 1rem; } }
/* mobile nav opened */
.nav-open .main-nav {
  display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0;
  background: var(--navy-800); padding: 8px 16px 16px; box-shadow: var(--shadow-2);
}

/* ---------- hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white); padding: 40px 0 52px;
}
.hero h1 { margin-bottom: .3em; }
.hero p.lede { font-size: 1.08rem; opacity: .92; max-width: 46ch; margin: 0 0 24px; }
.search-panel {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-2);
  padding: 14px; display: grid; gap: 10px;
}
.search-panel form { display: grid; gap: 10px; }
@media (min-width: 720px) {
  .search-panel form { grid-template-columns: 2fr 1.2fr 1.2fr auto; align-items: end; }
}
.hero-stats { display: flex; flex-wrap: wrap; gap: 18px 34px; margin-top: 26px; }
.hero-stats .stat b { display: block; font-size: 1.4rem; color: var(--gold-500); }
.hero-stats .stat span { font-size: .9rem; opacity: .85; }

/* ---------- forms ---------- */
label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 4px; color: var(--ink-700); }
input, select, textarea {
  font: inherit; width: 100%; padding: 10px 12px; min-height: 44px;
  border: 1px solid #c9c2b4; border-radius: var(--radius); background: var(--white); color: var(--ink-900);
}
textarea { min-height: 120px; resize: vertical; }
.field { margin-bottom: 14px; }
.field .hint { font-size: .85rem; color: var(--ink-500); margin-top: 3px; }
.field .error-text { color: var(--danger); font-size: .88rem; margin-top: 3px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.form-row { display: grid; gap: 12px; }
@media (min-width: 640px) { .form-row.cols-2 { grid-template-columns: 1fr 1fr; } .form-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
fieldset { border: 1px solid var(--tan-200); border-radius: var(--radius); padding: 16px; margin: 0 0 18px; background: var(--white); }
legend { font-weight: 700; padding: 0 8px; }

/* ---------- cards / grids ---------- */
.section { padding: 34px 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.section-head a { font-weight: 600; white-space: nowrap; }

.card-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
.listing-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-1); display: flex; flex-direction: column; position: relative;
  transition: box-shadow .15s, transform .15s;
}
.listing-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.listing-card .thumb { aspect-ratio: 4/3; background: var(--tan-100); position: relative; }
.listing-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.listing-card .thumb .no-photo {
  display: flex; align-items: center; justify-content: center; height: 100%; color: var(--tan-200);
}
.badge {
  position: absolute; top: 10px; left: 10px; background: var(--gold-500); color: var(--ink-900);
  padding: 3px 10px; font-size: .78rem; font-weight: 700; border-radius: 999px;
}
.badge.badge-status { background: var(--ink-700); color: var(--white); }
.listing-card .body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.listing-card h3 { font-size: 1.02rem; margin: 0; }
.listing-card h3 a { color: var(--ink-900); text-decoration: none; }
.listing-card h3 a::after { content: ""; position: absolute; inset: 0; }
.listing-card .meta { color: var(--ink-500); font-size: .88rem; }
.listing-card .price { font-weight: 800; color: var(--navy-800); font-size: 1.06rem; margin-top: auto; }

/* ---------- browse layout ---------- */
.browse-layout { display: grid; gap: 22px; padding: 26px 0 40px; }
@media (min-width: 900px) { .browse-layout { grid-template-columns: 260px 1fr; align-items: start; } }
.filters {
  background: var(--white); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow-1);
}
.filters h2 { font-size: 1.05rem; }
.filters details { border-top: 1px solid var(--tan-100); padding: 10px 0; }
.filters details summary { font-weight: 600; cursor: pointer; }
.filters .filter-body { padding-top: 10px; }
.filters-toggle { margin-bottom: 12px; }
@media (min-width: 900px) { .filters-toggle { display: none; } .filters { display: block !important; } }

.result-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; justify-content: space-between; margin-bottom: 14px; }
.result-bar .count { color: var(--ink-500); }
.result-bar select { width: auto; min-height: 40px; }

.pagination { display: flex; gap: 6px; justify-content: center; margin: 28px 0 8px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 42px; min-height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius); text-decoration: none; font-weight: 600; padding: 0 10px;
}
.pagination a { background: var(--white); color: var(--navy-800); box-shadow: var(--shadow-1); }
.pagination a:hover { background: var(--navy-100); }
.pagination .current { background: var(--navy-800); color: var(--white); }

/* ---------- listing detail ---------- */
.detail-layout { display: grid; gap: 24px; padding: 24px 0 44px; }
@media (min-width: 960px) { .detail-layout { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; } }
.gallery { border-radius: var(--radius-lg); overflow: hidden; background: var(--ink-900); }
.gallery-main { aspect-ratio: 4/3; position: relative; }
.gallery-main img, .gallery-main iframe { width: 100%; height: 100%; object-fit: contain; border: 0; }
.gallery-thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; background: var(--ink-900); }
.gallery-thumbs button {
  flex: none; width: 76px; height: 58px; border-radius: 8px; overflow: hidden; border: 2px solid transparent;
  padding: 0; cursor: pointer; background: none;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button[aria-current="true"] { border-color: var(--gold-500); }
.gallery-thumbs .video-thumb { display:flex; align-items:center; justify-content:center; background: var(--navy-700); color: var(--white); }

.detail-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); padding: 20px; }
.price-line { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.price-big { font-size: 1.7rem; font-weight: 800; color: var(--navy-800); }
.spec-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.spec-table th, .spec-table td { text-align: left; padding: 8px 6px; border-bottom: 1px solid var(--tan-100); vertical-align: top; }
.spec-table th { color: var(--ink-500); font-weight: 600; width: 42%; }
.description { white-space: pre-line; overflow-wrap: break-word; }

.pedigree { overflow-x: auto; }
.pedigree table { border-collapse: collapse; width: 100%; min-width: 560px; }
.pedigree td {
  border: 1px solid var(--tan-200); padding: 8px 10px; background: var(--white);
  font-size: .9rem;
}
.pedigree .gen0 { background: var(--navy-100); font-weight: 700; }
.pedigree .sire-line { border-left: 4px solid var(--navy-600); }
.pedigree .dam-line { border-left: 4px solid var(--gold-500); }
.pedigree .unknown { color: var(--ink-500); font-style: italic; }

.seller-box { position: sticky; top: 76px; }
.seller-box .avatar { width: 46px; height: 46px; font-size: 1.2rem; }
.seller-head { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.contact-form textarea { min-height: 90px; }

/* ---------- post ad wizard ---------- */
.wizard { max-width: 760px; margin: 0 auto; padding: 24px 0 60px; }
.wizard-steps { display: flex; gap: 4px; margin: 0 0 22px; padding: 0; list-style: none; }
.wizard-steps .step {
  flex: 1; text-align: center; font-size: .82rem; font-weight: 600; color: var(--ink-500);
  padding: 8px 4px; border-bottom: 4px solid var(--tan-200);
}
.wizard-steps .step[aria-current="step"] { color: var(--navy-800); border-color: var(--gold-500); }
.wizard-steps .step.done { color: var(--navy-700); border-color: var(--navy-600); }
.wizard-panel { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); padding: 22px; }
.wizard-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 20px; }

.photo-drop {
  border: 2px dashed var(--navy-600); border-radius: var(--radius-lg); background: var(--navy-100);
  padding: 26px 16px; text-align: center; cursor: pointer;
}
.photo-drop strong { color: var(--navy-800); }
.photo-drop input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.photo-previews { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 10px; margin-top: 14px; }
.photo-previews .ph { position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; background: var(--tan-100); }
.photo-previews .ph img { width: 100%; height: 100%; object-fit: cover; }
.photo-previews .ph button {
  position: absolute; top: 4px; right: 4px; background: rgba(30,36,32,.75); color: var(--white);
  border: 0; border-radius: 50%; width: 28px; height: 28px; cursor: pointer; font-size: 1rem; line-height: 1;
}
.photo-previews .ph .cover-tag { position: absolute; left: 4px; bottom: 4px; background: var(--gold-500); font-size: .7rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; }

.pedigree-grid { display: grid; gap: 10px; }
@media (min-width: 640px) { .pedigree-grid { grid-template-columns: 1fr 1fr; } }
.pedigree-col h3 { font-size: .98rem; border-bottom: 2px solid var(--tan-200); padding-bottom: 6px; }
.pedigree-col .gen-2 { margin-left: 18px; }

/* ---------- auth ---------- */
.auth-wrap { max-width: 430px; margin: 40px auto 70px; padding: 0 16px; }
.auth-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-2); padding: 28px; }
.auth-card h1 { text-align: center; font-size: 1.5rem; }
.social-btns { display: grid; gap: 10px; margin: 18px 0; }
.btn-social {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  border: 1px solid #c9c2b4; background: var(--white); color: var(--ink-900);
}
.btn-social:hover { background: var(--tan-100); }
.btn-social.apple { background: #000; color: #fff; border-color: #000; }
.btn-social.apple:hover { background: #222; }
.divider { display: flex; align-items: center; gap: 12px; color: var(--ink-500); font-size: .88rem; margin: 16px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--tan-200); }
.auth-alt { text-align: center; margin-top: 16px; font-size: .95rem; }

/* ---------- account ---------- */
.page-head { padding: 26px 0 6px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.my-listing-row {
  display: flex; gap: 14px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1); padding: 12px; align-items: center; flex-wrap: wrap;
}
.my-listing-row .thumb { width: 96px; height: 72px; border-radius: 8px; overflow: hidden; flex: none; background: var(--tan-100); }
.my-listing-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.my-listing-row .grow { flex: 1; min-width: 160px; }
.my-listing-row .actions { display: flex; gap: 8px; flex-wrap: wrap; }
.status-pill { display: inline-block; padding: 2px 10px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.status-active { background: var(--navy-100); color: var(--navy-800); }
.status-sold { background: var(--tan-200); color: var(--brown-700); }
.status-draft, .status-expired { background: #eee; color: var(--ink-500); }

/* messages */
.msg-layout { display: grid; gap: 16px; padding-bottom: 50px; }
@media (min-width: 860px) { .msg-layout { grid-template-columns: 320px 1fr; } }
.conv-list { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); overflow: hidden; }
.conv-item { display: block; width:100%; text-align:left; padding: 13px 16px; border: 0; border-bottom: 1px solid var(--tan-100); background: none; cursor: pointer; font: inherit; }
.conv-item:hover, .conv-item[aria-current="true"] { background: var(--navy-100); }
.conv-item .who { font-weight: 700; }
.conv-item .preview { color: var(--ink-500); font-size: .88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.conv-item .unread-dot { display: inline-block; width: 10px; height: 10px; background: var(--gold-500); border-radius: 50%; margin-left: 6px; }
.thread { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-1); display: flex; flex-direction: column; min-height: 420px; }
.thread-msgs { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 10px; overflow-y: auto; max-height: 55vh; }
.bubble { max-width: 78%; padding: 10px 14px; border-radius: 14px; }
.bubble.mine { align-self: flex-end; background: var(--navy-800); color: var(--white); border-bottom-right-radius: 4px; }
.bubble.theirs { align-self: flex-start; background: var(--tan-100); border-bottom-left-radius: 4px; }
.bubble time { display: block; font-size: .72rem; opacity: .7; margin-top: 3px; }
.thread-compose { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--tan-100); }
.thread-compose textarea { min-height: 44px; max-height: 130px; }

/* ---------- misc ---------- */
.notice { padding: 12px 16px; border-radius: var(--radius); margin: 14px 0; }
.notice-error { background: #fbeeed; color: var(--danger); border: 1px solid #eacfcd; }
.notice-success { background: var(--navy-100); color: var(--navy-800); border: 1px solid #cfe3d6; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-500); }
.empty-state svg { margin: 0 auto 14px; color: var(--tan-200); }
.breadcrumbs { font-size: .88rem; color: var(--ink-500); padding-top: 18px; }
.breadcrumbs a { color: var(--ink-500); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--white); border: 1px solid var(--tan-200); padding: 6px 14px; border-radius: 999px;
  text-decoration: none; color: var(--ink-700); font-size: .9rem; font-weight: 600;
}
.chip:hover { border-color: var(--navy-600); color: var(--navy-800); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.4em; }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; gap: 18px; max-width: 980px; margin: 0 auto; }
@media (min-width: 760px) { .pricing-grid { grid-template-columns: 1fr 1fr 1fr; align-items: stretch; } }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-1);
  padding: 26px 22px; display: flex; flex-direction: column; gap: 10px; text-align: center;
}
.pricing-card h2 { margin: 6px 0 0; }
.pricing-featured { border: 2px solid var(--gold-500); box-shadow: var(--shadow-2); }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--navy-800); margin: 0; }
.pricing-price span { font-size: 1rem; font-weight: 600; color: var(--ink-500); }
.pricing-features { list-style: none; margin: 0 0 12px; padding: 0; text-align: left; flex: 1; }
.pricing-features li { padding: 7px 0 7px 26px; position: relative; border-bottom: 1px solid var(--tan-100); font-size: .95rem; }
.pricing-features li::before { content: "✓"; position: absolute; left: 4px; color: var(--success); font-weight: 700; }

/* ---------- spotlight ads ---------- */
.listing-card.spotlight { border: 2px solid var(--gold-500); background: #fdf9ef; }
.listing-card.spotlight h3 a { font-weight: 800; }
.listing-card.spotlight .price { font-weight: 800; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.85); margin-top: 40px; }
.footer-grid { display: grid; gap: 28px; padding: 40px 16px 24px; grid-template-columns: 1fr 1fr; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; padding: 48px 16px 28px; } }
.footer-brand { font-weight: 800; font-size: 1.15rem; color: var(--white); margin: 0 0 6px; }
.footer-brand span { color: var(--gold-500); }
.footer-tag { font-size: .9rem; margin: 0; opacity: .8; }
.site-footer h2 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold-500); margin: 0 0 10px; }
.site-footer nav a { display: block; color: rgba(255,255,255,.85); text-decoration: none; padding: 4px 0; font-size: .95rem; }
.site-footer nav a:hover { color: var(--white); text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 16px; font-size: .85rem; opacity: .7; }
.footer-bottom p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
