/* ==========================================================
   Oral Care Tech Report - styles.css
   オーラルケア・デンタルテック業界レポート
   Palette: teal / mint / deep navy / coral accent
   ========================================================== */

:root {
  --teal: #0e7c86;
  --teal-dark: #0a5a63;
  --teal-deep: #123a45;
  --mint: #d8f0ec;
  --mint-soft: #eef8f6;
  --coral: #f0704a;
  --amber: #f2a541;
  --ink: #24333a;
  --ink-soft: #51646c;
  --line: #d4e4e1;
  --bg: #f7fbfa;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(18, 58, 69, 0.10);
  --radius: 14px;
  --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', 'Yu Gothic', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.brand-name {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

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

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

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

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

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

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

.nav-container {
  width: min(1240px, 94%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-name {
  font-size: 1.05rem;
  color: var(--teal-deep);
  line-height: 1.3;
}

.brand-name small {
  display: block;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.nav-menu {
  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-menu li a {
  display: block;
  padding: 0.32rem 0.7rem;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.current {
  background: var(--mint);
  color: var(--teal-dark);
}

.nav-menu li a.nav-blog {
  background: var(--teal);
  color: var(--white);
}

.nav-menu li a.nav-blog:hover {
  background: var(--teal-dark);
}

.mobile-menu-btn {
  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;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--teal-deep);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

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

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10, 42, 52, 0.55) 0%, rgba(10, 42, 52, 0.25) 55%, rgba(10, 42, 52, 0.05) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 4rem 0;
  max-width: 1160px;
}

.hero-tag {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  color: #ffffff;
  -webkit-text-stroke: 1px rgba(14, 90, 99, 0.65);
  text-shadow: 0 2px 6px rgba(8, 34, 42, 0.85), 0 6px 24px rgba(8, 34, 42, 0.6);
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 640px;
  color: #f2fbfa;
  font-size: 1.05rem;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(8, 34, 42, 0.9), 0 3px 12px rgba(8, 34, 42, 0.7);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 0.7rem 1.2rem;
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.3rem;
  color: var(--teal-dark);
  line-height: 1.3;
}

.hero-stat span {
  font-size: 0.76rem;
  color: var(--ink-soft);
}

/* ---------- Page hero (subpages) ---------- */

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

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 42, 52, 0.08) 0%, rgba(10, 42, 52, 0.62) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 4.5rem 0 2rem;
}

.page-hero .breadcrumbs {
  font-size: 0.8rem;
  color: #e7f5f3;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(8, 34, 42, 0.9);
}

.page-hero .breadcrumbs a {
  color: #bfe6e0;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  color: #ffffff;
  -webkit-text-stroke: 1px rgba(14, 90, 99, 0.6);
  text-shadow: 0 2px 6px rgba(8, 34, 42, 0.85), 0 6px 20px rgba(8, 34, 42, 0.6);
}

.page-hero .page-lead {
  color: #ecf8f6;
  font-size: 0.95rem;
  max-width: 720px;
  margin-top: 0.4rem;
  text-shadow: 0 1px 4px rgba(8, 34, 42, 0.9);
}

/* ---------- Sections (top page) ---------- */

.section {
  padding: 3.8rem 0;
}

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

.section-title {
  font-size: 1.7rem;
  color: var(--teal-deep);
  margin-bottom: 0.4rem;
}

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

.section-desc {
  color: var(--ink-soft);
  max-width: 780px;
  margin-bottom: 2rem;
}

/* ---------- News list ---------- */

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

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

.news-date {
  flex-shrink: 0;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--teal);
  min-width: 6.2em;
}

.news-cat {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal-deep);
  border-radius: 4px;
  padding: 0.1rem 0.55rem;
  white-space: nowrap;
}

.news-cat.cat-tech {
  background: var(--coral);
}

.news-cat.cat-policy {
  background: var(--amber);
  color: var(--teal-deep);
}

.news-text {
  font-size: 0.95rem;
}

/* ---------- Topic cards ---------- */

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

.topic-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(18, 58, 69, 0.06);
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

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

.topic-card-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--coral);
  margin-bottom: 0.3rem;
}

.topic-card h3 {
  font-size: 1.08rem;
  color: var(--teal-deep);
  margin-bottom: 0.5rem;
}

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

.topic-card .card-link {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
}

.topic-card .card-link::after {
  content: " →";
}

/* ---------- Overview feature blocks (top) ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.3rem;
  margin-top: 1.6rem;
}

.feature-box {
  background: var(--mint-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}

.feature-box h3 {
  font-size: 1rem;
  color: var(--teal-dark);
  margin-bottom: 0.4rem;
}

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

/* ---------- 2-column layout (subpages) ---------- */

.layout-2col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.4rem;
  padding: 2.6rem 0 3.6rem;
  align-items: start;
}

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

.main-col > section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 2rem;
  margin-bottom: 1.8rem;
}

.main-col h2 {
  font-size: 1.4rem;
  color: var(--teal-deep);
  padding-left: 0.85rem;
  border-left: 5px solid var(--teal);
  margin-bottom: 1.1rem;
}

.main-col h3 {
  font-size: 1.08rem;
  color: var(--teal-dark);
  margin: 1.5rem 0 0.6rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px dotted var(--line);
}

.main-col p {
  margin-bottom: 1.05rem;
}

.main-col ul,
.main-col ol {
  margin: 0 0 1.05rem;
}

.main-col li {
  margin-bottom: 0.3rem;
}

.lead-paragraph {
  font-size: 1.02rem;
  background: var(--mint-soft);
  border-left: 5px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.3rem;
}

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

.figure {
  background: var(--mint-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 0.9rem;
  margin: 1.4rem 0;
  overflow-x: auto;
}

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

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

.table-wrap {
  overflow-x: auto;
  margin: 1.4rem 0;
}

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

.data-table caption {
  caption-side: bottom;
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding-top: 0.5rem;
  text-align: center;
}

.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-deep);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
}

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

.data-table tbody th {
  background: var(--mint);
  color: var(--teal-deep);
  white-space: nowrap;
}

/* process flow diagram (CSS) */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: stretch;
  margin: 1.4rem 0;
  padding: 0;
  list-style: none;
}

.process-flow li {
  flex: 1 1 140px;
  position: relative;
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font-size: 0.82rem;
  margin: 0;
}

.process-flow li strong {
  display: block;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: var(--teal-dark);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.process-flow li::after {
  content: "▶";
  position: absolute;
  right: -0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: 0.7rem;
  z-index: 2;
}

.process-flow li:last-child::after {
  content: none;
}

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

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

.amazon-banner a {
  display: block;
  background: linear-gradient(135deg, #fff8ec 0%, #fdefd2 100%);
  border: 1px solid #f0d9a8;
  border-radius: 10px;
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #7a5b16;
  text-align: center;
}

.amazon-banner a:hover {
  border-color: var(--amber);
  color: #5e4306;
}

.inline-ad {
  margin: 1.4rem 0;
  padding: 0.9rem;
  background: var(--mint-soft);
  border: 1px dashed var(--line);
  border-radius: 10px;
  text-align: center;
  overflow-x: auto;
}

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

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

/* ---------- Side navigation ---------- */

.side-col {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.side-widget {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
}

.side-widget h2 {
  font-size: 0.95rem;
  color: var(--teal-deep);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 0.4rem;
  margin-bottom: 0.8rem;
}

.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;
  margin: 0;
  counter-reset: toc;
}

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

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

.toc-list a {
  display: flex;
  gap: 0.6rem;
  padding: 0.5rem 0.2rem;
  font-size: 0.86rem;
  color: var(--ink);
}

.toc-list a::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--coral);
}

.toc-list a:hover {
  color: var(--teal);
}

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

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

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

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

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

.related-list a:hover {
  color: var(--teal);
}

/* ---------- Page prev/next ---------- */

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

.page-nav a {
  flex: 1 1 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  font-size: 0.88rem;
  color: var(--ink);
}

.page-nav a:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.page-nav .nav-dir {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.1em;
}

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

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

.site-footer {
  background: var(--teal-deep);
  color: #cfe5e1;
  margin-top: 0;
  padding: 3rem 0 1.4rem;
  font-size: 0.86rem;
}

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

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer-col h3 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.4rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col a {
  color: #cfe5e1;
  font-size: 0.82rem;
}

.footer-col a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.6rem;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1.2rem;
  margin-bottom: 0.9rem;
}

.footer-links a {
  color: #cfe5e1;
  font-size: 0.82rem;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

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

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

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

  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 0.6rem 1rem 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    padding: 0.75rem 0.8rem;
    font-size: 0.95rem;
    border-bottom: 1px dotted var(--line);
    border-radius: 0;
    white-space: normal;
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .nav-menu li a.nav-blog {
    border-radius: 8px;
    margin-top: 0.5rem;
    text-align: center;
  }

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

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

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

  .hero {
    min-height: 440px;
  }

  .hero-stats {
    gap: 0.5rem;
  }

  .hero-stat {
    padding: 0.5rem 0.9rem;
  }

  .hero-stat strong {
    font-size: 1.05rem;
  }

  .section {
    padding: 2.6rem 0;
  }

  .main-col > section {
    padding: 1.3rem 1.1rem;
  }

  .main-col h2 {
    font-size: 1.2rem;
  }

  .news-list li {
    flex-wrap: wrap;
    gap: 0.4rem 0.8rem;
  }

  .news-text {
    flex-basis: 100%;
  }

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

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

  .process-flow li::after {
    content: none;
  }
}

/* ===== 業界応援パートナー募集 ===== */
.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(--teal);
  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: var(--mint);
  color: var(--teal-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-deep);
  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-dark);
}

.partner-btn--ghost:hover {
  background: var(--mint-soft);
  transform: translateY(-2px);
}

.partner-page-hero {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 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(255, 255, 255, 0.18);
  color: #ffffff;
  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-deep);
  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(--mint-soft);
  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);
}

.partner-cta-box {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 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(--coral);
  color: #ffffff;
}

.partner-cta-box .partner-btn--primary:hover {
  background: #d55a36;
}

.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-dark);
}

@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; }
}
