/* ── BREADCRUMB ───────────────────────────────────────────────
   Sits between nav and hero. Tiny gray text with › separators.
   ──────────────────────────────────────────────────────────── */
.art-breadcrumb {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 24px 4px;
  font-size: 0.72rem;
  font-family: 'Space Grotesk', sans-serif;
  color: #999;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  background: transparent;
}
.art-breadcrumb a {
  color: #888;
  text-decoration: none;
}
.art-breadcrumb a:hover {
  color: #444;
  text-decoration: underline;
}
.bc-sep {
  color: #bbb;
  font-size: 0.65rem;
}
.bc-current {
  color: #666;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── BOTTOM CONTENT AREA ──────────────────────────────────────
   Sits below the existing article + sidebar layout.
   Full-width cream background, centered content.
   ──────────────────────────────────────────────────────────── */
.art-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding: 36px 24px 64px;
}

.art-bottom-block {
  margin-bottom: 44px;
}
.art-bottom-block:last-child {
  margin-bottom: 0;
}

/* Section header row: icon + label LEFT, "View all →" RIGHT */
.abb-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd7ce;
}
.abb-title {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: #999;
  font-family: 'Space Grotesk', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}
.abb-title em {
  font-style: normal;
  color: #c0601a;
}
.abb-view-all {
  font-size: 0.7rem;
  font-weight: 700;
  color: #c0601a;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
}
.abb-view-all:hover { text-decoration: underline; }

/* ── Bottom article cards — 4 column grid ────────────────────
   White card, red-orange category label, bold title, gray meta
   ──────────────────────────────────────────────────────────── */
.abb-articles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.abb-art-card {
  background: #ffffff;
  border: 1px solid #e8e3db;
  border-radius: 6px;
  padding: 14px 14px 12px;
  text-decoration: none;
  display: block;
  transition: border-color 0.15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.abb-art-card:hover { border-color: #c0601a; }

.abb-art-card .ac-cat {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #c0281e;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 7px;
  display: block;
}
.abb-art-card .ac-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #181614;
  line-height: 1.4;
  font-family: 'Space Grotesk', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 9px;
}
.abb-art-card .ac-meta {
  font-size: 0.68rem;
  color: #aaa;
  font-family: 'Space Grotesk', sans-serif;
}

/* ── Comparison rows ─────────────────────────────────────────
   White bordered row, title + subtitle + orange arrow right
   ──────────────────────────────────────────────────────────── */
.abb-comps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.abb-comp-card {
  background: #ffffff;
  border: 1px solid #e8e3db;
  border-radius: 6px;
  padding: 14px 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: border-color 0.15s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.abb-comp-card:hover { border-color: #e05a20; }
.abb-comp-card .cc-title {
  font-size: 0.86rem;
  font-weight: 700;
  color: #181614;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.4;
}
.abb-comp-card .cc-sub {
  font-size: 0.72rem;
  color: #999;
  font-family: 'Space Grotesk', sans-serif;
  margin-top: 3px;
  line-height: 1.4;
}
.abb-comp-card .cc-arrow {
  color: #e05a20;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ── Prompt cards ────────────────────────────────────────────
   Cream bg, "PROMPT GUIDE" orange label, orange title,
   gray body, orange CTA button right-aligned
   ──────────────────────────────────────────────────────────── */
.abb-prompt-card {
  background: #fdf7ee;
  border: 1px solid #e6dac8;
  border-radius: 8px;
  padding: 20px 22px;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transition: border-color 0.15s, background 0.15s;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.abb-prompt-card:last-child { margin-bottom: 0; }
.abb-prompt-card:hover {
  border-color: #e05a20;
  background: #fdf2e4;
}
.abb-prompt-card .pc-label {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e05a20;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 5px;
  display: block;
}
.abb-prompt-card .pc-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #bf5a18;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.35;
  margin-bottom: 7px;
  display: block;
}
.abb-prompt-card .pc-sub {
  font-size: 0.8rem;
  color: #777;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  max-width: 560px;
}
.abb-prompt-card .pc-btn {
  flex-shrink: 0;
  align-self: center;
  background: #e05a20;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  white-space: nowrap;
  border: none;
  transition: background 0.15s;
  cursor: pointer;
}
.abb-prompt-card:hover .pc-btn { background: #bf4a14; }

/* ── Responsive ──────────────────────────────────────────────
   Only the new bottom blocks need responsive treatment.
   Do NOT touch art-layout or art-sidebar here.
   ──────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .abb-articles {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 440px) {
  .abb-articles {
    grid-template-columns: 1fr;
  }
  .abb-prompt-card {
    flex-direction: column;
  }
  .abb-prompt-card .pc-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   HERO + COVER FULL-WIDTH FIX
   
   ROOT CAUSE:
   article-v1.css sets:
     .art-shell  { width: min(1180px, calc(100%-32px)); margin:0 auto; }
     .art-hero   { padding: 34px 0 20px; }   ← overrides article.css black bg padding
   
   Both section.art-hero AND div.art-cover have class="art-shell"
   so they get constrained to 1180px and the black bg is padded away.
   
   FIX: Escape art-shell constraints on hero + cover only.
   article.css already has the correct black bg / padding — just
   let it breathe by removing the width cap.
   ============================================================ */

/* ── HERO: undo art-shell width cap, restore article.css padding ── */
section.art-hero.art-shell {
  width: 100% !important;
  max-width: 100% !important;
  /* article.css sets padding:56px 40px 44px — v1.css overrides to 34px 0 20px */
  /* We restore article.css value here */
  padding: 56px 40px 44px !important;
  box-sizing: border-box !important;
}

/* ── COVER: undo art-shell width cap ─────────────────────────────
   article.css already sets:
     .art-cover { width:100%; max-height:480px; }
     .art-cover img { width:100%; object-fit:cover; }
   We just need to remove the 1180px cap from art-shell.
   Also remove max-height so image shows at full natural height.
   ──────────────────────────────────────────────────────────── */
div.art-cover.art-shell {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  /* Remove the 480px cap — show full image height */
  max-height: none !important;
}

div.art-cover.art-shell img,
img#MainContent_imgArticleCover {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── Mobile hero padding ─────────────────────────────────────── */
@media (max-width: 768px) {
  section.art-hero.art-shell {
    padding: 32px 16px 28px !important;
  }
}
