/* ============================================================
   ワークレシピ media skin — Style C (magazine bold)
   Tokens + docs.css re-skin + site chrome + top page + article parts
   Loads AFTER legacy css & docs.css. All new classes use .wr- prefix.
   ============================================================ */

:root {
  --wr-ink: #101026;
  --wr-yellow: #ffd233;
  --wr-paper: #ffffff;
  --wr-bg: #fafafc;
  --wr-border: #d9d9e3;
  --wr-border-soft: #eef0f4;
  --wr-muted: #4a4a5e;
  --wr-gray: #8a8a99;
  --wr-pink: #d92662;
  --wr-green: #0b7a5c;
  --wr-orange: #b35a1f;
  --wr-font: "Noto Sans JP", "Hiragino Sans", sans-serif;

  /* docs.css 変数の上書き（media.css は docs.css より後に読み込まれる） */
  --docs-nav-active: #101026;
  --docs-nav-active-bg: rgba(16, 16, 38, 0.06);
  --docs-nav-text-hover: #101026;
  --docs-search-focus: #101026;
}

/* ---------- utilities ---------- */
.wr-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.wr-hl {
  background: var(--wr-yellow);
  padding: 0 0.15em;
}
.wr-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--wr-gray);
  text-transform: uppercase;
}
.wr-sec-title {
  font-family: var(--wr-font);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--wr-ink);
  padding-bottom: 0.4em;
  border-bottom: 3px solid var(--wr-ink);
  margin-bottom: 1em;
}
.wr-btn {
  display: inline-block;
  background: var(--wr-yellow);
  color: var(--wr-ink);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.7em 1.4em;
  border-radius: 4px;
  box-shadow: 3px 3px 0 var(--wr-ink);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}
.wr-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--wr-ink);
}
.wr-btn--disabled,
.wr-btn--disabled:hover {
  background: var(--wr-border-soft);
  color: var(--wr-muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.wr-btn--ghost {
  background: transparent;
  color: var(--wr-ink);
  border: 2px solid var(--wr-ink);
  box-shadow: none;
}
.wr-btn--ghost:hover {
  background: var(--wr-ink);
  color: #fff;
  transform: none;
}
.wr-accent-pink {
  color: var(--wr-pink);
}
.wr-accent-green {
  color: var(--wr-green);
}
.wr-accent-orange {
  color: var(--wr-orange);
}
.wr-accent-ink {
  color: var(--wr-ink);
}

/* ---------- site chrome: header ---------- */
.wr-header {
  background: var(--wr-paper);
  border-bottom: 3px solid var(--wr-ink);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.wr-header_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.wr-logo {
  font-family: var(--wr-font);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--wr-ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.wr-logo small {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--wr-gray);
}
.wr-gnav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.wr-gnav_link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--wr-ink);
  text-decoration: none;
  padding: 0.3em 0;
  border-bottom: 3px solid transparent;
}
.wr-gnav_link:hover,
.wr-gnav_link.is-active {
  border-bottom-color: var(--wr-yellow);
}
.wr-gnav_cta {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--wr-ink);
  text-decoration: none;
  border: 2px solid var(--wr-ink);
  border-radius: 999px;
  padding: 0.4em 1.1em;
}
.wr-gnav_cta:hover {
  background: var(--wr-ink);
  color: #fff;
}

/* SP nav (既存 script.js のトグル動作クラスを流用する場合はそのクラスも併記) */
.wr-sp-toggle {
  display: none;
}
@media screen and (max-width: 860px) {
  .wr-gnav {
    display: none;
  }
  .wr-gnav.is-open {
    display: flex;
  }
  .wr-sp-toggle {
    display: block;
    background: none;
    border: 2px solid var(--wr-ink);
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--wr-ink);
    padding: 0.35em 0.7em;
    cursor: pointer;
  }
}

/* ---------- site chrome: footer ---------- */
.wr-footer {
  background: var(--wr-ink);
  color: #d5d5e2;
  margin-top: 80px;
}
.wr-footer_inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 32px;
}
.wr-footer_logo {
  font-weight: 900;
  font-size: 1.15rem;
  color: #fff;
}
.wr-footer_logo .wr-hl {
  color: var(--wr-ink);
}
.wr-footer_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}
.wr-footer_nav a {
  color: #d5d5e2;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}
.wr-footer_nav a:hover {
  color: var(--wr-yellow);
}
.wr-footer_note {
  font-size: 0.72rem;
  color: #8f8fa3;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 18px;
}
.wr-footer .wr-band {
  margin: 24px 0 28px;
}

/* ---------- top page ---------- */
.wr-hero {
  background: var(--wr-paper);
  padding: 72px 0 48px;
}
.wr-hero_title {
  font-family: var(--wr-font);
  font-weight: 900;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  line-height: 1.4;
  color: var(--wr-ink);
}
.wr-hero_lead {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wr-muted);
  margin-top: 1em;
}
.wr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.6em;
}
.wr-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  border: 2px solid var(--wr-ink);
  border-radius: 999px;
  padding: 0.45em 1.05em;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--wr-ink);
  text-decoration: none;
  background: var(--wr-paper);
}
.wr-pill:hover {
  background: var(--wr-yellow);
}
.wr-pill_count {
  font-size: 0.78rem;
  color: var(--wr-pink);
}
.wr-section {
  padding: 48px 0 0;
}
.wr-teiban {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 28px;
}
.wr-teiban_item {
  border-top: 3px solid var(--wr-ink);
  padding: 14px 0 22px;
  text-decoration: none;
  display: block;
}
.wr-teiban_dept {
  font-size: 0.72rem;
  font-weight: 800;
}
.wr-teiban_title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--wr-ink);
  line-height: 1.55;
  margin-top: 0.45em;
}
.wr-teiban_item:hover .wr-teiban_title {
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 3px;
}
.wr-two-col {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}
.wr-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wr-list_item {
  border-bottom: 1px solid var(--wr-border);
}
.wr-list_link {
  display: block;
  padding: 14px 0;
  text-decoration: none;
}
.wr-list_meta {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--wr-gray);
}
.wr-list_title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--wr-ink);
  line-height: 1.55;
  margin-top: 0.25em;
}
.wr-list_link:hover .wr-list_title {
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 3px;
}
.wr-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--wr-ink);
}

/* ---------- bands (newsletter / YUSAKU) ---------- */
.wr-band {
  background: var(--wr-ink);
  border-radius: 6px;
  padding: 34px 36px;
  margin-top: 56px;
}
.wr-band_title {
  font-weight: 900;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.5;
}
.wr-band_title .wr-hl {
  color: var(--wr-ink);
}
.wr-band_lead {
  font-size: 0.82rem;
  color: #c9cdd6;
  margin-top: 0.5em;
}
.wr-band--sub {
  background: var(--wr-bg);
  border: 2px solid var(--wr-ink);
}
.wr-band--sub .wr-band_title {
  color: var(--wr-ink);
}
.wr-band--sub .wr-band_lead {
  color: var(--wr-muted);
}
.wr-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.wr-form_input {
  flex: 1;
  min-width: 220px;
  font-size: 0.9rem;
  padding: 0.7em 1em;
  border: 2px solid var(--wr-ink);
  border-radius: 4px;
  background: #fff;
  color: var(--wr-ink);
}
.wr-form_consent {
  font-size: 0.68rem;
  color: #8f8fa3;
  margin-top: 10px;
}
.wr-form_consent a {
  color: inherit;
  text-decoration: underline;
}
.wr-band--sub .wr-form_consent {
  color: var(--wr-gray);
}
.wr-form_done {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--wr-yellow);
}
.wr-band--sub .wr-form_done {
  color: var(--wr-green);
}
.wr-mid-subscribe {
  margin: 34px 0;
}
.wr-mid-subscribe .wr-band {
  margin-top: 0;
}
.wr-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- article parts ---------- */
.wr-pr-note {
  background: var(--wr-border-soft);
  border-radius: 4px;
  padding: 0.55em 1em;
  font-size: 0.74rem;
  color: #6b7280;
  margin-bottom: 1.4em;
}
.wr-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9em 1.6em;
  border-left: 4px solid var(--wr-yellow);
  background: var(--wr-paper);
  border-top: 1px solid var(--wr-border-soft);
  border-bottom: 1px solid var(--wr-border-soft);
  padding: 0.9em 1.1em;
  margin: 1.4em 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wr-ink);
}
.wr-meta_label {
  color: var(--wr-gray);
  font-weight: 600;
  margin-right: 0.3em;
}
.wr-tool {
  border: 2px solid var(--wr-ink);
  border-radius: 6px;
  padding: 1em 1.2em;
  margin: 1.6em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: var(--wr-paper);
}
.wr-tool_name {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--wr-ink);
}
.wr-tool_pr {
  font-size: 0.6rem;
  background: var(--wr-border-soft);
  color: var(--wr-gray);
  border-radius: 3px;
  padding: 0.15em 0.45em;
  vertical-align: middle;
  margin-left: 0.4em;
}
.wr-tool_desc {
  font-size: 0.78rem;
  color: var(--wr-muted);
  margin-top: 0.35em;
}
.wr-compare {
  overflow-x: auto;
  margin: 1.6em 0;
}
.wr-compare table {
  border-collapse: collapse;
  min-width: 620px;
  width: 100%;
  font-size: 0.8rem;
}
.wr-compare th,
.wr-compare td {
  border: 1px solid var(--wr-border);
  padding: 0.6em 0.8em;
  text-align: center;
}
.wr-compare th {
  background: var(--wr-bg);
  font-weight: 800;
  color: var(--wr-ink);
}
.wr-compare .is-recommended {
  background: #fff7d6;
  border: 2px solid var(--wr-yellow);
  font-weight: 800;
}
.wr-next-read {
  background: #fff;
  border: 1px solid var(--wr-border);
  border-radius: 6px;
  padding: 18px 20px;
  margin: 42px 0 24px;
}
.wr-next-read_label {
  color: var(--wr-muted);
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 8px;
}
.wr-next-read_link {
  align-items: center;
  color: var(--wr-ink);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  text-decoration: none;
}
.wr-next-read_link:hover .wr-next-read_title {
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 0.18em;
}
.wr-next-read_title {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.6;
}
.wr-next-read_arrow {
  color: var(--wr-yellow);
  flex: 0 0 auto;
  font-weight: 900;
}
.wr-next {
  background: var(--wr-ink);
  border-radius: 6px;
  padding: 26px 28px;
  margin: 48px 0 32px;
}
.wr-next_title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
}
.wr-next_grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  margin-top: 14px;
}
.wr-next_card {
  border-radius: 4px;
  padding: 14px;
  font-size: 0.78rem;
  text-decoration: none;
  display: block;
}
.wr-next_card--newsletter {
  background: var(--wr-yellow);
  color: var(--wr-ink);
  font-weight: 700;
}
.wr-next_card--yusaku {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #c9cdd6;
}
.wr-next_card strong {
  display: block;
  margin-bottom: 0.3em;
  font-size: 0.85rem;
}

/* ---------- docs surface re-skin ---------- */
.docs-article h2 {
  font-weight: 900;
  color: var(--wr-ink);
  border-bottom: 3px solid var(--wr-ink);
  padding-bottom: 0.3em;
}
.docs-article h3 {
  font-weight: 800;
  color: var(--wr-ink);
}
.docs-article a {
  color: var(--wr-ink);
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 2px;
}
.wr-cat-label {
  font-size: 0.78rem;
  font-weight: 800;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
}

/* ---------- responsive ---------- */
@media screen and (max-width: 860px) {
  .wr-teiban {
    grid-template-columns: 1fr;
  }
  .wr-two-col {
    grid-template-columns: 1fr;
  }
  .wr-next_grid {
    grid-template-columns: 1fr;
  }
  .wr-hero {
    padding: 48px 0 32px;
  }
  .wr-band {
    padding: 26px 22px;
  }
}

/* ---------- BASE legacy override: finish Style C magazine-bold skin ----------
   Scoped to BASE docs surfaces only. Targets legacy docs.css/style.css/common.css
   declarations that hard-code old imagery and blue/purple colors beyond variables.
   -------------------------------------------------------------------------- */
.docs-layout--top .base-latest-update {
  background: var(--wr-paper);
  border: 2px solid var(--wr-border);
  border-radius: 6px;
}

.docs-layout--top .base-latest-update_label {
  background: var(--wr-ink);
  color: var(--wr-yellow) !important;
  border-radius: 3px;
  font-weight: 900;
}

.docs-layout--top .base-latest-update_date,
.docs-layout--top .base-latest_date,
.docs-layout .base-card_date {
  color: var(--wr-gray);
}

.docs-layout--top .base-latest-update_link,
.docs-layout--top .base-latest-update_link:hover {
  color: var(--wr-ink);
}

.docs-layout--top .base-hero {
  background: var(--wr-paper);
  border: 3px solid var(--wr-ink);
  border-radius: 6px;
}

.docs-layout--top .base-hero_title {
  color: var(--wr-ink);
  font-weight: 900;
  text-shadow: none;
}

.docs-layout--top .base-hero_title::after {
  content: "";
  display: block;
  width: min(220px, 55%);
  height: 3px;
  margin: 18px auto 0;
  background: var(--wr-ink);
}

.docs-layout--top .base-hero_lead {
  color: var(--wr-muted);
  font-weight: 700;
  text-shadow: none;
}

.docs-layout--top .base-hero_cta .btn,
.docs-layout--top .base-cta_buttons .btn {
  border-radius: 4px;
  border: 2px solid var(--wr-ink);
  font-weight: 900;
  box-shadow: none;
}

.docs-layout--top .base-hero_cta .btn-primary,
.docs-layout--top .base-cta_buttons .btn-primary {
  background: var(--wr-yellow);
  color: var(--wr-ink);
  box-shadow: 3px 3px 0 var(--wr-ink);
}

.docs-layout--top .base-hero_cta .btn-primary:hover,
.docs-layout--top .base-cta_buttons .btn-primary:hover {
  background: var(--wr-yellow);
  color: var(--wr-ink);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--wr-ink);
}

.docs-layout--top .base-hero_cta .btn-secondary {
  background: transparent;
  color: var(--wr-ink);
  border-color: var(--wr-ink);
}

.docs-layout--top .base-hero_cta .btn-secondary:hover {
  background: var(--wr-ink);
  color: #fff;
  border-color: var(--wr-ink);
}

.docs-layout--top .base-pillar-card {
  border: 2px solid var(--wr-border);
  border-radius: 6px;
}

.docs-layout--top .base-pillar-card:hover {
  border-color: var(--wr-ink);
  box-shadow: 4px 4px 0 var(--wr-ink);
}

.docs-layout--top .base-pillar-card_title,
.docs-layout--top .base-pillar-card_link,
.docs-layout--top .base-pillar-card_link:hover,
.docs-layout--top .base-dept-card_name,
.docs-layout--top .base-latest_item-title,
.docs-layout--top .base-latest_more,
.docs-layout--top .base-latest_more:hover {
  color: var(--wr-ink);
}

.docs-layout--top .base-pillar-card_subtitle,
.docs-layout--top .base-pillar-card_desc {
  color: var(--wr-muted);
}

.docs-layout--top .base-departments_title,
.docs-layout--top .base-latest_title,
.docs-layout .base-sec .sec-main_title .sec-title_jp,
.docs-layout section.base-related-sec .sec-main_title .sec-title_jp {
  color: var(--wr-ink);
  font-weight: 900;
  padding-bottom: 0.35em;
  border-bottom: 3px solid var(--wr-ink);
  display: inline-block;
}

.docs-layout .base-sec .sec-main_title .sec-title_head.text-grad_purple,
.docs-layout section.base-related-sec .sec-main_title .sec-title_head.text-grad_purple {
  background: none;
  color: var(--wr-ink);
  -webkit-text-fill-color: var(--wr-ink);
}

.docs-layout--top .base-dept-card {
  border: 2px solid var(--wr-border);
  border-radius: 6px;
}

.docs-layout--top .base-dept-card:hover {
  border-color: var(--wr-ink);
  background: #fff7d6;
  box-shadow: 3px 3px 0 var(--wr-ink);
}

.docs-layout--top .base-dept-card_count {
  color: var(--wr-gray);
}

.docs-layout--top .base-latest_item {
  border: 2px solid var(--wr-border);
  border-radius: 6px;
}

.docs-layout--top .base-latest_item:hover {
  background: var(--wr-bg);
  border-color: var(--wr-ink);
}

.docs-layout--top .base-latest_label,
.docs-layout--top .base-latest_label--news,
.docs-layout--top .base-latest_label--action,
.docs-layout--top .base-latest_label--series,
.docs-layout .base-card_category,
.docs-layout .base-article_tag,
.docs-layout .base-tag {
  background: var(--wr-border-soft) !important;
  color: var(--wr-ink) !important;
  border-radius: 999px;
  text-decoration: none;
}

.docs-layout .base-card_category {
  box-shadow: none;
}

.docs-layout--top .base-cta {
  background: var(--wr-ink);
  border-radius: 6px;
}

.docs-layout--top .base-cta_title,
.docs-layout--top .base-cta .base-cta_desc {
  color: #fff !important;
  text-shadow: none;
}

.docs-layout--top .base-cta_buttons .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.docs-layout--top .base-cta_buttons .btn-secondary:hover {
  background: #fff;
  color: var(--wr-ink);
  border-color: #fff;
}

.docs-layout .base-sec .base-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.docs-layout .base-sec .base-category-filter a {
  background: var(--wr-border-soft);
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--wr-ink);
  font-weight: 800;
}

.docs-layout .base-sec .base-category-filter a.current,
.docs-layout .base-sec .base-category-filter a:hover {
  background: var(--wr-yellow);
  border-color: var(--wr-ink);
  color: var(--wr-ink);
}

.docs-layout .base-article_category {
  background: transparent;
  color: var(--wr-pink);
  border-radius: 0;
  border-bottom: 2px solid currentColor;
  padding: 0 0 2px;
  font-weight: 900;
  text-decoration: none;
}

.docs-layout .base-article_category:hover {
  background: transparent;
  color: var(--wr-pink);
}

.docs-layout .base-article_eyecatch {
  background: linear-gradient(135deg, var(--wr-ink), #1c1c3a);
  border-radius: 6px;
}

.docs-layout .base-article_eyecatch-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--wr-ink), #1c1c3a);
}

.docs-layout .base-article_tags .tag-label {
  color: var(--wr-gray);
}

.docs-layout .readmore-btn.back-btn {
  background: transparent;
  border: 2px solid var(--wr-ink);
  border-radius: 4px;
  color: var(--wr-ink);
}

.docs-layout .readmore-btn.back-btn a {
  color: var(--wr-ink);
  text-decoration: none;
}

.docs-layout .readmore-btn.back-btn:hover {
  background: var(--wr-ink);
  color: #fff;
}

.docs-layout .readmore-btn.back-btn:hover a {
  color: #fff;
}

.docs-layout .docs-nav-section-title,
.docs-layout .docs-nav-group-count {
  color: var(--wr-ink);
}

.docs-layout .docs-nav-group-count {
  background: var(--wr-border-soft);
  font-weight: 800;
}

/* 記事末バンド見出し: .docs-main p の詳細度対策 */
.docs-main .wr-next_title {
  color: #fff;
}

/* ---------- BASE media right rail layout override ----------
   Moves BASE docs surfaces from the old fixed left sidebar to a centered
   content + right rail layout. docs.css stays unchanged; this file wins later.
   -------------------------------------------------------------------------- */
.page-contents_area > .contents-wrap:has(.docs-layout) {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.docs-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
  max-width: 1140px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 20px;
}

.docs-layout--top {
  display: block;
  max-width: 1080px;
}

.docs-layout .docs-main {
  min-width: 0;
  margin-left: 0;
  margin-right: 0;
}

.docs-layout:not(.docs-layout--top) .docs-main {
  padding: 0;
}

.docs-layout--top .docs-main {
  padding-top: 100px;
}

.docs-layout .docs-main--with-toc {
  margin-right: 0;
}

.docs-layout .docs-article {
  max-width: 760px;
  margin: 0;
}

.docs-layout:not(.docs-layout--top) .docs-main > .page-contents,
.docs-layout:not(.docs-layout--top) .docs-main .base-single-contents {
  max-width: 760px;
}

.docs-layout--top .docs-main > .page-contents {
  max-width: none;
}

.docs-layout .docs-sidebar {
  display: none;
  position: static;
  width: auto;
  height: auto;
  border: 0;
}

.docs-layout .wr-rail {
  position: sticky;
  top: 90px;
  align-self: start;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  padding-bottom: 8px;
}

.wr-rail_section + .wr-rail_section {
  margin-top: 28px;
}

.docs-layout .wr-rail_title,
.docs-layout .wr-rail .docs-toc-title {
  color: var(--wr-ink);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  margin: 0 0 12px;
  padding-bottom: 0.45em;
  border-bottom: 3px solid var(--wr-ink);
}

.docs-layout .wr-rail .docs-toc {
  position: static;
  top: auto;
  right: auto;
  width: auto;
  height: auto;
  background: transparent;
  border-left: 0;
  z-index: auto;
}

.docs-layout .wr-rail .docs-toc:not(:has(.docs-toc-nav:empty)) {
  display: block;
}

.docs-layout .wr-rail .docs-toc-inner {
  position: static;
  overflow: visible;
  padding: 0;
}

.docs-layout .wr-rail .docs-toc-nav a {
  color: var(--wr-muted);
}

.docs-layout .wr-rail .docs-toc-nav a:hover,
.docs-layout .wr-rail .docs-toc-nav a.is-active {
  color: var(--wr-ink);
  border-left-color: var(--wr-yellow);
}

.docs-layout .wr-rail .docs-search {
  margin: 0;
  padding-right: 0;
}

.docs-layout .wr-rail .docs-search-input {
  border-color: var(--wr-border);
  border-radius: 4px;
  color: var(--wr-ink);
}

.docs-layout .wr-rail .docs-search-input:focus {
  border-color: var(--wr-ink);
  box-shadow: 0 0 0 3px rgba(255, 210, 51, 0.35);
}

.docs-layout .wr-rail .docs-search-results {
  right: 0;
  border-color: var(--wr-border);
  z-index: 20;
}

.docs-layout .wr-rail .wr-list_link {
  color: var(--wr-ink);
}

.docs-layout .wr-rail .wr-list_title {
  display: block;
  color: var(--wr-ink);
}

.docs-layout .wr-rail_dept-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.docs-layout .wr-rail_dept-main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.docs-layout .wr-rail_dept-mark {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}

.docs-layout .wr-rail_count {
  color: var(--wr-gray);
  white-space: nowrap;
}

.docs-layout .wr-rail_newsletter {
  display: block;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 860px) {
  .docs-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    max-width: 760px;
  }

  .docs-layout--top {
    max-width: 1080px;
  }

  .docs-layout .wr-rail {
    position: static;
    max-height: none;
    overflow: visible;
    width: 100%;
  }
}

/* ---------- copy-paste experience: prompt cards + step headings ---------- */
.wr-prompt {
  overflow: hidden;
  border-radius: 6px;
  background: var(--wr-ink);
  margin: 1.6em 0;
}

.wr-prompt_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.75em 1em;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wr-prompt_label {
  color: var(--wr-yellow);
  font-size: 0.78rem;
  font-weight: 800;
}

.wr-prompt_body {
  margin: 0;
  padding: 1em;
  color: #fff;
  font-family: monospace;
  font-size: 0.85rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

.wr-copy-btn {
  border: 0;
  border-radius: 4px;
  background: var(--wr-yellow);
  color: var(--wr-ink);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.55em 0.75em;
}

.wr-copy-btn:hover {
  background: #e8bd1f;
}

.wr-step {
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.wr-step_num {
  border-radius: 4px;
  background: var(--wr-ink);
  color: var(--wr-yellow);
  font-family: monospace;
  font-weight: 800;
  line-height: 1.45;
  padding: 0.1em 0.5em;
}

/* ---------- copy-paste experience: plain pre copy buttons ---------- */
.wr-pre {
  position: relative;
}

.wr-pre .wr-copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}

/* ---------- hero search + popular tags ---------- */
.wr-search {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin-top: 1.4em;
}

.wr-search .wr-form_input {
  min-width: 0;
}

.wr-tagchips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1em;
}

.wr-tagchip {
  display: inline-block;
  border: 1px solid var(--wr-border);
  border-radius: 999px;
  padding: 0.25em 0.8em;
  color: var(--wr-ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.wr-tagchip:hover {
  background: var(--wr-yellow);
}

@media screen and (max-width: 560px) {
  .wr-search {
    flex-direction: column;
  }
}

/* ---------- recipe card effect badges ---------- */
.wr-effect {
  display: inline-block;
  margin-top: 0.5em;
  border-radius: 3px;
  background: var(--wr-yellow);
  color: var(--wr-ink);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.15em 0.6em;
}

/* ---------- share assets + article polish ---------- */
.wr-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  z-index: 2000;
}

.wr-progress_bar {
  display: block;
  width: 0;
  height: 100%;
  background: var(--wr-yellow);
}

[class^="wr-"]:focus-visible,
[class*=" wr-"]:focus-visible,
.docs-layout a:focus-visible,
.docs-layout button:focus-visible,
.docs-layout input:focus-visible {
  outline: 2px solid var(--wr-yellow);
  outline-offset: 2px;
}

.docs-layout .wr-rail_dept-link,
.docs-layout .wr-rail_dept-link:visited,
.docs-layout .wr-rail_dept-name {
  color: var(--wr-ink);
}

.docs-layout .wr-rail_dept-mark.wr-accent-pink {
  color: var(--wr-pink);
  background: var(--wr-pink);
}

.docs-layout .wr-rail_dept-mark.wr-accent-green {
  color: var(--wr-green);
  background: var(--wr-green);
}

.docs-layout .wr-rail_dept-mark.wr-accent-orange {
  color: var(--wr-orange);
  background: var(--wr-orange);
}

.docs-layout .wr-rail_dept-mark.wr-accent-ink {
  color: var(--wr-ink);
  background: var(--wr-ink);
}

.docs-article .wr-tool_name {
  color: var(--wr-ink);
}

@media (prefers-reduced-motion: no-preference) {
  .wr-teiban_item,
  .wr-list_link,
  .wr-tagchip {
    transition: transform 0.15s ease;
  }

  .wr-teiban_item:hover,
  .wr-list_link:hover,
  .wr-tagchip:hover {
    transform: translateY(-1px);
  }
}

/* プロンプトラベル: docs.css 由来の色に勝つための詳細度ブースト */
.docs-main .wr-prompt_label,
.docs-article .wr-prompt_label {
  color: var(--wr-yellow);
}

/* ---------- author + article trust badges ---------- */
.wr-verified {
  display: inline-block;
  margin-left: 0.6em;
  border: 1px solid var(--wr-green);
  border-radius: 999px;
  padding: 0.1em 0.6em;
  color: var(--wr-green);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.5;
}

.wr-author {
  display: flex;
  gap: 16px;
  border: 2px solid var(--wr-ink);
  border-radius: 6px;
  padding: 1.1em;
  background: var(--wr-paper);
  margin-top: 32px;
}

.wr-author_avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--wr-ink);
  color: var(--wr-yellow);
  font-weight: 900;
}

.wr-author_body {
  min-width: 0;
}

.wr-author_label {
  color: var(--wr-gray);
  font-size: 0.72rem;
  font-weight: 800;
}

.wr-author_name {
  color: var(--wr-ink);
  font-size: 0.95rem;
  font-weight: 900;
  margin-top: 0.25em;
}

.wr-author_title,
.wr-author_bio {
  color: var(--wr-muted);
  font-size: 0.78rem;
  line-height: 1.7;
  margin-top: 0.35em;
}

.wr-author_bio a {
  color: var(--wr-ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 2px;
}

@media screen and (max-width: 560px) {
  .wr-author {
    flex-direction: column;
  }
}

/* ---------- contextual subscribe inside article next band ---------- */
.wr-next .wr-next_grid {
  align-items: start;
}

.wr-next .wr-band {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.wr-next .wr-band_title {
  color: #fff;
  font-size: 0.98rem;
}

.wr-next .wr-band_lead {
  color: #c9cdd6;
}

.wr-next .wr-form {
  margin-top: 12px;
}

.wr-next .wr-form_input {
  min-width: 180px;
  border-width: 1px;
}

.wr-next .wr-btn {
  box-shadow: none;
}

.wr-next .wr-form_consent {
  color: #c9cdd6;
}

.wr-next .wr-next_card--yusaku {
  align-self: start;
}

/* ---------- department pillar archive ---------- */
.wr-guide-link {
  display: inline-block;
  margin-left: 0.6em;
  border: 1px solid var(--wr-border);
  border-radius: 999px;
  padding: 0.12em 0.65em;
  color: var(--wr-ink);
  font-size: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.wr-guide-link:hover {
  background: var(--wr-yellow);
}

.wr-pillar_header {
  margin-bottom: 34px;
}

.wr-pillar_lead {
  max-width: 720px;
  color: var(--wr-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.wr-pillar_lead p {
  margin: 0;
}

.wr-pillar_order {
  margin: 0 0 42px;
}

.wr-pillar_heading {
  color: var(--wr-ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 14px;
}

.wr-pillar_steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wr-pillar_step a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 100%;
  border: 2px solid var(--wr-ink);
  border-radius: 6px;
  padding: 14px;
  background: var(--wr-paper);
  color: var(--wr-ink);
  text-decoration: none;
}

.wr-pillar_step a:hover {
  background: var(--wr-yellow);
}

.wr-pillar_step_body {
  display: block;
  min-width: 0;
}

.wr-pillar_step_title {
  display: block;
  color: var(--wr-ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.55;
}

.wr-pillar_all {
  margin-top: 8px;
}

@media screen and (max-width: 860px) {
  .wr-pillar_steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- share row ---------- */
.wr-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 18px;
  color: var(--wr-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.wr-share_label {
  color: var(--wr-gray);
}

.wr-share a,
.wr-share button {
  border: 1px solid var(--wr-border);
  border-radius: 999px;
  padding: 0.25em 0.8em;
  background: transparent;
  color: var(--wr-ink);
  font: inherit;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
}

.wr-share a:hover,
.wr-share button:hover {
  background: var(--wr-yellow);
}

/* ピラー見出し・バンド見出し: docs.css の .docs-main 配下要素に勝つための詳細度ブースト */
.docs-main .wr-pillar_heading,
.docs-main .wr-pillar_step a,
.docs-main .wr-pillar_step_title {
  color: var(--wr-ink);
}
.docs-main .wr-band_title {
  color: #fff;
}
.docs-main .wr-band--sub .wr-band_title {
  color: var(--wr-ink);
}

/* ============================================
   視認性修正: カテゴリチップ実チップ化・紺バンド内テキスト・ハニーポット強化
   ============================================ */

/* カードのカテゴリラベル: 旧 .news-card_category の白文字と競合しない「インク地×白」の実チップに */
.docs-layout .base-card_category,
.docs-layout .news-card_category.base-card_category {
  background: var(--wr-ink) !important;
  color: #fff !important;
  border-radius: 999px;
  padding: 0.2em 0.8em;
  font-size: 0.68rem;
  font-weight: 700;
}

/* 紺バンド内テキスト: .docs-main p の詳細度対策（部門ページ・記事末） */
.docs-main .wr-band_lead {
  color: #c9cdd6;
}
.docs-main .wr-band--sub .wr-band_lead {
  color: var(--wr-muted);
}
.docs-main .wr-band .wr-form_consent {
  color: #c9cdd6;
}
.docs-main .wr-band .wr-form_consent a {
  color: inherit;
}
.docs-main .wr-band .wr-form_done {
  color: var(--wr-yellow);
}

/* ハニーポット: どの文脈でも確実に不可視にする */
.wr-honeypot,
.wr-form .wr-honeypot,
.docs-main .wr-honeypot {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ---------- footer-linked pages: company / contact / privacy ---------- */
.wr-deflist {
  margin: 0;
  border-top: 2px solid var(--wr-ink);
}

.wr-defrow {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--wr-border);
}

.wr-defrow dt {
  color: var(--wr-ink);
  font-weight: 900;
}

.wr-defrow dd {
  color: var(--wr-muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 0;
}

.wr-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.wr-contact_panel {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.wr-contact_form,
.wr-confirm,
.wr-complete {
  border: 2px solid var(--wr-border);
  border-radius: 6px;
  background: var(--wr-paper);
  padding: 28px;
}

.wr-contact_form .wr-form-section {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.wr-contact_form .wr-form-section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.wr-contact_form .wr-form-section + .wr-form-section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--wr-border-soft);
}

.wr-contact_form .wr-form-section_title,
.wr-confirm_title {
  color: var(--wr-ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 18px;
  padding-left: 0;
  border-left: 0;
}

.wr-contact_form .wr-field {
  margin: 0 0 20px;
}

.wr-contact_form .wr-field:last-child {
  margin-bottom: 0;
}

.wr-contact_form .wr-field > label,
.wr-contact_form .wr-choice {
  color: var(--wr-ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.6;
}

.wr-contact_form .wr-field > label {
  display: block;
  margin-bottom: 8px;
}

.wr-contact_form .wr-field.required > label::after {
  content: "必須";
  display: inline-block;
  margin-left: 0.65em;
  border-radius: 3px;
  background: var(--wr-yellow);
  color: var(--wr-ink);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.25em 0.45em;
}

.wr-contact_form .wr-label-note {
  color: var(--wr-gray);
  font-size: 0.78rem;
  font-weight: 700;
  margin-left: 0.35em;
}

.wr-contact_form .wr-field_input {
  box-sizing: border-box;
  width: 100%;
  border: 2px solid var(--wr-border);
  border-radius: 4px;
  background: #fff;
  color: var(--wr-ink);
  font: inherit;
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0.78em 0.9em;
}

.wr-contact_form input.wr-field_input,
.wr-contact_form textarea.wr-field_input {
  border: 2px solid var(--wr-border);
  border-radius: 4px;
  color: var(--wr-ink);
  font-size: 0.9rem;
  padding: 0.78em 0.9em;
}

.wr-contact_form .wr-field_input:focus {
  border-color: var(--wr-ink);
  box-shadow: 0 0 0 3px rgba(255, 210, 51, 0.35);
  outline: none;
}

.wr-contact_form .wr-field_input::placeholder {
  color: var(--wr-gray);
}

.wr-contact_form textarea.wr-field_input {
  min-height: 150px;
  resize: vertical;
}

.wr-contact_form .wr-choice-group {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.wr-contact_form .wr-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--wr-border-soft);
  border-radius: 4px;
  background: var(--wr-bg);
  padding: 10px 12px;
}

.wr-contact_form .wr-choice_input {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  min-width: 0;
  margin: 0.35em 0 0;
  accent-color: var(--wr-ink);
}

.wr-contact_form .wr-choice input.wr-choice_input {
  width: auto;
  height: auto;
  min-width: 0;
  margin: 0.35em 0 0;
  accent-color: var(--wr-ink);
}

.wr-contact_form .wr-choice span {
  color: var(--wr-ink);
  font-size: 0.9rem;
  line-height: 1.6;
}

.wr-form-note,
.wr-confirm_intro {
  color: var(--wr-muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.8;
  margin-top: 8px;
}

.wr-field.error .wr-field_input,
.wr-field.error .wr-choice {
  border-color: var(--wr-pink);
}

.wr-field .error-message {
  color: var(--wr-pink);
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 8px;
}

.wr-contact_form .wr-field.error .wr-choice-group {
  padding: 0;
  border: 0;
  background: transparent;
}

.wr-contact_form .wr-field--consent {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--wr-border-soft);
}

.wr-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.wr-contact_form .wr-form-actions {
  text-align: left;
}

.wr-confirm,
.wr-complete {
  color: var(--wr-ink);
}

.wr-confirm_list {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  margin: 24px 0 0;
  border-top: 1px solid var(--wr-border);
}

.wr-confirm_list dt,
.wr-confirm_list dd {
  border-bottom: 1px solid var(--wr-border-soft);
  line-height: 1.8;
  margin: 0;
  padding: 12px 0;
}

.wr-confirm_list dt {
  color: var(--wr-ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.wr-confirm_list dd {
  color: var(--wr-muted);
  font-size: 0.88rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.wr-complete {
  text-align: center;
}

.wr-complete_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--wr-yellow);
  color: var(--wr-ink);
  font-weight: 900;
  margin-bottom: 16px;
}

.wr-legal {
  max-width: 760px;
  margin: 0 auto;
  color: var(--wr-muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.9;
}

.wr-legal section {
  margin-top: 34px;
}

.wr-legal h2 {
  color: var(--wr-ink);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 14px;
  padding-bottom: 0.35em;
  border-bottom: 3px solid var(--wr-ink);
}

.wr-legal p {
  margin: 0;
}

.wr-legal ul {
  margin: 0.8em 0 0;
  padding-left: 1.3em;
}

.wr-legal li + li {
  margin-top: 0.35em;
}

.wr-legal a {
  color: var(--wr-ink);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 2px;
}

.wr-legal-contact {
  border-left: 4px solid var(--wr-yellow);
  background: var(--wr-bg);
  padding: 16px 18px;
}

.wr-legal-contact p + p {
  margin-top: 0.25em;
}

.wr-legal-date {
  color: var(--wr-gray);
  font-size: 0.82rem;
  font-weight: 800;
  margin-top: 34px;
  text-align: right;
}

@media screen and (max-width: 640px) {
  .wr-defrow,
  .wr-confirm_list {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .wr-defrow {
    padding: 16px 0;
  }

  .wr-confirm_list dt {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .wr-confirm_list dd {
    padding-top: 0;
  }

  .wr-contact_form,
  .wr-confirm,
  .wr-complete {
    padding: 22px;
  }

  .wr-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .wr-form-actions .wr-btn,
  .wr-page-actions .wr-btn {
    text-align: center;
  }
}

/* BASE系ページのフッター復活: docs.css の「BASEページはフッター非表示」ルールを打ち消す */
body:has(.docs-layout) footer.wr-footer,
body:has(.docs-layout) .wr-footer {
  display: block !important;
}

/* ============================================
   トップページ記事リストのアイキャッチ
   ============================================ */
.wr-teiban_thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  margin: 12px 0 10px;
  background: var(--wr-border-soft);
}
.wr-teiban_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (prefers-reduced-motion: no-preference) {
  .wr-teiban_thumb img {
    transition: transform 0.2s ease;
  }
  .wr-teiban_item:hover .wr-teiban_thumb img {
    transform: scale(1.03);
  }
}
.wr-list_link--thumb {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.wr-list_thumb {
  flex: 0 0 120px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--wr-border-soft);
}
.wr-list_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wr-list_body {
  min-width: 0;
}
@media screen and (max-width: 860px) {
  .wr-list_thumb {
    flex: 0 0 96px;
  }
}

/* ============================================
   著者ボックス ブラッシュアップ（写真対応・検証チップ・リンク行）
   ============================================ */
.wr-author_avatar {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  border-radius: 999px;
  background: var(--wr-ink);
  color: var(--wr-yellow);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--wr-ink), 0 0 0 6px var(--wr-paper);
  overflow: hidden;
}
.wr-author_avatar--photo {
  background: var(--wr-border-soft);
}
.wr-author_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wr-author_verified {
  display: inline-block;
  margin-left: 0.5em;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--wr-green);
  border: 1px solid var(--wr-green);
  border-radius: 999px;
  padding: 0.08em 0.6em;
  vertical-align: middle;
  white-space: nowrap;
}
.wr-author_links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.8em;
}
.wr-author_links a {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--wr-ink);
  text-decoration: none;
  border: 1px solid var(--wr-border);
  border-radius: 999px;
  padding: 0.25em 0.8em;
}
.wr-author_links a:hover {
  background: var(--wr-yellow);
  border-color: var(--wr-ink);
}

/* ---------- accessibility and mobile navigation ---------- */
.wr-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.wr-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 10px 14px;
  border: 2px solid var(--wr-ink);
  border-radius: 4px;
  background: var(--wr-yellow);
  color: var(--wr-ink);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.wr-skip-link:focus {
  transform: translateY(0);
}

main[id] {
  scroll-margin-top: calc(var(--wr-header-offset, 76px) + 16px);
}

body.wr-menu-open {
  overflow: hidden;
}

@media screen and (max-width: 860px) {
  .wr-header_inner {
    min-height: 68px;
  }

  .wr-gnav {
    position: fixed;
    top: var(--wr-header-offset, 72px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - var(--wr-header-offset, 72px));
    padding: 12px 20px 28px;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    background: var(--wr-paper);
    border-bottom: 0;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  }

  .wr-gnav.is-open {
    display: flex;
    align-items: stretch;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .wr-gnav_link,
  .wr-gnav_cta {
    width: 100%;
    padding: 14px 4px;
    border: 0;
    border-bottom: 1px solid var(--wr-border-soft);
    border-radius: 0;
  }

  .wr-gnav_link:hover,
  .wr-gnav_link.is-active {
    border-bottom-color: var(--wr-ink);
    background: transparent;
  }

  .wr-sp-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 5px;
  }

  .wr-sp-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .wr-sp-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .wr-sp-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .wr-sp-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ---------- accessible subscription fields ---------- */
.wr-form_field {
  flex: 1 1 260px;
  min-width: 0;
}

.wr-form_label {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.wr-band--sub .wr-form_label {
  color: var(--wr-ink);
}

.wr-form_field .wr-form_input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.wr-form_feedback:empty {
  display: none;
}

.wr-form_error {
  margin-top: 14px;
  color: #ffb9c4;
  font-size: 0.82rem;
  font-weight: 800;
}

.wr-band--sub .wr-form_error {
  color: var(--wr-pink);
}

/* ---------- search and empty states ---------- */
.wr-two-col--single {
  grid-template-columns: minmax(0, 1fr);
}

.wr-search--results {
  align-items: end;
  max-width: none;
  margin: 28px 0 18px;
}

.wr-search_field {
  flex: 1 1 240px;
  min-width: 0;
}

.wr-search_label {
  display: block;
  margin-bottom: 7px;
  color: var(--wr-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.wr-form_select {
  box-sizing: border-box;
  width: 100%;
  min-height: 44px;
  border: 2px solid var(--wr-ink);
  border-radius: 4px;
  background: #fff;
  color: var(--wr-ink);
  font: inherit;
  font-size: 0.9rem;
  padding: 0.7em 2.2em 0.7em 0.9em;
}

.wr-search_count {
  margin: 0 0 18px;
  color: var(--wr-muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.wr-search_results {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--wr-ink);
}

.wr-search_result {
  border-bottom: 1px solid var(--wr-border-soft);
}

.wr-search_result-link {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  color: var(--wr-ink);
  text-decoration: none;
}

.wr-search_result-thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--wr-border-soft);
}

.wr-search_result-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-search_result-body,
.wr-search_result-summary {
  display: block;
  min-width: 0;
}

.wr-search_result-summary {
  margin-top: 8px;
  color: var(--wr-muted);
  font-size: 0.84rem;
  line-height: 1.75;
}

.wr-empty-state {
  margin-top: 24px;
  padding: 28px 0;
  border-top: 2px solid var(--wr-ink);
  border-bottom: 1px solid var(--wr-border-soft);
}

.wr-empty-state h2,
.wr-empty-state_heading {
  color: var(--wr-ink);
  font-weight: 900;
}

.wr-empty-state h2 {
  font-size: 1.2rem;
}

.wr-empty-state p {
  margin-top: 10px;
  color: var(--wr-muted);
  line-height: 1.8;
}

.wr-empty-state_heading {
  margin-top: 26px;
  font-size: 0.95rem;
}

.wr-empty-state .wr-more {
  display: inline-block;
  margin-top: 22px;
}

/* ---------- editorial policy and article evidence ---------- */
.wr-editorial {
  margin-top: 30px;
  border-top: 2px solid var(--wr-ink);
}

.wr-editorial_section {
  padding: 24px 0;
  border-bottom: 1px solid var(--wr-border-soft);
}

.wr-editorial_section h3,
.wr-article-evidence h2 {
  color: var(--wr-ink);
  font-size: 1rem;
  font-weight: 900;
}

.wr-editorial_section p,
.wr-article-evidence p,
.wr-article-evidence li {
  margin-top: 9px;
  color: var(--wr-muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

.wr-editorial_section a,
.wr-article-evidence a {
  color: var(--wr-ink);
  font-weight: 800;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 2px;
}

.wr-article-evidence {
  margin-top: 36px;
  padding: 22px 0;
  border-top: 2px solid var(--wr-ink);
  border-bottom: 1px solid var(--wr-border-soft);
}

.wr-article-evidence_list {
  margin: 12px 0 0;
  padding-left: 1.4em;
}

.wr-article-evidence_checked,
.wr-author_review {
  color: var(--wr-gray);
  font-size: 0.74rem;
  font-weight: 700;
}

.wr-author_review {
  margin-top: 8px;
  line-height: 1.7;
}

/* ---------- contact form semantics ---------- */
.wr-fieldset {
  min-width: 0;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.wr-contact_form .wr-fieldset legend {
  display: block;
  margin-bottom: 8px;
  color: var(--wr-ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.6;
}

.wr-contact_form .wr-fieldset.required legend::after {
  content: "必須";
  display: inline-block;
  margin-left: 0.65em;
  border-radius: 3px;
  background: var(--wr-yellow);
  color: var(--wr-ink);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.25em 0.45em;
}

.wr-form-errors {
  margin-bottom: 16px;
  border-left: 4px solid var(--wr-pink);
  background: #fff2f4;
  color: var(--wr-ink);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.6;
  padding: 12px 14px;
}

.wr-form-errors:empty {
  display: none;
}

.wr-confirm:focus,
.wr-complete:focus,
.wr-form_done:focus,
.wr-form_error:focus {
  outline: 3px solid var(--wr-yellow);
  outline-offset: 3px;
}

@media screen and (max-width: 640px) {
  .wr-search_result-link {
    grid-template-columns: minmax(0, 1fr);
  }

  .wr-search_result-thumb {
    max-width: 320px;
  }

  .wr-search--results .wr-btn {
    width: 100%;
  }
}

/* ---------- Figma quality uplift: home, archive and article ---------- */
.wr-hero_grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.wr-hero_copy {
  min-width: 0;
}

.wr-hero_title {
  margin-top: 14px;
  font-size: 3rem;
  letter-spacing: 0;
}

.wr-hero .wr-search {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}

.wr-tagchips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 18px;
}

.wr-tagchip {
  color: var(--wr-muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: none;
}

.wr-tagchip:hover {
  color: var(--wr-ink);
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 3px;
}

.wr-featured {
  position: relative;
  display: block;
  min-width: 0;
  border: 2px solid var(--wr-ink);
  border-radius: 6px;
  background: var(--wr-paper);
  color: var(--wr-ink);
  padding: 14px;
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--wr-yellow);
}

.wr-featured_label {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
  border-radius: 3px;
  background: var(--wr-yellow);
  color: var(--wr-ink);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 6px 9px;
}

.wr-featured_image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--wr-border-soft);
}

.wr-featured_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-featured_meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--wr-gray);
  font-size: 0.72rem;
  font-weight: 800;
}

.wr-featured_title,
.wr-featured_effect {
  display: block;
}

.wr-featured_title {
  margin-top: 8px;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.55;
}

.wr-featured_effect {
  margin-top: 8px;
  color: var(--wr-muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.65;
}

.wr-featured:hover .wr-featured_title {
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 3px;
}

.wr-hero_departments {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid var(--wr-border);
}

.wr-teiban_item {
  border: 1px solid var(--wr-border);
  border-top: 3px solid var(--wr-ink);
  border-radius: 6px;
  padding: 14px;
}

.wr-teiban_title,
.wr-teiban_dept,
.wr-effect {
  display: block;
}

.wr-effect {
  margin-top: 8px;
  color: var(--wr-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.65;
}

.wr-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  color: var(--wr-gray);
  font-size: 0.72rem;
  font-weight: 700;
}

.wr-breadcrumb a {
  color: var(--wr-ink);
}

.wr-archive {
  color: var(--wr-ink);
  padding-bottom: 20px;
}

.wr-archive .wr-container {
  max-width: 1200px;
}

.wr-archive_header {
  padding: 64px 0 36px;
}

.wr-archive_header h1 {
  margin-top: 10px;
  color: var(--wr-ink);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
}

.wr-archive_header > p:last-child {
  max-width: 720px;
  margin-top: 12px;
  color: var(--wr-muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.8;
}

.wr-archive_tabs {
  display: flex;
  gap: 32px;
  border-bottom: 2px solid var(--wr-border);
}

.wr-archive_tabs a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-bottom: -2px;
  border-bottom: 4px solid transparent;
  color: var(--wr-muted);
  font-size: 0.92rem;
  font-weight: 900;
  padding: 0 2px 14px;
  text-decoration: none;
}

.wr-archive_tabs a[aria-current="page"] {
  border-bottom-color: var(--wr-yellow);
  color: var(--wr-ink);
}

.wr-archive_tabs span,
.wr-archive_departments span {
  color: var(--wr-gray);
  font-size: 0.72rem;
}

.wr-archive_filters {
  display: grid;
  grid-template-columns: minmax(260px, 2fr) minmax(160px, 1fr) minmax(160px, 1fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: 28px;
  border: 1px solid var(--wr-border);
  border-radius: 6px;
  background: var(--wr-bg);
  padding: 18px;
}

.wr-archive_filters label {
  display: block;
  min-width: 0;
}

.wr-archive_filters label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--wr-muted);
  font-size: 0.7rem;
  font-weight: 900;
}

.wr-archive_filters input,
.wr-archive_filters select {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  border: 2px solid var(--wr-border);
  border-radius: 4px;
  background: var(--wr-paper);
  color: var(--wr-ink);
  font: inherit;
  font-size: 0.86rem;
  padding: 0.7em 0.85em;
}

.wr-archive_filters input:focus,
.wr-archive_filters select:focus {
  border-color: var(--wr-ink);
  box-shadow: 0 0 0 3px rgba(255, 210, 51, 0.35);
  outline: none;
}

.wr-archive_filters .wr-btn {
  min-height: 46px;
  white-space: nowrap;
}

.wr-archive_departments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.wr-archive_departments a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  border: 1px solid var(--wr-border);
  border-radius: 999px;
  background: var(--wr-paper);
  color: var(--wr-ink);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 7px 12px;
  text-decoration: none;
}

.wr-archive_departments a:hover,
.wr-archive_departments a[aria-current="page"] {
  border-color: var(--wr-ink);
  background: var(--wr-yellow);
}

.wr-archive_result-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 52px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--wr-ink);
}

.wr-archive_result-head h2 {
  color: var(--wr-ink);
  font-size: 1.35rem;
  font-weight: 900;
}

.wr-archive_result-head p {
  color: var(--wr-gray);
  font-size: 0.78rem;
  font-weight: 800;
}

.wr-archive_results {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wr-archive_item {
  border-bottom: 1px solid var(--wr-border);
}

.wr-archive_item-link {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  color: var(--wr-ink);
  padding: 22px 0;
  text-decoration: none;
}

.wr-archive_thumb {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  background: var(--wr-border-soft);
}

.wr-archive_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-archive_body {
  position: relative;
  display: block;
  min-width: 0;
  padding-right: 40px;
}

.wr-archive_meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: var(--wr-gray);
  font-size: 0.7rem;
  font-weight: 800;
}

.wr-archive_title,
.wr-archive_effect {
  display: block;
}

.wr-archive_title {
  margin-top: 8px;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.55;
}

.wr-archive_effect {
  margin-top: 8px;
  color: var(--wr-muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.7;
}

.wr-archive_arrow {
  position: absolute;
  top: 50%;
  right: 2px;
  color: var(--wr-ink);
  font-size: 1.3rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.wr-archive_item-link:hover .wr-archive_title {
  text-decoration: underline;
  text-decoration-color: var(--wr-yellow);
  text-decoration-thickness: 3px;
}

.wr-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.wr-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--wr-border);
  border-radius: 4px;
  color: var(--wr-ink);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0 10px;
  text-decoration: none;
}

.wr-pagination .current {
  border-color: var(--wr-ink);
  background: var(--wr-ink);
  color: #fff;
}

.wr-article_breadcrumbs {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 20px 0;
}

.wr-article-shell {
  padding-top: 42px;
}

.wr-article-shell .docs-layout {
  grid-template-columns: minmax(0, 800px) 280px;
  gap: 60px;
  max-width: 1200px;
}

.wr-article-shell .docs-article,
.wr-article-shell .docs-main .base-single-contents {
  max-width: 800px;
}

.base-article_meta--primary {
  margin: 0 0 16px;
}

.docs-layout .base-article_title {
  margin: 0;
  color: var(--wr-ink);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.42;
  letter-spacing: 0;
}

.wr-article_summary {
  margin-top: 18px;
  color: var(--wr-muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.85;
}

.wr-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0 0;
  border-top: 2px solid var(--wr-ink);
  border-bottom: 1px solid var(--wr-border);
  background: var(--wr-bg);
}

.wr-trust-strip > div {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid var(--wr-border);
}

.wr-trust-strip > div:last-child {
  border-right: 0;
}

.wr-trust-strip dt {
  color: var(--wr-gray);
  font-size: 0.64rem;
  font-weight: 800;
}

.wr-trust-strip dd {
  margin: 5px 0 0;
  color: var(--wr-ink);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.base-article_meta--secondary {
  display: flex;
  gap: 8px 18px;
  margin: 14px 0 0;
  color: var(--wr-gray);
  font-size: 0.74rem;
  font-weight: 700;
}

.docs-layout .base-article_eyecatch {
  aspect-ratio: 16 / 9;
  margin: 28px 0 0;
  border-radius: 6px;
}

.docs-layout .base-article_eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wr-article-shell .wr-share {
  margin: 14px 0 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wr-border-soft);
}

.wr-article-shell .base-article_tags-list {
  margin-top: 16px;
}

.wr-article-shell .base-article_content {
  margin-top: 38px;
}

.wr-next .wr-band {
  margin-top: 14px;
}

@media screen and (max-width: 860px) {
  .wr-hero_grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .wr-hero_title {
    font-size: 2.35rem;
  }

  .wr-featured {
    max-width: 620px;
  }

  .wr-archive_filters {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 0.7fr);
  }

  .wr-archive_filters .wr-btn {
    width: 100%;
  }

  .wr-article-shell .docs-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    max-width: 800px;
  }

  .wr-article-shell .wr-rail {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .wr-hero {
    padding: 40px 0 28px;
  }

  .wr-hero_title {
    font-size: 2rem;
  }

  .wr-hero .wr-search {
    flex-direction: column;
  }

  .wr-hero .wr-search .wr-form_input {
    width: 100%;
    min-width: 0;
  }

  .wr-hero .wr-search .wr-btn {
    width: 100%;
  }

  .wr-featured {
    box-shadow: 4px 4px 0 var(--wr-yellow);
  }

  .wr-hero_departments {
    margin-top: 34px;
  }

  .wr-archive_header {
    padding: 42px 0 28px;
  }

  .wr-archive_header h1 {
    font-size: 2rem;
  }

  .wr-archive_tabs {
    gap: 22px;
  }

  .wr-archive_filters {
    grid-template-columns: minmax(0, 1fr);
    padding: 16px;
  }

  .wr-archive_result-head {
    margin-top: 38px;
  }

  .wr-archive_item-link {
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 0;
  }

  .wr-archive_body {
    padding-right: 0;
  }

  .wr-archive_title {
    font-size: 0.9rem;
  }

  .wr-archive_effect,
  .wr-archive_arrow {
    display: none;
  }

  .wr-archive_meta {
    gap: 4px 10px;
    font-size: 0.62rem;
  }

  .wr-article_breadcrumbs {
    padding-top: 18px;
  }

  .wr-article-shell {
    padding-top: 26px;
  }

  .wr-article-shell .docs-layout {
    padding: 0 20px;
  }

  .docs-layout .base-article_title {
    font-size: 1.72rem;
    line-height: 1.5;
  }

  .wr-article_summary {
    font-size: 0.9rem;
  }

  .wr-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wr-trust-strip > div:nth-child(2) {
    border-right: 0;
  }

  .wr-trust-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--wr-border);
  }

  .docs-layout .base-article_eyecatch {
    margin-top: 22px;
  }
}
