/* ============================================================
   フェムテック産業レポート styles.css
   Palette: Deep Plum / Rose / Coral / Cream
   Fonts: Shippori Mincho B1 (headings) / Noto Sans JP (body)
   ============================================================ */

:root {
  --plum: #4a2545;
  --plum-dark: #33172f;
  --plum-soft: #6d4066;
  --rose: #c25e7f;
  --rose-deep: #a34266;
  --rose-light: #f0d3dd;
  --coral: #e07856;
  --cream: #faf5f2;
  --paper: #ffffff;
  --ink: #3a2e37;
  --ink-soft: #6f6069;
  --line: #e8dce2;
  --shadow: 0 10px 30px rgba(74, 37, 69, 0.10);
  --radius: 14px;
  --font-head: "Shippori Mincho B1", "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --transition: all 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--cream);
  line-height: 1.9;
  font-size: 16px;
  overflow-wrap: anywhere;
}

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

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

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

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

/* ---------------- Header ---------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(140%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(74, 37, 69, 0.06);
}

.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.7rem;
  color: var(--plum);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum) 0%, var(--rose) 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}

.brand-text small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  font-weight: 400;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 120;
}

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

.nav-toggle.is-open .nav-toggle-line:nth-child(1) {
  transform: translateY(8px) 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(-8px) rotate(-45deg);
}

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

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

.nav-menu li a:hover,
.nav-menu li a.is-current {
  background: var(--rose-light);
  color: var(--plum);
}

/* ---------------- Hero (top page) ---------------- */

.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(51, 23, 47, 0.28), rgba(51, 23, 47, 0.38)), url("images/hero-femtech-overview.jpg");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 900px;
  padding: 4rem 1.5rem;
  color: #fff;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.4;
  color: #fff6ef;
  -webkit-text-stroke: 1px rgba(74, 37, 69, 0.65);
  text-shadow: 0 3px 8px rgba(30, 8, 26, 0.85), 0 6px 24px rgba(30, 8, 26, 0.6);
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  color: #fff;
  text-shadow: 0 2px 6px rgba(30, 8, 26, 0.9), 0 4px 16px rgba(30, 8, 26, 0.7);
  margin-bottom: 1.8rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.hero-stats li {
  background: rgba(255, 255, 255, 0.92);
  color: var(--plum);
  border-radius: var(--radius);
  padding: 0.7rem 1.3rem;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.45rem;
  color: var(--rose-deep);
  line-height: 1.3;
}

/* ---------------- Page hero (sub pages) ---------------- */

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(51, 23, 47, 0) 30%, rgba(51, 23, 47, 0.72) 100%);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  color: #fff6ef;
  -webkit-text-stroke: 0.6px rgba(51, 23, 47, 0.6);
  text-shadow: 0 3px 10px rgba(30, 8, 26, 0.9);
  line-height: 1.45;
}

.page-hero .page-hero-lead {
  color: #fff;
  font-size: 0.95rem;
  text-shadow: 0 2px 8px rgba(30, 8, 26, 0.95);
  margin-top: 0.4rem;
}

.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.2rem 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: var(--rose-deep);
}

/* ---------------- Layout (2 columns) ---------------- */

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

.article {
  min-width: 0;
}

.article > section {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  margin-bottom: 1.8rem;
  box-shadow: var(--shadow);
}

.article h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--plum);
  line-height: 1.5;
  padding-left: 0.9rem;
  border-left: 5px solid var(--rose);
  margin-bottom: 1.2rem;
}

.article h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--rose-deep);
  margin: 1.6rem 0 0.7rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px dashed var(--line);
}

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

.article ul,
.article ol {
  margin: 0 0 1.1rem 0.3rem;
}

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

.lead-note {
  background: linear-gradient(135deg, #fdf1f5 0%, #f7ecf3 100%);
  border: 1px solid var(--rose-light);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* ---------------- Figures / diagrams ---------------- */

.figure {
  margin: 1.6rem 0;
  padding: 1.4rem;
  background: #fdfaf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--ink-soft);
  text-align: center;
}

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

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

.data-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 700;
  color: var(--plum);
  padding-bottom: 0.5rem;
  font-size: 0.92rem;
}

.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(--plum);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

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

.data-table tbody th {
  background: var(--rose-light);
  color: var(--plum);
  white-space: nowrap;
}

/* process flow */

.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  counter-reset: step;
}

.process-flow li {
  counter-increment: step;
  flex: 1 1 150px;
  background: #fff;
  border: 1px solid var(--rose-light);
  border-top: 4px solid var(--rose);
  border-radius: 10px;
  padding: 0.9rem 1rem 1rem;
  font-size: 0.85rem;
  position: relative;
}

.process-flow li::before {
  content: "STEP " counter(step);
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--rose-deep);
  margin-bottom: 0.3rem;
}

.process-flow li strong {
  display: block;
  color: var(--plum);
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
}

/* ---------------- Ads ---------------- */

.amazon-banner {
  margin: 0.4rem 0 1.2rem;
}

.amazon-banner a {
  display: block;
  background: linear-gradient(135deg, #fff8ec 0%, #fdeeda 100%);
  border: 1px solid #ecd9b8;
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #8a5a17;
}

.amazon-banner a:hover {
  border-color: var(--coral);
  color: var(--coral);
}

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

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

.ad-label {
  display: block;
  font-size: 0.68rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  margin-bottom: 0.3rem;
  text-align: center;
}

/* ---------------- Sidebar ---------------- */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: sticky;
  top: 96px;
}

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

.side-block h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--plum);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rose-light);
}

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

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

.toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
}

.toc li {
  margin-bottom: 0.2rem;
}

.toc a {
  display: block;
  padding: 0.42rem 0.6rem;
  border-radius: 8px;
  color: var(--ink);
  border-left: 3px solid var(--rose-light);
}

.toc a:hover {
  background: var(--rose-light);
  color: var(--plum);
  border-left-color: var(--rose);
}

.related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.86rem;
}

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

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

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

.related a::before {
  content: "▸ ";
  color: var(--rose);
}

.related a:hover {
  color: var(--rose-deep);
}

/* ---------------- Top page sections ---------------- */

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

.top-section {
  padding: 3.6rem 0;
}

.top-section-alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-heading .en {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--rose);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section-heading h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--plum);
  line-height: 1.5;
}

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

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

.about-figure {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.about-figure figcaption {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.6rem;
}

/* news */

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

.news-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 14px rgba(74, 37, 69, 0.06);
}

.news-date {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--rose-deep);
  font-size: 0.88rem;
  padding-top: 0.15rem;
  white-space: nowrap;
}

.news-body strong {
  display: block;
  color: var(--plum);
  margin-bottom: 0.15rem;
}

.news-body p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* topic cards */

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.4rem;
}

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

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(74, 37, 69, 0.18);
  color: var(--ink);
}

.topic-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.topic-card-body {
  padding: 1.1rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

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

.topic-card-body p {
  font-size: 0.85rem;
  color: var(--ink-soft);
  flex: 1;
}

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

/* ---------------- Footer ---------------- */

.site-footer {
  background: var(--plum-dark);
  color: #e9dbe5;
  padding: 3rem 0 1.6rem;
  margin-top: 0;
}

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

.footer-col h3 {
  font-family: var(--font-head);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.8rem;
}

.footer-col p {
  font-size: 0.84rem;
  color: #cbb3c5;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  font-size: 0.84rem;
}

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

.footer-col a {
  color: #e9dbe5;
}

.footer-col a:hover {
  color: var(--coral);
}

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

.footer-links a {
  color: #e9dbe5;
  font-size: 0.84rem;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

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

/* ---------------- Responsive ---------------- */

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

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-toggle {
    display: flex;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 340px);
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 32px rgba(51, 23, 47, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 5rem 1.4rem 2rem;
    overflow-y: auto;
    z-index: 110;
  }

  .global-nav.is-open {
    transform: translateX(0);
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    gap: 0.2rem;
  }

  .nav-menu li a {
    display: block;
    padding: 0.7rem 0.8rem;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .hero {
    min-height: 440px;
  }

  .article > section {
    padding: 1.4rem 1.2rem;
  }

  .page-hero img {
    height: 250px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

/* ===== 業界応援パートナー募集 ===== */
.partner-page-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.partner-page-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 55%, var(--rose-deep) 100%);
  color: #fff;
}

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

.partner-page-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.35;
  margin-bottom: 1.25rem;
  color: #fff;
}

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

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

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

.partner-content-block {
  background: var(--paper);
  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.35rem;
  color: var(--plum);
  margin-bottom: 1rem;
}

.partner-content-block h3 {
  font-size: 1.05rem;
  color: var(--plum-soft);
  margin: 1.5rem 0 0.75rem;
}

.partner-content-block p {
  line-height: 1.9;
}

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

.partner-content-block ul,
.partner-content-block ol {
  padding-left: 1.4rem;
}

.partner-content-block li {
  margin-top: 0.5rem;
  line-height: 1.8;
}

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

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

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

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

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

.partner-cta-box {
  background: linear-gradient(135deg, var(--plum) 0%, var(--rose-deep) 100%);
  border: none;
  color: #fff;
}

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

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

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

.partner-btn-primary {
  background: var(--coral);
  color: #fff;
}

.partner-btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.partner-btn-ghost {
  background: transparent;
  color: var(--rose-deep);
  border: 1px solid currentColor;
}

.partner-btn-ghost:hover {
  background: rgba(194, 94, 127, 0.08);
}

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

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

.partner-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: var(--rose-light);
  color: var(--rose-deep);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.partner-inline-section {
  padding: 3rem 1.5rem;
  background: var(--cream);
}

.partner-inline-card {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.partner-inline-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--plum);
  margin: 0 0 0.6rem;
}

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

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

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

  .partner-content-block,
  .partner-inline-card {
    padding: 1.5rem;
  }
}

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