/* ============================================
   警備DXナビ｜セキュリティロボット業界レポート
   Original design: "Sentinel Slate" theme
   Palette: deep slate / signal cyan / amber
   ============================================ */
:root {
  --bg-dark: #0c1622;
  --bg-panel: #13202f;
  --bg-light: #f4f7fa;
  --bg-card: #ffffff;
  --ink: #1d2b3a;
  --ink-soft: #4b5d70;
  --accent: #0aa8c4;
  --accent-deep: #06718a;
  --accent-amber: #e8a33d;
  --line: #d7e0e8;
  --shadow: 0 6px 24px rgba(12, 22, 34, 0.12);
  --radius: 12px;
  --transition: all 0.25s ease;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-head: "Zen Kaku Gothic New", "Noto Sans JP", 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-light);
  line-height: 1.9;
  font-size: 16px;
}

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

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

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 22, 34, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 2px solid var(--accent);
}

.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;
  flex-direction: column;
  line-height: 1.3;
}

.brand a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.brand a:hover {
  color: var(--accent);
}

.brand .brand-tag {
  font-size: 0.68rem;
  color: #8fb3c7;
  letter-spacing: 0.12em;
}

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

.nav-menu li a {
  display: block;
  color: #dbe7ef;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background: rgba(10, 168, 196, 0.22);
  color: #ffffff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}

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

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

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* ---------- Hero (top page) ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("images/hero-security-robotics.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 22, 34, 0.15) 0%, rgba(12, 22, 34, 0.45) 100%);
}

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

.hero-content h1 {
  font-family: var(--font-head);
  font-size: 2.7rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.4;
  -webkit-text-stroke: 1px rgba(6, 40, 58, 0.85);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 0, 0, 0.6);
}

.hero-content .hero-lead {
  margin-top: 1.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f2fbff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 18px rgba(0, 0, 0, 0.7);
}

.hero-badges {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.hero-badges span {
  background: rgba(10, 168, 196, 0.9);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 22, 34, 0.1) 30%, rgba(12, 22, 34, 0.72) 100%);
}

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

.page-hero-inner .page-label {
  display: inline-block;
  background: var(--accent-amber);
  color: #20242a;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.15rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.7rem;
  letter-spacing: 0.08em;
}

.page-hero-inner h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.45;
  -webkit-text-stroke: 1px rgba(6, 40, 58, 0.7);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.85);
}

.hero-p01 {
  background-image: url("images/hero-market-overview.jpg");
}

.hero-p02 {
  background-image: url("images/hero-labor-shortage.jpg");
}

.hero-p03 {
  background-image: url("images/hero-robot-technologies.jpg");
}

.hero-p04 {
  background-image: url("images/hero-ai-video-analytics.jpg");
}

.hero-p05 {
  background-image: url("images/hero-drone-security.jpg");
}

.hero-p06 {
  background-image: url("images/hero-key-players.jpg");
}

.hero-p07 {
  background-image: url("images/hero-cost-and-roi.jpg");
}

.hero-p08 {
  background-image: url("images/hero-future-outlook.jpg");
}

/* ---------- Layout ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding: 0.9rem 0 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding-left: 0;
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 0.3rem;
  color: #9db0c0;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.4rem;
  padding: 1.6rem 0 3.5rem;
  align-items: start;
}

/* ---------- Article ---------- */
.article {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.4rem 2.6rem 2.8rem;
}

.article .article-lead {
  font-size: 1.02rem;
  color: var(--ink-soft);
  border-left: 4px solid var(--accent);
  background: #eef6f9;
  padding: 1rem 1.3rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 2rem;
}

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

.article h2 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.5;
  padding: 0.5rem 0.9rem;
  margin-bottom: 1.2rem;
  border-left: 6px solid var(--accent);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f0f7fa 0%, rgba(240, 247, 250, 0) 80%);
}

.article h3 {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--accent-deep);
  margin: 1.6rem 0 0.8rem;
  padding-bottom: 0.25rem;
  border-bottom: 2px dotted #bcd6df;
}

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

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

.article strong {
  color: var(--accent-deep);
}

.note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: #f4f6f8;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin-top: 1rem;
}

/* ---------- Figures / diagrams ---------- */
.figure {
  margin: 1.6rem 0;
  padding: 1.2rem 1.2rem 0.9rem;
  background: #fbfdfe;
  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.82rem;
  color: var(--ink-soft);
  text-align: center;
}

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

.data-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.9rem;
  line-height: 1.6;
}

.data-table caption {
  caption-side: bottom;
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding-top: 0.6rem;
  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(--bg-dark);
  color: #ffffff;
  font-weight: 700;
  white-space: nowrap;
}

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

.data-table tbody th {
  background: #e7f1f5;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Process flow ---------- */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin: 1.4rem 0;
}

.process-flow li {
  counter-increment: step;
  flex: 1 1 160px;
  background: #ffffff;
  border: 2px solid var(--accent);
  border-radius: 10px;
  padding: 0.9rem 1rem 0.9rem;
  position: relative;
  font-size: 0.88rem;
}

.process-flow li::before {
  content: "STEP " counter(step);
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent-deep);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

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

/* ---------- Ads ---------- */
.ad-inline {
  margin: 1.4rem 0;
  text-align: center;
}

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

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

.amazon-banner a {
  display: block;
  background: linear-gradient(135deg, #fff8ec 0%, #ffefd0 100%);
  border: 1px solid var(--accent-amber);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #7a5410;
  text-align: center;
}

.amazon-banner a:hover {
  background: #ffe9bd;
  color: #5c3e08;
}

.sidebar .ad-inline {
  margin: 0 0 1.4rem;
}

/* ---------- Sidebar ---------- */
.sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
}

.sidebar-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.4rem;
}

.sidebar-block h2 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  background: var(--bg-dark);
  border-radius: 6px;
  padding: 0.4rem 0.8rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0.06em;
}

.sidebar-block ul {
  list-style: none;
  padding-left: 0;
}

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

.sidebar-block ul li:last-child {
  border-bottom: none;
}

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

.sidebar-block ul li a:hover {
  color: var(--accent-deep);
  padding-left: 0.5rem;
}

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

/* ---------- Top page sections ---------- */
.section {
  padding: 3.2rem 0 0.6rem;
}

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

.section-head .section-en {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-head h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--bg-dark);
}

.section-head .section-sub {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

.overview-text p {
  margin-bottom: 1rem;
  text-align: justify;
}

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

.stat-card {
  background: var(--bg-dark);
  color: #ffffff;
  border-radius: var(--radius);
  padding: 1.3rem 1.1rem;
  text-align: center;
  border-top: 4px solid var(--accent);
}

.stat-card .stat-value {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 900;
  color: #7fe3f5;
  line-height: 1.2;
}

.stat-card .stat-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: #c4d6e2;
}

.stat-card .stat-note {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.66rem;
  color: #8aa2b5;
}

/* ---------- News list ---------- */
.news-list {
  list-style: none;
  padding-left: 0;
  max-width: 920px;
  margin: 0 auto;
}

.news-list li {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  padding: 1rem 1.3rem;
  margin-bottom: 0.9rem;
  box-shadow: 0 2px 10px rgba(12, 22, 34, 0.06);
}

.news-list time {
  flex: 0 0 auto;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: #ffffff;
  background: var(--bg-dark);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  margin-top: 0.15rem;
  white-space: nowrap;
}

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

.news-list .news-body strong {
  color: var(--bg-dark);
}

/* ---------- Topic cards ---------- */
.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  padding-bottom: 1rem;
}

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

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(12, 22, 34, 0.2);
}

.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 .topic-no {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.18em;
}

.topic-card h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin: 0.3rem 0 0.5rem;
  line-height: 1.5;
}

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

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

/* ---------- Related pages (article bottom) ---------- */
.pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.pager a {
  flex: 1;
  background: #eef6f9;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.pager a.pager-next {
  text-align: right;
}

.pager a:hover {
  background: var(--accent);
  color: #ffffff;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #c9d8e4;
  margin-top: 3rem;
  padding: 3rem 0 1.6rem;
  font-size: 0.86rem;
}

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

.footer-grid h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #2d4257;
}

.footer-grid p {
  color: #9fb4c6;
  font-size: 0.82rem;
}

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

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

.footer-grid ul li a {
  color: #c9d8e4;
  font-size: 0.84rem;
}

.footer-grid ul li a:hover {
  color: #7fe3f5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.6rem;
  justify-content: center;
  padding: 1.2rem 0;
  border-top: 1px solid #2d4257;
}

.footer-links a {
  color: #c9d8e4;
}

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

.copyright {
  text-align: center;
  color: #7e93a6;
  font-size: 0.78rem;
  padding-top: 0.8rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .topic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .article {
    padding: 1.8rem 1.6rem 2.2rem;
  }

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

@media (max-width: 860px) {
  .hamburger {
    display: flex;
  }

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

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

  .nav-menu li a {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
    border-radius: 0;
    white-space: normal;
  }

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

  .sidebar {
    position: static;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content .hero-lead {
    font-size: 1rem;
  }

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

  .page-hero-inner h1 {
    font-size: 1.45rem;
  }

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

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

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

  .pager {
    flex-direction: column;
  }

  .pager a.pager-next {
    text-align: left;
  }
}

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

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

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

  .article {
    padding: 1.4rem 1.1rem 1.8rem;
  }

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

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

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

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

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

.partner-inline-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  color: var(--ink);
  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(--accent);
  color: #ffffff;
}

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

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

.partner-btn--ghost:hover {
  background: rgba(10, 168, 196, 0.1);
  transform: translateY(-2px);
}

.partner-page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-panel) 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.5rem;
  border-bottom: 2px solid var(--accent);
}

.partner-page-eyebrow {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(10, 168, 196, 0.2);
  color: #7edcec;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.partner-page-title {
  font-family: var(--font-head);
  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.88);
  line-height: 1.9;
  margin: 0;
}

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

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

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

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

.partner-content-block h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--accent-deep);
  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-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

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

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

.partner-cta-box {
  background: linear-gradient(135deg, var(--bg-panel) 0%, var(--bg-dark) 100%);
  border: 1px solid var(--accent);
}

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

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