/* ============================================================
   URBAN RACKET REPORT — ピックルボール・パデル業界レポート
   オリジナルデザイン: コートブルー × ピックルボールライム × パデルクレー
   ============================================================ */

:root {
  --navy: #0f2440;
  --navy-deep: #0a1a30;
  --court-blue: #1b5fa8;
  --court-blue-dark: #14497f;
  --lime: #b8d832;
  --lime-bright: #d3ee55;
  --clay: #e2725b;
  --clay-dark: #c05540;
  --bg: #f6f7f1;
  --bg-alt: #eceee3;
  --card: #ffffff;
  --text: #26323e;
  --text-light: #5c6b7a;
  --line: #dde1d3;
  --shadow: 0 4px 18px rgba(15, 36, 64, 0.10);
  --shadow-lg: 0 10px 32px rgba(15, 36, 64, 0.16);
  --radius: 14px;
  --transition: all 0.25s ease;
}

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

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

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

h1, h2, h3, h4 {
  font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  line-height: 1.45;
  color: var(--navy);
}

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

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

a:hover {
  opacity: 0.85;
}

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

/* ---------------- ヘッダー ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 4px solid var(--lime);
  box-shadow: 0 2px 12px rgba(10, 26, 48, 0.35);
}

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

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

.logo a {
  color: #ffffff;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.logo a .logo-accent {
  color: var(--lime-bright);
}

.logo .logo-sub {
  font-size: 0.68rem;
  color: #b9c6d6;
  letter-spacing: 0.14em;
}

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

.nav-item a {
  display: inline-block;
  font-weight: 500;
  color: #e8eef4;
  padding: 0.32rem 0.68rem;
  border-radius: 8px;
  transition: var(--transition);
  font-size: 0.86rem;
  white-space: nowrap;
}

.nav-item a:hover {
  background: rgba(184, 216, 50, 0.18);
  color: var(--lime-bright);
  opacity: 1;
}

.nav-item a.nav-current {
  background: var(--lime);
  color: var(--navy-deep);
  font-weight: 700;
}

.nav-item a.nav-blog {
  border: 1px solid var(--lime);
  color: var(--lime-bright);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--lime-bright);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

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

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

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

/* ---------------- ヒーロー ---------------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--home {
  background-image: url('images/hero-urban-racket-sports.jpg');
  min-height: 600px;
}

.hero--p01 { background-image: url('images/hero-market-overview.jpg'); }
.hero--p02 { background-image: url('images/hero-pickleball-industry.jpg'); }
.hero--p03 { background-image: url('images/hero-padel-global-growth.jpg'); }
.hero--p04 { background-image: url('images/hero-japan-market.jpg'); }
.hero--p05 { background-image: url('images/hero-facility-business.jpg'); }
.hero--p06 { background-image: url('images/hero-equipment-market.jpg'); }
.hero--p07 { background-image: url('images/hero-community-events.jpg'); }
.hero--p08 { background-image: url('images/hero-future-outlook.jpg'); }

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 48, 0.18) 0%, rgba(10, 26, 48, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 1.5rem;
  max-width: 900px;
}

.hero-label {
  display: inline-block;
  background: var(--lime);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  padding: 0.3rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.04em;
  -webkit-text-stroke: 1px rgba(15, 36, 64, 0.85);
  paint-order: stroke fill;
  text-shadow: 0 2px 6px rgba(10, 26, 48, 0.85), 0 6px 22px rgba(10, 26, 48, 0.65);
}

.hero .hero-subtitle {
  margin-top: 1.1rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: #f4fbd8;
  text-shadow: 0 2px 5px rgba(10, 26, 48, 0.9), 0 4px 14px rgba(10, 26, 48, 0.7);
}

/* ---------------- 共通セクション ---------------- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1rem;
  border-left: 8px solid var(--lime);
}

.section-lead {
  color: var(--text-light);
  margin-bottom: 2.2rem;
  max-width: 820px;
}

/* ---------------- TOP: 概要 ---------------- */
.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.overview-text p {
  margin-bottom: 1.2rem;
}

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

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

.stat-card.stat-card--clay {
  border-top-color: var(--clay);
}

.stat-number {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--court-blue-dark);
  line-height: 1.2;
}

.stat-card--clay .stat-number {
  color: var(--clay-dark);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}

.stat-note {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ---------------- TOP: ニュース ---------------- */
.news-section {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
}

.news-list {
  list-style: none;
  padding-left: 0;
}

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

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

.news-date {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  color: var(--court-blue-dark);
  white-space: nowrap;
  font-size: 0.92rem;
}

.news-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.12rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
}

.news-tag--pb {
  background: rgba(184, 216, 50, 0.25);
  color: #5a7010;
}

.news-tag--padel {
  background: rgba(226, 114, 91, 0.16);
  color: var(--clay-dark);
}

.news-tag--jp {
  background: rgba(27, 95, 168, 0.12);
  color: var(--court-blue-dark);
}

.news-body {
  flex: 1;
  min-width: 240px;
  font-size: 0.95rem;
}

/* ---------------- TOP: トピックカード ---------------- */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

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

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

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

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

.topic-card h3 {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

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

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

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

/* ---------------- 記事ページ 2カラム ---------------- */
.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 2.6rem;
  align-items: start;
}

.article {
  min-width: 0;
}

.article .article-lead {
  font-size: 1.05rem;
  color: var(--text-light);
  border-left: 5px solid var(--clay);
  padding: 0.4rem 0 0.4rem 1.1rem;
  margin-bottom: 2.4rem;
}

.article section {
  margin-bottom: 3.2rem;
}

.article h2 {
  font-size: 1.5rem;
  font-weight: 900;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, rgba(184, 216, 50, 0.28), rgba(184, 216, 50, 0));
  border-left: 8px solid var(--lime);
  border-radius: 4px;
  margin-bottom: 1.4rem;
}

.article h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--court-blue-dark);
  margin: 1.8rem 0 0.9rem;
  padding-bottom: 0.3rem;
  border-bottom: 2px dotted var(--line);
}

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

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

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

/* ---------------- 図表 ---------------- */
.figure {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem 1.3rem 1.1rem;
  margin: 1.8rem 0 2rem;
  overflow-x: auto;
}

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

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

.chart .bar-pb { fill: var(--court-blue); }
.chart .bar-lime { fill: var(--lime); }
.chart .bar-clay { fill: var(--clay); }
.chart .bar-forecast { fill: #b9c6d6; }
.chart .axis-line { stroke: #9aa7b4; stroke-width: 1.5; }
.chart .grid-line { stroke: #e3e7ea; stroke-width: 1; }
.chart .label { font-family: 'Noto Sans JP', sans-serif; font-size: 13px; fill: var(--text); }
.chart .label-small { font-family: 'Noto Sans JP', sans-serif; font-size: 11px; fill: var(--text-light); }
.chart .value { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 14px; font-weight: 700; fill: var(--navy); }
.chart .value-light { font-family: 'Zen Kaku Gothic New', sans-serif; font-size: 13px; font-weight: 700; fill: #6b7885; }
.chart .trend-line { stroke: var(--clay); stroke-width: 3; fill: none; stroke-linecap: round; }
.chart .dot { fill: var(--clay); }

/* 比較表 */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 560px;
}

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

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

.data-table tbody th {
  background: rgba(184, 216, 50, 0.16);
  font-weight: 700;
  white-space: nowrap;
  color: var(--navy);
}

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

/* プロセス図 */
.process-flow {
  display: flex;
  gap: 0.6rem;
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
  counter-reset: flow;
}

.process-flow li {
  counter-increment: flow;
  flex: 1 1 150px;
  background: var(--card);
  border: 2px solid var(--court-blue);
  border-radius: 10px;
  padding: 0.9rem 0.9rem 0.9rem;
  position: relative;
  font-size: 0.85rem;
  margin-bottom: 0;
}

.process-flow li::before {
  content: counter(flow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--court-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.process-flow li strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

/* ---------------- 広告 ---------------- */
.amazon-banner {
  margin: 1.2rem 0;
}

.amazon-banner a {
  display: block;
  background: linear-gradient(90deg, #fff8e6, #fff2cf);
  border: 1px solid #e8d9a0;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  font-weight: 700;
  color: #7a5c00;
  font-size: 0.92rem;
  transition: var(--transition);
}

.amazon-banner a:hover {
  box-shadow: var(--shadow);
  opacity: 1;
}

.inline-ad {
  margin: 1.6rem 0;
  padding: 1rem;
  background: var(--bg-alt);
  border-radius: 10px;
  text-align: center;
  overflow-x: auto;
}

.inline-ad .ad-label,
.side-ad .ad-label {
  display: block;
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
  text-align: center;
}

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

/* ---------------- サイドバー ---------------- */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: sticky;
  top: 120px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-bottom: 0.5rem;
}

.side-box {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.3rem 1.2rem;
}

.side-box h3 {
  font-size: 0.98rem;
  font-weight: 900;
  color: var(--navy);
  border-bottom: 3px solid var(--lime);
  padding-bottom: 0.45rem;
  margin-bottom: 0.9rem;
}

.side-ad {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.9rem;
  text-align: center;
}

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

.side-ad .amazon-banner {
  margin: 0;
}

.toc-list {
  list-style: none;
  padding-left: 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(--text);
}

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

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

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

.related-list li {
  margin-bottom: 0.55rem;
}

.related-list a {
  display: block;
  padding: 0.55rem 0.8rem;
  background: var(--bg);
  border-radius: 8px;
  border-left: 4px solid var(--court-blue);
  color: var(--text);
  transition: var(--transition);
}

.related-list a:hover {
  background: rgba(184, 216, 50, 0.18);
  color: var(--navy);
  opacity: 1;
}

/* ---------------- フッター ---------------- */
.site-footer {
  background: var(--navy-deep);
  color: #c6d2de;
  margin-top: 3rem;
  border-top: 6px solid var(--lime);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.2rem;
  font-size: 0.88rem;
}

.footer-grid h4 {
  color: var(--lime-bright);
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.06em;
}

.footer-grid ul {
  list-style: none;
  padding-left: 0;
}

.footer-grid li {
  margin-bottom: 0.45rem;
}

.footer-grid a {
  color: #c6d2de;
}

.footer-grid a:hover {
  color: var(--lime-bright);
}

.footer-about p {
  font-size: 0.85rem;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 1.2rem 1.5rem 0;
  border-top: 1px solid rgba(198, 210, 222, 0.25);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-links a {
  color: #e8eef4;
  padding: 0.3rem 0.9rem;
  border-radius: 4px;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  padding: 0.6rem 1rem 1.8rem;
  color: #8fa0b2;
}

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

  .page-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 1.8rem;
  }

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

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

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    max-width: none;
    padding: 0.6rem 0 1rem;
    box-shadow: 0 12px 24px rgba(10, 26, 48, 0.4);
    border-bottom: 4px solid var(--lime);
  }

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

  .nav-item a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 0;
    white-space: normal;
  }

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

  .site-header {
    position: sticky;
  }

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

  .sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero--home {
    min-height: 480px;
  }

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

  .section {
    padding: 2.8rem 1.1rem;
  }

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

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

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .stat-number {
    font-size: 1.55rem;
  }

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

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

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

  .hero h1 {
    font-size: 1.55rem;
  }

  .article h2 {
    font-size: 1.25rem;
  }

  .data-table {
    font-size: 0.82rem;
  }
}

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

.partner-inline-section .container {
  max-width: 1080px;
  margin: 0 auto;
}

.partner-inline-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 6px solid var(--lime);
  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(184, 216, 50, 0.22);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

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

.partner-inline-description {
  margin: 0;
  color: var(--text-light);
  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(--court-blue);
  color: #ffffff;
}

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

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

.partner-btn--ghost:hover {
  background: rgba(27, 95, 168, 0.08);
  transform: translateY(-2px);
}

.partner-page-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--court-blue) 100%);
  color: #ffffff;
  padding: 4.5rem 1.5rem 3.5rem;
}

.partner-page-hero .container,
.partner-page-content .container {
  max-width: 900px;
  margin: 0 auto;
}

.partner-page-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(184, 216, 50, 0.25);
  color: var(--lime-bright);
  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 1.5rem 4.5rem;
  background: var(--bg);
}

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

.partner-content-block {
  background: var(--card);
  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(--navy);
  margin: 0 0 1rem;
}

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

.partner-content-block p {
  color: var(--text);
  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(--text);
  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(--navy);
}

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

.partner-cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--court-blue-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(--lime);
  color: var(--navy);
}

.partner-cta-box .partner-btn--primary:hover {
  background: var(--lime-bright);
}

.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(--text-light);
  margin-top: 1.2rem;
}

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

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