/* Page Blog desktop frame (1440 only). First section: it offsets the
   fixed header itself, the frame's 60 under it. The column is the
   frame's 874, centred; below that width it takes the page gutters. */
.article {
  padding-top: calc(var(--header-height) + 60px);
  padding-inline: var(--section-padding-x);
  padding-bottom: var(--section-spacing); /* the frame's 240 read as the token's 227 */
}
@media (max-width: 988px) {
  .article {
    padding-top: calc(var(--header-height-mobile) + 60px);
    padding-inline: var(--section-padding-x-mobile);
  }
}
.article__inner {
  max-width: 874px;
  margin-inline: auto;
}

/* Author row: the frame's 60 avatar, 17.5 gap, 12/18 Regular; 32 to
   the title (its 10 padding + 22 gap). */
.article__author {
  display: flex;
  align-items: center;
  gap: 17.5px;
  margin-bottom: 32px;
}
.article__avatar {
  flex: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.article__author-text {
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.25;
}
.article__label { font-size: 12px; }
.article__name { font-size: 18px; }

.article__title {
  margin: 0 0 32px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 400; /* the frame's Regular, flat */
  font-size: var(--font-size-h2-section); /* the frame's 50 is the token's top */
  line-height: 1;
  letter-spacing: -0.01em;
  text-wrap: balance; /* no one-word last line, her call */
}
.article__cover {
  aspect-ratio: 874 / 499;
  border-radius: var(--radius-big);
  overflow: hidden;
}
@media (max-width: 988px) {
  .article__cover { border-radius: var(--radius-big-mobile); }
}
.article__cover img,
.article__figure img,
.article__figure video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Body: 64 under the cover and between text groups, 24 under a
   heading, 32 around a picture — the frame's. H2 is the frame's 40
   with a PROPOSED 24 phone end (recipe); copy is the hero body token. */
.article__body {
  margin-top: 64px;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 400;
}
.article__h2 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(24px, calc(8.865px + 2.1622vw), 40px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
/* Comparison table (no frame, PROPOSED): small-body type, the FAQ's
   hairlines, scrolls sideways on the phone instead of squeezing. */
.article__table-wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
.article__table-wrap::-webkit-scrollbar { display: none; }
.article__table {
  min-width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-body-card-s);
  line-height: 1.3;
  text-align: left;
}
.article__table th,
.article__table td {
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, var(--opacity-secondary-text));
  vertical-align: top;
}
.article__table th {
  font-weight: 500;
}
.article__table thead th {
  white-space: nowrap;
}
.article__nowrap {
  white-space: nowrap;
}
.article__p,
.article__list {
  margin: 0;
  font-size: var(--font-size-body-hero); /* her 20 over the frame's 22: the hero body token */
  line-height: 1.45;
}
.article__list {
  padding-left: 1.2em;
}
.article__p a {
  color: inherit;
}
.article__figure {
  margin: 0;
  aspect-ratio: 874 / 499;
  border-radius: var(--radius-big);
  overflow: hidden;
}
@media (max-width: 988px) {
  .article__figure { border-radius: var(--radius-big-mobile); }
}
/* Must stay after the element rules above: same specificity, and their
   margin: 0 would win. */
.article__body > * + * {
  margin-top: 24px;
}
.article__body > * + .article__h2 {
  margin-top: 64px;
}
.article__body > * + .article__figure,
.article__body > .article__figure + * {
  margin-top: 32px;
}
/* The frame's date line: 18/135%, 30 under the body. */
.article__date {
  margin: 30px 0 0;
  color: var(--color-text);
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: var(--font-size-label-accent); /* 18 at 1440 */
  line-height: 1.35;
}
