  .page-head {
    padding: 56px 0 24px;
    position: relative;
    overflow: hidden;
  }
  .page-head__motif {
    position: absolute;
    top: -40px; right: -30px;
    width: 220px;
    color: var(--sage-2);
    opacity: 0.1;
    pointer-events: none;
  }
  .page-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
  .page-head p {
    color: var(--ink-mute);
    font-size: 1.1rem;
    max-width: 640px;
    margin-top: 12px;
  }

  /* Categories */
  .cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 32px 0;
  }
  .cat-pill {
    background: var(--bg-card);
    border: 1.5px solid var(--line);
    color: var(--ink-2);
    padding: 8px 16px;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.92rem;
    cursor: pointer;
    transition: all 0.15s;
  }
  .cat-pill:hover { border-color: var(--sage-2); color: var(--sage-3); }
  .cat-pill.is-active {
    background: var(--sage-3);
    color: var(--bg);
    border-color: var(--sage-3);
  }

  /* Featured */
  .featured {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    margin-bottom: 32px;
    transition: all 0.2s;
  }
  .featured:hover { box-shadow: var(--shadow); transform: translateY(-2px); }

  .featured__cover {
    background: linear-gradient(135deg, var(--sage-2), var(--sage-3));
    position: relative;
    overflow: hidden;
    min-height: 320px;
  }
  .featured__cover-motif {
    position: absolute;
    inset: 0;
    color: white;
    opacity: 0.18;
  }
  .featured__cover-arch {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    opacity: 0.4;
    color: white;
  }
  .featured__cover-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; height: 120px;
    color: white;
    opacity: 0.85;
  }
  .featured__body { padding: 40px; display: flex; flex-direction: column; gap: 12px; }
  .featured__pill { align-self: flex-start; }
  .featured__title { font-size: 2rem; line-height: 1.3; margin-top: 8px; }
  .featured__lede { color: var(--ink-mute); font-size: 1.02rem; line-height: 1.9; }
  .featured__meta { display: flex; gap: 14px; color: var(--ink-mute); font-size: 0.88rem; padding-top: 16px; margin-top: auto; border-top: 1px dashed var(--line); }
  .featured__author { display: flex; align-items: center; gap: 10px; }
  .featured__author-avatar {
    width: 32px; height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--sage-1), var(--sage-2));
    color: white;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.75rem;
  }

  @media (max-width: 880px) {
    .featured { grid-template-columns: 1fr; }
    .featured__body { padding: 28px; }
    .featured__title { font-size: 1.5rem; }
  }

  /* Grid */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 880px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

  .post-card {
    background: var(--bg-card);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.2s;
    cursor: pointer;
  }
  .post-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--sage-2); }
  .post-card__cover {
    aspect-ratio: 16/10;
    position: relative;
    overflow: hidden;
  }
  .post-card__cover-motif {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    color: white;
  }
  .post-card__cover-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; height: 60px;
    color: white;
    opacity: 0.85;
  }
  .post-card__body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .post-card__title { font-size: 1.15rem; font-weight: 700; line-height: 1.4; }
  .post-card__lede { color: var(--ink-mute); font-size: 0.92rem; line-height: 1.8; }
  .post-card__meta { display: flex; gap: 12px; color: var(--ink-mute); font-size: 0.82rem; margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line); }

  /* Newsletter */
  .newsletter {
    background: var(--sage-4);
    color: var(--bg);
    border-radius: 28px;
    padding: 48px;
    margin-top: 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .newsletter__motif {
    position: absolute;
    top: -40px; left: -40px;
    width: 220px;
    color: var(--bg);
    opacity: 0.08;
  }
  .newsletter h2 { color: var(--bg); font-size: 1.8rem; }
  .newsletter p {
    color: color-mix(in srgb, var(--bg) 75%, transparent);
    margin-top: 8px;
    line-height: 1.85;
  }
  .newsletter__form {
    display: flex;
    gap: 8px;
    background: var(--bg);
    border-radius: 16px;
    padding: 6px;
    position: relative;
    z-index: 1;
  }
  .newsletter__form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
  }
  .newsletter__form input:focus { outline: none; }
  .newsletter__form button {
    background: var(--sage-3);
    color: var(--bg);
    border: none;
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
  }
  @media (max-width: 760px) {
    .newsletter { grid-template-columns: 1fr; padding: 32px 24px; }
  }
