﻿html {
    font-size: 14px;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /*overflow-y: auto;*/
    min-height: 100%;
}

    /* Lock scroll only on viewer page */
    body.viewer-mode {
        overflow: hidden;
        height: 100dvh;
    }

      /*  body.viewer-mode html {
            overflow: hidden;
            height: 100vh;
        }*/

/* ════════════════════════════════════════
   PAPER HEADER (global, top of page)
   ════════════════════════════════════════ */
.paper-header {
    background: #fff;
    border-bottom: 3px solid #c0392b;
    text-align: center;
    padding: 0.75rem 1rem 0.6rem;
}

.paper-header-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.paper-name-kn {
    font-family: Georgia, serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #c0392b;
    line-height: 1;
    letter-spacing: 2px;
}

.paper-subtitle-kn {
    font-family: Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-top: 2px;
    letter-spacing: 1px;
}

.paper-tagline {
    font-size: 0.85rem;
    color: #888;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 3px;
}

.paper-date {
    color: #c0392b;
    letter-spacing: 1px;
    font-weight: 700;
}

/* ════════════════════════════════════════
   VIEWER WRAPPER
   ════════════════════════════════════════ */
/*.viewer-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 88dvh;
    overflow: hidden;
    background: #f5f0e8;
    width: 100%;
    margin: 0;
    padding: 0;
}*/

:root {
    --naresh-touch-target: 44px;
    --naresh-paper: #e5d6d5;
    --naresh-radius-md: 8px;
    --naresh-ease: cubic-bezier(0.4, 0, 0.2, 1);
    --header-offset: 0px;
}
.viewer-wrapper {
    display: flex;
    flex-direction: column;
    height: calc(99dvh - 70px);
    min-height: 0;
    width: 100%;
    overflow: hidden;
    background: #f5f0e8;
}
/* ════════════════════════════════════════════════════════════════════
   NARESH-* CUSTOM VIEWER UI
   (floating page chip + side nav buttons + custom topbar back link)
   ════════════════════════════════════════════════════════════════════ */

/* CSS variables used by .naresh-* rules */
/*:root {
    --naresh-touch-target: 44px;
    --naresh-paper: #e5d6d5;
    --naresh-radius-md: 8px;
    --naresh-ease: cubic-bezier(0.4, 0, 0.2, 1);
}*/

/* Floating "Page X of Y" pill */
.naresh-pagechip {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    background: rgba(42, 42, 42, 0.85);
    color: #e5d6d5;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    z-index: 1000;
    pointer-events: none;
    opacity: 1;
}

/* Topbar back link (alternative style) */
.naresh-topbar__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: var(--naresh-touch-target);
    padding: 0 10px;
    color: var(--naresh-paper);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--naresh-radius-md);
    transition: background 150ms var(--naresh-ease);
}

/* Generic icon size */
.naresh-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Floating side nav buttons (prev/next) */
.naresh-navbtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 48px;
    height: 64px;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(42, 42, 42, 0.85);
    color: #e5d6d5;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.naresh-navbtn--prev {
    left: 16px;
}

.naresh-navbtn--next {
    right: 16px;
}

.naresh-navbtn:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.05);
}

.naresh-navbtn:disabled {
    opacity: 0.35;
    cursor: default;
}

.naresh-navbtn .naresh-icon {
    width: 24px;
    height: 24px;
}

/* ── Topbar (desktop) ── */
.viewer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*padding: 0.5rem 1.5rem;*/
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 20px;
    background: #fff;
    border-bottom: 1px solid #ece7dd;
    flex-shrink: 0;
    gap: 1rem;
}

.viewer-back {
    color: #1e2023;
    text-decoration: none;
    font-family: Georgia, serif;
    font-weight: 600;
    font-size: 15px;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 44px;
}

    .viewer-back:hover {
        color: #c0392b;
    }

.viewer-edition {
    text-align: center;
    font-family: Georgia, serif;
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

    .viewer-edition strong {
        display: block;
        font-size: 0.95rem;
        color: #fff;
        letter-spacing: 0.5px;
    }

    .viewer-edition small {
        display: block;
        text-align: center;
        font-size: 0.95rem;
        color: #c0392b;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.layout-edition {
    text-align: center;
    font-family: Georgia, serif;
}

    .layout-edition strong {
        display: block;
        font-size: 2.95rem;
        color: #c0392b;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .layout-edition small {
        font-size: 0.65rem;
        color: #888;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

.viewer-nav-btns {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: flex-end;
}

.viewer-nav-btn {
    background: none;
    border: 0.5px solid #333;
    color: #1e2023;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0.3rem 0.85rem;
    font-family: Georgia, serif;
    letter-spacing: 0.5px;
    transition: border-color 0.15s, color 0.15s;
    line-height: 1.4;
}

    .viewer-nav-btn:hover {
        border-color: #c0392b;
        color: #c0392b;
    }

    .viewer-nav-btn:disabled {
        color: #333;
        border-color: #222;
        cursor: default;
    }

/* ── Viewer body ── */
.viewer-body {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    display: flex;
    overflow: hidden;
}

/* ── Main image area ── */
.viewer-main {
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    overflow: hidden;
    padding: 8px;
    position: relative;
    background: #f5f0e8;
}

    .viewer-main::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    .viewer-main::-webkit-scrollbar-track {
        background: #f5f0e8;
    }

    .viewer-main::-webkit-scrollbar-thumb {
        background: #ccc;
    }

#zoomContainer {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    overflow: auto;
    position: relative;
    touch-action: manipulation;
    -webkit-overflow-scrolling: touch;
}

/*.main-page-img {
    display: block;
    width: 100%;
    height: auto;
    border: 0.5px solid #ddd;
    cursor: zoom-in;
    user-select: none;
    touch-action: manipulation;
    margin: 0 auto;
}*/
.main-page-img {
    display: block;
    width: auto;
    max-width: none;
    height: auto;
    max-height: none;
    margin: 0;
    border: 0.5px solid #ddd;
    user-select: none;
    -webkit-user-drag: none;
}

    .main-page-img.zoomed {
        cursor: grab;
    }

/* ── Loader overlay ── */
.loader-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

    .loader-overlay.show {
        opacity: 1;
        pointer-events: all;
    }

.loader-spinner {
    width: 32px;
    height: 32px;
    border: 2px solid #333;
    border-top-color: #c0392b;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ════════════════════════════════════════
   COMBINED FOOTER (desktop)
   ════════════════════════════════════════ */
.viewer-footer {
    background: #1a1a1a;
    border-top: 2px solid #c0392b;
    display: flex;
    align-items: center;
    padding: 8px 84px;
    gap: 14px;
    flex-shrink: 0;
}

/* ── Zoom slider control (left) ── */
.zoom-control {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    min-width: 180px;
}

.zoom-icon {
    width: 22px;
    height: 22px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    transition: background 0.15s, color 0.15s;
    font-family: Georgia, serif;
}

    .zoom-icon:hover {
        background: #c0392b;
        color: #fff;
    }

.zoom-slider {
    flex: 1;
    height: 3px;
    background: #444;
    position: relative;
    cursor: pointer;
    min-width: 70px;
}

.zoom-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #c0392b;
    width: 0%;
    transition: width 0.1s;
    pointer-events: none;
}

.zoom-thumb {
    position: absolute;
    width: 11px;
    height: 11px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 0%;
    transition: left 0.1s;
    pointer-events: none;
}

.zoom-pct {
    font-size: 18px;
    color: #999;
    min-width: 40px;
    text-align: right;
    font-family: Georgia, serif;
}

/* new zoom magnifier styles */
/* Button-styled zoom icons (transparent, icon-only) */
button.zoom-icon {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    color: #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, transform 0.15s;
    font-family: inherit;
    line-height: 0;
}

    button.zoom-icon:hover {
        background: transparent;
        color: #fff;
        transform: scale(1.1);
    }

    button.zoom-icon:focus-visible {
        outline: 2px solid #c0392b;
        outline-offset: 2px;
    }

    /* Active/pressed state */
    button.zoom-icon:active {
        transform: scale(0.95);
    }

/* SVG icon inside */
.zoom-icon .naresh-icon {
    width: 22px;
    height: 22px;
    color: inherit;
    transition: color 0.15s;
}

/* ── Divider between sections ── */
.footer-divider {
    width: 1px;
    height: 36px;
    background: #333;
    flex-shrink: 0;
}

/* ── Horizontal thumbnails strip (center) ── */
.footer-thumbs {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 4px;
    scrollbar-width: thin;
    scrollbar-color: #444 #222;
}

    .footer-thumbs::-webkit-scrollbar {
        height: 4px;
    }

    .footer-thumbs::-webkit-scrollbar-thumb {
        background: #444;
    }

    .footer-thumbs::-webkit-scrollbar-track {
        background: #222;
    }

    .footer-thumbs .thumb-item {
        flex-shrink: 0;
        cursor: pointer;
        opacity: 0.5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        transition: opacity 0.15s;
        padding: 0;
        border: none;
    }

        .footer-thumbs .thumb-item:hover {
            opacity: 0.85;
        }

        .footer-thumbs .thumb-item.active {
            opacity: 1;
        }

        .footer-thumbs .thumb-item img {
            width: 42px;
            height: 56px;
            object-fit: cover;
            border: 1.5px solid transparent;
            display: block;
            background: #333;
            margin: 0;
        }

        .footer-thumbs .thumb-item.active img {
            border-color: #c0392b;
        }

        .footer-thumbs .thumb-item span {
            font-size: 9px;
            color: #888;
            font-family: Georgia, serif;
        }

        .footer-thumbs .thumb-item.active span {
            color: #fff;
            font-weight: 700;
        }

/* ── Page counter (right) ── */
.viewer-footer .page-counter {
    font-size: 18px;
    color: #aaa;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: Georgia, serif;
}

    .viewer-footer .page-counter b {
        color: #fff;
        font-weight: 700;
    }

/* ════════════════════════════════════════
   EDITIONS PAGE
   ════════════════════════════════════════ */
.editions-hero {
    text-align: center;
    padding: 0.75rem 0 0.5rem;
    border-bottom: 3px double #111;
    margin-bottom: 2rem;
}

    .editions-hero h1 {
        font-family: Georgia, serif;
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: #111;
        line-height: 1;
        margin: 0;
    }

.editions-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

    .editions-rule hr {
        width: 50px;
        border: none;
        border-top: 1px solid #999;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
    }

    .editions-rule span {
        font-size: 0.62rem;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #888;
        font-family: Georgia, serif;
        white-space: nowrap;
    }

.editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.edition-card {
    background: #fff;
    border: 0.5px solid #ccc;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.15s, border-color 0.15s;
    overflow: hidden;
}

    .edition-card:hover {
        transform: translateY(-3px);
        border-color: #111;
    }

    .edition-card.latest {
        border: 2px solid #c0392b;
    }

.edition-badge {
    background: #c0392b;
    color: #fff;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 10px;
    text-align: center;
    font-family: Georgia, serif;
}

.edition-cover {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #e8e0d0;
    border-bottom: 0.5px solid #ddd;
}

    .edition-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.edition-meta {
    padding: 0.65rem 0.75rem 0.75rem;
}

.ed-date {
    font-size: 0.65rem;
    color: #c0392b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: Georgia, serif;
}

.ed-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
    margin-top: 3px;
    font-family: Georgia, serif;
}

.ed-pages {
    font-size: 0.65rem;
    color: #999;
    margin-top: 3px;
    font-family: Georgia, serif;
}

/* ── Editions search ── */
.editions-search {
    margin-bottom: 2rem;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 0.5px solid #ddd;
    border-left: 4px solid #c0392b;
}

.search-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c0392b;
    margin-bottom: 0.6rem;
    font-family: Georgia, serif;
}

.search-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.search-input {
    padding: 0.55rem 0.75rem;
    border: 0.5px solid #ccc;
    font-family: Georgia, serif;
    font-size: 0.9rem;
    color: #111;
    background: #faf9f7;
    transition: border-color 0.15s;
    border-radius: 0;
}

    .search-input:focus {
        outline: none;
        border-color: #111;
        background: #fff;
    }

.search-btn {
    padding: 0.55rem 1.25rem;
    background: #c0392b;
    color: #fff;
    border: none;
    font-family: Georgia, serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

    .search-btn:hover {
        background: #c0392b;
    }

.search-error {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: #c0392b;
    font-family: Georgia, serif;
}

/* ── Section header ── */
.editions-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-family: Georgia, serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
}

    .editions-section-header hr {
        flex: 1;
        border: none;
        border-top: 0.5px solid #ccc;
    }

/* ── Empty state ── */
.editions-empty {
    text-align: center;
    padding: 4rem 1rem;
    font-family: Georgia, serif;
    color: #888;
}

    .editions-empty p {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }

/* ── Search result ── */
.search-result-wrapper {
    display: grid;
    grid-template-columns: 200px;
    margin-bottom: 2.5rem;
}

.search-result-card {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.edition-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 1.2rem;
    color: #888;
    background: #e8e0d0;
}

/* ════════════════════════════════════════
   NAV (legacy / unused but kept)
   ════════════════════════════════════════ */
.site-nav {
    background: #111;
    border-bottom: 3px solid #c0392b;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 56px;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem 0;
}

.masthead {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.tagline {
    font-size: 0.6rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-date {
    font-family: Georgia, serif;
    font-size: 0.72rem;
    color: #aaa;
    display: flex;
    align-items: center;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: stretch;
}

.nav-link {
    color: #ccc;
    font-family: Georgia, serif;
    font-size: 0.72rem;
    text-decoration: none;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 0.5px solid #2a2a2a;
    transition: background 0.15s, color 0.15s;
}

    .nav-link:hover,
    .nav-link.active {
        background: #c0392b;
        color: #fff;
    }

main {
    width: 100%;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.error-wrapper {
    text-align: center;
    padding: 5rem 1rem;
    font-family: Georgia, serif;
}

.error-code {
    font-size: 4rem;
    font-weight: 700;
    color: #c0392b;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.error-message {
    font-size: 1rem;
    color: #666;
    margin: 1rem 0 2rem;
}

.error-home-link {
    font-size: 0.8rem;
    color: #111;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    transition: color 0.15s, border-color 0.15s;
}

    .error-home-link:hover {
        color: #c0392b;
        border-color: #c0392b;
    }

#blazor-error-ui {
    display: none;
    background: #c0392b;
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

/* ════════════════════════════════════════════════════════════════════
   ════════════════════════════════════════════════════════════════════
   MOBILE OVERRIDES — max-width: 768px
   (ALL mobile rules consolidated here at the BOTTOM so they win
    over desktop rules above, by source order.)
   ════════════════════════════════════════════════════════════════════
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .paper-header {
        padding: 6px 12px;
        border-bottom: 2px solid #c0392b;
    }

    .paper-name-kn {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .paper-subtitle-kn {
        font-size: 0.7rem;
    }

    .paper-tagline {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    .viewer-wrapper {
        height: calc(100dvh - 70px);
        min-height: 0;
    }

    .viewer-topbar {
        padding: 0px 8px 0px;
        gap: 6px;
    }

    .viewer-back {
        font-size: 0.72rem;
        min-width: auto;
    }

    .viewer-edition {
        font-size: 0.78rem;
    }

    .viewer-topbar > div[style*="min-width:60px"] {
        display: none;
    }

    .viewer-main {
        padding: 0;
        min-height: 0;
        min-width: 0;
        overflow: hidden;
    }

    #zoomContainer {
        width: 100%;
        height: 100%;
        min-height: 0;
        min-width: 0;
        overflow: auto;
    }

    .main-page-img {
        width: auto;
        max-width: none;
        height: auto;
    }

    .naresh-pagechip {
        bottom: 72px;
        font-size: 12px;
        padding: 5px 10px;
    }

    .naresh-navbtn {
        width: 36px;
        height: 52px;
    }

    .naresh-navbtn--prev {
        left: 8px;
    }

    .naresh-navbtn--next {
        right: 8px;
    }

    .viewer-footer {
        padding: 6px;
        gap: 6px;
    }

    .zoom-control {
        min-width: auto;
        gap: 4px;
    }

    .zoom-slider {
        display: none;
    }

    .zoom-pct {
        font-size: 11px;
        min-width: 42px;
        color: #fff;
    }

    .footer-thumbs {
        gap: 6px;
        min-width: 0;
    }

        .footer-thumbs .thumb-item img {
            width: 28px;
            height: 38px;
        }

        .footer-thumbs .thumb-item span {
            font-size: 8px;
        }

    .footer-divider {
        height: 24px;
    }
}

/* ════════════════════════════════════════
   SMALL PHONES — max-width: 400px
   ════════════════════════════════════════ */
@media (max-width: 400px) {

    .paper-name-kn {
        font-size: 1.3rem;
    }

    .paper-tagline {
        font-size: 0.5rem;
    }

    .viewer-nav-btn {
        font-size: 0.72rem;
    }

    .editions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}
