/* Auto Trading Experts — shared styles */
:root {
  --primary: #2C5F2E;
  --accent: #8B4513;
  --bg: #FAFAF7;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --border: #e2e2dc;
  --card: #fff;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --layout-max: 1200px;
  --layout-pad: clamp(16px, 4vw, 24px);
  --section-gap: 2.75rem;
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --shadow-card: 0 2px 10px rgba(30, 42, 31, 0.06);
  --shadow-card-hover: 0 16px 40px -20px rgba(30, 42, 31, 0.2);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: linear-gradient(180deg, #f5f7f4 0%, var(--bg) 32%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.55;
  font-size: 17px;
}

a {
  color: var(--primary);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 226, 220, 0.92);
  box-shadow: 0 1px 0 rgba(44, 95, 46, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 12px var(--layout-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.22s var(--ease-out), color 0.2s ease;
}

.logo:hover {
  transform: translateY(-1px);
  color: var(--text);
}

.logo span {
  color: var(--primary);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
}

.nav-main a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.nav-main a:not(.nav-cta) {
  position: relative;
  padding: 6px 4px;
  transition: color 0.2s ease;
}

.nav-main a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease-out);
}

.nav-main a:not(.nav-cta):hover {
  color: var(--primary);
}

.nav-main a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  transition: transform 0.2s var(--ease-out), background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(44, 95, 46, 0.25);
}

.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 69, 19, 0.35);
}

.ad-leaderboard {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--layout-max);
  margin: 12px auto;
  padding: 0 var(--layout-pad);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ad-leaderboard ins {
  display: block;
}

.wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 24px var(--layout-pad) 80px;
}

/* Stacked sections share one content width and vertical rhythm */
main.wrap > section {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

main.wrap > section + section {
  margin-top: 0;
  padding-top: var(--section-gap);
  border-top: 1px solid var(--border);
}

main.wrap > section > h2:first-of-type,
main.wrap > section > .section-label:first-child + h1,
main.wrap > section > h1:first-child {
  margin-top: 0;
}

main.wrap > section h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.hero-block {
  margin-bottom: 0;
}

.hero-block .hero-image {
  width: 100%;
  border-radius: 8px;
  margin-top: 16px;
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

h2 {
  font-size: 1.35rem;
  margin: 32px 0 16px;
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 8px;
}

.card-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.article-card {
  background: var(--card);
  border: 1px solid rgba(226, 226, 220, 0.95);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.24s var(--ease-out),
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 95, 46, 0.32);
  box-shadow: var(--shadow-card-hover);
}

.article-card > a:first-child {
  overflow: hidden;
}

.article-card a {
  text-decoration: none;
  color: inherit;
}

.article-card img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  transition: transform 0.45s var(--ease-out);
}

.article-card:hover img {
  transform: scale(1.045);
}

.article-card .body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

.article-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.3;
}

.article-card p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
  flex: 1;
}

.btn-read {
  display: inline-block;
  margin-top: auto;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  align-self: flex-start;
  padding: 4px 2px;
  border-radius: 4px;
  transition: color 0.2s ease, transform 0.2s var(--ease-out);
}

.btn-read:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.rss-block {
  box-sizing: border-box;
  width: 100%;
  margin-top: 1.25rem;
  padding: 15px 17px;
  background: linear-gradient(145deg, #fbfcfb 0%, #eef1ec 100%);
  border: 1px solid rgba(226, 226, 220, 0.95);
  border-radius: 12px;
  font-size: 0.9rem;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.rss-block:hover {
  border-color: rgba(44, 95, 46, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 4px 20px rgba(30, 42, 31, 0.06);
}

.rss-block ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.rss-block a {
  word-break: break-word;
  transition: color 0.2s ease;
}

.rss-block a:hover {
  color: var(--accent);
}

.rss-loading,
.rss-fallback {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.rss-loading {
  font-style: italic;
}

.see-all {
  display: inline-block;
  margin-top: 1rem;
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(44, 95, 46, 0.35);
  background: #fff;
  color: var(--primary);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.22s var(--ease-out), box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 6px rgba(30, 42, 31, 0.05);
}

.see-all:hover {
  background: rgba(44, 95, 46, 0.09);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(30, 42, 31, 0.1);
  border-color: rgba(44, 95, 46, 0.5);
}

.faq-home {
  margin-top: 0;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
}

main.wrap > section.faq-home h2 {
  margin-top: 0;
}

.faq-home details {
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
}

.faq-home summary {
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  background: #1e2a1f;
  color: #e8ebe8;
  padding: 40px var(--layout-pad);
  margin-top: 48px;
}

.site-footer a {
  color: #c8e6c9;
}

.footer-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}

.footer-inner h3 {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.footer-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-inner li {
  margin-bottom: 8px;
}

.footer-inner a {
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-inner a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  max-width: var(--layout-max);
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid #3d4d3e;
  font-size: 0.85rem;
  color: #a8b5a9;
  text-align: left;
}

.google-news-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #4285f4;
  color: #fff;
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.google-news-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.skyscraper-ad {
  display: none;
}

@media (min-width: 768px) {
  .skyscraper-ad {
    display: block;
  }
}

.sidebar-ad {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.two-col {
  display: grid;
  gap: 28px;
  align-items: start;
}

.two-col > * {
  min-width: 0;
}

@media (min-width: 960px) {
  .two-col.layout-blog {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .two-col.layout-article {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
  }
}

.two-col.layout-blog > div:first-child,
.two-col.layout-article > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.sticky-sidebar {
  position: sticky;
  top: 88px;
}

.sticky-sidebar nav ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.sticky-sidebar nav li {
  margin: 0 0 4px;
}

.sticky-sidebar nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s var(--ease-out), border-color 0.2s ease, color 0.2s ease;
}

.sticky-sidebar nav a:hover {
  background: rgba(44, 95, 46, 0.08);
  color: var(--primary);
  border-color: rgba(44, 95, 46, 0.15);
  transform: translateX(4px);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.category-pills a {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: transform 0.22s var(--ease-out), background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(30, 42, 31, 0.04);
}

.category-pills a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 95, 46, 0.15);
}

.category-pills a:hover,
.category-pills a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
  color: var(--primary);
  border-bottom-color: rgba(44, 95, 46, 0.35);
}

.byline {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.article-body .float-ad-wrap {
  float: right;
  margin: 0 0 16px 24px;
  max-width: 300px;
}

.article-body::after {
  content: "";
  display: table;
  clear: both;
}

blockquote.pull-quote {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: #fff9f5;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 0 10px 10px 0;
  transition: box-shadow 0.25s ease;
}

blockquote.pull-quote:hover {
  box-shadow: 0 6px 24px rgba(139, 69, 19, 0.08);
}

.toc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 24px 0;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-card);
}

.toc:hover {
  border-color: rgba(44, 95, 46, 0.22);
  box-shadow: 0 8px 28px rgba(30, 42, 31, 0.08);
}

.toc h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  border: none;
  padding: 0;
}

.toc ul {
  margin: 0;
  padding-left: 18px;
}

.author-bio {
  margin-top: 40px;
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow-card);
}

.author-bio:hover {
  border-color: rgba(44, 95, 46, 0.2);
  box-shadow: 0 10px 32px rgba(30, 42, 31, 0.08);
}

.author-bio h3 {
  margin-top: 0;
}

.social-share a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 8px;
  padding: 8px 14px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.22s var(--ease-out), background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(44, 95, 46, 0.25);
}

.social-share a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.35);
}

form.contact-form {
  width: 100%;
  max-width: 560px;
}

form.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
  margin-bottom: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: rgba(44, 95, 46, 0.45);
  box-shadow: 0 0 0 3px rgba(44, 95, 46, 0.12);
}

form.contact-form button {
  background: linear-gradient(145deg, var(--primary) 0%, #2a5230 100%);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.22s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 14px rgba(44, 95, 46, 0.3);
}

form.contact-form button:hover {
  background: linear-gradient(145deg, var(--accent) 0%, #6d3a0f 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(139, 69, 19, 0.35);
}

.category-hero {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  width: 100%;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease;
}

.category-hero:hover {
  box-shadow: var(--shadow-card-hover);
}

.category-hero img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.category-hero:hover img {
  transform: scale(1.02);
}

main.wrap:not(.error-page) .prose {
  width: 100%;
  text-align: left;
}

.prose p {
  margin: 0 0 1em;
}

.prose h2 {
  margin-top: 2rem;
}

.error-page {
  text-align: center;
  padding: 60px 20px;
}

.search-404 {
  max-width: 400px;
  margin: 24px auto;
}

.search-404 input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* —— Homepage (modern layout & polish) —— */
body.page-home {
  background: linear-gradient(165deg, #f6f8f5 0%, var(--bg) 38%, #f3f5f2 100%);
  background-attachment: fixed;
}

body.page-home .site-header {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 226, 220, 0.85);
  box-shadow: 0 1px 0 rgba(44, 95, 46, 0.06);
}

body.page-home .wrap--home {
  padding-top: clamp(20px, 4vw, 36px);
}

body.page-home .home-hero {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0 0 clamp(0.5rem, 2vw, 1rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 247, 0.98) 100%);
  border: 1px solid rgba(226, 226, 220, 0.9);
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(30, 42, 31, 0.04),
    0 20px 50px -24px rgba(30, 42, 31, 0.18);
}

@media (min-width: 900px) {
  body.page-home .home-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem 3rem;
  }
}

body.page-home .home-hero__content .section-label {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.12em;
}

body.page-home .home-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 20ch;
}

@media (min-width: 900px) {
  body.page-home .home-hero h1 {
    max-width: none;
  }
}

body.page-home .home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0;
}

body.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.5rem;
}

body.page-home .home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body.page-home .home-btn--primary {
  background: linear-gradient(145deg, var(--primary) 0%, #234a25 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(44, 95, 46, 0.35);
}

body.page-home .home-btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(44, 95, 46, 0.4);
}

body.page-home .home-btn--secondary {
  background: #fff;
  color: var(--primary);
  border: 1px solid rgba(44, 95, 46, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.page-home .home-btn--secondary:hover {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

body.page-home .home-hero__media {
  margin: 0;
}

body.page-home .home-hero__media-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 12px 40px rgba(30, 42, 31, 0.15);
}

@supports not (aspect-ratio: 16 / 9) {
  body.page-home .home-hero__media-frame {
    height: 0;
    padding-top: 56.25%;
  }

  body.page-home .home-hero .hero-image {
    position: absolute;
    inset: 0;
  }
}

body.page-home .home-hero__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(30, 42, 31, 0.12) 100%);
  pointer-events: none;
}

body.page-home .home-hero .hero-image {
  margin-top: 0;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-home main.wrap > section:not(.home-hero):not(.faq-home) h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  border-left: none;
  padding: 0 0 0.65rem;
  margin-bottom: 1.35rem;
  border-bottom: 3px solid var(--primary);
  width: 100%;
  max-width: 100%;
}

body.page-home .article-card {
  border: 1px solid rgba(226, 226, 220, 0.85);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(30, 42, 31, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

body.page-home .article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(44, 95, 46, 0.35);
  box-shadow: 0 16px 40px -18px rgba(30, 42, 31, 0.22);
}

body.page-home .article-card .body {
  padding: 16px 18px 20px;
}

body.page-home .article-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

body.page-home .btn-read {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.page-home .rss-block {
  background: linear-gradient(145deg, #fbfdfb 0%, #eef2ee 100%);
  border: 1px solid rgba(226, 226, 220, 0.95);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.page-home .rss-block strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 4px;
}

body.page-home .see-all {
  margin-top: 1.25rem;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(44, 95, 46, 0.35);
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.18s ease, transform 0.18s ease;
}

body.page-home .see-all:hover {
  background: rgba(44, 95, 46, 0.08);
  color: var(--primary);
  transform: translateY(-1px);
}

body.page-home .faq-home {
  border-radius: 18px;
  border: 1px solid rgba(226, 226, 220, 0.95);
  box-shadow: 0 8px 32px rgba(30, 42, 31, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
}

body.page-home .faq-home h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary);
}

body.page-home .faq-home details {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid var(--border);
}

body.page-home .faq-home details:last-child {
  margin-bottom: 0;
}

body.page-home .faq-home summary {
  font-weight: 600;
  list-style: none;
  padding-right: 1.5rem;
  position: relative;
}

body.page-home .faq-home summary::-webkit-details-marker {
  display: none;
}

body.page-home .faq-home summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

body.page-home .faq-home details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

body.page-home .faq-home details p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

body.page-home main.wrap > section + section {
  border-top-color: rgba(226, 226, 220, 0.75);
}

body.page-home .card-grid {
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

@media (prefers-reduced-motion: reduce) {
  body.page-home .article-card,
  body.page-home .home-btn,
  body.page-home .see-all {
    transition: none;
  }

  body.page-home .article-card:hover,
  body.page-home .home-btn:hover,
  body.page-home .see-all:hover {
    transform: none;
  }
}
