.ab-article {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5EDD6;
  --ink: #1A1612;
  --ink-mid: #3D3428;
  --ink-soft: #6B5D4A;
  --parchment: #FAF6EE;
  --parchment-dark: #F0E8D6;
  --rule: rgba(201,168,76,0.22);
  --white: #FDFCFA;

  
  font-weight: 300;
  //font-size: 16px;
  line-height: 1.75;
  color: var(--ink-mid);
  
}

/* ¦¦ DISCLAIMER ¦¦ */
.ab-disclaimer {
  background: var(--parchment);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 1rem 1.4rem;
  //font-size: 0.83rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}
.ab-disclaimer strong { color: var(--ink); font-weight: 500; }

/* ¦¦ SECTION HEADING ¦¦ */
.ab-section { margin: 3rem 0 0; }

.ab-section-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.ab-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1A1612 0%, #3D3428 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(26,22,18,0.18);
}
.ab-icon svg { display: block; }

.ab-section-head h2 {
  
  //font-size: 1.85rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}

.ab-article h3 {
  
  //font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.75rem 0 0.6rem;
}

.ab-article p {
  margin-bottom: 1rem;
}

/* ¦¦ DEFINITION CARDS ¦¦ */
.ab-def-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 580px) {
  .ab-def-grid { grid-template-columns: 1fr; }
}

.ab-card {
  background: var(--white);
  border: 1px solid var(--parchment-dark);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 1.2rem 1.3rem;
  box-shadow: 0 2px 10px rgba(26,22,18,0.05);
}

.ab-card-eyebrow {
  //font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.ab-card h4 {
  
  //font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.6rem;
}

.ab-card ul {
  list-style: none;
  padding: 0; margin: 0;
}
.ab-card ul li {
  //font-size: 0.87rem;
  color: var(--ink-soft);
  padding: 1.28rem 0 1.28rem 1.1rem;
  position: relative;
  border-bottom: 1px solid var(--parchment-dark);
  line-height: 1.5;
}
.ab-card ul li:last-child { border-bottom: none; }

/* ¦¦ CALLOUT ¦¦ */
.ab-callout {
  background: var(--ink);
  border-radius: 5px;
  padding: 1.4rem 1.75rem;
  margin: 1.75rem 0;
  position: relative;
  overflow: hidden;
}
.ab-callout::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}
.ab-callout-label {
  //font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.ab-callout p {
  color: #D8D0C4;
  //font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}
.ab-callout strong { color: #FDFCFA; font-weight: 500; }

/* ¦¦ TABLE ¦¦ */
.ab-table-wrap { margin: 1.5rem 0; overflow-x: auto; }

.ab-table {
  width: 100%; border-collapse: collapse; //font-size: 0.87rem;
}
.ab-table thead tr { background: var(--ink); }
.ab-table thead th {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  //font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0.8rem 1rem;
  text-align: left;
}
.ab-table tbody tr { border-bottom: 1px solid var(--parchment-dark); }
.ab-table tbody tr:hover { background: rgba(201,168,76,0.04); }
.ab-table tbody td {
  padding: 0.8rem 1rem;
  color: var(--ink-mid);
  vertical-align: middle;
}
.ab-table tbody td:first-child { font-weight: 500; color: var(--ink); }

.ab-badge {
  display: inline-block;
  //font-size: 0.7rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 20px;
}
.ab-badge-yes  { background: rgba(90,160,90,0.13); color: #2e6a2e; border: 1px solid rgba(90,160,90,0.28); }
.ab-badge-no   { background: rgba(190,70,55,0.11); color: #7a2018; border: 1px solid rgba(190,70,55,0.25); }
.ab-badge-cond { background: rgba(201,168,76,0.14); color: #6a4a08; border: 1px solid rgba(201,168,76,0.32); }

/* ¦¦ DIVIDER ¦¦ */
.ab-divider {
  text-align: center;
  margin: 2.5rem 0;
  color: var(--gold);
  opacity: 0.35;
  
 // font-size: 1.3rem;
  letter-spacing: 0.5em;
}

/* ¦¦ FAQ ¦¦ */
.ab-faq-head {
  text-align: center;
  margin: 3rem 0 1.75rem;
}
.ab-faq-eyebrow {
  //font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.ab-faq-head h2 {
  
  //font-size: 1.75rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}

.ab-faq-list {
  border: 1px solid var(--parchment-dark);
  border-radius: 5px;
  overflow: hidden;
  background: var(--white);
}

.ab-faq-list details {
  border-bottom: 1px solid var(--parchment-dark);
}
.ab-faq-list details:last-child { border-bottom: none; }

.ab-faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.4rem;
  
  //font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background 0.15s;
  user-select: none;
}
.ab-faq-list summary:hover { background: var(--parchment); }
.ab-faq-list summary::-webkit-details-marker { display: none; }

.ab-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); //font-size: 0.65rem;
  transition: transform 0.2s;
}
.ab-faq-list details[open] > summary .ab-chevron { transform: rotate(180deg); }
.ab-faq-list details[open] > summary { background: var(--parchment); color: var(--gold); }

.ab-faq-answer {
  padding: 1rem 1.4rem 1.25rem;
  //font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.75;
  border-top: 1px solid var(--rule);
}
.ab-faq-answer p { margin: 0; color: var(--ink-soft); }

/* ¦¦ AUTHOR ¦¦ */
.ab-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--parchment-dark);
  border-radius: 5px;
  padding: 1.25rem 1.4rem;
  margin: 2.5rem 0 1.25rem;
}
.ab-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #1A1612 0%, #3D3428 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  
  font-size: 1.2rem; font-weight: 600;
}
.ab-author-info p { margin: 0; font-size: 0.8rem; color: var(--ink-soft); }
.ab-author-info strong { display: block; //font-size: 0.92rem; 
color: var(--ink); font-weight: 500; margin-bottom: 0.1rem; }

/* ¦¦ LEGAL ¦¦ */
.ab-legal {
  background: var(--parchment);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  //font-size: 0.72rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.ab-legal strong {
  display: block; //font-size: 0.7rem; 
  letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 0.4rem;
}

/* ¦¦ SOURCES ¦¦ */
.ab-sources {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}
.ab-sources h3 {
  //font-size: 0.68rem;
   font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-soft);
  font-family: 'DM Sans', sans-serif;
  margin: 0 0 0.6rem;
}
.ab-sources ol { padding-left: 1.1rem; margin: 0; }
.ab-sources ol li { //font-size: 0.74rem; 
color: var(--ink-soft); line-height: 1.6; margin-bottom: 0.25rem; }
.ab-sources a { color: var(--gold); }

