/*
 * member-profile.css — Member public profile page (Editorial Magazine theme)
 * Depends on: tokens.css + jertam.css
 */

/* ── Skip link ─────────────────────────────────────────────────────────────── */
.jt-skip-link {
    position: absolute; top: -40px; left: 8px; z-index: 100;
    background: var(--jt-ink, #1A2B1F); color: white; padding: 8px 16px; border-radius: 8px;
}
.jt-skip-link:focus { top: 8px; }

/* ── Hero ──────────────────────────────────────────────────────────────────── */
.jt-mp-hero {
    padding: 32px 0 28px;
    border-bottom: 1px solid var(--jt-line, #eee);
    background: white;
}
.jt-mp-hero__issue {
    display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.jt-mp-hero__kicker,
.jt-mp-hero__handle {
    font-family: var(--jt-font-mono, ui-monospace); font-size: 11px;
    letter-spacing: 0.6px; text-transform: uppercase;
}
.jt-mp-hero__kicker { color: var(--jt-orange-600, #d97706); font-weight: 700; }
.jt-mp-hero__handle { color: var(--jt-muted, #8A9387); }
.jt-mp-hero__rule   { flex: 1; height: 1px; background: var(--jt-line, #eee); }

.jt-mp-hero__grid {
    display: grid; grid-template-columns: 128px 1fr auto;
    gap: 24px; align-items: flex-start;
}

/* Avatar */
.jt-mp-avatar {
    display: block; position: relative;
    width: 128px; height: 128px; border-radius: 20px; overflow: hidden;
    background: var(--jt-cream, #FAF7F2);
    box-shadow: 0 10px 24px -8px rgba(26, 43, 31, 0.20);
    text-decoration: none;
}
.jt-mp-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jt-mp-avatar__badge {
    position: absolute; bottom: 6px; right: 6px;
    width: 28px; height: 28px; border-radius: 50%;
    background: white; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(26, 43, 31, 0.20);
}

/* Identity */
.jt-mp-name {
    font-family: var(--jt-font-display, system-ui);
    font-size: 48px; font-weight: 800;
    letter-spacing: -0.03em; line-height: 1;
    color: var(--jt-ink, #1A2B1F); margin: 0;
}
.jt-mp-hero__sub { gap: 10px; align-items: baseline; margin-top: 6px; }
.jt-mp-enname {
    font-family: var(--jt-font-display, system-ui); font-size: 16px;
    font-weight: 500; font-style: italic; color: var(--jt-muted, #8A9387);
}
.jt-mp-handle {
    font-family: var(--jt-font-mono, ui-monospace);
    font-size: 12px; color: var(--jt-orange-600, #d97706);
}
.jt-mp-bio {
    font-size: 15px; line-height: 1.55; color: var(--jt-ink-2, #4a5759);
    max-width: 620px; margin: 14px 0 0;
}

/* About chips */
.jt-mp-about {
    display: flex; flex-wrap: wrap; gap: 14px;
    margin: 14px 0 0; padding: 0; list-style: none;
}
.jt-mp-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 12px; border-radius: 9999px;
    background: var(--jt-cream, #FAF7F2);
    font-size: 12.5px; color: var(--jt-ink-2, #4a5759);
}
.jt-mp-chip__label { color: var(--jt-muted, #8A9387); }
.jt-mp-chip__value { font-weight: 600; color: var(--jt-ink, #1A2B1F); }

/* Inline stats */
.jt-mp-stats {
    display: flex; gap: 24px; flex-wrap: wrap;
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid var(--jt-line, #eee);
}
.jt-mp-stat__num {
    font-family: var(--jt-font-display, system-ui); font-size: 22px;
    font-weight: 800; letter-spacing: -0.025em; line-height: 1;
    color: var(--jt-ink, #1A2B1F);
}
.jt-mp-stat__num--orange { color: var(--jt-orange-500, #F58220); }
.jt-mp-stat__num--green  { color: var(--jt-green-600, #1B4D2E); }
.jt-mp-stat__label {
    font-family: var(--jt-font-mono, ui-monospace); font-size: 11px;
    color: var(--jt-muted, #8A9387); letter-spacing: 0.4px; margin-top: 4px;
}

/* Actions */
.jt-mp-hero__actions {
    display: flex; flex-direction: column; gap: 8px; min-width: 180px;
}
.jt-mp-hero__actions .btn { height: 42px; border-radius: 9999px; font-weight: 600; }
.jt-mp-action-row { display: flex; gap: 6px; }
.jt-mp-icon-btn   { flex: 1; height: 38px; border-radius: 9999px; padding: 0 10px; }

/* ── Tabs (sticky) ────────────────────────────────────────────────────────── */
.jt-mp-tabs {
    background: white; border-bottom: 1px solid var(--jt-line, #eee);
    position: sticky; top: 67px; z-index: 40;
}
.jt-mp-tabs ul {
    display: flex; gap: 28px; list-style: none; padding: 0; margin: 0;
    overflow-x: auto; scrollbar-width: none;
}
.jt-mp-tabs ul::-webkit-scrollbar { display: none; }
.jt-mp-tabs a {
    display: flex; align-items: baseline; gap: 6px;
    padding: 14px 0; flex-shrink: 0;
    border-bottom: 2px solid transparent;
    color: var(--jt-muted, #8A9387); text-decoration: none;
    font-family: var(--jt-font-display, system-ui); font-size: 14.5px; font-weight: 500;
    white-space: nowrap; transition: all .12s; margin-bottom: -1px;
}
.jt-mp-tabs a:hover { color: var(--jt-ink, #1A2B1F); }
.jt-mp-tabs a.active {
    color: var(--jt-ink, #1A2B1F); font-weight: 700;
    border-bottom-color: var(--jt-orange-500, #F58220);
}
.jt-mp-tabs__n {
    font-family: var(--jt-font-mono, ui-monospace);
    font-size: 10.5px; color: var(--jt-muted, #8A9387);
}

/* ── Feed ─────────────────────────────────────────────────────────────────── */
.jt-mp-main { padding: 28px 0 60px; }
.jt-mp-feed-wrap { max-width: 760px; }
.jt-mp-feed-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.jt-mp-feed-head__kicker {
    font-family: var(--jt-font-mono, ui-monospace); font-size: 11px;
    color: var(--jt-orange-600, #d97706); letter-spacing: 0.6px; text-transform: uppercase;
    font-weight: 700;
}
.jt-mp-feed-head__rule  { flex: 1; height: 1px; background: var(--jt-line, #eee); }
.jt-mp-feed-head__count {
    font-family: var(--jt-font-mono, ui-monospace);
    font-size: 11px; color: var(--jt-muted, #8A9387);
}

/* ── Post card ────────────────────────────────────────────────────────────── */
.jt-mp-post {
    background: white; border-radius: 20px;
    padding: 20px 24px 18px;
    box-shadow: var(--jt-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.05));
    border: 1px solid var(--jt-line, #eee);
    margin-bottom: 18px;
    cursor: pointer;                      /* whole card → posts/{slug} via JS */
    transition: box-shadow .15s, transform .15s;
}
.jt-mp-post:hover {
    box-shadow: 0 8px 24px -6px rgba(26, 43, 31, 0.10);
}
.jt-mp-post__header {
    display: flex; align-items: center; gap: 12px;
    padding-bottom: 14px; border-bottom: 1px solid var(--jt-line, #eee);
    margin-bottom: 16px;
}
.jt-mp-post__num {
    font-family: var(--jt-font-mono, ui-monospace);
    font-size: 11px; color: var(--jt-muted, #8A9387);
    width: 24px; flex-shrink: 0;
}
.jt-mp-post__avatar {
    width: 32px; height: 32px; border-radius: 50%;
    overflow: hidden; flex-shrink: 0; display: block;
    text-decoration: none; background: var(--jt-cream, #FAF7F2);
}
.jt-mp-post__avatar img { width: 100%; height: 100%; object-fit: cover; }
.jt-mp-post__author { flex: 1; min-width: 0; }
.jt-mp-post__name {
    font-family: var(--jt-font-display, system-ui);
    font-size: 13px; font-weight: 700;
    color: var(--jt-ink, #1A2B1F); text-decoration: none;
}
.jt-mp-post__meta {
    font-family: var(--jt-font-mono, ui-monospace);
    font-size: 11px; color: var(--jt-muted, #8A9387);
    display: flex; gap: 6px; align-items: center;
}
.jt-mp-post__more {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--jt-cream, #FAF7F2); border: none; cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    color: var(--jt-muted, #8A9387);
}
.jt-mp-post__more:hover { background: var(--jt-line, #eee); color: var(--jt-ink, #1A2B1F); }

.jt-mp-post__title {
    font-family: var(--jt-font-display, system-ui); font-size: 24px; font-weight: 800;
    letter-spacing: -0.02em; line-height: 1.15;
    color: var(--jt-ink, #1A2B1F); margin: 0;
}
.jt-mp-post__title a:hover { color: var(--jt-orange-600, #d97706); }
.jt-mp-post__body {
    font-size: 14.5px; line-height: 1.65;
    color: var(--jt-ink-2, #4a5759); margin-top: 8px;
}

/* Post media */
.jt-mp-post__media,
.jt-mp-post__video {
    margin-top: 14px; height: 360px;
    border-radius: 12px; overflow: hidden;
}
.jt-mp-post__media img,
.jt-mp-post__video img { width: 100%; height: 100%; object-fit: cover; }
.jt-mp-post__video { position: relative; background: var(--jt-ink, #1A2B1F); }
.jt-mp-post__video::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
}
.jt-mp-post__play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
    border: none; cursor: pointer; color: var(--jt-ink, #1A2B1F);
    padding-left: 3px;
}
.jt-mp-post__duration {
    position: absolute; bottom: 12px; right: 12px;
    background: rgba(0, 0, 0, 0.6); color: white;
    padding: 4px 10px; border-radius: 9999px; font-size: 11px;
    font-family: var(--jt-font-mono, ui-monospace); font-weight: 600;
}

/* Gallery */
.jt-mp-post__gallery {
    margin-top: 14px; display: grid; gap: 6px;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 130px;
    grid-template-areas: "a b c" "a d c";
}
.jt-mp-post__gallery[data-count="3"] { grid-template-areas: "a b c" "a b c"; }
.jt-mp-post__gallery-item {
    border-radius: 10px; overflow: hidden; position: relative;
}
.jt-mp-post__gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.jt-mp-post__gallery-more {
    position: absolute; inset: 0; background: rgba(26, 43, 31, 0.65);
    display: flex; align-items: center; justify-content: center;
    color: white; font-family: var(--jt-font-display, system-ui);
    font-weight: 700; font-size: 22px;
}

/* Post stats — match Community style (equal-width buttons) */
.jt-mp-post__stats {
    display: flex;
    padding: 8px 12px;
    margin-top: 14px;
    border-top: 1px solid var(--jt-line, #eee);
}
.jt-mp-post__stat {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 8px; border-radius: 10px;
    background: transparent; border: none; cursor: pointer;
    color: var(--jt-ink-2, #4a5759); font-size: 13px; font-weight: 500;
}
.jt-mp-post__stat:hover { background: var(--jt-cream, #FAF7F2); }
/* Active reaction — like = ส้ม (เติมหัวใจ), bookmark = น้ำเงิน */
.jt-mp-post__stat.jt-react-btn.is-active[data-action="like"]         { color: var(--jt-orange, #F58220); }
.jt-mp-post__stat.jt-react-btn.is-active[data-action="like"] svg     { fill: var(--jt-orange, #F58220); stroke: var(--jt-orange, #F58220); }
.jt-mp-post__stat.jt-react-btn.is-active[data-action="bookmark"]     { color: #2563EB; }
.jt-mp-post__stat.jt-react-btn.is-active[data-action="bookmark"] svg { stroke: #2563EB; fill: #DBEAFE; }
/* Like count — คลิกเพื่อดูรายชื่อคนที่กดถูกใจ */
.jt-mp-like-count { cursor: pointer; border-radius: 4px; padding: 1px 2px; }
.jt-mp-like-count:hover { text-decoration: underline; }
/* Readmore link removed — whole card is clickable to post detail via JS */
.jt-mp-post__readmore { display: none !important; }

/* Sentinel + end card */
.jt-mp-sentinel {
    text-align: center; padding: 20px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-size: 11px; font-family: var(--jt-font-mono, ui-monospace);
    color: var(--jt-muted, #8A9387);
}
/* Match Community style — simple centered muted text (no cream card) */
.jt-mp-end {
    text-align: center; padding: 32px 0;
    color: var(--jt-muted, #8A9387);
}
.jt-mp-end__title {
    font-weight: 600; font-size: 14px;
}

/* Skeleton */
.jt-mp-skeleton .skel {
    background: var(--jt-cream, #FAF7F2);
    animation: jtPulse 1.5s ease-in-out infinite;
    border-radius: 6px;
}
@keyframes jtPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ── Avatar lightbox (click hero avatar → enlarged photo) ────────────────── */
.jt-avatar-lb {
    position: fixed; inset: 0; z-index: 1050;
    display: none;
}
.jt-avatar-lb.is-open {
    display: flex; align-items: center; justify-content: center;
    animation: jt-fade-in .15s ease-out;
}
.jt-avatar-lb__backdrop {
    position: absolute; inset: 0;
    background: rgba(0, 0, 0, 0.86);
    cursor: pointer;
}
.jt-avatar-lb__img {
    position: relative;
    max-width: min(80vw, 600px);
    max-height: 80vh;
    border-radius: 16px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.50);
    background: white;
    animation: jt-zoom-in .2s ease-out;
}
.jt-avatar-lb__close {
    position: absolute; top: 24px; right: 24px;
    width: 44px; height: 44px;
    border-radius: 50%; border: none;
    background: rgba(255, 255, 255, 0.18);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 1; transition: background .15s;
}
.jt-avatar-lb__close:hover { background: rgba(255, 255, 255, 0.30); }
.jt-avatar-lb__close:focus-visible {
    outline: 2px solid white; outline-offset: 2px;
}
body.jt-noscroll { overflow: hidden; }

@keyframes jt-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes jt-zoom-in {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

@media (max-width: 575px) {
    .jt-avatar-lb__img { max-width: 92vw; border-radius: 12px; }
    .jt-avatar-lb__close { top: 16px; right: 16px; width: 40px; height: 40px; }
}

/* ── Media grid (Photos / Videos tab) ──────────────────────────────────────── */
.jt-mp-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* thumbnail cell */
.jt-mp-media-thumb {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--jt-cream, #FAF7F2);
    border-radius: 4px;
    text-decoration: none;
}
.jt-mp-media-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}
.jt-mp-media-thumb:hover img,
.jt-mp-media-thumb:focus-visible img {
    transform: scale(1.04);
}
.jt-mp-media-thumb:focus-visible {
    outline: 3px solid var(--jt-primary, #F58220);
    outline-offset: 2px;
}

/* generic / vimeo placeholder */
.jt-mp-media-thumb__generic-bg,
.jt-mp-media-thumb__vimeo-bg {
    width: 100%; height: 100%;
    background: #1e1e1e;
    transition: opacity .25s;
}
.jt-mp-media-thumb:hover .jt-mp-media-thumb__generic-bg,
.jt-mp-media-thumb:hover .jt-mp-media-thumb__vimeo-bg { opacity: .85; }

/* play icon overlay (video cells) */
.jt-mp-media-thumb__play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}

/* provider badge (YouTube / Vimeo) */
.jt-mp-media-thumb__badge {
    position: absolute; bottom: 6px; left: 6px;
    display: flex; align-items: center;
    background: rgba(0,0,0,.55);
    border-radius: 4px;
    padding: 2px 5px;
    pointer-events: none;
}

/* sentinel inside media grid — spans full width */
.jt-mp-sentinel--media {
    grid-column: 1 / -1;
    padding: 16px;
}

/* mobile: 2 columns */
@media (max-width: 575px) {
    .jt-mp-media-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
}

/* ── Video Modal (#jt-vm) ───────────────────────────────────────────────────── */
#jt-vm {
    position: fixed; inset: 0; z-index: 1200;
    display: flex; align-items: center; justify-content: center;
    visibility: hidden; opacity: 0;
    transition: opacity .2s, visibility .2s;
}
#jt-vm.is-open {
    visibility: visible; opacity: 1;
}
.jt-vm__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.88);
    cursor: pointer;
}
.jt-vm__wrap {
    position: relative; z-index: 1;
    width: min(92vw, 1060px);
    max-height: 92vh;
    display: flex; flex-direction: column;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.7);
    animation: jt-vm-in .2s ease-out;
}
@keyframes jt-vm-in {
    from { transform: scale(.95); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

/* Header */
.jt-vm__header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px;
    flex-shrink: 0;
}
.jt-vm__title {
    color: #fff;
    font-size: 13px; font-weight: 500;
    margin: 0;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: calc(100% - 48px);
}
.jt-vm__close {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%; border: none;
    background: rgba(255,255,255,.12);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .15s;
}
.jt-vm__close:hover { background: rgba(255,255,255,.25); }
.jt-vm__close svg { pointer-events: none; }

/* Player area — responsive 16:9 */
.jt-vm__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    flex-shrink: 0;
    overflow: hidden;
}
.jt-vm__player iframe,
.jt-vm__player video {
    width: 100%; height: 100%;
    border: none; display: block;
}

/* ── Custom video controls (CLIPJT) ────────────────────────────────────────── */
.jt-vm__controls {
    padding: 10px 14px 12px;
    background: #111;
    flex-shrink: 0;
}
/* Seek bar row */
.jt-vm__seek-row {
    padding: 4px 0 8px;
}
.jt-vm__seek {
    -webkit-appearance: none;
    appearance: none;
    width: 100%; height: 4px;
    cursor: pointer;
    border-radius: 2px;
    background: linear-gradient(
        to right,
        var(--jt-primary, #F58220) var(--pct, 0%),
        rgba(255,255,255,.2) var(--pct, 0%)
    );
    outline: none; border: none;
}
.jt-vm__seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--jt-primary, #F58220);
    cursor: pointer;
    transition: transform .1s;
}
.jt-vm__seek:hover::-webkit-slider-thumb { transform: scale(1.3); }
.jt-vm__seek::-moz-range-thumb {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--jt-primary, #F58220);
    border: none; cursor: pointer;
}
/* Button row */
.jt-vm__btn-row {
    display: flex; align-items: center; gap: 4px;
}
.jt-vm__btn {
    flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center; gap: 3px;
    padding: 6px 10px;
    border-radius: 6px; border: none;
    background: rgba(255,255,255,.08);
    color: #e8e8e8;
    font-size: 12px; font-weight: 500;
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.jt-vm__btn:hover { background: rgba(255,255,255,.18); }
.jt-vm__btn--play {
    width: 42px; height: 36px;
    background: var(--jt-primary, #F58220);
    color: #fff; font-size: 14px;
}
.jt-vm__btn--play:hover { background: #e07010; }
.jt-vm__btn--muted { opacity: .5; }
.jt-vm__time {
    flex: 1;
    text-align: center;
    font-size: 11px; color: rgba(255,255,255,.55);
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
    pointer-events: none;
}
.jt-vm__btn--fs { margin-left: auto; }

@media (max-width: 575px) {
    .jt-vm__wrap { width: 100vw; max-height: 100dvh; border-radius: 0; }
    .jt-vm__btn span { display: none; } /* hide text, keep icon */
}

/* "Edit profile" button (owner only) — same height as Follow button */
.jt-mp-edit-profile {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; text-decoration: none;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .jt-mp-hero { padding: 28px 0 24px; }
    .jt-mp-hero__grid { grid-template-columns: 128px 1fr; row-gap: 18px; }
    .jt-mp-hero__actions { grid-column: 1 / -1; flex-direction: row; min-width: 0; }
    .jt-mp-hero__actions .btn { flex: 1; }
    .jt-mp-name { font-size: 40px; }
}

@media (max-width: 575px) {
    .jt-mp-hero { padding: 24px 0 20px; }
    .jt-mp-hero__grid { grid-template-columns: 1fr; row-gap: 16px; }
    .jt-mp-hero__avatar-col { display: flex; flex-direction: row; align-items: center; gap: 16px; }
    .jt-mp-avatar { width: 88px; height: 88px; border-radius: 16px; }
    .jt-mp-avatar__badge { width: 24px; height: 24px; bottom: 4px; right: 4px; }
    .jt-mp-hero__name-mobile .jt-mp-name { font-size: 22px; line-height: 1.1; }
    .jt-mp-bio { font-size: 14px; margin-top: 12px; }
    .jt-mp-about { gap: 8px; }
    .jt-mp-stats { gap: 16px; }
    .jt-mp-stat__num { font-size: 20px; }
    .jt-mp-post { padding: 18px 18px 16px; border-radius: 16px; margin-bottom: 14px; }
    .jt-mp-post__title { font-size: 20px; }
    .jt-mp-post__body  { font-size: 13.5px; }
    .jt-mp-post__media, .jt-mp-post__video { height: 240px; }
    .jt-mp-post__gallery {
        grid-template-columns: 1fr 1fr; grid-template-rows: 180px 100px;
        grid-template-areas: "a a" "b c";
    }
    .jt-mp-post__stats { gap: 4px; }
    .jt-mp-post__stat  { padding: 6px 8px; }
}
