/* ============================================================
   PokerJapan Research — design system (2026-06 リデザイン)
   home.php / single.php 共通。Cocoon CSSはこれらのページでは読み込まない。
   ============================================================ */
:root {
  --ink: #182520; --ink-2: #45564f; --ink-3: #71837b;
  --paper: #f4f7f5; --surface: #ffffff;
  --line: #e2e9e5; --line-strong: #cfd9d4;
  --green-950: #0a2b23; --green-900: #0e3a2f; --green-800: #11503f;
  --green-700: #146350; --green-600: #178a6a; --green-500: #23a983;
  --mint-200: #d7ece3; --mint-100: #e9f4ef; --mint-50: #f2f9f6;
  --gold: #c8a24e; --gold-deep: #9a7a33; --gold-soft: #f6efdd;
  --live: #d85a41; --live-soft: #fceeea;
  --font-head: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-num: 'Manrope', 'Noto Sans JP', sans-serif;
  --sp-1: 8px; --sp-2: 14px; --sp-3: 20px; --sp-4: 28px; --sp-5: 40px; --sp-6: 64px;
  --card-pad: 22px; --list-gap: 18px; --fs-body: 16px; --lh-body: 1.85;
  --radius: 14px; --radius-sm: 9px;
  --shadow-1: 0 1px 2px rgba(14,58,47,.05), 0 4px 14px rgba(14,58,47,.06);
  --shadow-2: 0 2px 6px rgba(14,58,47,.08), 0 14px 34px rgba(14,58,47,.10);
  --maxw: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--font-body); font-size: var(--fs-body);
  line-height: var(--lh-body); color: var(--ink); background: var(--paper);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--green-600); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.45; margin: 0; text-wrap: pretty; }
p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ============ header ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
body.admin-bar .site-header { top: 32px; }
.header-inner { display: flex; align-items: center; gap: var(--sp-4); height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(145deg, var(--green-600), var(--green-800));
  display: grid; place-items: center;
  color: #fff; font-size: 17px; line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
}
.brand-name { font-family: var(--font-head); font-weight: 900; font-size: 17px; letter-spacing: .01em; line-height: 1.2; white-space: nowrap; }
.brand-name small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 10px; letter-spacing: .22em; color: var(--ink-3); margin-top: 1px; line-height: 1.3; }
.global-nav { display: flex; gap: 2px; margin-left: auto; }
.global-nav a {
  position: relative; padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--ink-2); white-space: nowrap;
  transition: background .15s, color .15s;
}
.global-nav a:hover { background: var(--mint-100); color: var(--green-800); }
.global-nav a[aria-current="page"] { color: var(--green-700); font-weight: 700; }
.global-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--green-600);
}
.header-search-btn {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-2);
  font-size: 17px; transition: border-color .15s, color .15s;
}
.header-search-btn:hover { border-color: var(--green-600); color: var(--green-700); }
.menu-btn { display: none; }
@media (max-width: 1180px) and (min-width: 1081px) {
  .global-nav a { padding: 8px 10px; font-size: 13px; }
}
@media (max-width: 1080px) {
  .global-nav, .header-search-btn { display: none; }
  .menu-btn {
    display: grid; place-items: center; margin-left: auto;
    width: 40px; height: 40px; border-radius: 10px;
    border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-size: 17px;
  }
  .mobile-nav {
    display: none; flex-direction: column; gap: 2px;
    padding: 10px 16px 16px; border-top: 1px solid var(--line); background: #fff;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 11px 12px; border-radius: 8px; font-weight: 500; color: var(--ink-2); }
  .mobile-nav a:hover { background: var(--mint-100); }
  .mobile-nav a[aria-current="page"] { color: var(--green-700); font-weight: 700; background: var(--mint-50); }
}
@media (min-width: 1081px) { .mobile-nav { display: none !important; } }

/* ============ buttons / badges ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  font-size: 14.5px; font-weight: 700; line-height: 1;
  border: none; transition: transform .15s, box-shadow .15s, background .15s;
}
.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 4px 14px rgba(23,138,106,.35); }
.btn-primary:hover { background: var(--green-500); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .03em; line-height: 1.6;
}
.badge-cat { background: var(--mint-100); color: var(--green-800); }
.badge-tournament { background: #e7eefb; color: #2f5396; }
.badge-shop { background: var(--mint-100); color: var(--green-800); }
.badge-regulation { background: #f3ecdf; color: var(--gold-deep); }
.badge-tools { background: #efeaf7; color: #6a4fa3; }

/* ============ image placeholders（アイキャッチ未設定時） ============ */
.ph {
  position: relative; overflow: hidden; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--mint-200), var(--mint-50) 55%, #fff);
  color: var(--green-800);
}
.ph::before {
  content: attr(data-suit);
  position: absolute; right: -12px; bottom: -28px;
  font-size: 110px; line-height: 1; opacity: .10; font-family: var(--font-num);
}
.ph .ph-label {
  font-family: var(--font-head); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; color: var(--green-700);
  padding: 5px 12px; border: 1px dashed var(--green-500); border-radius: 999px;
  background: rgba(255,255,255,.6);
}
.ph-dark { background: linear-gradient(140deg, var(--green-900), var(--green-700)); }
.ph-dark .ph-label { color: #d9efe6; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.ph-dark::before { color: #fff; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ============ section heads ============ */
.section-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: var(--sp-3); flex-wrap: wrap; }
.section-head .eyebrow, .hub-eyebrow {
  font-family: var(--font-num); font-size: 11px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--green-600);
}
.section-head h2 { font-size: 24px; font-weight: 900; }

/* ============ hero dashboard（ホーム） ============ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 18% -10%, rgba(35,169,131,.28), transparent 60%),
    radial-gradient(700px 500px at 95% 110%, rgba(200,162,78,.14), transparent 55%),
    linear-gradient(150deg, var(--green-950), var(--green-900) 55%, var(--green-800));
  color: #fff;
}
.hero::after {
  content: "♠"; position: absolute; right: -40px; top: -70px;
  font-size: 380px; line-height: 1; color: rgba(255,255,255,.04);
  font-family: var(--font-num); pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-5);
  align-items: center; padding-block: var(--sp-6);
  position: relative; z-index: 1;
}
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-num); font-size: 11px; font-weight: 800;
  letter-spacing: .24em; color: var(--green-500); margin-bottom: 16px;
}
.hero .eyebrow::before { content: ""; width: 22px; height: 1.5px; background: var(--green-500); }
.hero h1 {
  font-size: clamp(30px, 4vw, 44px); font-weight: 900; line-height: 1.4;
  letter-spacing: .01em; color: #fff;
}
.hero h1 em { font-style: normal; color: #7fd8b8; }
.hero .lede { margin-top: 16px; font-size: 15px; line-height: 2; color: rgba(255,255,255,.72); max-width: 480px; }
.hero-ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.hero-stat .n {
  font-family: var(--font-num); font-size: 25px; font-weight: 800; color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero-stat .n small { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.6); margin-left: 2px; }
.hero-stat .l { font-size: 11.5px; color: rgba(255,255,255,.5); font-weight: 500; margin-top: 2px; }
.event-board {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px; padding: 20px;
  backdrop-filter: blur(6px);
}
.event-board-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.event-board-head h2 { font-size: 15px; font-weight: 900; color: #fff; }
.event-board-head .live-tag {
  font-family: var(--font-num); font-size: 10px; font-weight: 800; letter-spacing: .18em;
  color: var(--green-500);
}
.event-board-head a { margin-left: auto; font-size: 12px; font-weight: 700; color: #9fdcc4; }
.event-board-head a:hover { color: #fff; }
.event-row {
  display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center;
  padding: 13px 10px; border-radius: 12px; transition: background .15s;
}
.event-row:hover { background: rgba(255,255,255,.06); }
.event-row + .event-row { border-top: 1px solid rgba(255,255,255,.08); }
.event-flag {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  font-family: var(--font-num); font-weight: 800; font-size: 12px;
  background: rgba(255,255,255,.1); color: #cfeee0;
  border: 1px solid rgba(255,255,255,.12);
}
.event-row .name { font-size: 13.5px; font-weight: 700; color: #fff; line-height: 1.5; }
.event-row .name a { color: #fff; }
.event-row .name a:hover { color: #9fdcc4; }
.event-row .where { font-size: 11.5px; color: rgba(255,255,255,.5); margin-top: 1px; }
.event-row .cd { justify-content: flex-end; }
.cd { display: flex; gap: 6px; align-items: baseline; font-family: var(--font-num); }
.cd .cd-unit { display: flex; align-items: baseline; gap: 2px; }
.cd .cd-num { font-size: 21px; font-weight: 800; font-variant-numeric: tabular-nums; color: #fff; }
.cd .cd-label { font-size: 10.5px; font-weight: 600; color: rgba(255,255,255,.55); }
.cd-live { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: 15px; color: #ffb4a3; }
.cd-live .dot { width: 8px; height: 8px; border-radius: 50%; background: #ff8569; animation: pjr-pulse 1.6s infinite; }
.cd-done { font-weight: 700; font-size: 13px; color: rgba(255,255,255,.5); }
@keyframes pjr-pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
@media (max-width: 980px) {
  /* minmax(0,1fr) で grid item を画面幅に収める（1fr=minmax(auto,1fr)だと
     内部の折り返せない数字/ボタンが列を押し広げ、右paddingが消えて非対称になる） */
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .event-row .cd { justify-content: flex-start; }
}

/* ============ carousel（ホーム） ============ */
.carousel { position: relative; margin-top: calc(-1 * var(--sp-5)); z-index: 2; }
.carousel-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.c-card {
  flex: 0 0 248px; scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-1);
  transition: box-shadow .2s, transform .2s;
}
.c-card:hover { box-shadow: var(--shadow-2); transform: translateY(-3px); }
.c-card .thumb { aspect-ratio: 16/9; }
.c-card .body { padding: 14px 16px 16px; }
.c-card h3 { font-size: 13px; font-weight: 700; line-height: 1.6; margin-top: 8px; }
.c-card h3 a { color: var(--ink); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.c-card h3 a:hover { color: var(--green-700); }
.carousel-prev, .carousel-next {
  position: absolute; top: 38%; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink-2);
  box-shadow: var(--shadow-2); font-size: 16px;
  display: grid; place-items: center;
  transition: color .15s, border-color .15s;
}
.carousel-prev { left: -14px; }
.carousel-next { right: -14px; }
.carousel-prev:hover, .carousel-next:hover { color: var(--green-700); border-color: var(--green-600); }

/* ============ hub cards（ホーム） ============ */
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--list-gap); }
@media (max-width: 880px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--card-pad); display: flex; flex-direction: column;
  border-top: 3px solid var(--hub-color, var(--green-600));
}
.hub-card .hub-tags { display: flex; gap: 6px; margin-bottom: 10px; }
.hub-card .hub-tags .badge { background: color-mix(in srgb, var(--hub-color) 12%, #fff); color: var(--hub-color); }
.hub-card h3 { font-size: 17px; font-weight: 900; display: flex; align-items: center; gap: 9px; }
.hub-card h3 .hub-ico {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 14px;
  background: color-mix(in srgb, var(--hub-color) 12%, #fff); color: var(--hub-color);
}
.hub-links {
  list-style: none; margin: 12px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px;
}
.hub-card.hub-narrow .hub-links { grid-template-columns: 1fr; }
.hub-links a {
  display: flex; gap: 7px; align-items: baseline;
  padding: 6.5px 0; font-size: 13px; color: var(--ink-2); line-height: 1.55;
}
.hub-links a::before { content: "›"; color: var(--hub-color); font-weight: 700; flex-shrink: 0; }
.hub-links a:hover { color: var(--hub-color); }
.hub-links .hub-inline { display: flex; gap: 7px; align-items: baseline; padding: 6.5px 0; font-size: 13px; color: var(--ink-2); line-height: 1.55; }
.hub-links .hub-inline::before { content: "›"; color: var(--hub-color); font-weight: 700; flex-shrink: 0; }
.hub-links .hub-inline a { display: inline; padding: 0; }
.hub-links .hub-inline a::before { content: none; }
.hub-foot {
  margin-top: auto; padding-top: 14px;
  display: flex; align-items: baseline; gap: 6px;
  font-size: 12px; color: var(--ink-3);
}
.hub-foot .n { font-family: var(--font-num); font-size: 21px; font-weight: 800; color: var(--hub-color); }
.hub-lead { font-size: 13.5px; color: var(--ink-2); margin-bottom: var(--sp-3); max-width: 720px; }
@media (max-width: 680px) { .hub-links { grid-template-columns: 1fr; } }

/* ============ article list（ホーム） ============ */
.post-card {
  display: grid; grid-template-columns: 264px 1fr;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .2s, transform .2s, border-color .2s;
}
.post-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); border-color: var(--line-strong); }
.post-card .thumb { position: relative; min-height: 100%; }
.post-card .thumb img { position: absolute; inset: 0; }
.post-card .thumb.ph { aspect-ratio: 16/10; }
.post-card .body { padding: var(--card-pad); display: flex; flex-direction: column; gap: var(--sp-1); }
.post-card h3 { font-size: 17.5px; font-weight: 700; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--green-700); }
.post-card .excerpt {
  font-size: 13.5px; color: var(--ink-3); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.post-meta {
  margin-top: auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-family: var(--font-num); font-size: 12px; font-weight: 600; color: var(--ink-3);
}
.post-meta .sep { color: var(--line-strong); }
@media (max-width: 680px) {
  .post-card { grid-template-columns: 1fr; }
  .post-card .thumb, .post-card .thumb.ph { aspect-ratio: 16/8; min-height: 0; }
}

/* compact card grid（関連記事） */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--list-gap); }
.related-grid { grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.grid-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.grid-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.grid-card .thumb { aspect-ratio: 16/9; }
.grid-card .body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.grid-card h3 { font-size: 13.5px; font-weight: 700; line-height: 1.6; }
.grid-card h3 a { color: var(--ink); }
.grid-card h3 a:hover { color: var(--green-700); }
@media (max-width: 680px) { .card-grid { grid-template-columns: 1fr; } }

/* ============ sort toggle ============ */
.sort-toggle { display: inline-flex; padding: 3px; gap: 2px; background: var(--mint-100); border-radius: 999px; }
.sort-toggle button {
  border: none; background: transparent; border-radius: 999px;
  padding: 7px 16px; font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  transition: background .15s, color .15s, box-shadow .15s;
}
.sort-toggle button[aria-pressed="true"] { background: #fff; color: var(--green-800); box-shadow: 0 1px 4px rgba(14,58,47,.14); }

/* ============ pagination（paginate_links 出力用） ============ */
.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: var(--sp-5); }
.pagination .page-numbers {
  display: grid; place-items: center; min-width: 42px; height: 42px; padding: 0 10px;
  border-radius: 12px; font-family: var(--font-num); font-weight: 700; font-size: 14px;
  border: 1px solid var(--line); background: var(--surface); color: var(--ink-2);
  transition: border-color .15s, color .15s;
}
.pagination a.page-numbers:hover { border-color: var(--green-600); color: var(--green-700); }
.pagination .page-numbers.current { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.pagination .page-numbers.dots { border: none; background: none; }

/* ============ layout + sidebar ============ */
.layout { display: grid; grid-template-columns: 1fr 320px; gap: var(--sp-5); align-items: start; }
@media (max-width: 1020px) { .layout { grid-template-columns: 1fr; } }

.home-sidebar aside.widget {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--card-pad); margin-bottom: var(--sp-3);
}
.home-sidebar .widget-title,
.home-sidebar .wp-block-heading,
.home-sidebar .wp-block-search__label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 15px; font-weight: 900; color: var(--ink);
  margin: 0 0 var(--sp-2); padding: 0; border: none; background: none;
}
.home-sidebar .widget-title::before,
.home-sidebar .wp-block-heading::before,
.home-sidebar .wp-block-search__label::before {
  content: ""; width: 4px; height: 16px; border-radius: 2px; background: var(--green-600);
}
.home-sidebar .wp-block-group { margin: 0; }
.home-sidebar .wp-block-search__inside-wrapper { display: flex; gap: 8px; }
.home-sidebar .wp-block-search__input {
  flex: 1; min-width: 0; padding: 10px 14px; border-radius: 10px;
  border: 1px solid var(--line-strong); font-family: inherit; font-size: 14px;
  background: var(--paper);
}
.home-sidebar .wp-block-search__input:focus {
  outline: 2px solid var(--green-500); outline-offset: -1px; border-color: transparent; background: #fff;
}
.home-sidebar .wp-block-search__button {
  padding: 10px 16px; border-radius: 10px; border: none; margin: 0;
  background: var(--green-700); color: #fff; font-weight: 700; font-size: 13.5px;
}
.home-sidebar .wp-block-search__button:hover { background: var(--green-600); }

/* 人気記事ランキング（Cocoonウィジェット再スタイル） */
.home-sidebar .popular-entry-cards { counter-reset: pjr-rank; display: flex; flex-direction: column; }
.home-sidebar .popular-entry-card-link {
  display: flex; gap: 12px; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink);
}
.home-sidebar .popular-entry-card-link:last-of-type { border-bottom: none; }
.home-sidebar .popular-entry-card-link::before {
  counter-increment: pjr-rank; content: counter(pjr-rank);
  font-family: var(--font-num); font-weight: 800; font-size: 15px;
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--paper); color: var(--ink-3);
}
.home-sidebar .popular-entry-card-link.no-1::before { background: linear-gradient(145deg, #e7c873, var(--gold)); color: #5d4716; }
.home-sidebar .popular-entry-card-link.no-2::before { background: linear-gradient(145deg, #dfe5e3, #b9c4bf); color: #4c5a55; }
.home-sidebar .popular-entry-card-link.no-3::before { background: linear-gradient(145deg, #ddb38f, #c2906a); color: #5c3c20; }
.home-sidebar .popular-entry-card { display: flex; gap: 12px; align-items: center; flex: 1; min-width: 0; }
.home-sidebar .popular-entry-card-thumb { width: 64px; flex-shrink: 0; border-radius: 8px; overflow: hidden; margin: 0; }
.home-sidebar .popular-entry-card-thumb img { width: 100%; height: auto; }
.home-sidebar .popular-entry-card-content { min-width: 0; }
.home-sidebar .popular-entry-card-title {
  font-family: var(--font-head); font-size: 12.5px; font-weight: 700; line-height: 1.55; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.home-sidebar .popular-entry-card-link:hover .popular-entry-card-title { color: var(--green-700); }
.home-sidebar .popular-entry-card-pv { font-family: var(--font-num); font-size: 11px; color: var(--ink-3); font-weight: 600; margin-top: 2px; display: block; }
.home-sidebar .display-none { display: none; }

/* 最新記事・アーカイブ（リンクリスト） */
.home-sidebar .wp-block-latest-posts,
.home-sidebar .wp-block-archives-list {
  list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column;
}
.home-sidebar .wp-block-latest-posts li,
.home-sidebar .wp-block-archives-list li { border-bottom: 1px solid var(--line); margin: 0; }
.home-sidebar .wp-block-latest-posts li:last-child,
.home-sidebar .wp-block-archives-list li:last-child { border-bottom: none; }
.home-sidebar .wp-block-latest-posts a,
.home-sidebar .wp-block-archives-list a {
  display: flex; align-items: baseline; gap: 8px;
  padding: 10px 2px; font-size: 13px; color: var(--ink-2); line-height: 1.6;
}
.home-sidebar .wp-block-latest-posts a::before,
.home-sidebar .wp-block-archives-list a::before {
  content: "›"; color: var(--green-500); font-weight: 700; flex-shrink: 0;
}
.home-sidebar .wp-block-latest-posts a:hover,
.home-sidebar .wp-block-archives-list a:hover { color: var(--green-700); }

/* カテゴリ（タグクラウド風） */
.home-sidebar .wp-block-categories-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.home-sidebar .wp-block-categories-list li { margin: 0; }
.home-sidebar .wp-block-categories-list a {
  display: inline-block; padding: 6px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  background: var(--paper); border: 1px solid var(--line); color: var(--ink-2);
  transition: all .15s;
}
.home-sidebar .wp-block-categories-list a:hover { border-color: var(--green-600); color: var(--green-700); background: var(--mint-50); }
.home-sidebar .no-comments { font-size: 13px; color: var(--ink-3); }

/* 記事ページのサイドバーは 検索＋人気記事＋目次 に絞る（デザイン準拠） */
body.single .home-sidebar aside.widget_block:not(.widget_search) { display: none; }

/* ============ footer ============ */
.site-footer { margin-top: var(--sp-6); background: var(--green-950); color: #b9d2c8; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: var(--sp-5); padding: var(--sp-6) 0 var(--sp-5); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-name small { color: rgba(255,255,255,.45); }
.footer-brand p { font-size: 12.5px; line-height: 1.9; color: rgba(255,255,255,.55); margin-top: 12px; max-width: 320px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: #b9d2c8; font-size: 13.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 18px 0; border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr; gap: var(--sp-4); } }

/* ============ back to top ============ */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 46px; height: 46px; border-radius: 50%;
  border: none; background: var(--green-700); color: #fff; font-size: 18px;
  box-shadow: var(--shadow-2);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .15s;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: none; }
.to-top:hover { background: var(--green-600); }
::selection { background: var(--mint-200); }

/* ============================================================
   カテゴリ・アーカイブページ（archive.php / search.php）
   ============================================================ */
.cat-hero {
  background:
    radial-gradient(700px 300px at 85% -20%, rgba(35,169,131,.22), transparent 60%),
    linear-gradient(150deg, var(--green-950), var(--green-900));
  color: #fff; padding: var(--sp-5) 0;
  position: relative; overflow: hidden;
}
.cat-hero::after {
  content: attr(data-suit); position: absolute; right: 4%; bottom: -50px;
  font-size: 220px; line-height: 1; color: rgba(255,255,255,.05);
  pointer-events: none;
}
.cat-hero .breadcrumb { margin: 0 0 14px; color: rgba(255,255,255,.5); }
.cat-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.cat-hero .breadcrumb a:hover { color: #fff; }
.cat-hero .breadcrumb .sep { color: rgba(255,255,255,.25); }
.cat-hero .breadcrumb .current { color: rgba(255,255,255,.85); }
.cat-hero h1 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 900; color: #fff; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cat-hero h1 .n {
  font-family: var(--font-num); font-size: 14px; font-weight: 800;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 4px 14px;
}
.cat-hero p { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,.65); max-width: 640px; line-height: 1.9; }
.cat-chips { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.cat-chips a {
  padding: 7px 16px; border-radius: 999px; font-size: 12.5px; font-weight: 700;
  border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.75);
  transition: all .15s;
}
.cat-chips a:hover { border-color: #fff; color: #fff; }
.cat-chips a[aria-current="page"] { background: #fff; color: var(--green-900); border-color: #fff; }
.grid-card .post-meta { margin-top: auto; }
/* アーカイブのサイドバーは 検索＋ランキング＋アーカイブ＋カテゴリに絞る（デザイン準拠） */
body.archive .sb-main aside.widget_block:not(.widget_search),
body.search .sb-main aside.widget_block:not(.widget_search) { display: none; }
.archive-empty {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-5); text-align: center; color: var(--ink-3); font-size: 14px;
}

/* ============================================================
   ここから記事ページ（single.php）
   ============================================================ */

/* 読了プログレスバー */
.read-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 80;
  background: transparent; pointer-events: none;
}
.read-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green-600), var(--green-500)); transition: width .1s linear; }

/* パンくず */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-3); margin: var(--sp-3) 0;
}
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb .sep { color: var(--line-strong); }
.breadcrumb .current { color: var(--ink-2); font-weight: 600; }

/* 記事ヘッダー */
.article-head { max-width: 860px; }
.article-head .head-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.article-head h1 { font-size: clamp(24px, 3vw, 33px); font-weight: 900; line-height: 1.55; margin-top: 12px; }
.article-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-top: 16px; font-family: var(--font-num);
  font-size: 12.5px; font-weight: 600; color: var(--ink-3);
}
.article-meta .avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(145deg, var(--green-600), var(--green-800));
  display: grid; place-items: center; color: #fff; font-size: 14px;
}
.article-meta .who { font-family: var(--font-body); }
.article-meta .who b { display: block; font-size: 12.5px; color: var(--ink); }
.article-hero { border-radius: var(--radius); overflow: hidden; aspect-ratio: 21/8.5; margin-top: var(--sp-3); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }

/* 記事本文カード */
.article-body {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 4vw, 44px);
  overflow-wrap: break-word;
  min-width: 0;
}
/* 記事ページはモバイル整列をデフォルトにする。
   実機Safariでメディアクエリ境界が想定とずれても、本文だけPCカード幅へ戻らないようにする。 */
body.pjr-single-redesign .layout { grid-template-columns: minmax(0, 1fr); }
body.pjr-single-redesign .article-head { max-width: none; }
body.pjr-single-redesign .article-body {
  background: transparent;
  padding-left: 0; padding-right: 0;
  border-left: none; border-right: none; border-radius: 0;
}

/* PCだけ本文カード+サイドバーへ戻す。スマホ/タブレット/デスクトップ表示指定のスマホは1カラム維持。 */
@media (min-width: 1367px) and (hover: hover) and (pointer: fine) {
  body.pjr-single-redesign .layout { grid-template-columns: 1fr 320px; }
  body.pjr-single-redesign .article-head { max-width: 860px; }
  body.pjr-single-redesign .article-body {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(22px, 4vw, 44px);
  }
}
.article-body h2 {
  font-size: 22px; font-weight: 900; line-height: 1.5;
  /* 見出し文字をアクセントバー直後(≈本文と同じ左端)まで詰める。緑バーは画像と同じ端に維持(2026-06-17) */
  padding: 10px 0 12px 0; margin: var(--sp-5) 0 var(--sp-3);
  border-left: 4px solid var(--green-600);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 17.5px; font-weight: 700; margin: var(--sp-4) 0 var(--sp-2); }
.article-body h4 { font-size: 15.5px; font-weight: 700; margin: var(--sp-3) 0 var(--sp-1); color: var(--green-800); }
.article-body p { margin: 0 0 var(--sp-2); font-size: var(--fs-body); color: #2a3833; }
.article-body ul, .article-body ol { margin: 0 0 var(--sp-2); padding-left: 1.5em; color: #2a3833; }
.article-body li { margin: 4px 0; }
.article-body li::marker { color: var(--green-600); }
.article-body strong { color: var(--ink); }
.article-body blockquote {
  margin: var(--sp-3) 0; padding: 14px 18px;
  background: var(--mint-50); border-left: 4px solid var(--green-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14.5px; color: var(--ink-2);
}
.article-body hr { border: none; border-top: 1px solid var(--line); margin: var(--sp-4) 0; }
.article-body img { border-radius: 10px; height: auto; }
.article-body figure { margin: 24px 0; max-width: 100%; }
.article-body figcaption, .article-body .wp-element-caption {
  font-size: 12px; color: var(--ink-3); margin-top: 8px; text-align: center; line-height: 1.7;
}
.article-body iframe { max-width: 100%; border: 0; border-radius: 10px; }

/* 表の横スクロールラッパー:
   - 角丸コンテナ化（デザインの .table-wrap 相当。表の角もクリップされる）
   - 横スクロールバー出現時に縦5px溢れてホイールを取り込む
     二重スクロールバー問題を防ぐ（overflow-y: hidden） */
.article-body div[style*="overflow-x"] {
  overflow-y: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  margin: 14px 0 20px;
}
.article-body div[style*="overflow-x"] table { margin: 0; }

/* 記事内ボックス類の角丸補完（既に角丸指定があるものはそのまま） */
.article-body div[style*="background"]:not([style*="border-radius"]),
.article-body div[style*="border:"]:not([style*="border-radius"]),
.article-body div[style*="border-left"]:not([style*="border-radius"]) {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.article-body details:not([style*="border-radius"]) { border-radius: var(--radius-sm); }

@media (max-width: 1366px), (hover: none) and (pointer: coarse) {
  /* スマホ記事: 見出し・本文内ボックスの文字が右へ入りすぎないよう詰める。
     本文には古いインラインpaddingが多数あるため、記事ページだけ!importantで上書きする。 */
  body.pjr-single-redesign .article-body h2 {
    position: relative;
    border-left: none;
    box-shadow: none;
    padding-left: 0;
  }
  body.pjr-single-redesign .article-body h2::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 10px;
    bottom: 12px;
    width: 4px;
    background: var(--green-600);
  }
  body.pjr-single-redesign .article-body > div[style*="background"],
  body.pjr-single-redesign .article-body > div[style*="border:"],
  body.pjr-single-redesign .article-body > div[style*="border-left"] {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  body.pjr-single-redesign .article-body > div[style*="background"] ul,
  body.pjr-single-redesign .article-body > div[style*="border:"] ul,
  body.pjr-single-redesign .article-body > div[style*="border-left"] ul {
    padding-left: 1.15em !important;
  }
}

/* 本文テーブル（インラインスタイルが無い部分のフォールバック） */
.article-body table { border-collapse: collapse; width: 100%; background: #fff; font-size: 13.5px; }
.article-body th, .article-body td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); line-height: 1.6; }
.article-body thead th { background: var(--green-800); color: #fff; font-weight: 700; font-size: 12.5px; }
.article-body tbody tr:nth-child(even):not([style*="background"]) { background: var(--mint-50); }

/* Cocoonが本文へ自動挿入する目次は新デザインでは使わない（サイドバー追従目次に置換） */
.article-body #toc { display: none; }

/* Cocoon information-box 等の汎用ボックス */
.article-body .information-box, .article-body .alert-box, .article-body .memo-box {
  background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: var(--radius-sm);
  padding: 16px 20px; margin: 0 0 var(--sp-3);
}

/* details/summary（FAQ等） */
.article-body details { border-radius: var(--radius-sm); }
.article-body summary { cursor: pointer; font-weight: 700; }

/* lead box（この記事でわかること） */
.lead-box {
  background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: var(--radius-sm);
  padding: 20px 22px; margin-bottom: var(--sp-4);
}
.lead-box h2 { border: none; padding: 0; margin: 0 0 10px; font-size: 15px; display: flex; gap: 8px; align-items: center; color: var(--green-800); }
.lead-box ul { margin: 0; padding-left: 20px; font-size: 14px; line-height: 2; color: var(--ink-2); }
.lead-box li::marker { color: var(--green-600); }

/* update note（最終更新・調査方法） */
.update-note {
  display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap;
  font-size: 12.5px; color: var(--ink-3);
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--paper); border: 1px dashed var(--line-strong);
  margin-bottom: var(--sp-4);
}
.update-note b { color: var(--green-800); }

/* facility card（施設カード） */
.facility { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; margin-bottom: var(--sp-3); }
.facility .fac-head {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 14px 18px; background: var(--green-800); color: #fff;
}
.facility .fac-head h3 { margin: 0; font-size: 16px; color: #fff; }
.facility .fac-head .badge { background: rgba(255,255,255,.15); color: #d9efe6; }
.facility .fac-grid { display: grid; grid-template-columns: 220px 1fr; }
.facility .thumb { min-height: 150px; }
.facility .fac-body { padding: 16px 18px; }
.facility dl { display: grid; grid-template-columns: 92px 1fr; gap: 6px 14px; margin: 0; font-size: 13.5px; }
.facility dt { color: var(--ink-3); font-weight: 600; }
.facility dd { margin: 0; color: var(--ink); }
@media (max-width: 640px) { .facility .fac-grid { grid-template-columns: 1fr; } .facility .thumb { aspect-ratio: 16/7; } }

/* event callout（大会カウントダウン帯） */
.event-callout {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  border-radius: var(--radius-sm); padding: 18px 22px; color: #fff;
  margin: var(--sp-3) 0;
}
.event-callout .t { font-size: 15px; font-weight: 900; }
.event-callout .s { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.event-callout .cd { margin-left: auto; }
@media (max-width: 640px) { .event-callout .cd { margin-left: 0; } }

/* FAQ アコーディオン */
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 10px; background: #fff; overflow: hidden; }
.faq summary {
  display: flex; gap: 12px; align-items: baseline;
  padding: 15px 18px; cursor: pointer; list-style: none;
  font-weight: 700; font-size: 14.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "Q"; font-family: var(--font-num); font-weight: 800; color: var(--green-600); flex-shrink: 0; }
.faq summary::after { content: "＋"; margin-left: auto; color: var(--ink-3); }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { background: var(--mint-50); }
.faq .a { display: flex; gap: 12px; padding: 14px 18px 16px; font-size: 14px; color: var(--ink-2); border-top: 1px solid var(--line); }
.faq .a::before { content: "A"; font-family: var(--font-num); font-weight: 800; color: var(--gold-deep); flex-shrink: 0; }

/* checklist */
.checklist { list-style: none; margin: 0; padding: 0; font-size: 14.5px; }
.checklist li { display: flex; gap: 10px; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed var(--line); }
.checklist li::before { content: "✓"; color: var(--green-600); font-weight: 800; flex-shrink: 0; }

/* 追従目次（サイドバー） */
.toc-widget { position: sticky; top: 80px; }
body.admin-bar .toc-widget { top: 112px; }
.toc { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc a {
  display: flex; gap: 10px; align-items: baseline;
  padding: 8px 10px; border-radius: 8px; border-left: 2px solid transparent;
  font-size: 13px; color: var(--ink-2); line-height: 1.6;
  counter-increment: toc; cursor: pointer;
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-num); font-weight: 700; font-size: 11px; color: var(--ink-3);
}
.toc a:hover { background: var(--mint-50); color: var(--green-800); }
.toc a.active { background: var(--mint-100); color: var(--green-800); font-weight: 700; border-left-color: var(--green-600); border-radius: 0 8px 8px 0; }
.toc a.active::before { color: var(--green-600); }

/* share */
.share-row { display: flex; gap: 10px; margin-top: var(--sp-4); flex-wrap: wrap; }
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: 12.5px; font-weight: 700; color: var(--ink-2);
  transition: all .15s; cursor: pointer; font-family: inherit;
}
.share-btn:hover { border-color: var(--green-600); color: var(--green-700); }

/* author box */
.author-box {
  display: grid; grid-template-columns: 72px 1fr; gap: 18px;
  background: var(--mint-50); border: 1px solid var(--mint-200); border-radius: var(--radius);
  padding: 22px; margin-top: var(--sp-4);
}
.author-box .avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(145deg, var(--green-600), var(--green-800));
  display: grid; place-items: center; color: #fff; font-size: 28px;
}
.author-box h3 { font-size: 15px; font-weight: 900; margin: 0; }
.author-box .role { font-size: 11.5px; color: var(--ink-3); margin-bottom: 8px; }
.author-box p { font-size: 13px; color: var(--ink-2); line-height: 1.9; margin: 0; }

/* prev/next */
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: var(--list-gap); margin-top: var(--sp-4); }
.post-nav a {
  display: block; padding: 16px 18px; border-radius: var(--radius-sm);
  background: #fff; border: 1px solid var(--line);
  transition: border-color .15s, box-shadow .15s;
}
.post-nav a:hover { border-color: var(--green-600); box-shadow: var(--shadow-1); }
.post-nav .dir { font-size: 11px; font-weight: 800; color: var(--green-600); letter-spacing: .1em; display: block; }
.post-nav .ttl { font-size: 13px; font-weight: 700; color: var(--ink); margin-top: 5px; line-height: 1.6; display: block; }
.post-nav .post-nav-next { text-align: right; }
@media (max-width: 640px) { .post-nav { grid-template-columns: 1fr; } .post-nav .post-nav-next { text-align: left; } }

/* 記事下セクション見出し */
.sub-section-title { border: none; padding: 0; font-size: 19px; font-weight: 900; }

/* コメント（WP core comment_form 出力向け） */
.comments-area { margin-top: var(--sp-5); }
.comments-area .no-comment-note { font-size: 13.5px; color: var(--ink-3); }
.comment-list { list-style: none; margin: var(--sp-3) 0 0; padding: 0; }
.comment-list .comment {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; margin-bottom: 12px;
}
.comment-list .comment-meta { font-size: 12px; color: var(--ink-3); margin-bottom: 6px; }
.comment-list .comment-content { font-size: 14px; color: var(--ink-2); }
.comment-respond { margin-top: var(--sp-3); }
.comment-respond .comment-reply-title { font-size: 15px; font-weight: 900; margin-bottom: 10px; }
.comment-form { display: grid; gap: 12px; }
.comment-form p { margin: 0; }
.comment-form label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-2); margin-bottom: 4px; }
.comment-form textarea, .comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"] {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong); font-family: inherit; font-size: 14px;
  background: #fff;
}
.comment-form textarea { min-height: 110px; resize: vertical; }
.comment-form textarea:focus, .comment-form input:focus { outline: 2px solid var(--green-500); outline-offset: -1px; }
.comment-form .form-submit { margin: 0; }
.comment-form .submit {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px; border: none;
  background: var(--green-600); color: #fff; font-size: 14.5px; font-weight: 700; line-height: 1;
  box-shadow: 0 4px 14px rgba(23,138,106,.35); cursor: pointer;
  transition: transform .15s, background .15s;
}
.comment-form .submit:hover { background: var(--green-500); transform: translateY(-1px); }
.comment-form .comment-notes, .comment-form .cookies-consent-note { font-size: 11.5px; color: var(--ink-3); }
.comment-form-cookies-consent { display: flex; gap: 8px; align-items: baseline; }
.comment-form-cookies-consent input { width: auto; }
.comment-form-cookies-consent label { display: inline; font-weight: 500; font-size: 12px; margin: 0; }
