/* =========================================================
   Adaptive Fashion Insight — adaptive-fashion.businesshub
   オリジナルデザイン: 温かみのあるクリーム地 × 深緑（ティール）× テラコッタ
   ========================================================= */

:root {
  --primary: #23606a;
  --primary-dark: #17444c;
  --primary-soft: #e3efee;
  --accent: #c8613f;
  --accent-soft: #f7e7de;
  --ink: #2c2a27;
  --muted: #6f6a61;
  --line: #e2dcd1;
  --bg: #faf6ef;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(44, 42, 39, 0.08);
  --transition: all 0.25s ease;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-head: "Shippori Mincho", "Hiragino Mincho ProN", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

ul,
ol {
  padding-left: 1.4em;
}

/* ---------------- ヘッダー ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}

.brand:hover {
  color: var(--primary);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50% 50% 50% 6px;
  background: linear-gradient(135deg, var(--primary) 55%, var(--accent) 55%);
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.3;
}

.brand-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.global-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.15rem 0.2rem;
  list-style: none;
  max-width: 760px;
  padding: 0;
}

.nav-list li a {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-list li a:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.nav-list li a.is-current {
  background: var(--primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------------- ヒーロー ---------------- */

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--home {
  background-image: url("images/hero-adaptive-fashion.jpg");
  min-height: 580px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 40, 43, 0) 35%, rgba(23, 40, 43, 0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 3.5rem 1.2rem 2.8rem;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
  color: #fff8ef;
  -webkit-text-stroke: 1px rgba(23, 44, 48, 0.75);
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(10, 25, 28, 0.85), 0 6px 26px rgba(10, 25, 28, 0.6);
}

.hero-lead {
  margin-top: 1rem;
  max-width: 720px;
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  text-shadow: 0 1px 4px rgba(10, 25, 28, 0.9), 0 3px 14px rgba(10, 25, 28, 0.7);
}

/* ページ用ヒーロー背景 */

.hero--page {
  min-height: 400px;
}

.hero--p01 { background-image: url("images/hero-market-overview.jpg"); }
.hero--p02 { background-image: url("images/hero-consumer-needs.jpg"); }
.hero--p03 { background-image: url("images/hero-design-technology.jpg"); }
.hero--p04 { background-image: url("images/hero-global-brands.jpg"); }
.hero--p05 { background-image: url("images/hero-japan-market.jpg"); }
.hero--p06 { background-image: url("images/hero-retail-channels.jpg"); }
.hero--p07 { background-image: url("images/hero-inclusive-design.jpg"); }
.hero--p08 { background-image: url("images/hero-future-outlook.jpg"); }

/* ---------------- 共通セクション ---------------- */

.section {
  padding: 3.5rem 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.6rem;
  padding-left: 0.9rem;
  border-left: 5px solid var(--accent);
  line-height: 1.5;
}

.section--tint {
  background: linear-gradient(180deg, #f3ede2 0%, var(--bg) 100%);
}

/* ---------------- TOP: 概要 ---------------- */

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.2rem;
  align-items: start;
}

.overview-text p + p {
  margin-top: 1rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-value {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.3;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

/* ---------------- TOP: ニュース ---------------- */

.news-list {
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--line);
}

.news-item {
  display: flex;
  gap: 1.4rem;
  padding: 1.1rem 0.4rem;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.news-date {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--primary);
  font-size: 0.9rem;
  min-width: 7em;
}

.news-body strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
}

.news-body p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ---------------- TOP: トピックカード ---------------- */

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.topic-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  color: var(--ink);
  transition: var(--transition);
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(44, 42, 39, 0.16);
  color: var(--ink);
}

.topic-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.topic-card-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.topic-card-body h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  color: var(--primary-dark);
  line-height: 1.5;
}

.topic-card-body p {
  font-size: 0.83rem;
  color: var(--muted);
  flex: 1;
}

.topic-card-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

/* ---------------- 記事レイアウト（2カラム） ---------------- */

.layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.2rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.6rem;
  align-items: start;
}

.article {
  min-width: 0;
}

.article-lead {
  background: var(--primary-soft);
  border-left: 5px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.4rem;
  margin-bottom: 2.2rem;
  font-size: 0.98rem;
}

.article section + section {
  margin-top: 3rem;
}

.article h2 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.3vw, 1.6rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.5;
  padding-bottom: 0.6rem;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--line);
  position: relative;
}

.article h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 88px;
  height: 2px;
  background: var(--accent);
}

.article h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1.8rem 0 0.8rem;
  padding-left: 0.7rem;
  border-left: 4px solid var(--accent);
  line-height: 1.6;
}

.article p {
  margin-bottom: 1.1rem;
  text-align: justify;
}

.article ul,
.article ol {
  margin: 0 0 1.2rem 0;
  padding-left: 1.5em;
}

.article li {
  margin-bottom: 0.35rem;
}

/* ---------------- 図解・チャート ---------------- */

.figure {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1rem;
  margin: 1.6rem 0 2rem;
  box-shadow: var(--shadow);
}

.figure-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.9rem;
}

.figure-caption {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

.chart-svg {
  width: 100%;
  height: auto;
  display: block;
}

.table-scroll {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 560px;
}

.data-table th,
.data-table td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.8rem;
  text-align: left;
  vertical-align: top;
}

.data-table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.data-table tbody tr:nth-child(even) {
  background: #f6f1e8;
}

.data-table tbody th {
  background: var(--primary-soft);
  color: var(--primary-dark);
  white-space: nowrap;
}

/* プロセス図 */

.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  counter-reset: flow;
}

.flow-step {
  background: var(--primary-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.9rem 0.8rem;
  position: relative;
  counter-increment: flow;
}

.flow-step::before {
  content: counter(flow, decimal-leading-zero);
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.flow-step strong {
  display: block;
  font-size: 0.86rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.flow-step span {
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.6;
  display: block;
}

/* ---------------- 広告 ---------------- */

.amazon-banner {
  margin: 0 0 1.4rem;
}

.amazon-banner a {
  display: block;
  background: linear-gradient(135deg, #fff8ec 0%, var(--accent-soft) 100%);
  border: 1px dashed var(--accent);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
}

.amazon-banner a:hover {
  background: var(--accent-soft);
  color: var(--primary-dark);
}

.inline-ad {
  margin: 1.6rem 0 2rem;
  padding: 0.9rem;
  background: #f4efe6;
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
  font-size: 0.85rem;
  overflow-x: auto;
}

.inline-ad img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.ad-note {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
  text-align: center;
}

/* ---------------- サイドバー ---------------- */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.side-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  box-shadow: var(--shadow);
}

.side-heading {
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-dark);
  padding-bottom: 0.5rem;
  margin-bottom: 0.9rem;
  border-bottom: 2px solid var(--accent);
}

.side-ad {
  text-align: center;
  overflow: hidden;
}

.side-ad img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.toc-list {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
}

.toc-list li {
  border-bottom: 1px dashed var(--line);
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
  display: block;
  padding: 0.5rem 0.2rem;
  color: var(--ink);
}

.toc-list a::before {
  content: "▸ ";
  color: var(--accent);
}

.toc-list a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.related-list {
  list-style: none;
  padding: 0;
  font-size: 0.88rem;
}

.related-list li {
  border-bottom: 1px dashed var(--line);
}

.related-list li:last-child {
  border-bottom: none;
}

.related-list a {
  display: block;
  padding: 0.5rem 0.2rem;
  color: var(--ink);
}

.related-list a::before {
  content: "→ ";
  color: var(--primary);
}

.related-list a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

/* ---------------- フッター ---------------- */

.site-footer {
  background: var(--primary-dark);
  color: #e8e2d5;
  margin-top: 2rem;
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.7rem;
}

.footer-about {
  font-size: 0.82rem;
  line-height: 1.9;
  color: #cfc8b8;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-nav,
.footer-sister {
  list-style: none;
  padding: 0;
  font-size: 0.84rem;
}

.footer-nav li,
.footer-sister li {
  margin-bottom: 0.4rem;
}

.footer-nav a,
.footer-sister a {
  color: #e8e2d5;
}

.footer-nav a:hover,
.footer-sister a:hover {
  color: #f0b294;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  justify-content: center;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.84rem;
}

.footer-links a {
  color: #e8e2d5;
  padding: 0.2rem 0.4rem;
}

.footer-links a:hover {
  color: #f0b294;
}

.copyright {
  text-align: center;
  font-size: 0.78rem;
  color: #b6ae9c;
  margin-top: 0.6rem;
}

/* ---------------- レスポンシブ ---------------- */

@media (max-width: 1024px) {
  .layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.8rem;
  }

  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-list li a {
    font-size: 0.78rem;
    padding: 0.25rem 0.45rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }

  .nav-toggle {
    display: flex;
  }

  .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(44, 42, 39, 0.15);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .global-nav.is-open {
    max-height: 640px;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    padding: 0.8rem 1.2rem 1.2rem;
    gap: 0.2rem;
  }

  .nav-list li a {
    font-size: 0.95rem;
    padding: 0.7rem 0.8rem;
    white-space: normal;
  }

  .layout {
    grid-template-columns: 1fr;
    padding-top: 2.2rem;
  }

  .overview-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero--home {
    min-height: 420px;
  }

  .hero--page {
    min-height: 330px;
  }

  .news-item {
    flex-direction: column;
    gap: 0.2rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .section {
    padding: 2.4rem 0;
  }
}


/* ===== 業界応援パートナー募集（partner.html / partner-rules.html / 募集カード） ===== */
.partner-inline-section {
  padding: 0 0 2.6rem;
}

.partner-inline-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.partner-inline-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow);
}

.partner-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9c4526;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.partner-inline-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.5rem;
}

.partner-inline-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

.partner-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
  flex-shrink: 0;
}

.partner-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.partner-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #ffffff;
}

.partner-btn--ghost {
  background: transparent;
  color: var(--primary);
}

.partner-btn--ghost:hover {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.partner-page-hero {
  padding: 3.6rem 0 3rem;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #ffffff;
}

.partner-page-inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.partner-page-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.partner-page-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 1rem;
  color: #ffffff;
}

.partner-page-lead {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.partner-page-content {
  padding: 3rem 0 3.6rem;
}

.partner-page-grid {
  display: grid;
  gap: 1.6rem;
}

.partner-content-block {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.partner-content-block h2 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin: 0 0 1rem;
}

.partner-content-block h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--primary-dark);
  margin: 1.4rem 0 0.6rem;
}

.partner-content-block p {
  line-height: 1.9;
  margin: 0 0 0.8rem;
}

.partner-content-block p:last-child {
  margin-bottom: 0;
}

.partner-content-block ul,
.partner-content-block ol {
  padding-left: 1.3rem;
  margin: 0.4rem 0 0;
  line-height: 1.9;
}

.partner-content-block li + li {
  margin-top: 0.4rem;
}

.partner-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.partner-highlight-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}

.partner-highlight-card h3 {
  margin: 0 0 0.5rem;
}

.partner-highlight-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.partner-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1rem;
}

.partner-note a {
  color: var(--primary);
}

.partner-cta-box {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border: none;
  color: #ffffff;
}

.partner-cta-box h2,
.partner-cta-box p,
.partner-cta-box .partner-note {
  color: #ffffff;
}

.partner-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.partner-cta-box .partner-btn {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
}

.partner-cta-box .partner-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-dark);
}

.partner-cta-box .partner-btn--ghost {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.partner-cta-box .partner-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

@media (max-width: 820px) {
  .partner-inline-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .partner-inline-actions {
    justify-content: flex-start;
  }

  .partner-content-block {
    padding: 1.5rem 1.2rem;
  }
}

/* Mobile content-width baseline. Blog-specific rules live in blog/blog.css. */
@media (max-width: 768px) {
  .page-content, .two-col-layout { padding-inline: 16px; }
  .two-col-layout, .blog-main { min-width: 0; }
  .sidebar { position: static; order: 2; }
}
