/* ============================================================
   Neurodiversity Work Insight — サイト共通スタイル
   カラー: ディープティール × ウォームアンバー × オフホワイト
   ============================================================ */

:root {
  --teal: #1d5c63;
  --teal-dark: #124146;
  --teal-light: #3c8189;
  --amber: #e8a13d;
  --amber-dark: #c9821f;
  --bg: #f7f4ee;
  --bg-alt: #efe9dd;
  --ink: #2b2f2f;
  --ink-soft: #55605f;
  --line: #d9d2c3;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 18px rgba(29, 92, 99, 0.12);
  --transition: all 0.25s ease;
}

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

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.9;
  font-size: 16px;
}

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

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

a:hover {
  color: var(--amber-dark);
}

h1, h2, h3, h4 {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  line-height: 1.5;
  color: var(--teal-dark);
}

/* ---------------- ヘッダー / ナビ ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.96);
  border-bottom: 3px solid var(--teal);
  backdrop-filter: blur(6px);
}

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

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.site-logo .logo-main {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--teal-dark);
}

.site-logo .logo-main span {
  color: var(--amber-dark);
}

.site-logo .logo-sub {
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

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

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

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

.nav-list li a:hover,
.nav-list li a.is-current {
  background: var(--teal);
  color: var(--white);
}

.nav-list li a.nav-blog {
  border: 1.5px solid var(--amber);
  color: var(--amber-dark);
}

.nav-list li a.nav-blog:hover {
  background: var(--amber);
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--teal);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle .bar {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--teal);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.is-active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---------------- ヒーロー（TOP） ---------------- */

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4rem 1.2rem;
  width: 100%;
}

.hero-title {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  font-weight: 900;
  color: #fff8ec;
  -webkit-text-stroke: 1px rgba(18, 65, 70, 0.85);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.55);
  margin-bottom: 1rem;
}

.hero-title .accent {
  color: #ffcf7d;
}

.hero-lead {
  max-width: 640px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85), 0 3px 14px rgba(0, 0, 0, 0.6);
}

.hero-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ---------------- ページヒーロー（下層） ---------------- */

.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5rem 1.2rem 2rem;
  width: 100%;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  font-weight: 900;
  color: #fff8ec;
  -webkit-text-stroke: 1px rgba(18, 65, 70, 0.85);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75), 0 6px 22px rgba(0, 0, 0, 0.55);
}

.page-hero .page-hero-lead {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
  max-width: 720px;
  margin-top: 0.4rem;
}

/* ---------------- レイアウト ---------------- */

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.2rem 1.2rem 3.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.4rem;
  align-items: start;
}

.main-col {
  min-width: 0;
}

.breadcrumb {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

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

.content-section {
  margin-bottom: 2.8rem;
}

.content-section h2 {
  font-size: 1.45rem;
  border-left: 6px solid var(--amber);
  border-bottom: 2px solid var(--line);
  padding: 0.2rem 0 0.4rem 0.8rem;
  margin-bottom: 1.2rem;
}

.content-section h3 {
  font-size: 1.12rem;
  margin: 1.4rem 0 0.7rem;
  padding-left: 0.6rem;
  border-left: 4px solid var(--teal-light);
}

.content-section p {
  margin-bottom: 1.1rem;
}

.content-section ul,
.content-section ol {
  margin: 0 0 1.2rem 1.4rem;
}

.content-section li {
  margin-bottom: 0.4rem;
}

.lead-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

/* ---------------- 図解・表 ---------------- */

.fig-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin: 1.4rem 0 1.8rem;
  box-shadow: var(--shadow);
  overflow-x: auto;
}

.fig-block svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 640px;
  margin: 0 auto;
}

.fig-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.7rem;
}

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

.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(--teal);
  color: var(--white);
  font-weight: 600;
}

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

.data-table .cell-strong {
  font-weight: 700;
  color: var(--teal-dark);
}

/* プロセス図（CSS） */

.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: stretch;
  justify-content: center;
}

.process-step {
  flex: 1 1 140px;
  min-width: 140px;
  background: var(--bg);
  border: 2px solid var(--teal);
  border-radius: 10px;
  padding: 0.8rem;
  text-align: center;
  position: relative;
}

.process-step .step-no {
  display: inline-block;
  background: var(--amber);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.05rem 0.7rem;
  margin-bottom: 0.4rem;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.6;
}

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

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

.amazon-banner a div {
  background: linear-gradient(135deg, #fdf6e8, #f8e8c8);
  border: 1.5px dashed var(--amber-dark);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--teal-dark);
  transition: var(--transition);
}

.amazon-banner a div:hover {
  background: #f5e3bd;
}

.inline-ad {
  margin: 1.4rem 0;
  text-align: center;
  overflow-x: auto;
}

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

.side-ad {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  margin-bottom: 1.3rem;
  text-align: center;
  overflow: hidden;
}

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

.ad-label {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}

/* ---------------- サイドナビ ---------------- */

.side-col {
  position: sticky;
  top: 92px;
}

.side-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow);
}

.side-box h2 {
  font-size: 1rem;
  color: var(--teal-dark);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 0.4rem;
  margin-bottom: 0.7rem;
}

.toc-list,
.related-list {
  list-style: none;
}

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

.toc-list li a,
.related-list li a {
  display: block;
  padding: 0.5rem 0.2rem;
  font-size: 0.86rem;
  color: var(--ink);
  transition: var(--transition);
}

.toc-list li a:hover,
.related-list li a:hover {
  color: var(--teal);
  padding-left: 0.6rem;
}

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

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

.section-block {
  padding: 3.2rem 0;
}

.section-block.alt {
  background: var(--bg-alt);
}

.section-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
}

.section-sub {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 2.2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
}

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

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 5px solid var(--amber);
  box-shadow: var(--shadow);
  padding: 1.1rem 1rem;
  text-align: center;
}

.stat-card .stat-value {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.3;
}

.stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

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

.news-list {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
}

.news-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  margin-bottom: 0.9rem;
  display: flex;
  gap: 1.2rem;
  align-items: baseline;
  box-shadow: var(--shadow);
}

.news-date {
  flex-shrink: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--amber-dark);
  font-size: 0.88rem;
  white-space: nowrap;
}

.news-body {
  font-size: 0.94rem;
}

.news-body .news-tag {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-size: 0.68rem;
  border-radius: 4px;
  padding: 0.05rem 0.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

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

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

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

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 26px rgba(29, 92, 99, 0.22);
}

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

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

.topic-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.topic-card p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  flex: 1;
  margin-bottom: 0.7rem;
}

.topic-card .topic-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--amber-dark);
}

/* ---------------- ページ送り ---------------- */

.page-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.page-nav a {
  flex: 1 1 240px;
  background: var(--white);
  border: 1.5px solid var(--teal);
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.page-nav a:hover {
  background: var(--teal);
  color: var(--white);
}

.page-nav a.prev {
  text-align: left;
}

.page-nav a.next {
  text-align: right;
}

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

.site-footer {
  background: var(--teal-dark);
  color: #e8efe9;
  padding: 2.6rem 0 1.4rem;
  margin-top: 0;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.footer-grid h3 {
  color: #ffcf7d;
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.footer-about {
  font-size: 0.84rem;
  line-height: 1.8;
  color: #c9d8d2;
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-list li {
  margin-bottom: 0.35rem;
}

.footer-nav-list a {
  color: #dbe6e0;
  font-size: 0.84rem;
}

.footer-nav-list a:hover {
  color: #ffcf7d;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  justify-content: center;
  margin: 2rem auto 1rem;
  padding: 1.2rem 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 1180px;
}

.footer-links a {
  color: #dbe6e0;
  font-size: 0.82rem;
  padding: 0.2rem 0.4rem;
}

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

.copyright {
  text-align: center;
  font-size: 0.78rem;
  color: #a8bdb5;
}

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

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

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

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

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

  .menu-toggle {
    display: flex;
  }

  .global-nav {
    display: none;
    width: 100%;
  }

  .global-nav.is-open {
    display: block;
  }

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

  .nav-list li a {
    padding: 0.7rem 0.6rem;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .nav-list li a.nav-blog {
    border: none;
    border-bottom: 1px solid var(--line);
  }

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

  .side-col {
    position: static;
  }

  .hero {
    min-height: 420px;
  }

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

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

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

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

  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .data-table {
    min-width: 460px;
  }
}

/* ===== 業界応援パートナー募集 ===== */
.partner-inline-section {
  padding: 0 0 3.5rem;
}

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

.partner-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(232, 161, 61, 0.16);
  color: var(--amber-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.partner-inline-title {
  font-size: 1.35rem;
  color: var(--teal-dark);
  margin: 0 0 0.6rem;
}

.partner-inline-description {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.partner-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  flex-shrink: 0;
}

.partner-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
}

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

.partner-btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

.partner-btn--ghost {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}

.partner-btn--ghost:hover {
  background: rgba(29, 92, 99, 0.08);
  transform: translateY(-2px);
}

.partner-page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
}

.partner-page-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(232, 161, 61, 0.3);
  color: #ffe3b8;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.partner-page-title {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin: 0 0 1.2rem;
  color: #ffffff;
}

.partner-page-lead {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.9;
  margin: 0;
}

.partner-page-content {
  padding: 3.5rem 0 4.5rem;
  background: var(--bg);
}

.partner-page-grid {
  display: grid;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.partner-content-block h2 {
  font-size: 1.4rem;
  color: var(--teal-dark);
  margin: 0 0 1rem;
}

.partner-content-block h3 {
  font-size: 1.1rem;
  color: var(--teal);
  margin: 1.5rem 0 0.7rem;
}

.partner-content-block p {
  color: var(--ink);
  line-height: 1.9;
}

.partner-content-block p + p {
  margin-top: 1rem;
}

.partner-content-block ul,
.partner-content-block ol {
  margin: 0.8rem 0 0;
  padding-left: 1.4rem;
  color: var(--ink);
  line-height: 1.8;
}

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

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

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

.partner-highlight-card h3 {
  margin: 0 0 0.5rem;
  color: var(--teal-dark);
}

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

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

.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.5rem;
}

.partner-cta-box .partner-btn--primary {
  background: var(--amber);
  color: var(--teal-dark);
}

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

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

.partner-cta-box .partner-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.partner-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 1.2rem;
}

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

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

  .partner-content-block {
    padding: 1.6rem;
  }
}

/* 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; }
}
