/* =========================================================
   BRAND WATCH — ARTICLE PAGES
   Typographic headers. No stock photography is used, because
   we do not hold rights to imagery of the brands covered.
   ========================================================= */

.article-head {
  padding-top: clamp(40px, 4vw, 64px) !important;
  padding-bottom: clamp(28px, 3vw, 44px) !important;
  border-bottom: 1px solid var(--line, #e6e2df);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin: 0 0 18px !important;
  font-size: .74rem !important;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink, #C2185B) !important;
}

.article-meta .article-date { color: #777 !important; }

.article-head h1 { max-width: 20ch; margin: 0 0 22px; }

.article-head .standfirst {
  font-family: var(--serif, Georgia, serif);
  font-size: clamp(1.2rem, 1.9vw, 1.65rem) !important;
  line-height: 1.4 !important;
  max-width: 62ch;
  color: #444 !important;
  margin: 0;
}

.article-body { padding-top: clamp(34px, 3.5vw, 56px) !important; }
.article-body p { max-width: 68ch; margin: 0 0 1.35em; }

.article-body q { quotes: "\201C" "\201D"; font-style: italic; }

.article-why {
  margin: 34px 0 0;
  padding: 28px 32px;
  background: #0A0A0A;
  color: #fff;
  max-width: 68ch;
}

.article-why strong {
  display: block;
  color: #E0669A;
  font-family: var(--sans, Arial, sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-why p { margin: 0 !important; color: #ddd !important; }

.article-sources {
  background: #faf8f6;
  border-top: 1px solid var(--line, #e6e2df);
  border-bottom: 1px solid var(--line, #e6e2df);
}

.article-sources ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 12px; }
.article-sources li { padding-left: 22px; position: relative; max-width: 70ch; }
.article-sources li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 10px; height: 2px; background: var(--pink, #C2185B);
}
.article-sources a { color: inherit; text-decoration: underline; }
.article-sources a:hover { color: var(--pink, #C2185B); }

.article-related { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.article-related a {
  border: 1px solid var(--line, #ddd8d4);
  padding: .6rem 1rem;
  font-size: .8rem;
  text-decoration: none;
  color: inherit;
}
.article-related a:hover { border-color: var(--pink, #C2185B); color: var(--pink, #C2185B); }

/* Article cards on the Brand Watch index */
.bw-latest { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 34px; }

.bw-card {
  display: block;
  border: 1px solid var(--line, #e6e2df);
  background: #fff;
  padding: 32px 34px 34px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.bw-card:hover, .bw-card:focus-visible {
  transform: translateY(-4px);
  border-color: #c9c3bc;
  box-shadow: 0 18px 40px rgba(0,0,0,.08);
}

.bw-card .bw-card-meta {
  font-size: .72rem !important;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink, #C2185B) !important;
  margin: 0 0 14px !important;
}

.bw-card h3 { margin: 0 0 12px; }
.bw-card p { color: #555 !important; margin: 0; }
.bw-card .bw-card-more { display: inline-block; margin-top: 18px; font-weight: 700; font-size: .85rem !important; }

@media (max-width: 820px) { .bw-latest { grid-template-columns: 1fr; } }
