/* ============================================================
   KIPÇAK JOURNAAL — Blog index (home.php)
   Editorial / magazine-style. Volledig zelfstandige naamruimte: kj-*
   Geen overlap met blog.css (single-post / archive) of main.css.
   ============================================================ */

.kj {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.kj .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   MASTHEAD
   ============================================================ */
.kj-masthead {
    padding: 120px 0 80px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224,122,95,0.10), transparent 65%),
        var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.kj-masthead::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 30%, #000 0%, transparent 75%);
    pointer-events: none;
}

.kj-masthead-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.kj-masthead-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}
.kj-masthead-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--accent);
    border-radius: 6px;
    color: var(--accent);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}
.kj-masthead-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.kj-masthead-wordmark em {
    font-style: italic;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.22em;
    text-transform: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
}
.kj-masthead-issue {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(15, 20, 30, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.kj-masthead-issue-no {
    color: var(--accent);
    font-weight: 700;
}
.kj-masthead-rule {
    position: relative;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border) 12%, var(--border) 88%, transparent);
    margin: 56px 0 64px;
}

.kj-masthead-body {
    position: relative;
    max-width: 920px;
}
.kj-masthead-title {
    font-size: clamp(2.4rem, 5.6vw, 4.4rem);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 32px;
    color: var(--text-primary);
}
.kj-masthead-title-em {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}
.kj-masthead-deck {
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 0 32px;
}
.kj-masthead-meta {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}
.kj-masthead-meta > span:not([aria-hidden]) {
    position: relative;
}

/* ============================================================
   FILTER
   ============================================================ */
.kj-filter {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(11, 16, 24, 0.85);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border-bottom: 1px solid var(--border);
}
.kj-filter-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}
.kj-filter-inner::-webkit-scrollbar { height: 0; }
.kj-filter-label {
    flex: 0 0 auto;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    padding-right: 18px;
    border-right: 1px solid var(--border);
}
.kj-filter-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.kj-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.22s ease;
}
.kj-chip:hover {
    color: var(--text-primary);
    border-color: var(--border-light);
    background: rgba(255,255,255,0.025);
}
.kj-chip.is-active {
    color: #0b1018;
    background: var(--accent);
    border-color: var(--accent);
    font-weight: 600;
}
.kj-chip-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 18px;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.kj-chip.is-active .kj-chip-count {
    background: rgba(0,0,0,0.22);
    color: rgba(0,0,0,0.7);
}

/* ============================================================
   FEATURED ESSAY
   ============================================================ */
.kj-feature {
    padding: 88px 0 80px;
    position: relative;
}
.kj-feature-eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 48px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.45em;
    text-transform: uppercase;
}
.kj-feature-eyebrow-text { flex: 0 0 auto; }
.kj-eyebrow-line {
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224,122,95,0.45), transparent);
    max-width: 240px;
}

.kj-feature-article {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding: 0 16px;
}
.kj-feature-meta-top {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}
.kj-feature-title {
    font-size: clamp(2.2rem, 5.2vw, 4rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.028em;
    margin: 0 0 28px;
    text-wrap: balance;
}
.kj-feature-title a {
    color: var(--text-primary);
    text-decoration: none;
    background-image: linear-gradient(var(--accent), var(--accent));
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: 0 1px;
    transition: background-size 0.5s ease, color 0.28s ease;
}
.kj-feature-title a:hover {
    background-size: 100% 1px;
    color: var(--accent);
}
.kj-feature-deck {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.65;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 40px;
    text-wrap: balance;
}
.kj-feature-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}
.kj-feature-byline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}
.kj-feature-byline-label {
    color: var(--text-faint);
}
.kj-feature-byline-name {
    color: var(--text-primary);
    font-weight: 600;
}
.kj-feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: var(--accent);
    color: #0b1018;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 1px solid var(--accent);
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 6px 22px rgba(224,122,95,0.22);
}
.kj-feature-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(224,122,95,0.32);
}
.kj-feature-cta svg {
    transition: transform 0.28s ease;
}
.kj-feature-cta:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   SECTION HEAD (Archive)
   ============================================================ */
.kj-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 28px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}
.kj-section-title {
    display: inline-flex;
    align-items: baseline;
    gap: 18px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text-primary);
}
.kj-section-no {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    font-size: 0.55em;
    color: var(--accent);
}
.kj-section-meta {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

/* ============================================================
   ARCHIVE LIST
   ============================================================ */
.kj-archive {
    padding: 24px 0 96px;
    background:
        linear-gradient(180deg, transparent, rgba(255,255,255,0.012) 30%, transparent),
        var(--bg-primary);
}
.kj-list {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: kj-list;
}
.kj-list-item {
    border-bottom: 1px solid var(--border);
}
.kj-entry {
    position: relative;
    display: grid;
    grid-template-columns: 100px 1fr 140px;
    gap: 36px;
    align-items: start;
    padding: 36px 0 38px;
    transition: padding 0.28s ease;
}
.kj-entry-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-decoration: none;
    border-radius: 8px;
}
.kj-entry-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 6px;
}
.kj-entry::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.38s cubic-bezier(.4,0,.2,1);
}
.kj-entry:hover::before {
    transform: scaleY(1);
}
.kj-entry:hover .kj-entry-no-value {
    color: var(--accent);
}
.kj-entry:hover .kj-entry-title {
    color: var(--accent);
}
.kj-entry:hover .kj-entry-arrow {
    transform: translateX(6px);
    color: var(--accent);
}

.kj-entry-no {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}
.kj-entry-no-label {
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--text-faint);
}
.kj-entry-no-value {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3.2rem;
    line-height: 1;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--text-muted);
    transition: color 0.28s ease;
}

.kj-entry-body {
    position: relative;
    z-index: 2;
    pointer-events: none;
}
.kj-entry-body > * {
    pointer-events: auto;
}
.kj-entry-meta-top {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}
.kj-entry-title {
    font-size: clamp(1.35rem, 2.3vw, 1.85rem);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.018em;
    margin: 0 0 14px;
    color: var(--text-primary);
    text-wrap: balance;
    transition: color 0.28s ease;
}
.kj-entry-deck {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 64ch;
    margin: 0 0 18px;
}
.kj-entry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.kj-entry-tags li span {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-faint);
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-weight: 500;
}

.kj-entry-side {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    min-height: 96px;
    text-align: right;
    pointer-events: none;
}
.kj-entry-time {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}
.kj-entry-time span {
    display: block;
    margin-top: 4px;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--text-faint);
    font-weight: 600;
}
.kj-entry-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    color: var(--text-muted);
    transition: all 0.32s cubic-bezier(.4,0,.2,1);
}

/* shared bits */
.kj-tag {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.22s ease;
}
.kj-tag:hover {
    background: rgba(224,122,95,0.22);
}
.kj-tag--ghost {
    background: transparent;
    border: 1px solid rgba(224,122,95,0.32);
    color: var(--accent);
}
.kj-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.5;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.kj-pagination {
    margin-top: 56px;
    display: flex;
    justify-content: center;
}
.kj-pagination .nav-links,
.kj-pagination .navigation,
.kj-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}
.kj-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.22s ease;
}
.kj-pagination .page-numbers:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-soft);
}
.kj-pagination .page-numbers.current {
    background: var(--accent);
    border-color: var(--accent);
    color: #0b1018;
}
.kj-pagination .page-numbers.dots {
    border-color: transparent;
    color: var(--text-faint);
}

/* ============================================================
   COLOPHON / CTA
   ============================================================ */
.kj-colophon {
    padding: 88px 0 96px;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(110,195,197,0.06), transparent 65%),
        radial-gradient(ellipse 60% 80% at 0% 100%, rgba(224,122,95,0.08), transparent 65%),
        var(--bg-secondary);
}
.kj-colophon-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}
.kj-colophon-card {
    padding: 44px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}
.kj-colophon-card--cta {
    background:
        radial-gradient(ellipse 80% 80% at 0% 0%, rgba(224,122,95,0.14), transparent 70%),
        var(--bg-card);
    border-color: rgba(224,122,95,0.25);
}
.kj-colophon-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.kj-colophon-title {
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin: 0 0 16px;
    color: var(--text-primary);
    text-wrap: balance;
}
.kj-colophon-card p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 28px;
    max-width: 46ch;
}

.kj-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    font-family: inherit;
}
.kj-button--primary {
    background: var(--accent);
    color: #0b1018;
    border-color: var(--accent);
    box-shadow: 0 6px 22px rgba(224,122,95,0.22);
}
.kj-button--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(224,122,95,0.30);
}
.kj-button--primary svg { transition: transform 0.28s ease; }
.kj-button--primary:hover svg { transform: translateX(4px); }
.kj-button--dark {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-color: var(--border-light);
}
.kj-button--dark:hover {
    background: var(--accent);
    color: #0b1018;
    border-color: var(--accent);
}

.kj-news-form {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.kj-news-input {
    flex: 1 1 220px;
    min-width: 0;
    padding: 13px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 999px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.22s ease, background 0.22s ease;
}
.kj-news-input::placeholder { color: var(--text-faint); }
.kj-news-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(224,122,95,0.04);
}
.kj-news-form.is-sent .kj-news-input { display: none; }
.kj-news-form.is-sent .kj-button { flex: 1 1 100%; justify-content: center; }
.kj-news-fineprint {
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.04em;
    margin: 0 !important;
}

.kj-footer-rule {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--text-faint);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
}
.kj-footer-rule-line {
    flex: 1 1 auto;
    height: 1px;
    background: var(--border);
}
.kj-footer-rule-text {
    flex: 0 0 auto;
    white-space: nowrap;
    text-transform: none;
    letter-spacing: 0.12em;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-muted);
    font-size: 12px;
}

/* ============================================================
   EMPTY
   ============================================================ */
.kj-empty {
    padding: 80px 0;
    text-align: center;
    color: var(--text-muted);
    border: 1px dashed var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
}

/* ============================================================
   RESPONSIVE — Tablet
   ============================================================ */
@media (max-width: 1024px) {
    .kj-masthead {
        padding: 88px 0 64px;
    }
    .kj-masthead-rule { margin: 40px 0 48px; }
    .kj-feature { padding: 64px 0 56px; }
    .kj-feature-eyebrow { margin-bottom: 36px; }

    .kj-entry {
        grid-template-columns: 80px 1fr 110px;
        gap: 24px;
        padding: 28px 0 30px;
    }
    .kj-entry-no-value { font-size: 2.4rem; }
    .kj-entry-time { font-size: 1.5rem; }

    .kj-colophon-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 720px) {
    .kj-masthead {
        padding: 72px 0 52px;
    }
    .kj-masthead-top {
        gap: 16px;
    }
    .kj-masthead-issue {
        font-size: 10px;
        padding: 6px 14px;
        gap: 12px;
    }
    .kj-masthead-rule { margin: 32px 0 36px; }
    .kj-masthead-title { margin-bottom: 24px; }
    .kj-masthead-deck { margin-bottom: 24px; }

    .kj-filter-inner {
        padding: 14px 0;
        gap: 14px;
    }
    .kj-filter-label {
        padding-right: 12px;
    }
    .kj-chip {
        padding: 7px 12px;
        font-size: 12px;
    }

    .kj-feature {
        padding: 48px 0;
    }
    .kj-feature-eyebrow {
        margin-bottom: 28px;
        gap: 12px;
    }
    .kj-eyebrow-line { max-width: 60px; }
    .kj-feature-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    .kj-feature-byline { justify-content: center; }
    .kj-feature-cta { justify-content: center; width: 100%; }

    .kj-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding-bottom: 20px;
    }

    .kj-archive { padding: 16px 0 64px; }
    .kj-entry {
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "no    body"
            "side  side";
        gap: 18px;
        padding: 24px 0 26px;
    }
    .kj-entry-no { grid-area: no; }
    .kj-entry-body { grid-area: body; }
    .kj-entry-side {
        grid-area: side;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: auto;
        min-height: 0;
        padding-top: 14px;
        margin-top: 4px;
        border-top: 1px solid var(--border);
    }
    .kj-entry-no-value { font-size: 1.8rem; }
    .kj-entry-time { font-size: 1.15rem; }
    .kj-entry-time span { display: inline; margin-left: 8px; margin-top: 0; }
    .kj-entry-deck { font-size: 0.95rem; }
    .kj-entry::before { left: -16px; }

    .kj-colophon { padding: 64px 0 72px; }
    .kj-colophon-card { padding: 32px 24px; }
    .kj-colophon-grid { gap: 16px; margin-bottom: 48px; }

    .kj-footer-rule {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
    .kj-footer-rule-line { width: 60%; }
}

