/* ==========================================================
   陸上養殖インサイト styles.css
   Palette: 深海ネイビー / ティール / アクアグリーン
   Fonts: Shippori Mincho (headings) + Noto Sans JP (body)
   ========================================================== */

:root {
  --deep: #07293b;
  --deep-2: #0b3a52;
  --primary: #0d5c6e;
  --teal: #11888e;
  --aqua: #35c4b5;
  --aqua-light: #d9f2ef;
  --bg: #f4f9f9;
  --white: #ffffff;
  --ink: #22333b;
  --ink-soft: #52646d;
  --line: #d7e5e6;
  --gold: #d9a441;
  --shadow: 0 10px 30px rgba(7, 41, 59, 0.12);
  --radius: 14px;
  --transition: all 0.25s ease;
  --font-head: "Shippori Mincho", "Noto Serif JP", serif;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

* {
  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: var(--bg);
  line-height: 1.9;
  font-size: 16px;
  overflow-wrap: break-word;
}

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

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

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

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

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

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--aqua);
  box-shadow: 0 2px 12px rgba(7, 41, 59, 0.08);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.brand-title {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--deep);
  letter-spacing: 0.06em;
}

.brand-title .brand-mark {
  color: var(--teal);
  margin-right: 6px;
}

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

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

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

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

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

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

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

/* ハンバーガー */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
}

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

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

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

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

/* ---------- ヒーロー（トップ） ---------- */
.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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 41, 59, 0.55) 0%, rgba(7, 41, 59, 0.15) 60%, rgba(7, 41, 59, 0.05) 100%);
}

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

.hero-tag {
  display: inline-block;
  background: var(--aqua);
  color: var(--deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #eafffb;
  line-height: 1.35;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 1px rgba(7, 41, 59, 0.85);
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75), 0 6px 22px rgba(0, 0, 0, 0.55);
}

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

.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.92);
  border-left: 5px solid var(--aqua);
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--primary);
  line-height: 1.3;
}

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

/* ---------- ページヒーロー（下層） ---------- */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-inner {
  padding: 60px 24px 36px;
}

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 800;
  color: #eafffb;
  line-height: 1.4;
  -webkit-text-stroke: 1px rgba(7, 41, 59, 0.85);
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75), 0 6px 20px rgba(0, 0, 0, 0.55);
}

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

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

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

.breadcrumb span {
  margin: 0 6px;
  color: var(--line);
}

/* ---------- セクション共通 ---------- */
.section {
  padding: 64px 0;
}

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

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--deep);
  font-weight: 700;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--teal), var(--aqua));
  border-radius: 2px;
}

/* ---------- 概要 ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.1em;
}

.about-points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 14px;
}

.about-points li {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--aqua);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 4px 14px rgba(7, 41, 59, 0.06);
}

.about-points strong {
  color: var(--primary);
}

/* ---------- ニュース ---------- */
.news-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.news-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 4px 14px rgba(7, 41, 59, 0.05);
  transition: var(--transition);
}

.news-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.news-date {
  flex-shrink: 0;
  background: var(--deep);
  color: var(--aqua);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.04em;
}

.news-body h3 {
  font-size: 1rem;
  color: var(--deep);
  margin-bottom: 4px;
  line-height: 1.6;
}

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

/* ---------- トピックカード ---------- */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

.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: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.topic-card-num {
  font-family: var(--font-head);
  color: var(--aqua);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.topic-card h3 {
  font-size: 1.02rem;
  color: var(--deep);
  line-height: 1.5;
}

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

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

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

/* ---------- 2カラムレイアウト ---------- */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  padding: 44px 0 72px;
}

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

.main-content > section {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 36px;
  margin-bottom: 30px;
  box-shadow: 0 4px 14px rgba(7, 41, 59, 0.05);
}

.main-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--deep);
  border-bottom: 2px solid var(--aqua);
  padding-bottom: 10px;
  margin-bottom: 22px;
  line-height: 1.5;
}

.main-content h3 {
  font-size: 1.08rem;
  color: var(--primary);
  margin: 26px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--aqua);
  line-height: 1.6;
}

.main-content p {
  margin-bottom: 1.1em;
}

.main-content ul,
.main-content ol {
  margin: 0 0 1.2em;
}

.main-content li {
  margin-bottom: 0.35em;
}

/* 図表 */
.figure {
  margin: 26px 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  overflow-x: auto;
}

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

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

.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: 10px;
  text-align: center;
}

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

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

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

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

/* プロセス図（CSS版） */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
  justify-content: center;
  margin: 8px 0;
}

.process-step {
  background: var(--white);
  border: 2px solid var(--teal);
  border-radius: 10px;
  padding: 12px 14px;
  min-width: 130px;
  flex: 1 1 130px;
  max-width: 190px;
  text-align: center;
  position: relative;
}

.process-step strong {
  display: block;
  color: var(--primary);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.process-step span {
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.5;
  display: block;
}

.process-arrow {
  align-self: center;
  color: var(--teal);
  font-weight: 700;
  font-size: 1.2rem;
}

/* 注意書き・ポイント */
.note-box {
  background: var(--aqua-light);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.92rem;
}

.note-box strong {
  color: var(--primary);
}

/* 本文内広告 */
.ad-inline {
  margin: 24px 0;
  padding: 14px;
  background: #fbfdfd;
  border: 1px dashed var(--line);
  border-radius: 10px;
  text-align: center;
  overflow-x: auto;
}

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

.amazon-banner {
  display: inline-block;
}

.amazon-banner a {
  display: inline-block;
  background: linear-gradient(120deg, #fff8ec, #fdefd2);
  border: 1px solid var(--gold);
  color: #7a5410;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 10px;
  transition: var(--transition);
}

.amazon-banner a:hover {
  background: #fdeabc;
  color: #5c3d05;
}

/* ---------- サイドバー ---------- */
.sidebar {
  min-width: 0;
}

.sidebar-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(7, 41, 59, 0.05);
}

.sidebar-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--deep);
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--aqua);
}

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

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

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

.toc-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 4px;
  counter-reset: toc;
}

.toc-list li a {
  display: block;
  font-size: 0.88rem;
  padding: 7px 10px 7px 30px;
  border-radius: 8px;
  color: var(--ink);
  position: relative;
  counter-increment: toc;
  line-height: 1.5;
}

.toc-list li a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 6px;
  color: var(--aqua);
  font-weight: 700;
  font-size: 0.75rem;
  top: 9px;
}

.toc-list li a:hover {
  background: var(--aqua-light);
  color: var(--primary);
}

.related-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.related-list li a {
  display: block;
  font-size: 0.88rem;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  line-height: 1.5;
}

.related-list li a:hover {
  border-color: var(--aqua);
  background: var(--aqua-light);
  color: var(--primary);
}

.related-list li a strong {
  display: block;
  color: var(--primary);
  font-size: 0.82rem;
}

/* ---------- ページ送り ---------- */
.page-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}

.page-nav a {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(7, 41, 59, 0.05);
}

.page-nav a:hover {
  border-color: var(--aqua);
  color: var(--primary);
}

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

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

/* ---------- フッター ---------- */
.site-footer {
  background: var(--deep);
  color: #cfe3e6;
  padding: 56px 0 28px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-brand {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand .brand-mark {
  color: var(--aqua);
  margin-right: 6px;
}

.footer-desc {
  font-size: 0.84rem;
  color: #9fc0c6;
  line-height: 1.8;
}

.footer-heading {
  font-size: 0.9rem;
  color: var(--aqua);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.1em;
}

.footer-nav {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 7px;
}

.footer-nav li a {
  color: #cfe3e6;
  font-size: 0.85rem;
}

.footer-nav li a:hover {
  color: var(--aqua);
}

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

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

.footer-links a:hover {
  color: var(--aqua);
}

.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: #86a9b0;
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .nav-toggle {
    display: flex;
  }

  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 320px);
    height: 100vh;
    background: var(--deep);
    padding: 90px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    justify-content: flex-start;
    z-index: 999;
  }

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

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    width: 100%;
    gap: 4px;
  }

  .nav-menu li a {
    color: #eafffb;
    font-size: 1rem;
    padding: 12px 14px;
  }

  .nav-menu li a:hover,
  .nav-menu li a.is-current {
    background: rgba(53, 196, 181, 0.18);
    color: var(--aqua);
  }

  .nav-toggle {
    position: relative;
    z-index: 1001;
  }

  .header-inner {
    flex-wrap: nowrap;
  }

  .hero {
    min-height: 440px;
  }

  .hero-stats {
    gap: 10px;
  }

  .section {
    padding: 44px 0;
  }

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

  .main-content > section {
    padding: 24px 20px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }

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

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

  .page-nav {
    flex-direction: column;
  }

  .page-nav .next {
    text-align: left;
  }
}

/* ===== 業界応援パートナー募集 ===== */
.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(--deep) 0%, var(--deep-2) 50%, var(--primary) 100%);
  color: var(--white);
}

.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: var(--white);
}

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

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

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

.partner-content-block h3 {
  font-size: 1.05rem;
  color: var(--primary);
  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(--aqua-light);
  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(--teal);
}

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

.partner-cta-box h2,
.partner-cta-box p,
.partner-cta-box .partner-note {
  color: var(--white);
}

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

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

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

.partner-btn-ghost:hover {
  background: rgba(17, 136, 142, 0.08);
}

.partner-cta-box .partner-btn-ghost {
  color: var(--white);
  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(--aqua-light);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

.partner-inline-card {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--white);
  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(--deep);
  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; }
}
