/* =========================================================================
   Column (コラム) index — templates/template-column.php
   Ported from project/Faucet Column.dc.html. Plain-light page top (no photo
   hero), so the fixed header renders solid immediately (data-dark="0") and
   this page needs its own top offset under it.
   ========================================================================= */

/* Breadcrumbs need extra top offset here since this page has no full-bleed
   hero to sit behind the fixed header (unlike front-page.php). */
.ms-crumbs { padding-top: calc(var(--ms-header-h) + clamp(12px, 2vw, 24px)); }

.ms-col-hero { padding-bottom: clamp(32px, 4vw, 52px); }
.ms-col-hero__h1 {
  font-family: var(--ms-font-display); font-weight: 900; line-height: .9; letter-spacing: -.045em;
  font-size: clamp(48px, 11vw, 168px); color: var(--ms-dark); margin-top: clamp(14px, 1.8vw, 20px);
}
.ms-col-hero__lead { max-width: 34em; margin-top: clamp(20px, 2.4vw, 32px); }

.ms-col-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: clamp(22px, 2.6vw, 32px); padding-bottom: clamp(20px, 2.4vw, 30px);
  border-bottom: 1px solid var(--ms-hairline-light);
}
.ms-col-filters li {
  padding: 9px 16px; font-size: 12.5px; font-weight: 600;
  border: 1px solid rgba(17, 17, 17, .22); color: var(--ms-text);
}
.ms-col-filters li[data-active="1"] { border-color: var(--ms-dark); background: var(--ms-dark); color: #F5F4F0; }

.ms-col-list { padding-top: 0; }
.ms-col-note { margin-bottom: clamp(20px, 2.4vw, 32px); }

/* Row list — these are planned/upcoming articles, not published posts yet,
   so rows are non-interactive (no <a>, no hover state) and visually muted
   with a "coming soon" status badge instead of a link arrow. Once real
   WordPress posts exist for these topics, swap this loop for a WP_Query
   against a "column" post type/category and re-introduce ms-row/<a> + arrow. */
.ms-col-rows { border-top: 1px solid var(--ms-hairline-light); }
.ms-col-row {
  display: flex; align-items: center; gap: clamp(14px, 2.4vw, 32px);
  padding-block: clamp(16px, 2vw, 24px); border-bottom: 1px solid var(--ms-hairline-light);
  color: var(--ms-text); opacity: .58;
}
.ms-col-row__num {
  flex: 0 0 auto; font-family: var(--ms-font-display); font-size: 10.5px; font-weight: 600;
  letter-spacing: .14em; opacity: .5; width: 2.6em;
}
.ms-col-row__tag {
  flex: 0 0 auto; font-size: 11px; font-weight: 600; padding: 5px 10px;
  border: 1px solid currentColor; opacity: .72; white-space: nowrap;
}
.ms-col-row__title {
  flex: 1 1 auto; min-width: 0; font-family: var(--ms-font-head);
  font-size: clamp(14.5px, 1.6vw, 20px); font-weight: 700; line-height: 1.6;
}
.ms-col-row__status {
  flex: 0 0 auto; font-family: var(--ms-font-display); font-size: 11px; font-weight: 700;
  letter-spacing: .08em; color: var(--ms-note); border: 1px solid var(--ms-hairline-light);
  border-radius: 999px; padding: 8px 16px; white-space: nowrap;
}

@media (max-width: 640px) {
  .ms-col-row { flex-wrap: wrap; }
  .ms-col-row__title { flex-basis: 100%; order: 3; }
}
