/* =========================================================
   Article Page (/columns/{topic}/) - 記事LP（ピラー型）専用スタイル
   既存 style.css を継承し、長文記事LP向けの装飾を追加
   ========================================================= */

/* パンくず
   ========================================================= */
.breadcrumb {
  background: #f7fafd;
  border-bottom: 1px solid #e5ebf2;
  padding: 12px 0;
  font-size: 12.5px;
}
.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  color: #4a5568;
}
.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #9ca8b8;
}
.breadcrumb a {
  color: #2e9b4c;
  text-decoration: none;
  font-weight: 700;
}
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li[aria-current="page"] {
  color: #0a3a73;
  font-weight: 700;
}

/* 記事ヒーロー
   ========================================================= */
.article-hero {
  background: linear-gradient(135deg, #f0faf3 0%, #ffffff 50%, #eef3fa 100%);
  padding: 50px 0 56px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124,232,149,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.article-hero .container { max-width: 880px; position: relative; }
.article-eyebrow {
  display: inline-block;
  background: #1f6b3a;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}
.article-title {
  font-size: clamp(24px, 4.2vw, 34px);
  font-weight: 900;
  color: #0a3a73;
  line-height: 1.45;
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}
.article-subtitle {
  display: block;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  color: #2e9b4c;
  margin-top: 8px;
  line-height: 1.55;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 22px;
  font-size: 12.5px;
  color: #4a5568;
}
.article-meta-item { white-space: nowrap; }
.article-lead {
  font-size: 15.5px;
  line-height: 1.95;
  color: #2d3a52;
  padding: 18px 22px;
  background: #fff;
  border-left: 5px solid #2e9b4c;
  border-radius: 0 8px 8px 0;
  margin: 0;
  box-shadow: 0 2px 12px rgba(10,58,115,0.04);
}
@media (max-width: 600px) {
  .article-hero { padding: 36px 0 40px; }
  .article-lead { font-size: 14px; padding: 14px 16px; }
  .article-meta { font-size: 11.5px; gap: 10px; }
}

/* 目次
   ========================================================= */
.article-toc-section {
  padding: 28px 0 0;
}
.article-toc-section .container { max-width: 880px; }
.article-toc {
  background: #fff;
  border: 2px solid #e5ebf2;
  border-radius: 10px;
  padding: 22px 28px;
}
.article-toc .toc-title {
  font-size: 14px;
  font-weight: 900;
  color: #0a3a73;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #2e9b4c;
  display: inline-block;
  padding-right: 18px;
}
.article-toc ol {
  margin: 0;
  padding-left: 22px;
  columns: 2;
  column-gap: 32px;
}
.article-toc li {
  break-inside: avoid;
  margin-bottom: 6px;
  font-size: 13.5px;
  line-height: 1.65;
}
.article-toc a {
  color: #0a3a73;
  text-decoration: none;
  font-weight: 700;
}
.article-toc a:hover { color: #2e9b4c; text-decoration: underline; }
@media (max-width: 600px) {
  .article-toc { padding: 18px 20px; }
  .article-toc ol { columns: 1; padding-left: 18px; }
  .article-toc li { font-size: 13px; }
}

/* 記事本文セクション
   ========================================================= */
.article-section {
  padding: 50px 0 40px;
}
.article-section .container { max-width: 880px; }
.article-section h2 {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 900;
  color: #0a3a73;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid #2e9b4c;
  line-height: 1.45;
}
.article-section h3 {
  font-size: clamp(16px, 2.5vw, 19px);
  font-weight: 900;
  color: #1f6b3a;
  margin: 28px 0 12px;
  padding-left: 12px;
  border-left: 4px solid #2e9b4c;
  line-height: 1.55;
}
.article-section h4 {
  font-size: 15.5px;
  font-weight: 900;
  color: #0a3a73;
  margin: 18px 0 8px;
}
.article-section p {
  font-size: 15px;
  line-height: 1.95;
  color: #2d3a52;
  margin: 0 0 14px;
}
.article-section ul, .article-section ol {
  margin: 0 0 16px;
  padding-left: 22px;
}
.article-section li {
  font-size: 15px;
  line-height: 1.95;
  color: #2d3a52;
  margin-bottom: 4px;
}
.article-section strong {
  color: #1f6b3a;
  font-weight: 700;
}
@media (max-width: 600px) {
  .article-section { padding: 36px 0 28px; }
  .article-section p, .article-section li { font-size: 14px; line-height: 1.85; }
}

/* 比較テーブル
   ========================================================= */
.comparison-table-wrap {
  overflow-x: auto;
  margin: 18px 0 22px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(10,58,115,0.08);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
  min-width: 500px;
}
.comparison-table thead th {
  background: #0a3a73;
  color: #fff;
  padding: 12px 16px;
  font-weight: 900;
  text-align: left;
  font-size: 13.5px;
}
.comparison-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #e5ebf2;
  vertical-align: top;
  line-height: 1.75;
}
.comparison-table tbody td:first-child {
  background: #f7fafd;
  font-weight: 700;
  color: #0a3a73;
  white-space: nowrap;
}
.comparison-table tbody tr:last-child td { border-bottom: 0; }

/* 計算式ボックス
   ========================================================= */
.formula-box {
  background: linear-gradient(135deg, #f0faf3 0%, #ffffff 100%);
  border: 2px solid #2e9b4c;
  border-radius: 12px;
  padding: 22px 26px;
  margin: 22px 0;
  box-shadow: 0 4px 18px rgba(46,155,76,0.10);
}
.formula-title {
  font-size: 13px !important;
  font-weight: 900;
  color: #1f6b3a !important;
  margin: 0 0 10px !important;
  letter-spacing: 0.05em;
}
.formula-eq {
  font-size: 16px !important;
  line-height: 1.85 !important;
  color: #0a3a73 !important;
  font-weight: 700;
  font-family: "SF Mono", "Menlo", "Hiragino Sans", sans-serif;
  background: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  border-left: 4px solid #2e9b4c;
  margin: 0 0 10px !important;
}
.formula-eq strong { color: #c93131 !important; }
.formula-note {
  font-size: 12px !important;
  color: #6b7a90 !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}
.formula-example .example-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 !important;
}
.formula-example .example-list li {
  background: #fff;
  padding: 8px 14px;
  margin-bottom: 4px;
  border-left: 3px solid #45b863;
  border-radius: 0 4px 4px 0;
  font-size: 13.5px !important;
  font-family: "SF Mono", "Menlo", sans-serif;
}

/* メリット・デメリットグリッド
   ========================================================= */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 16px 0 22px;
}
@media (max-width: 600px) { .pros-cons-grid { grid-template-columns: 1fr; } }
.pros-cons-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
  border: 1px solid #e5ebf2;
}
.pros-cons-card.pros { border-top: 4px solid #2e9b4c; }
.pros-cons-card.cons { border-top: 4px solid #c93131; }
.pros-cons-card h4 {
  font-size: 14px !important;
  font-weight: 900;
  margin: 0 0 10px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5ebf2;
}
.pros-cons-card.pros h4 { color: #2e9b4c !important; }
.pros-cons-card.cons h4 { color: #c93131 !important; }
.pros-cons-card ul {
  padding-left: 18px;
  margin: 0 !important;
}
.pros-cons-card li {
  font-size: 13.5px !important;
  line-height: 1.75 !important;
  margin-bottom: 4px;
}

/* コールアウト
   ========================================================= */
.callout-box {
  background: #f0faf3;
  border-left: 5px solid #2e9b4c;
  padding: 16px 22px;
  border-radius: 0 8px 8px 0;
  margin: 18px 0 22px;
}
.callout-box.callout-warn {
  background: #fff7ea;
  border-left-color: #c08a00;
}
.callout-box .callout-title {
  font-weight: 900 !important;
  color: #1f6b3a !important;
  margin: 0 0 6px !important;
  font-size: 14px !important;
}
.callout-warn .callout-title { color: #8a6000 !important; }
.callout-box p:last-child { margin-bottom: 0 !important; }

/* コツリスト
   ========================================================= */
.tip-list {
  display: grid;
  gap: 14px;
  margin: 18px 0;
}
.tip-card {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-left: 5px solid #2e9b4c;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  box-shadow: 0 2px 12px rgba(10,58,115,0.05);
}
.tip-num {
  display: inline-block;
  background: #2e9b4c;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.tip-card h3 {
  font-size: 16px !important;
  font-weight: 900;
  color: #0a3a73 !important;
  margin: 0 0 8px !important;
  padding-left: 0 !important;
  border-left: 0 !important;
}
.tip-card p {
  font-size: 14px !important;
  line-height: 1.85 !important;
  margin: 0 !important;
}

/* ミスリスト
   ========================================================= */
.mistake-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}
.mistake-card {
  background: #fff;
  border: 1px solid #e5ebf2;
  border-left: 5px solid #c93131;
  border-radius: 0 10px 10px 0;
  padding: 16px 22px;
}
.mistake-label {
  display: inline-block;
  background: #c93131;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.mistake-card p:nth-of-type(1) {
  font-size: 15px !important;
  font-weight: 900;
  color: #c93131 !important;
  margin: 0 0 8px !important;
}
.mistake-card p:nth-of-type(2) {
  font-size: 14px !important;
  line-height: 1.85 !important;
  margin: 0 !important;
  color: #2d3a52 !important;
}

/* 製品セクション
   ========================================================= */
.article-section-product {
  background: linear-gradient(135deg, #eef3fa 0%, #f0faf3 100%);
  padding: 50px 0 56px;
  border-radius: 14px;
  margin: 24px 0;
}
.product-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
}
@media (max-width: 600px) { .product-feature-list { grid-template-columns: 1fr; } }
.product-feature-item {
  background: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  border-left: 4px solid #2e9b4c;
  box-shadow: 0 2px 10px rgba(10,58,115,0.05);
}
.product-feature-item h4 {
  font-size: 14.5px !important;
  font-weight: 900;
  color: #0a3a73 !important;
  margin: 0 0 6px !important;
}
.product-feature-item p {
  font-size: 13.5px !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}
.product-mini-cta {
  text-align: center;
  margin: 28px 0 0;
}

/* 記事FAQ
   ========================================================= */
.article-faq-list {
  margin: 18px 0 0;
  padding: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10,58,115,0.06);
}

/* CTA セクション
   ========================================================= */
.article-cta {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafd 100%);
  text-align: center;
}
.article-cta .container { max-width: 880px; }
.cta-lead {
  font-size: 15px;
  line-height: 1.95;
  color: #2d3a52;
  margin: 0 auto 28px;
  max-width: 680px;
}
.cta-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0 0;
  text-align: left;
}
@media (max-width: 700px) { .cta-options-grid { grid-template-columns: 1fr; } }
.cv-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 26px;
  border: 2px solid #e5ebf2;
  box-shadow: 0 6px 22px rgba(10,58,115,0.08);
  display: flex;
  flex-direction: column;
}
.cv-card-primary { border-top: 5px solid #2e9b4c; }
.cv-card-secondary { border-top: 5px solid #0a3a73; }
.cv-card-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 10px;
}
.cv-card h3 {
  font-size: 17px !important;
  font-weight: 900;
  color: #0a3a73 !important;
  margin: 0 0 12px !important;
}
.cv-card p {
  font-size: 13.5px !important;
  line-height: 1.85 !important;
  margin: 0 0 14px !important;
  color: #2d3a52 !important;
  flex-grow: 1;
}
.cv-card .contact-info {
  background: #f0faf3;
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
  margin: 0 !important;
}
.cv-card .contact-info a {
  color: #c93131;
  font-weight: 900;
  font-size: 18px !important;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.cv-card .btn-primary {
  margin-top: auto;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LP → note 導線（共通パターン）
   ① シリーズ案内バナー  ② インライン誘導カード
   ③ 執筆者プロフィール   ④ 関連記事グリッド強化
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* noteブランド共通 */
.note-badge {
  display: inline-block;
  background: #1f1f1f;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

/* ① シリーズ案内バナー */
.note-series-banner {
  padding: 20px 0;
  background: linear-gradient(180deg, #fff8dc 0%, #ffffff 100%);
  border-top: 1px solid #f0e1a8;
  border-bottom: 1px solid #f0e1a8;
}
.note-series-banner .container { max-width: 880px; }
.note-banner-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.note-banner-inner p {
  font-size: 13.5px;
  line-height: 1.85;
  color: #5a4400;
  margin: 0;
}
.note-banner-inner p a {
  color: #1f6b3a;
  font-weight: 700;
  text-decoration: underline;
}
.note-banner-inner p a:hover { color: #2e9b4c; }
.note-banner-inner p strong { color: #5a4400; }
@media (max-width: 600px) {
  .note-banner-inner { flex-direction: column; gap: 8px; }
  .note-banner-inner p { font-size: 12.5px; }
}

/* ② インライン誘導カード */
.note-inline-card {
  background: #fffef5;
  border: 2px solid #f0e1a8;
  border-radius: 12px;
  padding: 22px 26px;
  margin: 32px 0 0;
  position: relative;
}
.note-inline-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 4px;
  background: linear-gradient(90deg, #1f1f1f 0%, #4a4a4a 100%);
  border-radius: 2px;
}
.note-inline-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}
.note-inline-head h3 {
  font-size: 15.5px !important;
  font-weight: 900;
  color: #0a3a73 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.note-inline-card > p {
  font-size: 14px !important;
  line-height: 1.85 !important;
  color: #5a4400 !important;
  margin: 0 0 14px !important;
}
.note-inline-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
}
.note-inline-list li {
  margin-bottom: 6px;
}
.note-inline-list a {
  display: block;
  background: #fff;
  border: 1px solid #f0e1a8;
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: #0a3a73;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s;
  position: relative;
  padding-left: 60px;
}
.note-inline-list a:hover {
  transform: translateX(3px);
  border-color: #1f1f1f;
  box-shadow: 0 4px 14px rgba(31,31,31,0.10);
}
.note-inline-list a small {
  display: block;
  font-size: 12px !important;
  color: #6b7a90;
  font-weight: 400;
  margin-top: 2px;
  line-height: 1.5;
}
.note-item-id {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #1f1f1f;
  color: #ffd966;
  font-family: "SF Mono", "Menlo", monospace;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.note-inline-cta {
  display: inline-block;
  background: #1f1f1f;
  color: #fff !important;
  font-weight: 900;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.note-inline-cta:hover {
  background: #2f2f2f;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .note-inline-card { padding: 18px 18px; }
  .note-inline-list a { padding: 12px 14px 12px 56px; font-size: 13px; }
  .note-item-id { font-size: 10px; padding: 2px 6px; }
}

/* ③ 執筆者プロフィール */
.author-profile {
  padding: 50px 0 30px;
  background: #fff;
}
.author-profile .container { max-width: 880px; }
.author-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: linear-gradient(135deg, #f7fafd 0%, #fffef5 100%);
  border-radius: 14px;
  padding: 28px 30px;
  border: 1px solid #e5ebf2;
  box-shadow: 0 4px 18px rgba(10,58,115,0.06);
}
.author-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1f1f1f 0%, #4a4a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}
.author-avatar-icon { font-size: 36px; line-height: 1; }
.author-info { flex-grow: 1; }
.author-label {
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.15em !important;
  color: #6b7a90 !important;
  margin: 0 0 4px !important;
}
.author-name {
  font-size: 17px !important;
  font-weight: 900;
  color: #0a3a73 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
  border: none !important;
}
.author-desc {
  font-size: 13.5px !important;
  line-height: 1.85 !important;
  color: #2d3a52 !important;
  margin: 0 0 14px !important;
}
.author-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.author-note-link {
  display: inline-flex;
  align-items: center;
  background: #1f1f1f;
  color: #fff !important;
  font-weight: 900;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.author-note-link:hover {
  background: #2f2f2f;
  transform: translateY(-1px);
}
.author-product-link {
  display: inline-flex;
  align-items: center;
  color: #2e9b4c !important;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 4px;
  text-decoration: none;
  border-bottom: 1.5px solid #2e9b4c;
}
.author-product-link:hover { color: #1f6b3a !important; border-bottom-color: #1f6b3a; }
@media (max-width: 600px) {
  .author-card { flex-direction: column; gap: 16px; padding: 22px 22px; text-align: center; }
  .author-avatar { margin: 0 auto; }
  .author-links { justify-content: center; }
}

/* ④ 関連記事 強化（note記事推し）
   ========================================================= */
.related-articles {
  padding: 50px 0 60px;
  background: #f7fafd;
}
.related-articles .container { max-width: 1080px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0 0;
}
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  border: 1px solid #e5ebf2;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10,58,115,0.12);
}
.related-card.related-card-coming {
  opacity: 0.65;
  cursor: not-allowed;
}
.related-card.related-card-coming:hover {
  transform: none;
  box-shadow: none;
}
.related-tag {
  display: inline-block;
  background: #2e9b4c;
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 2px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.related-card-coming .related-tag { background: #6b7a90; }
.related-card-note .related-tag { background: #1f1f1f; }
.related-card h3 {
  font-size: 15px !important;
  font-weight: 900;
  color: #0a3a73 !important;
  margin: 0 0 8px !important;
  line-height: 1.5;
}
.related-source-tag {
  display: inline-block;
  background: linear-gradient(135deg, #c08a00 0%, #8a6000 100%);
  color: #fff;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 3px;
  margin-left: 6px;
  margin-bottom: 10px;
  box-shadow: 0 2px 6px rgba(192,138,0,0.25);
}
.related-card p {
  font-size: 13px !important;
  line-height: 1.75 !important;
  color: #4a5568 !important;
  margin: 0 !important;
}
.related-more {
  text-align: center;
  margin: 28px 0 0;
}
.related-more-link {
  display: inline-block;
  background: #1f1f1f;
  color: #fff !important;
  font-weight: 900;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.related-more-link:hover {
  background: #2f2f2f;
  transform: translateY(-1px);
}
@media (max-width: 600px) {
  .related-more-link { font-size: 13px; padding: 10px 22px; }
}

/* 関連ピラーLP（クロスLPリンク）
   ========================================================= */
.related-pillar-row {
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px dashed #c8d1dc;
}
.related-pillar-card {
  display: block;
  background: linear-gradient(135deg, #f0faf3 0%, #ffffff 100%);
  border: 2px solid #2e9b4c;
  border-radius: 14px;
  padding: 22px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
  position: relative;
}
.related-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,155,76,0.18);
}
.related-pillar-tag {
  display: inline-block;
  background: #2e9b4c;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.related-pillar-card h3 {
  font-size: 17px !important;
  font-weight: 900;
  color: #0a3a73 !important;
  margin: 0 0 8px !important;
  line-height: 1.5;
}
.related-pillar-card p {
  font-size: 13.5px !important;
  line-height: 1.85 !important;
  color: #4a5568 !important;
  margin: 0 !important;
}
