/* ==========================================================================
   DAAMRI Deals — Single article (blog-post.html)
   Editorial long-form typography and spacing
   ========================================================================== */

.article-cover {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--stone);
}

.article-cover .crumb {
  font-family: var(--ui);
  font-size: 12px;
  margin-bottom: 28px;
}

.article-cover .crumb a {
  color: var(--muted);
  text-decoration: none;
}

.article-cover .crumb a:hover {
  color: var(--oxblood);
}

.article-cover .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.article-cover .meta .cat {
  color: var(--oxblood);
  font-weight: 600;
}

.article-cover .meta .sep,
.article-cover .meta time,
.article-cover .meta .by {
  color: var(--muted);
}

.article-cover h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.08;
  font-weight: 500;
  max-width: 880px;
}

.article-figure {
  margin: 0;
}

.article-figure img {
  width: 100%;
  max-height: 520px;
  filter: var(--img-filter);
}

.article-figure figcaption {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0 0;
}

/* Body */
.article-layout {
  padding: 64px 0 76px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.75;
}

.article-body > * + * {
  margin-top: 24px;
}

.article-body h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 500;
  margin-top: 56px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.article-body h3 {
  font-size: 21px;
  font-weight: 600;
  margin-top: 44px;
  margin-bottom: 0;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body p {
  color: var(--ink);
}

.article-body strong {
  font-weight: 600;
}

.article-body ul,
.article-body ol {
  padding-left: 26px;
}

.article-body li {
  margin-bottom: 12px;
  padding-left: 6px;
}

.article-body li::marker {
  color: var(--oxblood);
  font-family: var(--ui);
  font-size: 14px;
}

.article-body blockquote {
  font-style: italic;
  font-size: 19px;
  color: var(--forest);
  border-left: 2px solid var(--oxblood);
  padding-left: 22px;
  margin-top: 36px;
  margin-bottom: 36px;
}

.article-body a {
  color: var(--oxblood);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.article-body a:hover {
  color: var(--ink);
}

.article-credit {
  font-family: var(--ui);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Company byline / signature */
.article-signature {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--stone);
  font-family: var(--ui);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Placeholder state (no content yet) */
.article-pending {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--stone);
  padding: 32px;
  font-family: var(--body);
  font-style: italic;
  color: var(--muted);
}

/* Read next */
.read-next {
  border-top: 1px solid var(--stone);
  padding: 64px 0 76px;
}

.read-next .section-head {
  margin-bottom: var(--sp-8);
}

@media (max-width: 640px) {
  .article-cover {
    padding: 48px 0 36px;
  }

  .article-layout {
    padding: 44px 0 56px;
  }

  .article-body {
    font-size: 16.5px;
  }

  .article-body h2 {
    margin-top: 44px;
  }
}
