/* Editorial Trust — a trustworthy magazine that happens to sell you things.
 *
 * The contract (docs/research/templates/wirecutter.md):
 *   · serif for anything authored, sans for anything functional — never blurred
 *   · pine only where it MEANS something (link, buy, pick, focus); ochre only
 *     for ratings & deals; everything else is ink on warm paper
 *   · separation by 1px rules + whitespace, not shadows
 *   · motion is quiet, quick, functional — if a transition draws attention to
 *     itself, it's wrong
 *
 * Knob vars (with fallbacks): --smedja-radius-sm/md/lg, --smedja-section-y.
 */

:root {
  --et-ease: cubic-bezier(0.2, 0, 0, 1);
  --et-r-sm: var(--smedja-radius-sm, 4px);
  --et-r-md: var(--smedja-radius-md, 8px);
  --et-r-lg: var(--smedja-radius-lg, 12px);
  --et-section-y: var(--smedja-section-y, clamp(4rem, 4vw + 2.2rem, 6.5rem));
  --et-ink: var(--wp--preset--color--contrast);
  --et-paper: var(--wp--preset--color--base);
  --et-card: var(--wp--preset--color--surface);
  --et-pine: var(--wp--preset--color--primary);
  --et-pine-deep: var(--wp--preset--color--primary-soft);
  --et-ochre: var(--wp--preset--color--accent);
  --et-taupe: var(--wp--preset--color--muted);
  --et-rule: var(--wp--preset--color--line);
  --et-sans: var(--wp--preset--font-family--mono);
  --et-serif: var(--wp--preset--font-family--body);
  --et-display: var(--wp--preset--font-family--display);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
[id] {
  scroll-margin-top: 5.5rem;
}
::selection {
  background: color-mix(in srgb, var(--et-pine) 16%, var(--et-paper));
}
body {
  font-optical-sizing: auto;
}

/* Links: present at rest in pine; the underline thickens, never jumps. */
a:not(.wp-element-button) {
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  transition: color 160ms ease, text-decoration-color 160ms ease, text-decoration-thickness 160ms ease;
}
a:not(.wp-element-button):hover {
  text-decoration-thickness: 2px;
}
:where(a, button, input, summary, [tabindex]):focus-visible {
  outline: 2px solid var(--et-pine);
  outline-offset: 2px;
  border-radius: 2px;
}

/* == Machinery type (the sans voice) ================================= */
.et-eyebrow {
  font-family: var(--et-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--et-pine);
  margin: 0;
}
.et-caption {
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  color: var(--et-taupe);
  margin: 0.6rem 0 0;
  line-height: 1.5;
}

/* Chips — the pick labels. One shape, quietly authoritative. */
.et-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--et-sans);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--et-card);
  background: var(--et-pine);
  border-radius: var(--et-r-sm);
  padding: 0.32em 0.7em 0.3em;
  white-space: nowrap;
}
.et-chip--dim {
  color: var(--et-taupe);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--et-rule);
}

/* Price + score — tabular sans, always. */
.et-price {
  font-family: var(--et-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--et-ink);
  white-space: nowrap;
}
.et-score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3em;
  font-family: var(--et-sans);
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  font-size: 1rem;
  color: var(--et-ink);
}
.et-score::before {
  content: "★";
  color: var(--et-ochre);
  font-size: 0.85em;
  align-self: center;
  transform: translateY(-0.05em);
}
.et-score__max {
  color: var(--et-taupe);
  font-weight: 500;
  font-size: 0.8em;
}

/* Buy buttons — machinery: sans, pine, crisp. */
.et-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  font-family: var(--et-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border-radius: var(--et-r-sm);
  padding: 0.72em 1.25em;
  transition: background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}
.et-buy--primary {
  color: var(--et-card);
  background: var(--et-pine);
}
.et-buy--primary:hover {
  color: var(--et-card);
  background: var(--et-pine-deep);
}
.et-buy--ghost {
  color: var(--et-pine);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--et-rule);
}
.et-buy--ghost:hover {
  color: var(--et-pine-deep);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--et-pine) 45%, var(--et-rule));
  background: color-mix(in srgb, var(--et-pine) 4%, transparent);
}
.et-buy:active {
  transform: translateY(1px);
}

/* Framed imagery — thin rule, whisper of shadow, crisp radius. */
.et-framed {
  margin: 0;
  overflow: hidden;
  border-radius: var(--et-r-sm);
  background: var(--et-card);
}
.et-framed img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--et-ink) 8%, transparent);
}

/* == Bands (sections own their rhythm) =============================== */
.et-band {
  padding-top: calc(var(--et-section-y) * 0.55);
  padding-bottom: calc(var(--et-section-y) * 0.55);
}
.et-band--hero {
  padding-top: calc(var(--et-section-y) * 0.8);
  padding-bottom: calc(var(--et-section-y) * 0.35);
}
.et-band--disclosure,
.et-band--summary {
  padding-top: 0;
}
.et-band--pick {
  padding-top: calc(var(--et-section-y) * 0.25);
  padding-bottom: calc(var(--et-section-y) * 0.25);
}

.et-section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
  display: grid;
  gap: 0.7rem;
}
.et-section-title {
  font-family: var(--et-display);
  font-size: var(--wp--preset--font-size--xl);
  line-height: 1.14;
  letter-spacing: -0.012em;
  font-weight: 600;
  margin: 0;
}
.et-section-lede {
  font-size: var(--wp--preset--font-size--md);
  line-height: 1.55;
  color: var(--et-taupe);
  margin: 0;
}
.et-section-head--row {
  max-width: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem 1.5rem;
  flex-wrap: wrap;
}
.et-section-head--row .et-eyebrow {
  flex-basis: 100%;
}

/* == Masthead ======================================================== */
/* WP wraps template parts in .wp-block-template-part — sticky must live on
   the wrapper, or the header only sticks within its own height. */
.wp-block-template-part:has(> .et-masthead) {
  position: sticky;
  top: 0;
  z-index: 50;
}
.et-masthead {
  border-bottom: 1px solid var(--et-rule);
  background: color-mix(in srgb, var(--et-paper) 92%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
}
.et-progress {
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  height: 2px;
  pointer-events: none;
}
.et-progress__bar {
  display: block;
  height: 100%;
  background: var(--et-pine);
  transform-origin: 0 50%;
  transform: scaleX(0);
}
.et-masthead__utility {
  border-bottom: 1px solid var(--et-rule);
  transition: max-height 220ms var(--et-ease), opacity 180ms ease;
  max-height: 3rem;
  overflow: hidden;
}
.et-masthead.is-condensed .et-masthead__utility {
  max-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
}
.et-utility-note,
.et-utility-links {
  font-family: var(--et-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--et-taupe);
  margin: 0;
  padding: 0.55rem 0;
}
.et-utility-links {
  display: flex;
  gap: 1.4rem;
}
.et-utility-links a {
  color: var(--et-taupe);
  text-decoration: none;
}
.et-utility-links a:hover {
  color: var(--et-pine);
}
.et-masthead__main {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  transition: padding 220ms var(--et-ease);
}
.et-masthead.is-condensed .et-masthead__main {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.et-wordmark {
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
  transition: font-size 220ms var(--et-ease);
}
.et-masthead.is-condensed .et-wordmark {
  font-size: 1.2rem;
}
.et-wordmark a {
  text-decoration: none;
  color: var(--et-ink);
}
.et-wordmark a:hover {
  color: var(--et-pine);
}
.et-masthead__nav {
  gap: 1.6rem;
}
.et-nav a {
  font-weight: 500;
  text-decoration: none;
  color: var(--et-ink);
}
.et-nav a:hover {
  color: var(--et-pine);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}
.et-nav .wp-block-navigation__container {
  gap: 1.5rem;
}
.et-masthead__cta {
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--et-pine);
  text-decoration: none;
  border: 1px solid color-mix(in srgb, var(--et-pine) 35%, var(--et-rule));
  border-radius: 999px;
  padding: 0.42em 1em;
  white-space: nowrap;
  transition: background-color 140ms ease, color 140ms ease, border-color 140ms ease;
}
.et-masthead__cta:hover {
  color: var(--et-card);
  background: var(--et-pine);
  border-color: var(--et-pine);
}

/* == Review hero ===================================================== */
.et-review-hero {
  display: grid;
  gap: 1.1rem;
  max-width: 46rem;
}
.et-review-hero__title {
  font-family: var(--et-display);
  font-size: var(--wp--preset--font-size--3-xl);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0;
}
.et-review-hero__dek {
  font-size: var(--wp--preset--font-size--md);
  line-height: 1.55;
  color: var(--et-taupe);
  margin: 0;
  font-style: italic;
}
.et-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  color: var(--et-taupe);
}
.et-byline__name {
  font-weight: 600;
  color: var(--et-ink);
}
.et-byline__role::before {
  content: "· ";
}
.et-byline__dot {
  color: var(--et-rule);
}
.et-trustline {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--et-taupe);
  border-top: 1px solid var(--et-rule);
  padding-top: 0.9rem;
  margin-top: 0.35rem;
}
.et-trustline__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--et-pine) 12%, var(--et-paper));
  color: var(--et-pine);
  font-size: 0.7rem;
  font-weight: 700;
}
.et-review-hero__media {
  margin-top: 2.2rem;
}

/* == Disclosure ====================================================== */
.et-disclosure {
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--et-taupe);
  border-top: 1px solid var(--et-rule);
  border-bottom: 1px solid var(--et-rule);
  padding: 0.8rem 0;
  margin: 0;
}
.et-disclosure--method {
  border-bottom: 0;
  margin-top: 2rem;
}

/* == Picks summary (the TL;DR) ======================================= */
.et-summary {
  background: var(--et-card);
  border: 1px solid var(--et-rule);
  border-radius: var(--et-r-md);
  padding: 1.4rem 1.6rem 0.6rem;
}
.et-summary__head {
  font-family: var(--et-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--et-taupe);
  margin: 0 0 0.6rem;
}
.et-summary__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.et-summary__row + .et-summary__row {
  border-top: 1px solid var(--et-rule);
}
.et-summary__link {
  display: grid;
  grid-template-columns: 9.5rem 1fr auto;
  align-items: baseline;
  column-gap: 1.1rem;
  padding: 0.85rem 0;
  text-decoration: none;
  color: inherit;
}
.et-summary__name {
  font-family: var(--et-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--et-ink);
  transition: color 140ms ease;
}
.et-summary__why {
  grid-column: 2;
  font-size: 0.9375rem;
  color: var(--et-taupe);
  font-style: italic;
}
.et-summary__go {
  grid-row: 1 / span 2;
  grid-column: 3;
  align-self: center;
  font-family: var(--et-sans);
  color: var(--et-taupe);
  transition: color 140ms ease;
}
.et-summary__link:hover .et-summary__name {
  color: var(--et-pine);
}
.et-summary__link:hover .et-summary__go {
  color: var(--et-pine);
  transform: translateY(2px);
}

/* == The verdict object ============================================== */
.et-pick {
  background: var(--et-card);
  border: 1px solid var(--et-rule);
  border-radius: var(--et-r-md);
  padding: clamp(1.4rem, 2.6vw, 2.2rem);
  transition: border-color 200ms ease, box-shadow 220ms var(--et-ease);
}
.et-pick__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.et-pick--alt .et-chip--pick {
  color: var(--et-pine);
  background: color-mix(in srgb, var(--et-pine) 9%, var(--et-card));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--et-pine) 28%, transparent);
}
.et-pick__cols {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.2rem, 2.4vw, 2rem);
  align-items: start;
}
.et-pick__name {
  font-family: var(--et-display);
  font-size: var(--wp--preset--font-size--lg);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.6rem;
}
.et-pick__verdict {
  font-size: 1.0625rem;
  line-height: 1.62;
  margin: 0;
}
.et-pick__specs {
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  color: var(--et-taupe);
  margin: 0.8rem 0 0;
}
.et-pick__buys {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 0.9rem;
  margin-top: 1.3rem;
}
.et-pick__buys .et-price {
  margin-right: 0.2rem;
}

/* Honest flaws — the trust device. */
.et-flaws {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  border-top: 1px solid var(--et-rule);
  margin-top: 1.6rem;
  padding-top: 1.3rem;
}
.et-flaws__head {
  font-family: var(--et-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}
.et-flaws__col--pro .et-flaws__head {
  color: var(--et-pine);
}
.et-flaws__col--con .et-flaws__head {
  color: var(--et-taupe);
}
.et-flaws ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.et-flaws li {
  display: flex;
  gap: 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.et-flaws li > span {
  font-family: var(--et-sans);
  font-weight: 700;
  flex: 0 0 auto;
}
.et-flaws__col--pro li > span {
  color: var(--et-pine);
}
.et-flaws__col--con li > span {
  color: var(--et-taupe);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .et-pick:hover {
    transform: translateY(-2px);
    border-color: color-mix(in srgb, var(--et-pine) 30%, var(--et-rule));
    box-shadow: 0 1px 2px color-mix(in srgb, var(--et-ink) 5%, transparent),
      0 18px 40px -28px color-mix(in srgb, var(--et-ink) 22%, transparent);
  }
}

/* == Roundup rows ==================================================== */
.et-roundup {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: et-rank;
  border-top: 1px solid var(--et-rule);
}
.et-roundup__row {
  display: grid;
  grid-template-columns: 2.6rem minmax(0, 1fr) auto;
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--et-rule);
}
.et-roundup__rank {
  font-family: var(--et-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--et-taupe);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.et-roundup__name {
  font-family: var(--et-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.et-roundup__verdict {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--et-taupe);
  margin: 0;
  max-width: 34rem;
}
.et-roundup__side {
  display: grid;
  justify-items: end;
  gap: 0.5rem;
}

/* == Comparison table ================================================ */
.et-compare {
  overflow-x: auto;
  border: 1px solid var(--et-rule);
  border-radius: var(--et-r-md);
  background: var(--et-card);
}
.et-compare table {
  border-collapse: collapse;
  width: 100%;
  min-width: 40rem;
  font-family: var(--et-sans);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}
.et-compare th,
.et-compare td {
  text-align: left;
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--et-rule);
}
.et-compare thead th {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--et-taupe);
  background: color-mix(in srgb, var(--et-paper) 55%, var(--et-card));
}
.et-compare tbody th {
  font-weight: 600;
}
.et-compare tbody tr:last-child th,
.et-compare tbody tr:last-child td {
  border-bottom: 0;
}
.et-compare tr.is-winner th {
  box-shadow: inset 3px 0 0 var(--et-pine);
  color: var(--et-pine);
}
.et-compare tr.is-winner th,
.et-compare tr.is-winner td {
  background: color-mix(in srgb, var(--et-pine) 6%, var(--et-card));
}
.et-compare__note {
  margin-top: 0.7rem;
}

/* == Methodology ===================================================== */
.et-band--method {
  border-top: 1px solid var(--et-rule);
  border-bottom: 1px solid var(--et-rule);
  background: color-mix(in srgb, var(--et-card) 55%, var(--et-paper));
}
.et-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1px;
  background: var(--et-rule);
  border: 1px solid var(--et-rule);
  border-radius: var(--et-r-md);
  overflow: hidden;
  margin: 0 0 1.8rem;
}
.et-stat {
  background: var(--et-card);
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 0.2rem;
}
.et-stat__value {
  font-family: var(--et-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.et-stat__label {
  font-family: var(--et-sans);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--et-taupe);
}
.et-method-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  max-width: 42rem;
}
.et-method-points li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.6;
  font-size: 1rem;
}
.et-method-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--et-sans);
  font-weight: 700;
  color: var(--et-pine);
}

/* == Callout ========================================================= */
.et-callout {
  margin: 0;
  padding: 0.4rem 0 0.4rem 1.6rem;
  border-left: 3px solid var(--et-pine);
}
.et-callout p {
  font-family: var(--et-serif);
  font-style: italic;
  font-size: var(--wp--preset--font-size--md);
  line-height: 1.5;
  margin: 0;
}
.et-callout cite {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--et-sans);
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--et-taupe);
}

/* == Feature (homepage lede) ========================================= */
.et-feature-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16rem;
  gap: clamp(1.6rem, 3vw, 3.4rem);
  align-items: start;
}
/* Beside the rail the feature gets a wider text column + a calmer title so
   long Swedish compounds never spill out of their track. */
.et-feature-wrap .et-feature {
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
}
.et-feature-wrap .et-feature__title {
  font-size: clamp(1.9rem, 1.4rem + 1.4vw, 2.5rem);
}
@media (max-width: 1080px) {
  .et-feature-wrap {
    grid-template-columns: 1fr;
  }
  .et-latest {
    margin-top: 1.5rem;
  }
}

/* "Senaste" — the newsy headline rail; a short ink rule tops it. */
.et-latest {
  border-top: 3px solid var(--et-ink);
  padding-top: 0.8rem;
}
.et-latest__head {
  font-family: var(--et-display);
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.008em;
  margin: 0 0 0.4rem;
}
.et-latest__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.et-latest__list li + li {
  border-top: 1px solid var(--et-rule);
}
.et-latest__list a {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem 0;
  text-decoration: none;
  color: inherit;
}
.et-latest__title {
  font-family: var(--et-sans);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 140ms ease;
}
.et-latest__date {
  font-family: var(--et-sans);
  font-size: 0.75rem;
  color: var(--et-taupe);
}
.et-latest__list a:hover .et-latest__title {
  color: var(--et-pine);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.22em;
}

.et-feature {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.et-feature__img img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.et-feature__body {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
}
.et-feature__title {
  font-family: var(--et-display);
  font-size: var(--wp--preset--font-size--2-xl);
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.015em;
  margin: 0;
  overflow-wrap: break-word;
  hyphens: auto;
  transition: color 160ms ease;
}
.et-feature__dek {
  font-size: var(--wp--preset--font-size--md);
  font-style: italic;
  line-height: 1.5;
  color: var(--et-taupe);
  margin: 0;
}
.et-feature__meta {
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  color: var(--et-taupe);
  margin: 0;
}
.et-feature__cta {
  font-family: var(--et-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--et-pine);
}
.et-feature:hover .et-feature__title {
  color: var(--et-pine);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .et-feature:hover .et-feature__img img {
    transform: scale(1.025);
  }
}

/* == Story cards ===================================================== */
.et-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  gap: clamp(1.4rem, 2.4vw, 2.2rem);
}
.et-story-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.et-story-card__img {
  margin-bottom: 0.9rem;
}
.et-story-card__img img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.et-story-card__cat {
  margin-bottom: 0.35rem;
}
.et-story-card__title {
  font-family: var(--et-display);
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.008em;
  margin: 0 0 0.4rem;
  transition: color 150ms ease;
}
.et-story-card__title a {
  text-decoration: none;
  color: inherit;
}
.et-story-card__dek {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--et-taupe);
  margin: 0 0 0.5rem;
}
.et-story-card__date {
  font-family: var(--et-sans);
  font-size: 0.78rem;
  color: var(--et-taupe);
  margin: 0;
}
.et-story-card:hover .et-story-card__title,
.et-story-card .et-story-card__title a:hover {
  color: var(--et-pine);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .et-story-card:hover .et-story-card__img img {
    transform: scale(1.03);
  }
}
.et-more {
  display: inline-block;
  margin-top: 1.8rem;
  font-family: var(--et-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--et-pine);
  text-decoration: none;
}
.et-more:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.3em;
}

/* == Category rail =================================================== */
.et-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.et-rail__chip {
  font-family: var(--et-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--et-ink);
  text-decoration: none;
  border: 1px solid var(--et-rule);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  background: var(--et-card);
  transition: border-color 140ms ease, color 140ms ease, background-color 140ms ease;
}
.et-rail__chip:hover {
  color: var(--et-pine);
  border-color: color-mix(in srgb, var(--et-pine) 40%, var(--et-rule));
  background: color-mix(in srgb, var(--et-pine) 4%, var(--et-card));
}

/* == Deals =========================================================== */
.et-deals {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--et-rule);
}
.et-deal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--et-rule);
}
.et-deal__name {
  font-family: var(--et-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0;
}
.et-deal__spec {
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  color: var(--et-taupe);
  margin: 0.15rem 0 0;
}
.et-deal__price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  font-family: var(--et-sans);
  font-variant-numeric: tabular-nums;
}
.et-deal__was {
  color: var(--et-taupe);
  text-decoration: line-through;
  font-size: 0.875rem;
}
.et-deal__now {
  font-weight: 700;
  font-size: 1.0625rem;
}
.et-flag {
  font-family: var(--et-sans);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--et-ochre) 72%, var(--et-ink));
  background: color-mix(in srgb, var(--et-ochre) 14%, var(--et-paper));
  border-radius: var(--et-r-sm);
  padding: 0.3em 0.6em;
}

/* == Newsletter ====================================================== */
.et-band--news {
  border-top: 1px solid var(--et-rule);
}
.et-news {
  background: var(--et-card);
  border: 1px solid var(--et-rule);
  border-radius: var(--et-r-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem);
  display: grid;
  gap: 1.2rem;
}
.et-news__title {
  font-family: var(--et-display);
  font-size: var(--wp--preset--font-size--xl);
  font-weight: 600;
  letter-spacing: -0.012em;
  margin: 0 0 0.4rem;
}
.et-news__lede {
  font-size: 1.0625rem;
  color: var(--et-taupe);
  margin: 0;
  max-width: 34rem;
}
.et-news__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  position: relative;
}
.et-news__form input[type="email"] {
  flex: 1 1 16rem;
  font-family: var(--et-sans);
  font-size: 0.9375rem;
  color: var(--et-ink);
  background: var(--et-paper);
  border: 1px solid var(--et-rule);
  border-radius: var(--et-r-sm);
  padding: 0.78em 1em;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.et-news__form input[type="email"]:focus {
  outline: none;
  border-color: var(--et-pine);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--et-pine) 15%, transparent);
}
.et-news__form button {
  font-family: var(--et-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--et-card);
  background: var(--et-pine);
  border: 0;
  border-radius: var(--et-r-sm);
  padding: 0.82em 1.4em;
  cursor: pointer;
  transition: background-color 140ms ease;
}
.et-news__form button:hover {
  background: var(--et-pine-deep);
}
.et-news__form button:active {
  transform: translateY(1px);
}
.et-news__status {
  font-family: var(--et-sans);
  font-size: 0.875rem;
  color: var(--et-pine);
}
.et-news__note {
  font-family: var(--et-sans);
  font-size: 0.78rem;
  color: var(--et-taupe);
  margin: 0;
}

/* == FAQ ============================================================= */
.et-faq {
  border-top: 1px solid var(--et-rule);
}
.et-faq__item {
  border-bottom: 1px solid var(--et-rule);
}
.et-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-family: var(--et-display);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3;
  transition: color 140ms ease;
}
.et-faq__item summary::-webkit-details-marker {
  display: none;
}
.et-faq__item summary::after {
  content: "+";
  font-family: var(--et-sans);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--et-pine);
  flex: 0 0 auto;
}
.et-faq__item[open] summary::after {
  transform: rotate(45deg);
}
.et-faq__item summary:hover {
  color: var(--et-pine);
}
.et-faq__a {
  padding: 0 2.4rem 1.2rem 0;
}
.et-faq__a p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--et-ink) 82%, var(--et-taupe));
}

/* == Author bio ====================================================== */
.et-author {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  border-top: 1px solid var(--et-rule);
  padding-top: 1.6rem;
}
.et-author__avatar,
.et-author__initial {
  flex: 0 0 3.4rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  overflow: hidden;
}
.et-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.et-author__initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--et-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--et-pine);
  background: color-mix(in srgb, var(--et-pine) 10%, var(--et-paper));
}
.et-author__name {
  font-family: var(--et-sans);
  font-weight: 700;
  font-size: 0.9375rem;
  margin: 0 0 0.3rem;
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  flex-wrap: wrap;
}
.et-author__role {
  font-weight: 500;
  color: var(--et-taupe);
}
.et-author__bio {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--et-taupe);
  margin: 0;
}

/* == Article (single post) =========================================== */
.et-main {
  padding-top: calc(var(--et-section-y) * 0.55);
  padding-bottom: var(--et-section-y);
}
.et-main--wide {
  padding-top: 0;
  padding-bottom: 0;
}
.et-page-head {
  margin-bottom: 2.2rem;
}
.et-article__meta {
  margin-bottom: 0.9rem;
}
.et-article__meta .et-eyebrow a {
  text-decoration: none;
  color: var(--et-pine);
}
.et-article__title {
  margin-bottom: 0.8rem;
}
.et-article__dek p {
  font-size: var(--wp--preset--font-size--md);
  font-style: italic;
  line-height: 1.5;
  color: var(--et-taupe);
  margin: 0 0 1.1rem;
}
.et-article__byline {
  font-family: var(--et-sans);
  font-size: 0.8125rem;
  color: var(--et-taupe);
  gap: 0.9rem;
  border-bottom: 1px solid var(--et-rule);
  padding-bottom: 1.1rem;
  margin-bottom: 1.8rem;
}
.et-article__author {
  font-weight: 600;
  color: var(--et-ink);
}
.et-article__hero {
  margin-bottom: 2rem;
}
.et-article__body > * {
  margin-block-start: 1.25em;
}
.et-article__body h2 {
  margin-block-start: 1.9em;
}
.et-article__footer {
  border-top: 1px solid var(--et-rule);
  margin-top: 3rem;
  padding-top: 1.4rem;
}
.et-article__nav a {
  font-family: var(--et-sans);
  font-size: 0.875rem;
  text-decoration: none;
}
.et-article__nav a:hover {
  text-decoration: underline;
}

/* Hub head (archives) */
.et-hub-head {
  margin-bottom: 2.4rem;
}
.et-hub-head__title {
  font-family: var(--et-display);
  font-size: var(--wp--preset--font-size--2-xl);
  letter-spacing: -0.015em;
  margin: 0;
}
.et-pagination {
  font-family: var(--et-sans);
  font-size: 0.9rem;
  margin-top: 3rem;
  border-top: 1px solid var(--et-rule);
  padding-top: 1.2rem;
}

/* == Footer ========================================================== */
.et-footer {
  border-top: 1px solid var(--et-rule);
  background: color-mix(in srgb, var(--et-ink) 3%, var(--et-paper));
  padding-top: calc(var(--et-section-y) * 0.6);
  padding-bottom: 2rem;
  margin-top: var(--et-section-y);
}
.et-main--wide + .et-footer,
.et-band--news + .et-footer {
  margin-top: 0;
}
.et-footer__wordmark {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.et-footer__tagline {
  color: var(--et-taupe);
  font-style: italic;
  margin-top: 0.3rem;
}
.et-footer__note {
  font-family: var(--et-sans);
  line-height: 1.6;
  color: var(--et-taupe);
  margin-top: 1.1rem;
  max-width: 26rem;
}
.et-footer__head {
  font-family: var(--et-sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--et-taupe);
  margin: 0 0 0.7rem;
}
.et-footer__links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
}
.et-footer__links a {
  font-family: var(--et-sans);
  color: var(--et-ink);
  text-decoration: none;
}
.et-footer__links a:hover {
  color: var(--et-pine);
  text-decoration: underline;
}
.et-footer__base {
  border-top: 1px solid var(--et-rule);
  margin-top: 2.4rem;
  padding-top: 1.2rem;
}
.et-footer__copy {
  font-family: var(--et-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--et-taupe);
  margin: 0;
}

/* == Motion — quiet scroll reveal ==================================== */
@media (prefers-reduced-motion: no-preference) {
  .et-buy {
    transition: background-color 140ms ease, color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
  }
  .et-summary__go {
    transition: transform 180ms var(--et-ease), color 140ms ease;
  }
  .et-pick {
    transition: border-color 200ms ease, box-shadow 220ms var(--et-ease), transform 220ms var(--et-ease);
  }
  .et-feature__img img {
    transition: transform 400ms var(--et-ease);
  }
  .et-story-card__img img {
    transition: transform 360ms var(--et-ease);
  }
  .et-news__form button {
    transition: background-color 140ms ease, transform 140ms ease;
  }
  .et-faq__item summary::after {
    transition: transform 200ms var(--et-ease);
  }
  @supports (animation-timeline: view()) {
    .et-pick,
    .et-summary,
    .et-story-card,
    .et-stat,
    .et-deal,
    .et-faq__item,
    .et-roundup__row,
    .et-compare {
      animation: et-rise linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }
  }
}
@keyframes et-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* == Responsive ====================================================== */
@media (max-width: 920px) {
  .et-utility-links {
    display: none;
  }
  .et-masthead__nav {
    gap: 1rem;
  }
  .et-nav a {
    font-size: 0.8125rem;
  }
  .et-nav .wp-block-navigation__container {
    gap: 1rem;
  }
}
@media (max-width: 640px) {
  .et-masthead__utility {
    display: none;
  }
  .et-masthead__cta {
    display: none;
  }
}
@media (max-width: 860px) {
  .et-pick__cols,
  .et-feature {
    grid-template-columns: 1fr;
  }
  .et-flaws {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
  .et-summary__link {
    grid-template-columns: 1fr auto;
  }
  .et-summary__link .et-chip {
    grid-column: 1;
    justify-self: start;
    margin-bottom: 0.25rem;
  }
  .et-summary__name,
  .et-summary__why {
    grid-column: 1;
  }
  .et-summary__go {
    grid-row: 1 / span 3;
    grid-column: 2;
  }
  .et-roundup__row {
    grid-template-columns: 2rem minmax(0, 1fr);
  }
  .et-roundup__side {
    grid-column: 2;
    justify-items: start;
    grid-auto-flow: column;
    align-items: center;
    gap: 0.9rem;
  }
  .et-deal {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .et-masthead__nav {
    gap: 0.9rem;
  }
}
