/* =========================================================
   Healing Solutions — Utility pages (legal docs, column list)
   Loaded in addition to style.css + works.css
   ========================================================= */

/* ---------- Generic document (legal / policy) ---------- */
.doc { max-width: 880px; margin: 0 auto; }
.doc > h2 { font-size: clamp(20px, 2.4vw, 26px); line-height: 1.4; margin: clamp(34px, 4.5vw, 48px) 0 14px; padding-bottom: 12px; border-bottom: 2px solid var(--line-2); position: relative; }
.doc > h2::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 52px; height: 2px; background: var(--green); }
.doc > h2:first-child { margin-top: 0; }
.doc h3 { font-size: 17px; line-height: 1.5; margin: 24px 0 8px; }
.doc p { color: #3c4d42; line-height: 2; margin: 0 0 14px; font-size: 15px; }
.doc ul, .doc ol { margin: 0 0 16px; padding-left: 1.4em; }
.doc li { color: #3c4d42; line-height: 1.95; margin-bottom: 6px; list-style: disc; }
.doc ol > li { list-style: decimal; }
.doc a { color: var(--green-dark); text-decoration: underline; }
.doc strong { color: var(--ink); }
.doc .doc-note { background: var(--mint-2); border: 1px solid var(--line); border-radius: var(--radius-s); padding: 16px 20px; font-size: 13.5px; color: var(--muted); line-height: 1.85; margin: 0 0 24px; }
.doc .doc-updated { color: var(--muted); font-size: 13px; margin-top: 36px; text-align: right; }
.doc .info-table { margin: 0; }
.doc .info-table dt { white-space: nowrap; }

/* ---------- Column list ---------- */
.col-list { max-width: 900px; margin: 0 auto; display: grid; gap: 0; }
.col-item { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; padding: 24px 10px; border-bottom: 1px solid var(--line); color: var(--ink); transition: background .25s, padding-left .25s; }
.col-item:first-child { border-top: 1px solid var(--line); }
.col-item:hover { background: var(--mint-2); padding-left: 18px; }
.col-item__date { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--green); white-space: nowrap; letter-spacing: .03em; }
.col-item__title { font-family: var(--head); font-weight: 700; font-size: clamp(15px, 1.5vw, 17.5px); line-height: 1.55; }
.col-item__arrow { color: var(--green); font-weight: 700; font-size: 18px; transition: transform .3s var(--ease); }
.col-item:hover .col-item__arrow { transform: translateX(5px); }
.col-note { text-align: center; color: var(--muted); font-size: 13.5px; line-height: 1.9; margin-top: 34px; }
.col-note a { color: var(--green-dark); font-weight: 700; }
@media (max-width: 600px) {
  .col-item { grid-template-columns: 1fr auto; gap: 6px 14px; }
  .col-item__date { grid-column: 1 / -1; }
}
