/* =====================================================================
   SUNDAY 山口 — 地域情報ポータル  共通スタイル
   ニュースポータル風 / 編集的ミニマル
   ===================================================================== */

:root {
  /* Brand */
  --sun:        #e8380d;   /* サンデーレッド（太陽・新聞マストヘッド） */
  --sun-dark:   #c22d09;
  --navy:       #0d2440;   /* 見出し・テキスト基調 */
  --ink:        #1b1b1b;
  --sub:        #5a6675;   /* 補助テキスト */
  --line:       #e4e7ec;   /* 罫線 */
  --line-soft:  #eef1f4;
  --paper:      #ffffff;
  --bg:         #f6f7f9;   /* ページ背景 */
  --bg-band:    #f0f2f5;
  --gold:       #b8893b;

  /* Category accents */
  --c-society:  #2563c9;
  --c-area:     #18a05a;
  --c-culture:  #9333c2;
  --c-sports:   #e8590c;
  --c-job:      #0d8f8f;
  --c-medical:  #d63384;

  --maxw: 1160px;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(13,36,64,.06), 0 6px 24px rgba(13,36,64,.06);

  --serif: "Times New Roman", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN",
          "Yu Gothic", "Meiryo", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--sun); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Utility bar ---------- */
.utility {
  background: var(--navy);
  color: #cdd6e2;
  font-size: 12.5px;
}
.utility .wrap {
  display: flex; justify-content: space-between; align-items: center;
  height: 36px;
}
.utility a { color: #cdd6e2; }
.utility a:hover { color: #fff; }
.utility .u-right { display: flex; gap: 16px; align-items: center; }
.utility .date { letter-spacing: .03em; }

/* ---------- Masthead ---------- */
.masthead { background: var(--paper); border-bottom: 3px solid var(--navy); }
.masthead .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand .logo-img { height: 34px; width: auto; display: block; }
.brand .brand-tag {
  font-size: 12.5px; color: var(--sub); letter-spacing: .18em;
  padding-left: 14px; border-left: 1px solid var(--line); line-height: 1.3;
}
.masthead .m-right { display: flex; align-items: center; gap: 14px; }
.search-box {
  display: flex; align-items: center; border: 1.5px solid var(--line);
  border-radius: 999px; padding: 7px 14px; background: var(--bg);
  min-width: 220px;
}
.search-box input { border: none; background: none; outline: none; width: 100%; font-size: 14px; }
.btn-advertise {
  background: var(--sun); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-weight: 700; font-size: 14px; white-space: nowrap;
  transition: background .15s;
}
.btn-advertise:hover { background: var(--sun-dark); color: #fff; }

/* ---------- Category nav ---------- */
.catnav { background: var(--navy); position: sticky; top: 0; z-index: 50; }
.catnav .wrap { display: flex; align-items: center; }
.catnav ul { list-style: none; display: flex; flex-wrap: wrap; }
.catnav li a {
  display: block; color: #e6ebf2; font-weight: 600; font-size: 14.5px;
  padding: 14px 17px; position: relative; letter-spacing: .02em;
}
.catnav li a:hover { color: #fff; background: rgba(255,255,255,.07); }
.catnav li a.active { color: #fff; }
.catnav li a.active::after {
  content: ""; position: absolute; left: 17px; right: 17px; bottom: 0; height: 3px;
  background: var(--sun);
}
.catnav .nav-toggle { display: none; }

/* ---------- Section heading ---------- */
.section { padding: 40px 0; }
.sec-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
  border-bottom: 2px solid var(--navy); padding-bottom: 10px;
}
.sec-head h2 {
  font-size: 22px; color: var(--navy); font-weight: 800; letter-spacing: .02em;
}
.sec-head .en { font-size: 12px; color: var(--sun); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.sec-head .more { margin-left: auto; font-size: 13px; color: var(--sub); font-weight: 600; }
.sec-head .more:hover { color: var(--sun); }

/* ---------- Category chip ---------- */
.chip {
  display: inline-block; font-size: 11.5px; font-weight: 700; color: #fff;
  padding: 3px 9px; border-radius: 4px; letter-spacing: .04em; line-height: 1.5;
  background: var(--sub);
}
.chip.society { background: var(--c-society); }
.chip.area    { background: var(--c-area); }
.chip.culture { background: var(--c-culture); }
.chip.sports  { background: var(--c-sports); }
.chip.job     { background: var(--c-job); }
.chip.medical { background: var(--c-medical); }
.chip.pr      { background: var(--gold); }

/* ---------- Hero ---------- */
.hero { padding: 28px 0 8px; }
.hero-grid {
  display: grid; grid-template-columns: 1.9fr 1fr; gap: 26px;
}
.hero-main {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: #1b2a3a; min-height: 380px; box-shadow: var(--shadow);
}
.hero-main img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; opacity: .92; }
.hero-main .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,36,64,0) 35%, rgba(13,36,64,.86) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.hero-main .overlay h1 {
  color: #fff; font-size: 30px; line-height: 1.4; font-weight: 800; margin: 10px 0 8px;
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.hero-main .overlay p { color: #d8e0ea; font-size: 14px; }
.hero-side { display: flex; flex-direction: column; gap: 14px; }
.hero-side .mini {
  display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: center;
  background: var(--paper); border-radius: 8px; padding: 10px; box-shadow: var(--shadow);
}
.hero-side .mini img { width: 96px; height: 70px; object-fit: cover; border-radius: 6px; }
.hero-side .mini h3 { font-size: 14.5px; line-height: 1.5; color: var(--navy); font-weight: 700; margin-top: 4px; }

/* ---------- News grid / cards ---------- */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px;
}
.card {
  background: var(--paper); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(13,36,64,.12); }
.card .thumb { aspect-ratio: 16/10; background: #dfe4ea; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-size: 16px; line-height: 1.55; color: var(--navy); font-weight: 700; }
.card:hover h3 { color: var(--sun); }
.card .excerpt { font-size: 13px; color: var(--sub); line-height: 1.7; }
.card .meta { margin-top: auto; display: flex; align-items: center; gap: 10px; font-size: 12px; color: #97a2b0; }

/* ---------- List rows (compact) ---------- */
.list-rows { display: flex; flex-direction: column; }
.list-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 16px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.list-row:hover h3 { color: var(--sun); }
.list-row .thumb { aspect-ratio: 16/10; border-radius: 6px; overflow: hidden; background: #dfe4ea; }
.list-row .thumb img { width: 100%; height: 100%; object-fit: cover; }
.list-row h3 { font-size: 16.5px; color: var(--navy); font-weight: 700; line-height: 1.5; }
.list-row .excerpt { font-size: 13px; color: var(--sub); margin-top: 5px; }
.list-row .meta { margin-top: 7px; display: flex; gap: 10px; align-items: center; font-size: 12px; color: #97a2b0; }

/* ---------- Two-column layout ---------- */
.layout { display: grid; grid-template-columns: 1fr 320px; gap: 36px; align-items: start; }
.sidebar { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 70px; }
.side-box { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.side-box .side-head {
  background: var(--navy); color: #fff; font-weight: 700; font-size: 14px;
  padding: 11px 16px; letter-spacing: .04em;
}
.side-box .side-body { padding: 14px 16px; }
.rank-list { list-style: none; counter-reset: r; }
.rank-list li {
  counter-increment: r; display: grid; grid-template-columns: 26px 1fr; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--line-soft); align-items: start;
}
.rank-list li:last-child { border-bottom: none; }
.rank-list li::before {
  content: counter(r); color: var(--sun); font-weight: 800; font-family: var(--serif);
  font-size: 18px; font-style: italic; line-height: 1.4;
}
.rank-list li a { font-size: 13.5px; color: var(--navy); font-weight: 600; line-height: 1.55; }

/* ---------- Sunyama (媒体) promo band ---------- */
.band { background: var(--bg-band); }
.sunyama-band .wrap { display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center; padding: 50px 20px; }
.sunyama-cover {
  transform: rotate(-1.6deg); border: 7px solid #fff; border-radius: 3px;
  box-shadow: 0 10px 34px rgba(13,36,64,.18); overflow: hidden; background:#fff;
}
.sunyama-cover img { display: block; width: 100%; height: auto; }
.sunyama-paper {
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 22px; transform: rotate(-1.5deg);
}
.sunyama-paper .paper-mast {
  border-bottom: 3px double var(--navy); padding-bottom: 8px; margin-bottom: 12px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.sunyama-paper .paper-mast .t { font-family: var(--serif); font-weight: 800; font-size: 26px; color: var(--navy); }
.sunyama-paper .paper-mast .d { font-size: 10px; color: var(--sub); }
.sunyama-paper .ph { height: 90px; background: #e3e7ec; border-radius: 3px; margin-bottom: 10px; }
.sunyama-paper .ln { height: 7px; background: #e8ebef; border-radius: 3px; margin: 6px 0; }
.sunyama-paper .ln.s { width: 70%; }
.sunyama-info h2 { font-size: 26px; color: var(--navy); font-weight: 800; margin-bottom: 6px; }
.sunyama-info .lead { color: var(--sub); font-size: 15px; margin-bottom: 18px; }
.sunyama-info .stats { display: flex; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
.sunyama-info .stat .n { font-family: var(--serif); font-size: 30px; font-weight: 800; color: var(--sun); font-style: italic; }
.sunyama-info .stat .l { font-size: 12px; color: var(--sub); }

/* ---------- Advertiser CTA band ---------- */
.ad-cta { background: linear-gradient(120deg, var(--navy) 0%, #143a63 100%); color: #fff; }
.ad-cta .wrap { padding: 48px 20px; text-align: center; }
.ad-cta .en { color: #ffb59c; font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.ad-cta h2 { font-size: 28px; font-weight: 800; margin: 8px 0 10px; }
.ad-cta p { color: #cdd9e8; max-width: 640px; margin: 0 auto 22px; }
.ad-cta .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px; font-weight: 700;
  font-size: 15px; cursor: pointer; border: none; transition: all .15s; text-align: center;
}
.btn-primary { background: var(--sun); color: #fff; }
.btn-primary:hover { background: var(--sun-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-block { display: block; width: 100%; }

/* ---------- Advertiser slots (PR) ---------- */
.pr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 18px; }
.pr-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); position: relative;
}
.pr-card .thumb { aspect-ratio: 4/3; background: #eef1f4; overflow: hidden; }
.pr-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.pr-card .body { padding: 13px 15px 16px; }
.pr-card .body h3 { font-size: 15px; color: var(--navy); font-weight: 700; margin-bottom: 5px; }
.pr-card .body .biz { font-size: 12px; color: var(--sun); font-weight: 700; margin-bottom: 6px; }
.pr-card .body p { font-size: 12.5px; color: var(--sub); line-height: 1.65; }
.pr-card .pr-tag { position: absolute; top: 10px; left: 10px; }

/* ---------- Forms ---------- */
.form-page { max-width: 760px; margin: 0 auto; }
.panel { background: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px 34px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.field label .req { color: var(--sun); font-size: 12px; margin-left: 6px; }
.field .hint { font-size: 12px; color: var(--sub); margin-top: 5px; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field input[type=url],
.field select, .field textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--line); border-radius: 8px;
  font-size: 15px; font-family: inherit; background: #fff; transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sun); }
.field textarea { min-height: 120px; resize: vertical; }
.field .filebox {
  border: 2px dashed var(--line); border-radius: 8px; padding: 22px; text-align: center;
  color: var(--sub); font-size: 14px; cursor: pointer; background: var(--bg);
}
.field .filebox:hover { border-color: var(--sun); color: var(--sun); }
.field .preview { margin-top: 12px; }
.field .preview img { max-height: 180px; border-radius: 8px; border: 1px solid var(--line); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.notice {
  padding: 13px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 18px; line-height: 1.7;
}
.notice.info { background: #eef4ff; color: #1d4ed8; border: 1px solid #cfe0ff; }
.notice.ok { background: #eafaf0; color: #15803d; border: 1px solid #c3ecd0; }
.notice.warn { background: #fff6e9; color: #b25e00; border: 1px solid #ffe2b8; }
.notice.err { background: #fdecec; color: #c0341a; border: 1px solid #f6c9c2; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article .a-head { margin-bottom: 24px; }
.article h1 { font-size: 30px; color: var(--navy); font-weight: 800; line-height: 1.5; margin: 12px 0; }
.article .a-meta { display: flex; gap: 14px; align-items: center; font-size: 13px; color: var(--sub); }
.article .a-hero { border-radius: var(--radius); overflow: hidden; margin: 22px 0; }
.article .a-body { font-size: 16.5px; line-height: 2.05; color: #29333f; }
.article .a-body p { margin-bottom: 22px; }
.article .a-body h2 { font-size: 21px; color: var(--navy); border-left: 5px solid var(--sun); padding-left: 12px; margin: 34px 0 16px; }
.article .a-body img { border-radius: 8px; margin: 22px 0; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 12.5px; color: var(--sub); padding: 14px 0; }
.crumb a:hover { color: var(--sun); }
.crumb span { margin: 0 7px; color: #c2cad4; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aebccd; margin-top: 50px; }
.site-footer .f-top { padding: 46px 0; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.site-footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; letter-spacing: .05em; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 9px; font-size: 13.5px; }
.site-footer a:hover { color: #fff; }
.site-footer .f-brand .en { font-family: var(--serif); font-style: italic; font-weight: 700; font-size: 24px; color: #fff; }
.site-footer .f-brand .f-logo { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 6px; }
.site-footer .f-brand p { font-size: 13px; margin-top: 10px; line-height: 1.8; }
.site-footer .f-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; font-size: 12px; text-align: center; color: #8294a8; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--navy); color: #fff; padding: 40px 0; }
.page-hero .en { color: #ffb59c; font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.page-hero h1 { font-size: 30px; font-weight: 800; margin-top: 6px; }
.page-hero p { color: #cdd9e8; margin-top: 8px; max-width: 700px; }

/* ---------- Tables ---------- */
.tbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.tbl th, .tbl td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.tbl th { background: var(--bg-band); color: var(--navy); font-weight: 700; }
.tbl tr:last-child td { border-bottom: none; }

/* ---------- AI assist ---------- */
:root { --ai: #6d28d9; --ai-soft: #f3effe; }
.btn-ai {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  background: linear-gradient(120deg, #7c3aed, #6d28d9); color: #fff; border: none;
  padding: 10px 16px; border-radius: 8px; font-size: 14px; font-weight: 700; font-family: inherit;
  transition: filter .15s, transform .15s;
}
.btn-ai:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ai:disabled { opacity: .6; cursor: default; transform: none; }
.btn-ai.ghost { background: #fff; color: var(--ai); border: 1.5px solid #d8c9f5; }
.btn-ai.sm { padding: 6px 12px; font-size: 12.5px; border-radius: 7px; }
.ai-panel { background: var(--ai-soft); border: 1px solid #e4d9fb; border-radius: 10px; padding: 16px; margin-top: 10px; }
.ai-panel .ai-head { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ai); font-size: 13.5px; margin-bottom: 10px; }
.ai-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ai-variant { background: #fff; border: 1px solid #e7defb; border-radius: 8px; padding: 12px 14px; margin-top: 10px; }
.ai-variant h4 { font-size: 15px; color: var(--navy); margin-bottom: 5px; }
.ai-variant p { font-size: 13px; color: var(--sub); line-height: 1.7; }
.ai-variant .use { margin-top: 8px; }
.ai-note { font-size: 12.5px; color: var(--sub); margin-top: 8px; line-height: 1.7; }
.ai-spin { font-size: 13px; color: var(--ai); padding: 8px 0; }
.ai-badge { display: inline-block; font-size: 10.5px; font-weight: 700; color: #fff; background: var(--ai); border-radius: 4px; padding: 2px 7px; letter-spacing: .04em; }
.ai-issue { border-left: 3px solid; padding: 8px 12px; margin-top: 8px; background: #fff; border-radius: 0 6px 6px 0; font-size: 13px; }
.risk-ok { color: #15803d; } .risk-caution { color: #b25e00; } .risk-warning { color: #c0341a; }
.ai-issue.lv { border-color: currentColor; }

/* AI chat (top) */
.ai-search { background: linear-gradient(120deg,#1b1145,#3b1d70); color:#fff; border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.ai-search .en { color:#c9b6ff; font-size:11.5px; font-weight:700; letter-spacing:.16em; text-transform:uppercase; }
.ai-search h3 { font-size: 19px; font-weight: 800; margin: 4px 0 12px; }
.ai-search .box { display:flex; gap:8px; }
.ai-search input { flex:1; border:none; border-radius:8px; padding:12px 14px; font-size:15px; font-family:inherit; }
.ai-search input:focus { outline:2px solid #a78bfa; }
.ai-search .answer { background: rgba(255,255,255,.1); border-radius:8px; padding:14px 16px; margin-top:14px; font-size:14.5px; line-height:1.85; }
.ai-search .answer a { color:#ddd0ff; text-decoration:underline; }
.ai-search .src { margin-top:10px; display:flex; flex-wrap:wrap; gap:8px; }
.ai-search .src a { background:rgba(255,255,255,.16); color:#fff; font-size:12px; padding:5px 10px; border-radius:999px; }

/* ---------- helpers ---------- */
.muted { color: var(--sub); }
.center { text-align: center; }
.mt8 { margin-top: 8px; } .mt16 { margin-top: 16px; } .mt24 { margin-top: 24px; } .mt32 { margin-top: 32px; }
.hidden { display: none !important; }
.spinner { text-align: center; color: var(--sub); padding: 30px; font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .sunyama-band .wrap { grid-template-columns: 1fr; gap: 26px; text-align: center; }
  .sunyama-paper { max-width: 280px; margin: 0 auto; }
  .sunyama-info .stats { justify-content: center; }
  .site-footer .f-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  body { font-size: 15px; }
  .masthead .wrap { flex-wrap: wrap; gap: 12px; }
  .search-box { display: none; }
  .brand .logo-text .en { font-size: 25px; }
  .catnav .wrap { position: relative; }
  .catnav .nav-toggle {
    display: block; color: #fff; background: none; border: none; padding: 13px 16px;
    font-size: 15px; font-weight: 700; cursor: pointer; width: 100%; text-align: left;
  }
  .catnav ul { display: none; flex-direction: column; width: 100%; }
  .catnav ul.open { display: flex; }
  .catnav li a { padding: 12px 16px; border-top: 1px solid rgba(255,255,255,.08); }
  .catnav li a.active::after { display: none; }
  .hero-main .overlay h1 { font-size: 22px; }
  .article h1, .page-hero h1 { font-size: 23px; }
  .list-row { grid-template-columns: 100px 1fr; gap: 12px; }
  .row2 { grid-template-columns: 1fr; }
  .site-footer .f-top { grid-template-columns: 1fr; }
  .panel { padding: 22px 18px; }
}
