/* ═══════════════════════════════════════════════════════
   Roopt.jp — style.css  (design system + all pages)
   ═══════════════════════════════════════════════════════ */

/* ─── リセット & ベース ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ─ ブランドカラー ─ */
  --green:        #3a8c5c;
  --green-dk:     #2a6c46;
  --green-xdk:    #1a3826;  /* 最も濃いグリーン（ヒーロー等） */
  --green-hero:   #0f2318;  /* ヒーロー画像最暗部 */
  --red:          #c0392b;  /* エラー・注意カラー */

  /* ─ 背景 ─ */
  --bg:           #f5f4ef;
  --bg-card:      #ffffff;
  --bg-alt:       #fafaf8;  /* ほぼ白の背景（カード内等） */
  --bg-green:     #f0f5f2;  /* 薄いグリーン背景 */

  /* ─ テキスト ─ */
  --text:         #333333;
  --text-md:      #4a4a4a;  /* 中間テキスト */
  --muted:        #777777;
  --muted-lt:     #999999;  /* 薄いサブテキスト */

  /* ─ ボーダー ─ */
  --border:       #e2dfd9;
  --border-lt:    #e8e8e8;  /* 明るいボーダー */
  --border-green: #b8d4c4;  /* グリーン系ボーダー */

  /* ─ その他 ─ */
  --font-ja:      "Noto Sans JP", "Hiragino Sans", "Yu Gothic UI", "Meiryo", sans-serif;
  --font-en:      "Inter", "Helvetica Neue", Arial, sans-serif;
  --radius:       8px;
  --shadow:       0 2px 8px rgba(0,0,0,.07);
  --max:          1160px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-ja);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 2rem;
  height: 72px;
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

/* ─── GLOBAL NAV ─────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  height: 100%;
  flex: 1;
}

.site-nav a {
  display: flex;
  align-items: center;
  padding: 0 1.4rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .01em;
  white-space: nowrap;
  text-decoration: none;
  transition: color .15s;
  position: relative;
  height: 100%;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.4rem;
  right: 1.4rem;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .2s;
  transform-origin: center;
}

.site-nav a:hover { color: var(--green); }
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a.active { color: var(--green); }
.site-nav a.active::after { transform: scaleX(1); }

/* ─── ヘッダー右エリア ──────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* 言語ドロップダウン */
.lang-switcher {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: .35rem;
  background: transparent;
  color: var(--text);
  font-size: .78rem;
  font-family: var(--font-en);
  font-weight: 600;
  padding: .4rem .75rem;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  letter-spacing: .02em;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}

.lang-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  min-width: 140px;
  overflow: hidden;
  z-index: 300;
}

.lang-dropdown a {
  display: block;
  padding: .6rem 1.1rem;
  font-size: .83rem;
  color: var(--text);
  transition: background .1s;
}

.lang-dropdown a:hover { background: var(--bg-green); color: var(--green); }
.lang-switcher.open .lang-dropdown { display: block; }

/* お問い合わせボタン */
.btn-contact {
  background: var(--green-dk);
  color: var(--bg-card);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .5rem 1.4rem;
  border-radius: 100px;
  transition: background .18s, box-shadow .18s;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(42,108,70,.25);
}

.btn-contact:hover {
  background: var(--green-xdk);
  box-shadow: 0 4px 14px rgba(42,108,70,.35);
}

/* ─── ハンバーガーボタン（モバイル） ─────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
  border: none;
  background: none;
  width: 36px;
  height: 36px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
  margin: 0 auto;
}

/* ─── モバイル対応 ──────────────────────────────────── */
@media (max-width: 860px) {
  .site-header { padding: 0 1.25rem; }

  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg-card);
    border-bottom: 2px solid var(--green);
    box-shadow: 0 6px 20px rgba(0,0,0,.1);
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: .5rem 0;
    z-index: 199;
  }

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

  .site-nav a {
    padding: .85rem 1.75rem;
    height: auto;
    font-size: .9rem;
    border-bottom: 1px solid var(--border);
  }

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

  .site-nav a::after { display: none; }

  .nav-toggle { display: flex; }

  /* モバイルでlang-btnのテキストを隠す */
  .lang-btn span:not([style]) { display: none; }
  .lang-btn { padding: .4rem .6rem; gap: .2rem; }
}

/* ─── FOOTER ────────────────────────────────────────── */
.site-footer {
  background: var(--green);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bg-card);
  letter-spacing: .04em;
}

.footer-logo .logo-icon { color: var(--bg-card); width: 28px; height: 28px; }

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .4rem 1.5rem;
  margin-top: 1.2rem;
}

.footer-nav a {
  font-size: .83rem;
  color: rgba(255,255,255,.75);
  transition: color .15s;
}

.footer-nav a:hover { color: var(--bg-card); }
.footer-copy { margin-top: 1.5rem; font-size: .72rem; color: rgba(255,255,255,.45); }

/* ─── ドット背景パターン ─────────────────────────────── */
.dot-bg {
  background-color: var(--bg-green);
  background-image: radial-gradient(circle, var(--border-green) 1px, transparent 1px);
  background-size: 22px 22px;
}

/* ─── Airbnb ボタン（バー形式・旧実装 削除済み） ─── */
/* .airbnb-book-bar / .airbnb-book-bar-text は廃止 */

.btn-airbnb-bar {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--green);
  color: var(--bg-card);
  font-weight: 700;
  font-size: .82rem;
  padding: .5rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}
.btn-airbnb-bar:hover { opacity: .85; }

/* ─── Stay サブページ Airbnb CTA ─────────────────── */
.prop-airbnb-cta {
  text-align: center;
  padding: 3.5rem 1rem 2.5rem;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

/* ─── お問い合わせCTA（共通） ──────────────────────── */
.contact-cta { padding: 4.5rem 2rem; text-align: center; }
.contact-cta-inner { max-width: 560px; margin: 0 auto; }
.contact-cta h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: .85rem; }
.contact-cta p { font-size: .9rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.75rem; }

.btn-cta {
  display: inline-block;
  background: var(--green-xdk);
  color: var(--bg-card);
  font-family: var(--font-en);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 1rem 3.75rem;
  border-radius: 100px;
  transition: background .18s, box-shadow .18s, transform .12s;
  box-shadow: 0 4px 16px rgba(10,30,18,.22);
}

.btn-cta:hover {
  background: var(--green-hero);
  box-shadow: 0 8px 24px rgba(10,30,18,.3);
  transform: translateY(-2px);
}

/* ─── 物件カード（共通） ─────────────────────────────── */
.prop-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}

.prop-card:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.prop-card a { display: block; }

.prop-img-wrap { overflow: hidden; aspect-ratio: 4/3; background: var(--border); }
.prop-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.prop-card:hover .prop-img-wrap img { transform: scale(1.04); }

/* placeholder */
.prop-img-wrap--ph { display: flex; align-items: center; justify-content: center; }
.prop-img-wrap--ph svg { width: 55%; max-width: 120px; height: auto; }

.prop-body { padding: .9rem 1rem 1.1rem; }
.prop-area { display: block; font-size: .72rem; color: var(--green); font-weight: 600; margin-bottom: .2rem; }
.prop-name { font-size: .98rem; font-weight: 700; margin-bottom: .4rem; color: var(--text); }

.prop-tags { display: flex; flex-wrap: wrap; gap: .25rem; margin-bottom: .5rem; }

.tag {
  font-size: .68rem;
  color: var(--muted);
  background: var(--border);
  padding: .15rem .45rem;
  border-radius: 4px;
}

.prop-desc { font-size: .8rem; color: var(--muted); line-height: 1.6; }

/* ─── 3カラムグリッド ────────────────────────────────── */
.prop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── セクション共通 ─────────────────────────────────── */
.section { max-width: var(--max); margin: 0 auto; padding: 3.5rem 2rem; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  gap: .75rem;
}

.section-title { font-size: 1.2rem; font-weight: 700; }
.link-all { font-size: .8rem; color: var(--green); font-weight: 600; }
.link-all:hover { text-decoration: underline; }

/* ─── エリアボタン ──────────────────────────────────── */
.area-btns { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }

.area-btn {
  display: inline-block;
  padding: .55rem 1.75rem;
  background: var(--green);
  color: var(--bg-card);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 30px;
  transition: background .15s, transform .1s;
}

.area-btn:hover { background: var(--green-dk); transform: translateY(-1px); }

/* ─── 個別物件ページ（build.py テンプレート用） ───────── */
.content-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem;
}

.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: .65rem 2rem;
  font-size: .78rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--green); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: .45; }

.page-nav {
  display: flex;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: var(--bg-card);
}

.page-nav a {
  flex: 1;
  text-align: center;
  padding: .65rem .5rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  border-right: 1px solid var(--border);
  transition: background .15s, color .15s;
}

.page-nav a:last-child { border-right: none; }
.page-nav a:hover, .page-nav a.active { background: var(--green); color: var(--bg-card); }

/* ─── コンテンツ本文 ─────────────────────────────────── */
.content h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.35;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--green);
}

.content h2 {
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--green);
  color: var(--bg-card);
  padding: .5rem .9rem;
  border-radius: 4px;
  margin: 2.5rem 0 .9rem;
  line-height: 1.4;
}

.content h3 {
  font-size: .98rem;
  font-weight: 700;
  margin: 1.75rem 0 .5rem;
  padding-left: .7rem;
  border-left: 3px solid var(--green);
  color: var(--text);
}

.content p { margin-bottom: .9rem; font-size: .95rem; line-height: 1.8; }
.content hr { display: none; }

.content ul, .content ol { padding-left: 1.5rem; margin-bottom: .9rem; }
.content li { margin-bottom: .2rem; font-size: .95rem; line-height: 1.75; }
.content li ul, .content li ol { margin-top: .2rem; margin-bottom: 0; }

.content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25rem;
  font-size: .88rem;
}

.content th {
  background: var(--bg-green);
  color: var(--green-dk);
  padding: .55rem .85rem;
  text-align: left;
  border: 1px solid var(--border);
  font-weight: 600;
}

.content td {
  padding: .5rem .85rem;
  border: 1px solid var(--border);
}

.content tr:nth-child(even) td { background: var(--bg-alt); }

.content strong { font-weight: 700; }
.content em { font-style: italic; }

.content code {
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: .84em;
  background: var(--border);
  padding: .1em .35em;
  border-radius: 3px;
}

.content blockquote {
  border-left: 3px solid var(--green);
  padding: .65rem 1rem;
  background: var(--bg-green);
  color: var(--muted);
  margin: 1rem 0;
  border-radius: 0 4px 4px 0;
  font-size: .92rem;
}

.content a { color: var(--green); text-decoration: underline; }

/* ⚠️ 警告（DOG WARNING等） */
.content blockquote strong:first-child { color: var(--red); }

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

@media (max-width: 700px) {
  .site-header { padding: .7rem 1.1rem; }
  .section { padding: 2.5rem 1.25rem; }
  .content-page { padding: 1.5rem 1.25rem 3rem; }
  .page-nav a { font-size: .76rem; padding: .55rem .25rem; }
}

/* モバイルではグローバルヘッダーをスクロールで消す（sticky解除） */
@media (max-width: 640px) {
  .site-header { position: static; }
}

@media (max-width: 560px) {
  .prop-grid { grid-template-columns: 1fr; }
  .site-logo span { display: none; }
}

/* ── ニュース一覧 ────────────────────────────────────── */
.news-list { list-style: none; padding: 0; margin: 0; }
.news-item {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border, var(--border-lt));
}
.news-date {
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .03em;
}
.news-title {
  color: var(--text);
  text-decoration: none;
  font-size: .95rem;
  line-height: 1.5;
}
.news-title:hover { color: var(--green); text-decoration: underline; }

/* ─── 他のエリア（エリアページ下部ナビ） ───────────────── */
.other-areas {
  background: var(--bg);
  padding: 2.5rem 2rem;
  text-align: center;
}
.other-areas-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.other-areas-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-lt);
  display: block;
  margin-bottom: 1.1rem;
}
.other-areas-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem;
}
.other-areas-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: .65rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  text-decoration: none;
  color: var(--text);
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.3;
  transition: border-color .15s, background .15s, color .15s;
  background: var(--bg-card);
}
.other-areas-link span {
  font-size: .68rem;
  color: var(--muted-lt);
  font-weight: 400;
  margin-top: .15rem;
}
.other-areas-link:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--bg-green);
}
.other-areas-link:hover span { color: var(--green); }
.other-areas-link.is-current {
  border-color: var(--green);
  background: var(--green);
  color: var(--bg-card);
  cursor: default;
  pointer-events: none;
}
.other-areas-link.is-current span { color: rgba(255,255,255,.7); }

/* ─── エリアから探す（ホームページ専用） ──────────────── */
.area-section {
  padding: 4rem 2rem;
  background: var(--green-hero);
}
.area-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.area-eyebrow-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.area-eyebrow {
  display: block;
  font-family: var(--font-en);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: .5rem;
}
.area-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-card);
  margin: 0;
  letter-spacing: .02em;
}
.area-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}
.area-card {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  text-decoration: none;
}
.area-card-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.area-card:hover .area-card-img img { transform: scale(1.07); }
.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.55) 100%),
    linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 50%, rgba(0,0,0,0) 100%);
  transition: opacity .3s;
}
.area-card:hover::after { opacity: .85; }
.area-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem 1.1rem;
  z-index: 1;
}
.area-card-sub {
  font-size: .68rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
  margin-bottom: .2rem;
}
.area-card-name {
  font-family: var(--font-ja);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bg-card);
  margin: 0 0 .45rem;
  line-height: 1.2;
}
.area-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: var(--bg-card);
  font-size: .75rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
}
.area-card:hover .area-card-arrow { opacity: 1; transform: translateX(0); }

@media (max-width: 860px) {
  .area-cards { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .area-card  { aspect-ratio: 16 / 10; }
}
@media (max-width: 600px) {
  .area-section { padding: 2.5rem 1rem; }
  .area-cards { grid-template-columns: repeat(2, 1fr); gap: .4rem; }
  .area-card  { aspect-ratio: 4 / 3; }
  .area-card-name { font-size: 1.1rem; }
  .area-card-body { padding: .7rem .85rem; }
}

/* ─── Airbnb 予約ボタン ────────────────────────────────── */
.btn-airbnb {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--green);
  color: var(--bg-card);
  font-size: 1rem;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: .03em;
  box-shadow: 0 4px 14px rgba(58,140,92,.35);
  transition: background .15s, box-shadow .15s, transform .1s;
}
.btn-airbnb:hover {
  background: var(--green-dk);
  box-shadow: 0 6px 20px rgba(58,140,92,.45);
  transform: translateY(-1px);
}
.btn-airbnb svg { flex-shrink: 0; }

/* テーブル内Airbnbリンク（下部） */
.td-airbnb {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1.5px solid var(--green);
  padding-bottom: 1px;
  font-size: .9rem;
}
.td-airbnb:hover { color: var(--green-dk); border-color: var(--green-dk); }

/* ─── 関連記事カード（コラム・ニュース記事ページ下部） ── */
.col-related {
  margin: 2.5rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--border, var(--border-lt));
}
.col-related-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted-lt);
  margin-bottom: 1.1rem;
}
.col-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.col-related-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border, var(--border-lt));
  transition: box-shadow .15s, transform .15s;
}
.col-related-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.col-related-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--border-lt);
}
.col-related-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.col-related-card:hover .col-related-img img { transform: scale(1.04); }
.col-related-title {
  font-size: .82rem;
  line-height: 1.55;
  padding: .75rem .85rem;
  color: var(--text);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .col-related-grid { grid-template-columns: 1fr; }
}
