/* ── Self-hosted fonts ── */
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('/assets/fonts/noto-sans-jp-v56-japanese-300.woff2') format('woff2');
}
@font-face {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/shippori-mincho-v17-latin-regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/shippori-mincho-v17-latin-500.woff2') format('woff2');
}

/* ── Variables ── */
:root {
    --bg:           #f5f0f2;
    --bg2:          #ede8ea;
    --surface:      #ffffff;
    --text:         #111110;
    --text-muted:   #505050;
    --text-subtle:  #7a7a78;
    --accent:       #d81b60;
    --accent-hover: #ad1457;
    --border:       rgba(0, 0, 0, 0.055);
    --border-mid:   rgba(0, 0, 0, 0.09);
    --shadow:       0 1px 12px rgba(0, 0, 0, 0.06);
    --radius:       2px;
    --sidebar-w:    200px;
}

[data-theme="dark"] {
    --bg:           #1a1618;
    --bg2:          #221e20;
    --surface:      #2a2428;
    --text:         #ededed;
    --text-muted:   #969692;
    --text-subtle:  #6a6a68;
    --accent:       #f06292;
    --accent-hover: #f48fb1;
    --border:       rgba(255, 255, 255, 0.05);
    --border-mid:   rgba(255, 255, 255, 0.09);
    --shadow:       0 1px 12px rgba(0, 0, 0, 0.4);
}

/* ── Reset ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: clamp(14px, 2vw, 16px);
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.85;
    font-weight: 300;
    transition: background 0.3s, color 0.3s;
    min-height: 100vh;
    padding-left: var(--sidebar-w);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Sidebar ── */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-w);
    height: 100vh;
    background: rgba(245, 240, 242, 0.75);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, background 0.3s;
}

[data-theme="dark"] .sidebar {
    background: rgba(26, 22, 24, 0.75);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2rem 0 1.6rem;
}

/* ロゴ */
.sidebar-logo {
    display: flex;
    justify-content: center;   /* 真ん中に */
    padding: 2rem 1.4rem 2rem; /* 上下余白調整 */
    border-bottom: none;       /* 区切り線なし */
}

.sidebar-logo:hover { color: var(--accent); }

.sidebar-logo svg {
    width: 48px;
    height: 48px;
}

.sidebar-logo-text {
    font-family: 'Shippori Mincho', serif;
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: .06em;
    line-height: 1.4;
}

/* ナビ */
.sidebar-nav {
    padding-top: 1rem; /* ロゴとの間隔少し詰める */
}

.sidebar-nav a {
    display: block;
    padding: .55rem 1.4rem;
    font-size: .78rem;
    color: var(--text-subtle);
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s;
    border-left: 2px solid transparent;
}
.sidebar-nav a:hover { color: var(--text); }
.sidebar-nav a.active {
    color: var(--text);
    border-left-color: var(--accent);
    font-weight: 500;
}

/* サブリンク */
.sidebar-sub {
    display: flex;
    flex-direction: column;
    padding: .8rem 0 0;
    border-top: 1px solid var(--border);
    margin-top: .8rem;
}
.sidebar-sub a {
    display: block;
    padding: .35rem 1.4rem;
    font-size: .68rem;
    color: var(--text-subtle);
    letter-spacing: .05em;
    opacity: .65;
    transition: color 0.2s, opacity 0.2s;
}
.sidebar-sub a:hover { color: var(--text-muted); opacity: 1; }

/* ボトム */
.sidebar-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.4rem 0;
    margin-top: auto;
}

.sidebar-copy {
    font-size: .62rem;
    color: var(--text-subtle);
    letter-spacing: .04em;
    opacity: .55;
    line-height: 1.7;
}
.sidebar-copy a {
    color: var(--text-subtle);
    transition: color 0.2s;
}
.sidebar-copy a:hover { color: var(--accent); }

[data-theme="dark"] .sidebar-copy {
    color: var(--text-muted);
    opacity: .8;
}

[data-theme="dark"] .sidebar-copy a {
    color: var(--text-muted);
}

/* テーマボタン */
.theme-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-subtle);
    border-radius: 50%;
    transition: color 0.2s;
    flex-shrink: 0;
}
.theme-btn:hover { color: var(--accent); }

/* ── Mobile header ── */
.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(245, 240, 242, 0.75);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
    transition: background 0.3s;
}

[data-theme="dark"] .mobile-header {
    background: rgba(26, 22, 24, 0.75);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.mobile-header-inner {
    height: 52px;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--text);
}
.mobile-logo svg { width: 28px; height: 28px; }
.mobile-logo-text {
    font-family: 'Shippori Mincho', serif;
    font-size: .75rem;
    letter-spacing: .05em;
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}
.hamburger span {
    display: block;
    width: 16px;
    height: 1px;
    background: var(--text-muted);
    border-radius: 1px;
    transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Fullscreen menu (mobile) ── */
.fullscreen-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    padding: 52px 2rem 2rem;
}
.fullscreen-menu.open { display: flex; }

.fullscreen-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .1rem;
}
.fullscreen-menu-nav a {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(2rem, 10vw, 3rem);
    font-weight: 500;
    color: var(--text);
    padding: .3rem 0;
    transition: color 0.2s;
    letter-spacing: .02em;
}
.fullscreen-menu-nav a:last-child { border-bottom: none; }
.fullscreen-menu-nav a:hover,
.fullscreen-menu-nav a.active { color: var(--accent); }

.fullscreen-menu-sub {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.fullscreen-menu-sub a {
    font-size: .8rem;
    color: var(--text-subtle);
    transition: color 0.2s;
    letter-spacing: .05em;
}
.fullscreen-menu-sub a:hover { color: var(--text-muted); }

.fullscreen-menu-copy {
    font-size: .65rem;
    color: var(--text-subtle);
    opacity: .5;
    margin-top: 1rem;
    letter-spacing: .04em;
}

/* ── Layout ── */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

main {
    padding-bottom: 5rem;
}

/* ── Section label ── */
.section-label {
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-bottom: 1.8rem;
}

/* ── Blog list ── */
.blog-section {
    padding: 3.5rem 0;
}

/* カードグリッド */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
}

.card {
    background: var(--bg);
    display: block;
    text-decoration: none;
    transition: background 0.2s;
}
.card:hover { background: var(--bg2); }

.card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--bg2);
    position: relative;
}
.card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.card:hover .card-thumb img { transform: scale(1.03); }

.card-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
}
.card-thumb-placeholder svg {
    width: 28px;
    height: 28px;
    opacity: .12;
    color: var(--text);
}

.card-body {
    padding: 1rem 1.2rem 1.2rem;
}

.card-tags {
    display: flex;
    gap: .35rem;
    margin-bottom: .6rem;
    flex-wrap: wrap;
}
.card-tag {
    font-size: .58rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-subtle);
    background: var(--bg2);
    padding: .12rem .5rem;
    border-radius: 1px;
}
.card-tag.accent {
    color: var(--accent);
    background: transparent;
    border: 1px solid var(--accent);
    opacity: .7;
}

.card-title {
    font-size: .9rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: .4rem;
    transition: color 0.2s;
}
.card:hover .card-title { color: var(--accent); }

.card-desc {
    font-size: .75rem;
    color: var(--text-subtle);
    line-height: 1.7;
    font-weight: 300;
}

.card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .8rem;
    padding-top: .7rem;
    border-top: 1px solid var(--border);
}
.card-date {
    font-size: .62rem;
    color: var(--text-subtle);
    font-variant-numeric: tabular-nums;
}
.card-weather {
    font-size: .62rem;
    color: var(--text-subtle);
    opacity: .7;
}

/* フィーチャードカード（最新記事） */
.card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}
.card-featured .card-thumb {
    aspect-ratio: unset;
    height: 100%;
    min-height: 200px;
}
.card-featured .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.8rem 1.6rem;
}
.card-featured .card-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.15rem;
    line-height: 1.45;
}

/* ── Article ── */
.article-wrap {
    padding: 3.5rem 0 5rem;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    color: var(--text-subtle);
    margin-bottom: 2.5rem;
    transition: color 0.2s;
    letter-spacing: .04em;
}
.article-back:hover { color: var(--accent); }

.article-thumb {
    margin-bottom: 2.5rem;
    border-radius: var(--radius);
    overflow: hidden;
}
.article-thumb img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}
.thumb-credit {
    font-size: .65rem;
    color: var(--text-subtle);
    margin-top: .4rem;
    opacity: .6;
}
.thumb-credit a { color: var(--text-subtle); border-bottom: 1px solid var(--border-mid); }
.thumb-credit a:hover { color: var(--accent); }

.article-meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-bottom: .8rem;
    flex-wrap: wrap;
}
.article-date {
    font-size: .75rem;
    color: var(--text-subtle);
    font-variant-numeric: tabular-nums;
}
.article-weather {
    font-size: .72rem;
    color: var(--text-subtle);
    opacity: .7;
}
.article-updated {
    font-size: .68rem;
    color: var(--text-subtle);
    opacity: .6;
}

.article-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.article-tags {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}
.article-tag {
    font-size: .62rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-subtle);
    border: 1px solid var(--border-mid);
    padding: .15rem .6rem;
    border-radius: 999px;
    transition: border-color 0.2s, color 0.2s;
}
.article-tag:hover { border-color: var(--accent); color: var(--accent); }

/* 記事本文 */
.article-body {
    font-size: .975rem;
    line-height: 2;
}
.article-body h2 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}
.article-body h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-top: 2rem;
    margin-bottom: .8rem;
}
.article-body p { margin-bottom: 1.5rem; }
.article-body img {
    margin: 2rem auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.article-body blockquote {
    border-left: 2px solid var(--accent);
    padding: .4rem 0 .4rem 1.2rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
    font-style: italic;
    opacity: .85;
}
.article-body code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: .875em;
    background: var(--bg2);
    padding: .1em .4em;
    border-radius: 3px;
    color: var(--accent);
}
.article-body pre {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.article-body pre code {
    background: none;
    padding: 0;
    color: var(--text-muted);
}
.article-body hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 2.5rem 0;
}
.article-body ul,
.article-body ol {
    padding-left: 1.4rem;
    margin-bottom: 1.2rem;
}
.article-body li { margin-bottom: .35rem; }
.article-body strong { color: var(--accent); font-weight: 500; }
.article-body a {
    color: var(--accent);
    border-bottom: 1px solid rgba(216, 27, 96, .2);
    transition: border-color 0.2s;
}
[data-theme="dark"] .article-body a {
    border-bottom-color: rgba(240, 98, 146, .2);
}
.article-body a:hover { border-color: var(--accent); }

/* mark */
mark {
    background-color: color-mix(in srgb, var(--accent) 15%, transparent);
    color: var(--text);
    padding: .1em .35em;
    border-radius: 2px;
}

/* テーブル */
table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1.5px solid var(--text);
    margin-bottom: 1.5em;
    font-size: .88rem;
    line-height: 1.7;
}
thead tr th {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 400;
    text-align: left;
    padding: 10px 16px;
    background: var(--bg2);
    border-bottom: 1px solid var(--border-mid);
}
tbody tr td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    vertical-align: top;
}
tbody tr td:first-child {
    border-right: 1px solid var(--border);
    width: 30%;
}
tbody tr:hover td { background: var(--bg2); transition: background 0.15s; }

/* ── Responsive ── */
@media (max-width: 768px) {
    body { padding-left: 0; }
    .sidebar { display: none; }
    .mobile-header { display: block; }
    .hamburger { display: flex; }
}

@media (max-width: 640px) {
    .container, .container-wide { padding: 0 1.2rem; }
    .article-title { font-size: 1.3rem; }
    .card-featured {
        grid-template-columns: 1fr;
    }
    .card-featured .card-thumb {
        min-height: 160px;
    }
}

/* ── Selection ── */
::selection { background: var(--accent); color: #fff; }
::-moz-selection { background: var(--accent); color: #fff; }
[data-theme="dark"] ::selection { background: var(--accent); color: #1a1618; }
[data-theme="dark"] ::-moz-selection { background: var(--accent); color: #1a1618; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-mid); border-radius: 2px; }

/* ── 特別な日 ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}
body.birthday-mode::before {
    background: radial-gradient(ellipse at 80% 20%, rgba(240, 98, 146, .18) 0%, transparent 55%),
                radial-gradient(ellipse at 20% 80%, rgba(216, 27, 96, .10) 0%, transparent 55%);
    opacity: 1;
}
body.memorial-mode::before {
    background: radial-gradient(ellipse at 50% 0%, rgba(100, 140, 190, .22) 0%, transparent 65%);
    opacity: 1;
}
body.newyear-mode::before {
    background: radial-gradient(ellipse at 70% 10%, rgba(255, 200, 80, .18) 0%, transparent 55%);
    opacity: 1;
}

/* ── Last.fm モーダル ── */
.lfm-backdrop {
    position: fixed; inset: 0; z-index: 502;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    opacity: 0; pointer-events: none;
    transition: opacity .25s;
}
.lfm-backdrop.open { opacity: 1; pointer-events: auto; }

.lfm-modal {
    position: absolute;  /* fixed → absolute */
    top: calc(100% + .6rem);
    left: 0;
    width: 280px;
    background: var(--bg);
    border: 1px solid var(--border-mid);
    border-radius: 6px;
    padding: 1.2rem 1.4rem 1rem;
    opacity: 0; pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .2s, transform .2s;
    z-index: 501;
}
.lfm-modal.open { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 768px) {
    .lfm-modal { left: 1rem; right: 1rem; width: auto; }
}

.lfm-modal-label {
    font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
    color: var(--text-subtle); opacity: .6;
}
.lfm-list { list-style: none; }
.lfm-item {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 0; border-bottom: 1px solid var(--border);
}
.lfm-item:last-child { border-bottom: none; }
.lfm-rank { font-size: .62rem; color: var(--text-subtle); width: 12px; text-align: right; flex-shrink: 0; opacity: .45; font-variant-numeric: tabular-nums; }
.lfm-art { width: 30px; height: 30px; border-radius: 2px; object-fit: cover; flex-shrink: 0; background: var(--bg2); }
.lfm-art-ph { width: 30px; height: 30px; border-radius: 2px; background: var(--bg2); flex-shrink: 0; display: flex; align-items: center; justify-content: center; opacity: .3; }
.lfm-info { flex: 1; min-width: 0; }
.lfm-name { font-size: .78rem; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s; }
.lfm-artist { font-size: .67rem; color: var(--text-subtle); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.lfm-plays { font-size: .62rem; color: var(--text-subtle); flex-shrink: 0; font-variant-numeric: tabular-nums; opacity: .55; }
.lfm-item a:hover .lfm-name { color: var(--accent); }

@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
    .mobile-header {
        display: block;
    }
    .hamburger {
        display: flex;
    }
}

mark {
    background: rgba(var(--accent-rgb), 0.25);
    color: var(--text);
    border-radius: 2px;
    padding: 0 .2em;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.article-footer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .75rem;
    color: var(--text-subtle);
}
.article-author {
    display: flex;
    align-items: center;
    gap: .3rem;
}
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
}
.article-tag {
    font-size: .65rem;
    letter-spacing: .08em;
    border: 1px solid var(--border-mid);
    border-radius: 999px;
    padding: .2rem .7rem;
    color: var(--text-subtle);
    transition: all .2s;
}
.article-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.article-share {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.article-share-label {
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-subtle);
    margin-right: .3rem;
}
.article-share-btn {
    font-size: .68rem;
    letter-spacing: .06em;
    border: 1px solid var(--border-mid);
    border-radius: 999px;
    padding: .25rem .8rem;
    color: var(--text-subtle);
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    text-decoration: none;
}
.article-share-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.article-related {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.article-related-grid {
    display: flex;
    flex-direction: column;
    gap: .8rem;
    margin-top: 1rem;
}
.article-related-card {
    display: flex;
    gap: .8rem;
    align-items: center;
    border-radius: 8px;
    padding: .6rem;
    transition: background .2s;
}
.article-related-card:hover {
    background: var(--bg2);
}
.article-related-thumb {
    width: 72px;
    height: 48px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg2);
}
.article-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article-related-thumb-ph {
    background: var(--bg2);
}
.article-related-body {
    min-width: 0;
}
.article-related-title {
    font-size: .82rem;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.article-related-date {
    font-size: .68rem;
    color: var(--text-subtle);
    margin-top: .2rem;
}

.article-author {
    font-size: .75rem;
    color: var(--text-subtle);
}
.article-tag {
    font-size: .65rem;
    letter-spacing: .08em;
    border: 1px solid var(--border-mid);
    border-radius: 999px;
    padding: .2rem .7rem;
    color: var(--text-subtle);
    transition: all .2s;
}
.article-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
}