/* ==========================================================================
   GRPD CUSTOM CSS
   ========================================================================== */


/* ==========================================================================
   CKEDITOR TABLE STYLING
   ========================================================================== */

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

tr {
    border: 1px solid #ddd;
}

td,
th {
    width: 50%;
    border: 1px solid #ddd;
    padding-left: 20px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: left;
    vertical-align: top;
    word-wrap: break-word;
}

.wyg {
    text-align: justify;
}


/* ==========================================================================
   HEADER LOGO
   ========================================================================== */

.header__logo {
    max-width: 120px !important;
}


/* ==========================================================================
   GRPD CUSTOM HEADER / MAIN MENU
   ========================================================================== */


/* ==========================================================================
   DESKTOP MAIN MENU
   ========================================================================== */

.header__menu > ul {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header__menu > ul > li {
    position: relative !important;
}


/* ==========================================================================
   TOPBAR MENU INSIDE MAIN MENU
   ========================================================================== */

.header__menu .main-topbar-menu {
    position: relative !important;
}


/* ==========================================================================
   TOPBAR PARENT LINK
   ========================================================================== */

.header__menu .main-topbar-menu > .main-topbar-toggle {
    display: flex !important;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    white-space: nowrap;
}


/* ==========================================================================
   DROPDOWN ARROW
   ========================================================================== */

.header__menu .main-topbar-menu > .main-topbar-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    display: inline-block;
    transition: transform 0.2s ease;
}


/* ==========================================================================
   DESKTOP DROPDOWN
   ========================================================================== */

.header__menu .main-topbar-menu > .main-topbar-dropdown {
    position: absolute !important;

    top: calc(100% + 8px) !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;

    width: auto !important;
    min-width: 220px !important;
    max-width: 320px !important;

    height: auto !important;

    margin: 0 !important;
    padding: 8px 0 !important;

    display: block !important;

    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    list-style: none !important;

    background: #ffffff;

    border: 0;

    border-radius: 5px;

    box-shadow: 0 8px 30px rgba(30, 29, 21, 0.12);

    z-index: 99999;

    visibility: hidden;
    opacity: 0;

    transform: translateY(8px);

    pointer-events: none;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}


/* ==========================================================================
   DESKTOP DROPDOWN OPEN
   ========================================================================== */

.header__menu .main-topbar-menu:hover > .main-topbar-dropdown,
.header__menu .main-topbar-menu.open > .main-topbar-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}


/* ==========================================================================
   DROPDOWN LIST ITEMS
   ========================================================================== */

.header__menu .main-topbar-menu > .main-topbar-dropdown > li {
    position: relative !important;

    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}


/* ==========================================================================
   DROPDOWN LINKS
   ========================================================================== */

.header__menu .main-topbar-menu > .main-topbar-dropdown > li > a {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 10px 18px !important;

    color: #2b2b36 !important;

    background: transparent;

    text-decoration: none !important;

    text-align: left;

    white-space: nowrap;

    line-height: 1.4;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


/* ==========================================================================
   DROPDOWN HOVER
   ========================================================================== */

.header__menu .main-topbar-menu > .main-topbar-dropdown > li > a:hover {
    color: #1e1d15 !important;
    background: #f5f4f0 !important;
}


/* ==========================================================================
   ARROW ROTATION
   ========================================================================== */

.header__menu .main-topbar-menu:hover > .main-topbar-toggle::after,
.header__menu .main-topbar-menu.open > .main-topbar-toggle::after {
    transform: rotate(180deg);
}


/* ==========================================================================
   PREVENT THEME MENU CSS FROM AFFECTING DROPDOWN
   ========================================================================== */

.header__menu .main-topbar-menu > .main-topbar-dropdown li::before,
.header__menu .main-topbar-menu > .main-topbar-dropdown li::after {
    display: none !important;
}


/* ==========================================================================
   MOBILE OFFCANVAS TOPBAR MENU
   ========================================================================== */

.offcanvas__menu .mobile-topbar-menu {
    position: relative;
    width: 100%;
}


/* ==========================================================================
   MOBILE PARENT LINK
   ========================================================================== */

.offcanvas__menu .mobile-topbar-menu > .mobile-topbar-toggle {
    display: flex !important;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    cursor: pointer;
}


/* ==========================================================================
   MOBILE ARROW
   ========================================================================== */

.offcanvas__menu .mobile-topbar-menu > .mobile-topbar-toggle::after {
    content: "\f107";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 12px;

    display: inline-block;

    transition: transform 0.2s ease;
}


/* ==========================================================================
   MOBILE OPEN ARROW
   ========================================================================== */

.offcanvas__menu .mobile-topbar-menu.open > .mobile-topbar-toggle::after {
    transform: rotate(180deg);
}


/* ==========================================================================
   MOBILE SUBMENU
   ========================================================================== */

.offcanvas__menu .mobile-topbar-menu > .sub-menu {
    display: none;

    position: static !important;

    width: 100% !important;

    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;

    background: transparent;

    box-shadow: none !important;

    border: 0 !important;

    transform: none !important;
}


/* ==========================================================================
   MOBILE SUBMENU OPEN
   ========================================================================== */

.offcanvas__menu .mobile-topbar-menu.open > .sub-menu {
    display: block;
}


/* ==========================================================================
   MOBILE SUBMENU ITEMS
   ========================================================================== */

.offcanvas__menu .mobile-topbar-menu > .sub-menu > li {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* ==========================================================================
   MOBILE SUBMENU LINKS
   ========================================================================== */

.offcanvas__menu .mobile-topbar-menu > .sub-menu > li > a {
    display: block !important;

    width: 100% !important;

    padding-left: 25px !important;
    padding-right: 15px !important;
}


/* ==========================================================================
   MOBILE BREAKPOINT
   ========================================================================== */

@media (max-width: 991px) {

    .header__menu {
        display: none !important;
    }

    .header__menu .main-topbar-menu > .main-topbar-dropdown {
        display: none !important;
    }

    .offcanvas__area {
        position: fixed;

        top: 0;
        left: 0;

        width: 320px;
        max-width: 90%;

        height: 100vh;
        height: 100dvh;

        overflow-y: auto;

        z-index: 99999;

        -webkit-overflow-scrolling: touch;
    }

    .offcanvas__main {
        height: calc(100vh - 80px);
        height: calc(100dvh - 80px);

        overflow-y: auto;

        -webkit-overflow-scrolling: touch;
    }
}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 575px) {

    .offcanvas__area {
        width: 290px;
        max-width: 88%;
    }
}


/* ==========================================================================
   VERY SMALL MOBILE
   ========================================================================== */

@media (max-width: 375px) {

    .offcanvas__area {
        width: 280px;
        max-width: 90%;
    }
}


/* ==========================================================================
   CURRENT ISSUE / PUBLISHED PAPERS
   Uses GRPD site colors:
   Base      #1e1d15
   Secondary #2b2b36
   ========================================================================== */


/* ==========================================================================
   CURRENT ISSUE HEADER
   ========================================================================== */

.issue__current__header {
    margin-top: 30px;
    margin-bottom: 22px;

    padding: 0 0 18px;

    border-bottom: 1px solid rgba(30, 29, 21, 0.08);
}

.issue__current__header h3 {
    color: #1e1d15;

    font-family: var(--heading-font);

    font-size: 24px;
    line-height: 1.35;

    font-weight: 700;

    margin: 0 0 8px;
}

.current__meta {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 7px;

    color: #77756e;

    font-family: var(--body-font);

    font-size: 13px;

    margin: 0;
}

.current__meta strong {
    color: #2b2b36;

    font-weight: 600;
}

.current__meta .separator {
    color: rgba(30, 29, 21, 0.35);
}


/* ==========================================================================
   CURRENT PAPERS CONTAINER
   ========================================================================== */

.current__papers {
    display: flex;

    flex-direction: column;

    gap: 14px;
}


/* ==========================================================================
   SINGLE PAPER
   ========================================================================== */

.current__paper__single {
    background: #ffffff;

    border: 1px solid rgba(30, 29, 21, 0.07);

    border-radius: 8px;

    padding: 22px 24px;


    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.current__paper__single:hover {
    border-color: rgba(30, 29, 21, 0.12);

    box-shadow: 0 5px 20px rgba(30, 29, 21, 0.06);

    transform: translateY(-1px);
}


/* ==========================================================================
   PAPER HEADER
   ========================================================================== */

.current__paper__head {
    margin-bottom: 9px;
}


/* ==========================================================================
   ARTICLE TYPE
   ========================================================================== */

.current__paper__head .article__type {
    display: inline-block;

    background: rgba(30, 29, 21, 0.06);

    color: #1e1d15;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    padding: 4px 9px;

    border-radius: 3px;

    margin-bottom: 8px;
}


/* ==========================================================================
   PAPER TITLE
   ========================================================================== */

.current__paper__head h4 {
    color: #1e1d15;

    font-family: var(--heading-font);

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;

    margin: 0;
}

.current__paper__head h4 a {
    color: #1e1d15;

    text-decoration: none;

    transition: color 0.2s ease;
}

.current__paper__head h4 a:hover {
    color: #2b2b36;
}


/* ==========================================================================
   AUTHORS
   ========================================================================== */

.current__paper__single .authors {
    color: #77756e;

    font-family: var(--body-font);

    font-size: 13px;

    line-height: 1.7;

    margin: 0 0 10px;
}

.current__paper__single .authors .corr {
    color: #2b2b36;

    font-size: 11px !important;

    font-weight: 600;
}


/* ==========================================================================
   ABSTRACT
   ========================================================================== */

.current__paper__single .abstract {
    color: #4f4e49;

    font-family: var(--body-font);

    font-size: 13px;

    line-height: 1.75;

    margin: 0 0 16px;
}


/* ==========================================================================
   PAPER FOOTER
   ========================================================================== */

.current__paper__footer {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 10px 16px;

    padding-top: 14px;

    border-top: 1px solid rgba(30, 29, 21, 0.07);
}


/* ==========================================================================
   DOI
   ========================================================================== */

.current__paper__footer .doi {
    color: #77756e;

    font-size: 11px;

    line-height: 1.6;

    word-break: break-word;
}

.current__paper__footer .doi a {
    color: #2b2b36;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.current__paper__footer .doi a:hover {
    color: #1e1d15;

    text-decoration: underline;
}


/* ==========================================================================
   PUBLICATION DATE
   ========================================================================== */

.current__paper__footer .pubdate {
    color: #77756e;

    font-size: 11px;
}


/* ==========================================================================
   ACTIONS
   ========================================================================== */

.current__paper__footer .actions {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-left: auto;
}


/* ==========================================================================
   VIEW ARTICLE BUTTON
   ========================================================================== */

.current__paper__footer .actions .btn--base {
    background: #1e1d15;

    border-color: #1e1d15;

    color: #ffffff;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.current__paper__footer .actions .btn--base:hover {
    background: #2b2b36;

    border-color: #2b2b36;

    color: #ffffff;
}


/* ==========================================================================
   DOWNLOAD PDF BUTTON
   ========================================================================== */

.current__paper__footer .actions .btn-outline--base {
    color: #1e1d15;

    background: transparent;

    border-color: rgba(30, 29, 21, 0.20);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.current__paper__footer .actions .btn-outline--base:hover {
    color: #ffffff;

    background: #1e1d15;

    border-color: #1e1d15;
}


/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.current__papers + .empty__state,
.empty__state {
    text-align: center;

    padding: 45px 20px;

    color: #77756e;
}

.empty__state i {
    display: block;

    font-size: 36px;

    margin-bottom: 12px;

    color: rgba(30, 29, 21, 0.30);
}

.empty__state h4 {
    color: #1e1d15;

    font-family: var(--heading-font);

    font-size: 16px;

    margin-bottom: 6px;
}

.empty__state p {
    color: #77756e;

    font-size: 13px;

    margin: 0;
}


/* ==========================================================================
   CURRENT ISSUE RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {

    .issue__current__header {
        margin-top: 24px;
        margin-bottom: 18px;
    }

    .issue__current__header h3 {
        font-size: 21px;
    }

    .current__paper__single {
        padding: 18px;
    }

    .current__paper__head h4 {
        font-size: 16px;
    }

    .current__paper__footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .current__paper__footer .actions {
        width: 100%;

        margin-left: 0;
    }

    .current__paper__footer .actions .btn {
        flex: 1;

        text-align: center;
    }
}


/* ==========================================================================
   JOURNAL ARTICLE DETAILS
   Uses existing website theme variables
   ========================================================================== */


/* ==========================================================================
   ARTICLE DETAILS SECTION
   ========================================================================== */

.article__details__section {
    background: hsl(var(--body-bg));
}


/* ==========================================================================
   MAIN ARTICLE CARD
   ========================================================================== */

.article__details__main {
    background: hsl(var(--white));

    border: 1px solid hsl(var(--border-color) / 0.12);

    border-radius: 10px;

    overflow: hidden;

}


/* ==========================================================================
   ARTICLE HEADER
   ========================================================================== */

.article__details__header {
    padding: 34px 36px 30px;

    border-bottom: 1px solid hsl(var(--border-color) / 0.12);
}


/* ==========================================================================
   ARTICLE TYPE
   ========================================================================== */

.article__type {
    display: inline-block;

    background: hsl(var(--base) / 0.07);

    color: hsl(var(--base));

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.6px;

    padding: 5px 11px;

    border-radius: 4px;

    margin-bottom: 15px;
}


/* ==========================================================================
   ARTICLE TITLE
   ========================================================================== */

.article__details__title {
    color: hsl(var(--heading-color));

    font-family: var(--heading-font);

    font-size: 32px;
    line-height: 1.35;

    font-weight: 700;

    margin: 0 0 22px;
}


/* ==========================================================================
   AUTHORS
   ========================================================================== */

.article__details__authors {
    color: hsl(var(--body-color));

    font-family: var(--body-font);

    font-size: 15px;
    line-height: 1.8;

    margin-bottom: 25px;
}

.article__details__authors > strong {
    color: hsl(var(--heading-color));
}

.authors__list {
    display: inline;

    margin-left: 5px;
}

.author__item {
    color: hsl(var(--secondary));

    font-weight: 600;
}

.author__separator {
    color: hsl(var(--body-color) / 0.7);
}

.corr__mark {
    color: hsl(var(--secondary));

    font-weight: 700;

    margin-left: 2px;
}

.corresponding__note {
    color: hsl(var(--body-color));

    font-size: 12px;

    margin-top: 3px;
}


/* ==========================================================================
   PUBLICATION META
   ========================================================================== */

.article__meta__grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    margin-top: 20px;
}

.article__meta__item {
    background: hsl(var(--section-bg));

    border: 1px solid hsl(var(--border-color) / 0.10);

    border-radius: 6px;

    padding: 12px 14px;
}

.meta__label {
    display: block;

    color: hsl(var(--body-color));

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.6px;

    margin-bottom: 4px;
}

.meta__value {
    display: block;

    color: hsl(var(--heading-color));

    font-size: 14px;

    font-weight: 600;
}


/* ==========================================================================
   DOI
   ========================================================================== */

.article__doi {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 5px;

    margin-top: 14px;

    padding: 11px 14px;

    background: hsl(var(--section-bg));

    border: 1px solid hsl(var(--border-color) / 0.10);

    border-radius: 6px;

    font-size: 13px;

    word-break: break-word;
}

.doi__label {
    color: hsl(var(--heading-color));

    font-weight: 700;
}

.doi__label i {
    margin-right: 4px;
}

.article__doi a {
    color: hsl(var(--base));

    font-weight: 500;
}

.article__doi a:hover {
    color: hsl(var(--base-l-200));

    text-decoration: underline;
}


/* ==========================================================================
   ARTICLE BODY
   ========================================================================== */

.article__details__body {
    padding: 32px 36px 36px;
}


/* ==========================================================================
   CONTENT BLOCK
   ========================================================================== */

.article__content__block {
    margin-bottom: 30px;
}


/* ==========================================================================
   CONTENT HEADING
   ========================================================================== */

.article__content__heading {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    padding-bottom: 9px;

}

.article__content__heading i {
    color: hsl(var(--base));

    font-size: 13px;
}

.article__content__heading h3 {
    color: hsl(var(--heading-color));

    font-family: var(--heading-font);

    font-size: 18px;

    font-weight: 700;

    margin: 0;
}


/* ==========================================================================
   KEYWORDS
   ========================================================================== */

.article__keywords {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.keyword__tag {
    display: inline-block;

    background: hsl(var(--base) / 0.06);

    color: hsl(var(--base));

    border: 1px solid hsl(var(--base) / 0.10);

    border-radius: 20px;

    padding: 5px 11px;

    font-size: 12px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.keyword__tag:hover {
    background: hsl(var(--base) / 0.10);

    border-color: hsl(var(--base) / 0.15);
}


/* ==========================================================================
   ABSTRACT
   ========================================================================== */

.article__abstract {
    color: hsl(var(--body-color));

    font-family: var(--body-font);

    font-size: 15px;

    line-height: 1.85;
    text-align: justify;
}

.article__abstract p:last-child {
    margin-bottom: 0;
}

.article__abstract h1,
.article__abstract h2,
.article__abstract h3,
.article__abstract h4 {
    color: hsl(var(--heading-color));

    font-family: var(--heading-font);
}

.article__abstract a {
    color: hsl(var(--base));

    text-decoration: underline;
}


/* ==========================================================================
   ARTICLE INFORMATION
   ========================================================================== */

.article__details__info__grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 10px;
}

.details__info__item {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 15px;

    padding: 13px 15px;

    background: hsl(var(--section-bg));

    border: 1px solid hsl(var(--border-color) / 0.10);

    border-radius: 6px;
}

.details__info__item span {
    color: hsl(var(--body-color));

    font-size: 13px;
}

.details__info__item strong {
    color: hsl(var(--heading-color));

    font-size: 14px;
}


/* ==========================================================================
   DOWNLOAD AREA
   ========================================================================== */

.article__download {
    padding: 22px 0;

    border-bottom: 1px solid hsl(var(--border-color) / 0.12);

    margin-bottom: 30px;
}

.article__download .btn--base {
    background: hsl(var(--base));

    border-color: hsl(var(--base));

    color: hsl(var(--white));
}

.article__download .btn--base:hover {
    background: hsl(var(--base-l-100));

    border-color: hsl(var(--base-l-100));

    color: hsl(var(--white));
}


/* ==========================================================================
   CITATION
   ========================================================================== */

.article__citation {
    background: hsl(var(--section-bg));

    border: 1px solid hsl(var(--border-color) / 0.10);

    border-radius: 8px;

    padding: 22px;
}

.citation__box {
    background: hsl(var(--white));

    border: 1px solid hsl(var(--border-color) / 0.10);

    border-radius: 6px;

    padding: 16px;

    margin-bottom: 14px;
}

.citation__box p {
    color: hsl(var(--body-color));

    font-family: var(--body-font);

    font-size: 14px;

    line-height: 1.75;

    margin: 0;
}

.citation__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}

.citation__actions .btn {
    margin: 0 !important;
}


/* ==========================================================================
   CITATION OUTLINE BUTTON
   ========================================================================== */

.article__citation .btn-outline--base {
    color: hsl(var(--base));

    border-color: hsl(var(--base) / 0.25);

    background: transparent;
}

.article__citation .btn-outline--base:hover {
    color: hsl(var(--white));

    background: hsl(var(--base));

    border-color: hsl(var(--base));
}


/* ==========================================================================
   SIDEBAR
   ========================================================================== */

.article__sidebar {
    background: hsl(var(--white));

    border: 1px solid hsl(var(--border-color) / 0.12);

    border-radius: 10px;

    overflow: hidden;

    position: sticky;

    top: 25px;

}


/* ==========================================================================
   SIDEBAR HEADER
   ========================================================================== */

.article__sidebar__header {
    padding: 18px 20px;

    background: hsl(var(--base));

    border-bottom: 1px solid hsl(var(--base));
}

.article__sidebar__header h2 {
    color: hsl(var(--white));

    font-family: var(--heading-font);

    font-size: 17px;

    font-weight: 700;

    margin: 0;

    letter-spacing: 0.2px;
}


/* ==========================================================================
   RECENT PAPERS
   ========================================================================== */

.recent__papers {
    display: flex;

    flex-direction: column;
}

.recent__paper__item {
    padding: 20px;

    border-bottom: 1px solid hsl(var(--border-color) / 0.10);

    transition: background 0.2s ease;
}

.recent__paper__item:last-child {
    border-bottom: 0;
}

.recent__paper__item:hover {
    background: hsl(var(--section-bg) / 0.45);
}


/* ==========================================================================
   RECENT ARTICLE TYPE
   ========================================================================== */

.recent__article__type {
    display: inline-block;

    color: hsl(var(--base));

    background: hsl(var(--base) / 0.06);

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    padding: 3px 8px;

    border-radius: 3px;

    margin-bottom: 8px;
}


/* ==========================================================================
   RECENT PAPER TITLE
   ========================================================================== */

.recent__paper__item h4 {
    font-family: var(--heading-font);

    font-size: 15px;

    line-height: 1.5;

    margin: 0 0 10px;
}

.recent__paper__item h4 a {
    color: hsl(var(--heading-color));

    transition: color 0.2s ease;
}

.recent__paper__item h4 a:hover {
    color: hsl(var(--base));
}


/* ==========================================================================
   RECENT AUTHOR
   ========================================================================== */

.recent__author {
    color: hsl(var(--body-color));

    font-size: 12px;

    margin-bottom: 10px;
}

.recent__author i {
    color: hsl(var(--base));

    margin-right: 4px;
}


/* ==========================================================================
   RECENT META
   ========================================================================== */

.recent__meta {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    padding: 0;

    margin: 0 0 12px;

    list-style: none;
}

.recent__meta li {
    color: hsl(var(--body-color));

    font-size: 10px;

    padding-right: 8px;

    border-right: 1px solid hsl(var(--border-color) / 0.20);
}

.recent__meta li:last-child {
    border-right: 0;
}

.recent__meta li span {
    color: hsl(var(--base));

    font-weight: 700;

    margin-right: 2px;
}


/* ==========================================================================
   READ MORE
   ========================================================================== */

.recent__read__more {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: hsl(var(--base));

    font-size: 11px;

    font-weight: 700;

    transition: color 0.2s ease;
}

.recent__read__more:hover {
    color: hsl(var(--base-l-200));
}

.recent__read__more i {
    font-size: 9px;

    transition: transform 0.2s ease;
}

.recent__read__more:hover i {
    transform: translateX(3px);
}


/* ==========================================================================
   EMPTY STATE
   ========================================================================== */

.empty__state {
    text-align: center;

    padding: 40px 20px;

    color: hsl(var(--body-color));
}

.empty__state i {
    display: block;

    font-size: 36px;

    margin-bottom: 12px;

    color: hsl(var(--body-color) / 0.35);
}

.empty__state h4 {
    color: hsl(var(--heading-color));

    font-size: 16px;

    margin-bottom: 6px;
}

.empty__state p {
    color: hsl(var(--body-color));

    font-size: 13px;

    margin: 0;
}


/* ==========================================================================
   ARTICLE RESPONSIVE
   ========================================================================== */

@media (max-width: 1199px) {

    .article__details__title {
        font-size: 28px;
    }

    .article__meta__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 991px) {

    .article__sidebar {
        position: static;
    }

    .article__details__header {
        padding: 28px;
    }

    .article__details__body {
        padding: 28px;
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 575px) {

    .article__details__header {
        padding: 22px 18px;
    }

    .article__details__body {
        padding: 22px 18px;
    }

    .article__details__title {
        font-size: 23px;

        line-height: 1.4;
    }

    .article__meta__grid {
        grid-template-columns: 1fr;
    }

    .article__details__info__grid {
        grid-template-columns: 1fr;
    }

    .article__content__heading h3 {
        font-size: 17px;
    }

    .article__citation {
        padding: 17px;
    }

    .citation__actions {
        width: 100%;
    }

    .citation__actions .btn {
        flex: 1;

        min-width: 90px;
    }

    .article__download .btn {
        width: 100%;
    }
}

/* ==========================================================================
   JOURNAL ARCHIVE
   ========================================================================== */

/* ==========================================================================
   ARCHIVE HEADER
   ========================================================================== */

.archive__header {
    padding: 28px 0 8px;
    border-bottom: 2px solid hsl(var(--base));
    margin-bottom: 24px;
}

.archive__header h3 {
    margin: 0 0 4px;
    color: hsl(var(--heading-color));
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
}

.archive__header p {
    color: hsl(var(--body-color));
    margin: 0;
    font-size: 14px;
}


/* ==========================================================================
   ARCHIVE TREE
   ========================================================================== */

.archive__tree {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* ==========================================================================
   YEAR
   ========================================================================== */

.archive__year {
    border: 1px solid hsl(var(--border-color) / 0.15);
    border-radius: 8px;
    background: hsl(var(--white));
    overflow: hidden;
}

.archive__year__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: hsl(var(--section-bg));
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.archive__year__title:hover {
    background: hsl(var(--base) / 0.04);
}

.archive__year__title h4 {
    margin: 0;
    color: hsl(var(--heading-color));
    font-family: var(--heading-font);
    font-size: 20px;
    font-weight: 700;
}

.archive__year__title i {
    color: hsl(var(--body-color) / 0.65);
    font-size: 13px;
    transition: transform 0.25s ease;
}


/* ==========================================================================
   YEAR VOLUMES
   ========================================================================== */

.archive__year__volumes {
    padding: 14px 22px;
    border-top: 1px solid hsl(var(--border-color) / 0.10);
}


/* ==========================================================================
   VOLUME
   ========================================================================== */

.archive__vol {
    margin-bottom: 10px;
    border: 1px solid hsl(var(--border-color) / 0.10);
    border-radius: 6px;
    overflow: hidden;
}

.archive__vol:last-child {
    margin-bottom: 0;
}

.archive__vol__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 14px;
    cursor: pointer;
    background: hsl(var(--section-bg) / 0.65);
    color: hsl(var(--heading-color));
    font-size: 15px;
    transition: background-color 0.2s ease;
}

.archive__vol__title:hover {
    background: hsl(var(--base) / 0.04);
}

.archive__vol__title strong {
    font-weight: 700;
}

.archive__vol__title i {
    font-size: 12px;
    color: hsl(var(--body-color) / 0.65);
    transition: transform 0.25s ease;
}


/* ==========================================================================
   VOLUME ISSUES
   ========================================================================== */

.archive__vol__issues {
    border-top: 1px solid hsl(var(--border-color) / 0.10);
}


/* ==========================================================================
   ISSUE
   ========================================================================== */

.archive__issue {
    border-bottom: 1px solid hsl(var(--border-color) / 0.08);
}

.archive__issue:last-child {
    border-bottom: 0;
}


/* ==========================================================================
   ISSUE TITLE
   ========================================================================== */

.archive__issue__title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    padding: 10px 18px;

    color: hsl(var(--heading-color));
    font-size: 14px;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.archive__issue__title a:hover {
    background: hsl(var(--base) / 0.04);
    color: hsl(var(--base));
}

.archive__issue__title .text-muted {
    color: hsl(var(--body-color) / 0.65);
    font-weight: 400;
}


/* ==========================================================================
   PAPER COUNT
   ========================================================================== */

.paper__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 25px;
    height: 22px;

    padding: 1px 8px;

    background: hsl(var(--base));
    color: hsl(var(--white));

    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;

    line-height: 1;
    flex-shrink: 0;
}


/* ==========================================================================
   ISSUE PAPERS
   ========================================================================== */

.archive__issue__papers {
    list-style: none;

    margin: 0;
    padding: 0 18px 10px 34px;
}

.archive__issue__papers li {
    padding: 7px 0;

    border-bottom: 1px dashed hsl(var(--border-color) / 0.10);
}

.archive__issue__papers li:last-child {
    border-bottom: 0;
}


/* ==========================================================================
   PAPER TITLE
   ========================================================================== */

.archive__issue__papers li > a {
    color: hsl(var(--heading-color));
    font-size: 14px;
    line-height: 1.6;

    transition: color 0.2s ease;
}

.archive__issue__papers li > a:hover {
    color: hsl(var(--base));
}


/* ==========================================================================
   PAPER AUTHORS
   ========================================================================== */

.archive__issue__papers .authors {
    display: block;

    margin-top: 2px;

    color: hsl(var(--body-color) / 0.70);

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================================
   ARCHIVE EMPTY STATE
   IMPORTANT:
   Uses a separate class because .empty__state already exists
   in your global custom CSS.
   ========================================================================== */

.archive__empty__state {
    text-align: center;

    padding: 60px 20px;

    color: hsl(var(--body-color));
}

.archive__empty__state i {
    display: block;

    font-size: 48px;

    margin-bottom: 14px;

    color: hsl(var(--body-color) / 0.30);
}

.archive__empty__state h4 {
    color: hsl(var(--heading-color));

    font-size: 18px;

    margin: 0 0 8px;
}

.archive__empty__state p {
    color: hsl(var(--body-color));

    font-size: 13px;

    margin: 0;
}


/* ==========================================================================
   ARCHIVE RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {

    .archive__header {
        padding: 22px 0 8px;
        margin-bottom: 18px;
    }

    .archive__header h3 {
        font-size: 21px;
    }

    .archive__header p {
        font-size: 13px;
        line-height: 1.6;
    }

    .archive__year__title {
        padding: 14px 16px;
    }

    .archive__year__title h4 {
        font-size: 18px;
    }

    .archive__year__volumes {
        padding: 10px 12px;
    }

    .archive__vol__title {
        padding: 10px 12px;
    }

    .archive__issue__title a {
        padding: 9px 12px;
    }

    .archive__issue__papers {
        padding: 0 12px 8px 25px;
    }

    .archive__issue__papers li > a {
        font-size: 13px;
    }

    .archive__issue__papers .authors {
        font-size: 11px;
    }

    .archive__empty__state {
        padding: 45px 15px;
    }
}

/* ============================================================
   JOURNAL ARCHIVE
   ============================================================ */

.archive__header {
    padding: 28px 0 8px;
    border-bottom: 2px solid hsl(var(--base));
    margin-bottom: 24px;
}

.archive__header h3 {
    margin: 0 0 5px;
    color: hsl(var(--heading-color));
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 700;
}

.archive__header p {
    color: hsl(var(--body-color));
    margin: 0;
    font-size: 14px;
}


/* ============================================================
   ARCHIVE TREE
   ============================================================ */

.archive__tree {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.archive__year {
    border: 1px solid hsl(var(--border-color) / 0.12);
    border-radius: 8px;
    background: hsl(var(--white));
    overflow: hidden;
}

.archive__year__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: hsl(var(--section-bg));
    cursor: pointer;
}

.archive__year__title h4 {
    margin: 0;
    color: hsl(var(--heading-color));
    font-family: var(--heading-font);
    font-size: 20px;
}

.archive__year__title i {
    color: hsl(var(--body-color));
    transition: transform .25s ease;
}

.archive__year__volumes {
    padding: 14px 22px;
    border-top: 1px solid hsl(var(--border-color) / 0.10);
}


/* ============================================================
   VOLUME
   ============================================================ */

.archive__vol {
    margin-bottom: 10px;
    border: 1px solid hsl(var(--border-color) / 0.10);
    border-radius: 6px;
    overflow: hidden;
}

.archive__vol:last-child {
    margin-bottom: 0;
}

.archive__vol__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    cursor: pointer;
    background: hsl(var(--section-bg));
    font-size: 15px;
    color: hsl(var(--heading-color));
}

.archive__vol__title i {
    font-size: 12px;
    color: hsl(var(--body-color));
    transition: transform .25s ease;
}

.archive__vol__issues {
    border-top: 1px solid hsl(var(--border-color) / 0.10);
}


/* ============================================================
   ISSUE
   ============================================================ */

.archive__issue {
    border-bottom: 1px solid hsl(var(--border-color) / 0.10);
}

.archive__issue:last-child {
    border-bottom: 0;
}

.archive__issue__title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 18px;
    color: hsl(var(--heading-color));
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
}

.archive__issue__title a:hover {
    background: hsl(var(--section-bg));
    color: hsl(var(--base));
}

.archive__issue__name {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.archive__issue__title .text-muted {
    color: hsl(var(--body-color) / 0.65);
    font-weight: 400;
}


/* ============================================================
   PAPER COUNT
   ============================================================ */

.paper__count {
    flex-shrink: 0;
    background: hsl(var(--base));
    color: hsl(var(--white));
    border-radius: 20px;
    padding: 2px 9px;
    font-size: 10px;
    font-weight: 700;
}


/* ============================================================
   ARCHIVE PAPER LIST
   ============================================================ */

.archive__issue__papers {
    padding: 0;
    margin: 0;
}


/* ============================================================
   SINGLE ARCHIVE PAPER
   ============================================================ */

.archive__paper {
    padding: 22px 24px;
    border-top: 1px solid hsl(var(--border-color) / 0.08);
    background: hsl(var(--white));
    transition: background .2s ease;
}

.archive__paper:hover {
    background: hsl(var(--section-bg) / 0.35);
}


/* ============================================================
   PAPER HEADER
   ============================================================ */

.archive__paper__head {
    margin-bottom: 8px;
}

.archive__paper__head .article__type {
    margin-bottom: 9px;
}

.archive__paper__title {
    margin: 0;
    font-family: var(--heading-font);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
}

.archive__paper__title a {
    color: hsl(var(--heading-color));
    transition: color .2s ease;
}

.archive__paper__title a:hover {
    color: hsl(var(--base));
}


/* ============================================================
   AUTHORS
   ============================================================ */

.archive__paper__authors {
    color: hsl(var(--body-color));
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.7;
    margin: 8px 0 10px;
}

.archive__paper__authors .corr {
    color: hsl(var(--secondary));
    font-size: 11px;
    font-weight: 600;
}


/* ============================================================
   ABSTRACT
   ============================================================ */

.archive__paper__abstract {
    color: hsl(var(--body-color));
    font-family: var(--body-font);
    font-size: 13px;
    line-height: 1.75;
    margin: 0 0 14px;
}


/* ============================================================
   PAPER FOOTER
   ============================================================ */

.archive__paper__footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-top: 12px;
    border-top: 1px solid hsl(var(--border-color) / 0.10);
}


/* ============================================================
   DOI
   ============================================================ */

.archive__paper__doi {
    color: hsl(var(--body-color));
    font-size: 11px;
    word-break: break-word;
}

.archive__paper__doi strong {
    color: hsl(var(--heading-color));
}

.archive__paper__doi a {
    color: hsl(var(--base));
    font-weight: 500;
}

.archive__paper__doi a:hover {
    text-decoration: underline;
}


/* ============================================================
   PUBLICATION DATE
   ============================================================ */

.archive__paper__date {
    color: hsl(var(--body-color));
    font-size: 11px;
}

.archive__paper__date i {
    margin-right: 4px;
    color: hsl(var(--base));
}


/* ============================================================
   ACTION BUTTONS
   ============================================================ */

.archive__paper__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-left: auto;
}

.archive__paper__actions .btn {
    margin: 0 !important;
}


/* ============================================================
   EMPTY STATE
   ============================================================ */

.archive__empty__state {
    text-align: center;
    padding: 60px 20px;
    color: hsl(var(--body-color));
}

.archive__empty__state i {
    display: block;
    font-size: 48px;
    margin-bottom: 14px;
    color: hsl(var(--body-color) / 0.35);
}

.archive__empty__state h4 {
    color: hsl(var(--heading-color));
    font-size: 18px;
    margin-bottom: 8px;
}

.archive__empty__state p {
    color: hsl(var(--body-color));
    font-size: 13px;
    margin: 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 767px) {

    .archive__paper {
        padding: 18px;
    }

    .archive__paper__title {
        font-size: 16px;
    }

    .archive__paper__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .archive__paper__actions {
        width: 100%;
        margin-left: 0;
    }

    .archive__paper__actions .btn {
        flex: 1;
    }

    .archive__year__volumes {
        padding: 10px;
    }

    .archive__issue__title a {
        padding-left: 12px;
        padding-right: 12px;
    }
}


@media (max-width: 575px) {

    .archive__header {
        padding-top: 22px;
    }

    .archive__header h3 {
        font-size: 21px;
    }

    .archive__paper {
        padding: 16px;
    }

    .archive__paper__actions {
        flex-direction: column;
    }

    .archive__paper__actions .btn {
        width: 100%;
    }

    .archive__issue__name {
        display: block;
    }

    .paper__count {
        align-self: flex-start;
    }
}

/* ============================================================
   JOURNAL SINGLE ISSUE PAGE
   ============================================================ */


/* ============================================================
   ISSUE HEADER
   ============================================================ */

.issue__single__header {
    padding: 28px 0 10px;
    border-bottom: 2px solid hsl(var(--base));
    margin-bottom: 24px;
}

.issue__single__header h3 {
    margin: 8px 0 0;
    color: hsl(var(--heading-color));
    font-family: var(--heading-font);
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}

.issue__badge {
    display: inline-block;
    background: hsl(var(--base));
    color: hsl(var(--white));
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 5px 12px;
    border-radius: 4px;
}

.issue__month {
    font-size: 16px;
    color: hsl(var(--body-color));
    font-weight: 500;
}


/* ============================================================
   PAPERS CONTAINER
   ============================================================ */

.issue__papers {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* ============================================================
   SINGLE PAPER
   ============================================================ */

.issue__paper__single {
    border: 1px solid hsl(var(--border-color) / 0.12);
    border-left: 4px solid hsl(var(--base));
    border-radius: 8px;
    padding: 22px 24px;
    background: hsl(var(--white));
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.issue__paper__single:hover {
    box-shadow: var(--box-shadow);
}


/* ============================================================
   ARTICLE TYPE
   ============================================================ */

.issue__paper__single .article__type {
    display: inline-block;

    background: hsl(var(--base) / 0.07);
    color: hsl(var(--base));

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;

    padding: 4px 10px;

    border-radius: 20px;

    margin-bottom: 10px;
}


/* ============================================================
   PAPER TITLE
   ============================================================ */

.issue__paper__single h4 {
    margin: 0 0 10px;

    font-family: var(--heading-font);

    font-size: 20px;
    line-height: 1.45;

    font-weight: 700;
}

.issue__paper__single h4 a {
    color: hsl(var(--heading-color));

    transition: color 0.2s ease;
}

.issue__paper__single h4 a:hover {
    color: hsl(var(--base));
}


/* ============================================================
   AUTHORS
   ============================================================ */

.issue__paper__authors {
    color: hsl(var(--body-color));

    font-family: var(--body-font);

    font-size: 14px;
    font-weight: 600;

    line-height: 1.7;

    margin: 0 0 9px;
}

.issue__paper__corr {
    color: hsl(var(--secondary));

    font-size: 11px;

    font-weight: 700;

    margin-left: 2px;
}


/* ============================================================
   ABSTRACT
   ============================================================ */

.issue__paper__abstract {
    color: hsl(var(--body-color));

    font-family: var(--body-font);

    font-size: 14px;

    line-height: 1.8;

    margin: 0 0 15px;
}


/* ============================================================
   PAPER META
   ============================================================ */

.issue__paper__meta {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px 16px;

    padding-top: 13px;

    border-top: 1px solid hsl(var(--border-color) / 0.10);
}


/* ============================================================
   DOI
   ============================================================ */

.issue__paper__doi {
    color: hsl(var(--body-color));

    font-size: 12px;

    word-break: break-word;
}

.issue__paper__doi strong {
    color: hsl(var(--heading-color));

    font-weight: 700;
}

.issue__paper__doi a {
    color: hsl(var(--base));

    font-weight: 500;

    word-break: break-all;
}

.issue__paper__doi a:hover {
    text-decoration: underline;
}


/* ============================================================
   PAGE RANGE
   ============================================================ */

.issue__paper__pages {
    color: hsl(var(--body-color));

    font-size: 12px;
}


/* ============================================================
   PUBLICATION DATE
   ============================================================ */

.issue__paper__pubdate {
    color: hsl(var(--body-color));

    font-size: 12px;
}

.issue__paper__pubdate i {
    color: hsl(var(--base));

    margin-right: 4px;
}


/* ============================================================
   ACTIONS
   ============================================================ */

.issue__paper__actions {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px;

    margin-left: auto;
}

.issue__paper__actions .btn {
    margin: 0 !important;
}


/* ============================================================
   EMPTY STATE
   ============================================================ */

.issue__empty__state {
    text-align: center;

    padding: 60px 20px;

    color: hsl(var(--body-color));
}

.issue__empty__state i {
    display: block;

    font-size: 48px;

    margin-bottom: 14px;

    color: hsl(var(--body-color) / 0.35);
}

.issue__empty__state h4 {
    color: hsl(var(--heading-color));

    font-size: 18px;

    font-weight: 600;

    margin: 0;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 767px) {

    .issue__paper__single {
        padding: 20px;
    }

    .issue__paper__single h4 {
        font-size: 18px;
    }

    .issue__paper__meta {
        align-items: flex-start;
    }

    .issue__paper__actions {
        width: 100%;

        margin-left: 0;

        margin-top: 4px;
    }

    .issue__paper__actions .btn {
        flex: 1;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575px) {

    .issue__single__header {
        padding: 22px 0 9px;

        margin-bottom: 18px;
    }

    .issue__single__header h3 {
        font-size: 21px;
    }

    .issue__month {
        display: block;

        margin-top: 3px;

        font-size: 14px;
    }

    .issue__paper__single {
        padding: 17px;

        border-left-width: 3px;
    }

    .issue__paper__single h4 {
        font-size: 17px;

        line-height: 1.5;
    }

    .issue__paper__authors {
        font-size: 13px;
    }

    .issue__paper__abstract {
        font-size: 13px;

        line-height: 1.75;
    }

    .issue__paper__meta {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .issue__paper__actions {
        flex-direction: column;

        width: 100%;

        margin-top: 5px;
    }

    .issue__paper__actions .btn {
        width: 100%;
    }

    .issue__empty__state {
        padding: 45px 15px;
    }

}

/* ============================================================
   ISSUE PAGE SIDEBAR
   Uses the same visual style as Article Details sidebar
   ============================================================ */


/* ============================================================
   SIDEBAR ARCHIVE
   ============================================================ */

.issue__sidebar__archive {
    background: hsl(var(--white));
}


/* ============================================================
   ARCHIVE VOLUME
   ============================================================ */

.issue__sidebar__volume {
    border-bottom: 1px solid hsl(var(--border-color) / 0.10);
}


/* ============================================================
   VOLUME TITLE
   ============================================================ */

.issue__sidebar__volume__title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 15px 20px;

    cursor: pointer;

    background: hsl(var(--white));

    color: hsl(var(--heading-color));

    font-size: 13px;
    font-weight: 700;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.issue__sidebar__volume__title:hover {
    background: hsl(var(--section-bg));

    color: hsl(var(--base));
}


.issue__sidebar__volume__title strong {
    font-weight: 700;
}


.issue__sidebar__volume__title strong span {
    color: hsl(var(--body-color));

    font-weight: 500;
}


.issue__sidebar__volume__title i {
    flex-shrink: 0;

    color: hsl(var(--body-color));

    font-size: 10px;

    transition: transform 0.2s ease;
}


/* ============================================================
   ISSUE LIST
   ============================================================ */

.issue__sidebar__volume__issues {
    display: none;

    list-style: none;

    margin: 0;

    padding: 0;

    background: hsl(var(--section-bg));
}


/* ============================================================
   ISSUE ITEM
   ============================================================ */

.issue__sidebar__volume__issues li {
    margin: 0;

    padding: 0;

    border-top: 1px solid hsl(var(--border-color) / 0.08);
}


/* ============================================================
   ISSUE LINK
   ============================================================ */

.issue__sidebar__volume__issues li a {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 10px 20px 10px 32px;

    color: hsl(var(--body-color));

    font-size: 12px;

    line-height: 1.5;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


.issue__sidebar__volume__issues li a:hover {
    background: hsl(var(--white));

    color: hsl(var(--base));

    padding-left: 36px;
}


/* ============================================================
   ISSUE MONTH
   ============================================================ */

.issue__sidebar__volume__issues li a small {
    color: hsl(var(--body-color) / 0.75);

    font-size: 11px;
}


/* ============================================================
   RIGHT ARROW
   ============================================================ */

.issue__sidebar__volume__issues li a > i {
    flex-shrink: 0;

    color: hsl(var(--body-color) / 0.55);

    font-size: 9px;

    transition: transform 0.2s ease;
}


.issue__sidebar__volume__issues li a:hover > i {
    color: hsl(var(--base));

    transform: translateX(3px);
}


/* ============================================================
   EMPTY ISSUE
   ============================================================ */

.issue__sidebar__volume__issues .issue__sidebar__empty {
    padding: 10px 20px 10px 32px;

    color: hsl(var(--body-color) / 0.65);

    font-size: 12px;
}


/* ============================================================
   EMPTY ARCHIVE
   ============================================================ */

.issue__sidebar__empty__archive {
    padding: 30px 20px;

    text-align: center;

    color: hsl(var(--body-color));
}


.issue__sidebar__empty__archive i {
    display: block;

    margin-bottom: 10px;

    color: hsl(var(--body-color) / 0.35);

    font-size: 28px;
}


.issue__sidebar__empty__archive p {
    margin: 0;

    font-size: 12px;
}


/* ============================================================
   RECENT PAPERS HEADER
   ============================================================ */

.issue__sidebar__recent__header {
    margin-top: 0;

    border-top: 1px solid hsl(var(--border-color) / 0.12);
}


/* ============================================================
   NO RECENT PAPERS
   ============================================================ */

.issue__sidebar__no__papers {
    padding: 35px 20px;

    text-align: center;

    color: hsl(var(--body-color));
}


.issue__sidebar__no__papers i {
    display: block;

    margin-bottom: 10px;

    color: hsl(var(--body-color) / 0.35);

    font-size: 28px;
}


.issue__sidebar__no__papers p {
    margin: 0;

    font-size: 12px;
}


/* ============================================================
   RECENT PAPER TITLE
   Slightly tighter for sidebar
   ============================================================ */

.issue__sidebar .recent__paper__item h4 {
    font-size: 14px;

    line-height: 1.5;
}


/* ============================================================
   RECENT PAPER AUTHOR
   ============================================================ */

.issue__sidebar .recent__author {
    line-height: 1.5;
}


/* ============================================================
   RECENT PAPER META
   ============================================================ */

.issue__sidebar .recent__meta {
    margin-bottom: 10px;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 575px) {

    .issue__sidebar__volume__title {
        padding: 14px 18px;
    }

    .issue__sidebar__volume__issues li a {
        padding-left: 28px;
        padding-right: 18px;
    }

    .issue__sidebar__volume__issues li a:hover {
        padding-left: 32px;
    }

}

/* ============================================================
   JOURNALS PAGE
   ============================================================ */


/* ============================================================
   MAIN CONTAINER
   ============================================================ */

.journals__container {
    max-width: 1650px !important;
}


/* ============================================================
   PAGE INTRO
   ============================================================ */

.journals__intro {
    margin-top: 30px;
    margin-bottom: 30px;

    padding: 28px 32px;

    background: hsl(var(--white));

    border: 1px solid hsl(var(--border-color) / 0.12);

    border-radius: 10px;

}


.journals__intro__content {
    max-width: 850px;
}


.journals__intro__badge {
    display: inline-block;

    margin-bottom: 10px;

    padding: 5px 11px;

    background: hsl(var(--base) / 0.07);

    color: hsl(var(--base));

    border-radius: 4px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.journals__intro h2 {
    margin: 0 0 8px;

    color: hsl(var(--heading-color));

    font-family: var(--heading-font);

    font-size: 28px;

    font-weight: 700;

    line-height: 1.35;
}


.journals__intro p {
    margin: 0;

    color: hsl(var(--body-color));

    font-family: var(--body-font);

    font-size: 15px;

    line-height: 1.75;
}


/* ============================================================
   JOURNALS LIST
   ============================================================ */

.journals__listing {
    display: flex;

    flex-direction: column;

    gap: 22px;
}


/* ============================================================
   JOURNAL CARD
   ============================================================ */

.journal__card {
    display: grid;

    grid-template-columns: 220px minmax(0, 1fr);

    gap: 0;

    overflow: hidden;

    background: hsl(var(--white));

    border: 1px solid hsl(var(--border-color) / 0.12);

    border-radius: 10px;


    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.journal__card:hover {
    transform: translateY(-3px);

    border-color: hsl(var(--base) / 0.18);

   
}


/* ============================================================
   JOURNAL COVER
   ============================================================ */

.journal__card__cover {
    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 300px;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            hsl(var(--section-bg)),
            hsl(var(--white))
        );

    border-right: 1px solid hsl(var(--border-color) / 0.10);
}


.journal__card__cover a {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    height: 100%;
}


.journal__card__cover img {
    display: block;

    width: auto;

    max-width: 100%;

    height: 260px;

    object-fit: contain;

    border-radius: 4px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.journal__card:hover .journal__card__cover img {
    transform: scale(1.025);


}


/* ============================================================
   JOURNAL CONTENT
   ============================================================ */

.journal__card__content {
    display: flex;

    flex-direction: column;

    min-width: 0;

    padding: 30px 34px;
}


/* ============================================================
   JOURNAL LABEL
   ============================================================ */

.journal__card__label {
    display: inline-block;

    align-self: flex-start;

    margin-bottom: 10px;

    padding: 4px 10px;

    background: hsl(var(--base) / 0.06);

    color: hsl(var(--base));

    border: 1px solid hsl(var(--base) / 0.10);

    border-radius: 4px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}


/* ============================================================
   JOURNAL TITLE
   ============================================================ */

.journal__card__title {
    margin: 0 0 22px;

    font-family: var(--heading-font);

    font-size: 25px;

    font-weight: 700;

    line-height: 1.4;
}


.journal__card__title a {
    color: hsl(var(--heading-color));

    transition: color 0.2s ease;
}


.journal__card__title a:hover {
    color: hsl(var(--base));
}


/* ============================================================
   JOURNAL INFORMATION
   ============================================================ */

.journal__card__info {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-bottom: 24px;
}


.journal__info__item {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    min-width: 0;

    padding: 12px 5px;

    background: hsl(var(--section-bg));

    border-radius: 6px;
}


.journal__info__item > i {
    flex-shrink: 0;

    margin-top: 3px;

    color: hsl(var(--base));

    font-size: 14px;
}


.journal__info__item > div {
    min-width: 0;
}


.journal__info__label {
    display: block;

    margin-bottom: 3px;

    color: hsl(var(--body-color));

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 0.6px;

    text-transform: uppercase;
}


.journal__info__item strong {
    display: block;

    color: hsl(var(--heading-color));

    font-size: 10px;

    font-weight: 600;

    line-height: 1.5;

    word-break: break-word;
}


.journal__info__item strong small {
    color: hsl(var(--body-color));

    font-size: 10px;

    font-weight: 500;
}


.journal__issn__separator {
    margin: 0 5px;

    color: hsl(var(--body-color) / 0.45);
}


/* ============================================================
   JOURNAL ACTIONS
   ============================================================ */

.journal__card__actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    padding-top: 4px;
}


.journal__card__actions .btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    margin: 0;
}


.journal__card__actions .btn i {
    font-size: 12px;
}


/* ============================================================
   EMPTY STATE
   ============================================================ */

.journals__empty {
    padding: 70px 25px;

    text-align: center;

    background: hsl(var(--white));

    border: 1px solid hsl(var(--border-color) / 0.12);

    border-radius: 10px;

}


.journals__empty__icon {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 70px;

    height: 70px;

    margin: 0 auto 18px;

    background: hsl(var(--base) / 0.06);

    color: hsl(var(--base));

    border-radius: 50%;

    font-size: 28px;
}


.journals__empty h3 {
    margin: 0 0 7px;

    color: hsl(var(--heading-color));

    font-size: 20px;
}


.journals__empty p {
    margin: 0;

    color: hsl(var(--body-color));

    font-size: 14px;
}


/* ============================================================
   LARGE DESKTOP
   ============================================================ */

@media (max-width: 1199px) {

    .journal__card {
        grid-template-columns: 190px minmax(0, 1fr);
    }


    .journal__card__cover {
        min-height: 280px;

        padding: 22px;
    }


    .journal__card__cover img {
        height: 240px;
    }


    .journal__card__content {
        padding: 26px 28px;
    }


    .journal__card__title {
        font-size: 23px;
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    .journals__intro {
        padding: 24px 25px;
    }


    .journal__card {
        grid-template-columns: 180px minmax(0, 1fr);
    }


    .journal__card__cover {
        min-height: 260px;

        padding: 20px;
    }


    .journal__card__cover img {
        height: 220px;
    }


    .journal__card__content {
        padding: 24px;
    }


    .journal__card__title {
        font-size: 21px;

        margin-bottom: 18px;
    }


    .journal__card__info {
        grid-template-columns: 1fr;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .journals__intro {
        margin-bottom: 22px;

        padding: 22px 20px;
    }


    .journals__intro h2 {
        font-size: 23px;
    }


    .journals__intro p {
        font-size: 14px;
    }


    .journal__card {
        display: flex;

        flex-direction: column;
    }


    .journal__card__cover {
        min-height: 250px;

        padding: 25px;

        border-right: 0;

        border-bottom: 1px solid hsl(var(--border-color) / 0.10);
    }


    .journal__card__cover img {
        height: 220px;
    }


    .journal__card__content {
        padding: 24px 20px;
    }


    .journal__card__title {
        font-size: 21px;
    }


    .journal__card__actions {
        width: 100%;
    }


    .journal__card__actions .btn {
        flex: 1;

        min-width: 100px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 575px) {

    .journals__page {
        padding-top: 30px;

        padding-bottom: 45px;
    }


    .journal__card__cover {
        min-height: 230px;

        padding: 20px;
    }


    .journal__card__cover img {
        height: 200px;
    }


    .journal__card__content {
        padding: 20px 17px;
    }


    .journal__card__title {
        font-size: 19px;

        line-height: 1.45;
    }


    .journal__info__item {
        padding: 11px 12px;
    }


    .journal__card__actions {
        flex-direction: column;

        align-items: stretch;
    }


    .journal__card__actions .btn {
        width: 100%;
    }

}

/* ============================================================
   HOME JOURNAL SLIDER
   ============================================================ */

.journal__home__card {
    height: 100%;
    background: #ffffff00;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 28px 30px;
    transition: all .25s ease;
}

.journal__home__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.journal__home__content {
    width: 100%;
}


/* Journal Label */

.journal__home__card .journal__card__label {
    display: inline-block;
    margin-bottom: 12px;
}


/* Journal Title */

.journal__home__card .journal__card__title {
    margin-bottom: 22px;
    line-height: 1.4;
}


/* Journal Information */

.journal__home__card .journal__card__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}


/* Information Box */

.journal__home__card .journal__info__item {
    min-height: 65px;
}


/* Actions */

.journal__home__card .journal__card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}


/* ============================================================
   SWIPER
   ============================================================ */

.journals__slider {
    overflow: hidden;
}

.journals__slider .swiper-slide {
    height: auto;
    box-sizing: border-box;
}


/* ============================================================
   SLIDER WIDGETS
   ============================================================ */

.journals__area .slider__widgets {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 18px;
    margin-top: 25px;
}

.journals__area .slider__widgets a {
    font-weight: 600;
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .journal__home__card {
        padding: 22px 20px;
    }

    .journal__home__card .journal__card__info {
        grid-template-columns: 1fr;
    }

    .journal__home__card .journal__card__actions {
        width: 100%;
    }

    .journal__home__card .journal__card__actions .btn {
        flex: 1;
    }

}

/* ============================================================
   PREVIOUS PAPERS SECTION
   ============================================================ */

.previous__papers__area {
    overflow: hidden;
}

.previous__papers {
    width: 100%;
}


/* ============================================================
   HEADER + NAVIGATION
   ============================================================ */

.previous__papers__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.previous__papers__header {
    margin: 0;
}

.previous__papers__eyebrow {
    display: inline-block;
    margin-bottom: 7px;

    color: hsl(var(--base));

    font-size: 11px;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.previous__papers__header h2 {
    margin: 0;

    color: hsl(var(--heading-color));

    font-family: var(--heading-font);

    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
}

.previous__papers__header p {
    margin: 7px 0 0;

    color: hsl(var(--body-color));

    font-family: var(--body-font);

    font-size: 14px;
    line-height: 1.5;
}


/* ============================================================
   NAVIGATION
   ============================================================ */

.previous__papers__navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 18px;

    flex-shrink: 0;
}

.previous__papers__navigation button {
    width: 38px;
    height: 38px;

    padding: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid hsl(var(--border-color) / 0.15);
    border-radius: 5px;

    background: hsl(var(--white));

    color: hsl(var(--base));

    font-size: 14px;

    cursor: pointer;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.previous__papers__navigation button:hover {
    border-color: hsl(var(--base));

    background: hsl(var(--base));

    color: hsl(var(--white));
}

.previous__papers__navigation button.swiper-button-disabled {
    opacity: .35;
    pointer-events: none;
}

.previous__papers__viewall {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: hsl(var(--base));

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: color .2s ease;
}

.previous__papers__viewall:hover {
    color: hsl(var(--heading-color));
}


/* ============================================================
   SWIPER
   ============================================================ */

.previous__papers__slider {
    width: 100%;
    overflow: hidden;
}

.previous__papers__slider .swiper-wrapper {
    align-items: stretch;
}

.previous__papers__slider .swiper-slide {
    height: auto;

    display: flex;
}


/* ============================================================
   PAPER CARD
   ============================================================ */

.previous__paper__card {
    width: 100%;

    min-height: 450px;
    max-height: 450px;
    display: flex;
    align-items: stretch;

    overflow: hidden;

    background: #ffffff00;

    border: 1px solid hsl(var(--border-color) / 0.12);

    border-radius: 10px;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;
}

.previous__paper__card:hover {
    border-color: hsl(var(--base) / 0.18);

    box-shadow: var(--box-shadow);
}


/* ============================================================
   MAIN PAPER CONTENT
   ============================================================ */

.previous__paper__main {
    width: 75%;

    display: flex;
    flex-direction: column;

    padding: 30px 32px;
}


/* ============================================================
   PAPER LABEL
   ============================================================ */

.previous__paper__label {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 14px;
}

.previous__paper__label > span:first-child {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    background: hsl(var(--base) / 0.07);

    color: hsl(var(--base));

    border: 1px solid hsl(var(--base) / 0.10);

    border-radius: 4px;

    font-size: 10px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: .65px;

    text-transform: uppercase;
}

.previous__paper__label .paper__journal {
    color: hsl(var(--body-color));

    font-size: 12px;

    line-height: 1.4;
}


/* ============================================================
   TITLE
   ============================================================ */

.previous__paper__title {
    margin: 0 0 22px;

    max-width: 850px;

    font-family: var(--heading-font);

    font-size: 25px;
    font-weight: 700;

    line-height: 1.35;
}

.previous__paper__title a {
    color: hsl(var(--heading-color));

    text-decoration: none;

    transition: color .2s ease;
}

.previous__paper__title a:hover {
    color: hsl(var(--base));
}


/* ============================================================
   AUTHOR
   ============================================================ */

.previous__paper__author {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 22px;
}

.author__icon {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: hsl(var(--base) / 0.07);

    color: hsl(var(--base));

    font-size: 13px;
}

.previous__paper__author small {
    display: block;

    margin-bottom: 2px;

    color: hsl(var(--body-color) / 0.55);

    font-size: 8px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: .7px;

    text-transform: uppercase;
}

.previous__paper__author strong {
    display: block;

    color: hsl(var(--heading-color));

    font-size: 13px;
    font-weight: 700;
}


/* ============================================================
   METADATA
   ============================================================ */

.previous__paper__meta {
    display: flex;
    align-items: stretch;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: auto;
}

.paper__meta__item {
    min-width: 150px;

    display: flex;
    align-items: center;

    gap: 9px;

    padding: 9px 11px;

    background: hsl(var(--section-bg));

    border: 1px solid hsl(var(--border-color) / 0.10);

    border-radius: 6px;
}

.paper__meta__item > i {
    flex-shrink: 0;

    color: hsl(var(--base));

    font-size: 13px;
}

.paper__meta__item small {
    display: block;

    margin-bottom: 2px;

    color: hsl(var(--body-color) / 0.60);

    font-size: 8px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: .6px;

    text-transform: uppercase;
}

.paper__meta__item strong {
    display: block;

    color: hsl(var(--heading-color));

    font-size: 11px;
    font-weight: 700;

    line-height: 1.2;
}


/* ============================================================
   ACTIONS
   ============================================================ */

.previous__paper__actions {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-top: 22px;
}

.previous__paper__actions .btn {
    min-height: 43px;

    padding: 10px 20px;

    margin: 0 !important;
}


/* ============================================================
   READ PAPER BUTTON
   ============================================================ */

.previous__paper__actions .btn--base {
    background: hsl(var(--base));

    color: hsl(var(--white));

    border-color: hsl(var(--base));
}

.previous__paper__actions .btn--base:hover {
    background: hsl(var(--base) / 0.90);

    color: hsl(var(--white));
}


/* ============================================================
   JOURNAL VISUAL
   ============================================================ */

.previous__paper__visual {
    width: 25%;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 28px 20px;

    background: hsl(var(--section-bg));

    border-left: 1px solid hsl(var(--border-color) / 0.10);
}

.paper__cover__link {
    display: block;

    text-decoration: none;
}

.paper__cover__wrapper {
    width: 150px;
    height: 205px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px;

    background: #ffffff00;

    border: 1px solid hsl(var(--border-color) / 0.12);

    box-shadow: 0 4px 15px hsl(var(--base) / 0.04);
}

.paper__cover__wrapper img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    transition: transform .25s ease;
}

.paper__cover__link:hover .paper__cover__wrapper img {
    transform: scale(1.025);
}

.paper__visual__journal {
    width: 100%;

    max-width: 190px;

    margin-top: 14px;

    text-align: center;
}

.paper__visual__journal small {
    display: block;

    margin-bottom: 4px;

    color: hsl(var(--body-color) / 0.55);

    font-size: 8px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: .7px;

    text-transform: uppercase;
}

.paper__visual__journal strong {
    display: block;

    color: hsl(var(--heading-color));

    font-size: 15px;
    font-weight: 700;

    line-height: 1.45;
}


/* ============================================================
   SIDEBAR
   ============================================================ */

.previous__papers__sidebar {
    width: 100%;
}

.issue__browse__card {
    padding: 24px;

    background: #ffffff00;

    border: 1px solid hsl(var(--border-color) / 0.12);

    border-radius: 10px;

    box-shadow: none;
}


/* ============================================================
   SIDEBAR HEADER
   ============================================================ */

.issue__browse__header {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.issue__browse__icon {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 7px;

    background: hsl(var(--base) / 0.07);

    color: hsl(var(--base));

    font-size: 17px;
}

.issue__browse__header > div > span {
    display: block;

    margin-bottom: 3px;

    color: hsl(var(--body-color) / 0.55);

    font-size: 8px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: .8px;
}

.issue__browse__header h4 {
    margin: 0;

    color: hsl(var(--heading-color));

    font-family: var(--heading-font);

    font-size: 18px;
    font-weight: 700;

    line-height: 1.2;
}


/* ============================================================
   SIDEBAR DESCRIPTION
   ============================================================ */

.issue__browse__description {
    margin: 0 0 20px;

    color: #ffffff00;

    font-size: 12px;

    line-height: 1.7;
}


/* ============================================================
   SELECT
   ============================================================ */

.issue__select__wrapper label {
    display: block;

    margin-bottom: 7px;

    color: hsl(var(--heading-color));

    font-size: 10px;
    font-weight: 700;
}

.issue__select__wrapper .form--control,
.issue__select__wrapper select {
    width: 100%;

    min-height: 54px;

    padding: 0 14px;

    background: #ffffff00;

    color: hsl(var(--heading-color));

    border: 1px solid hsl(var(--border-color) / 0.25);

    border-radius: 5px;

    font-size: 14px;

    outline: none;

    transition: border-color .2s ease;
}

.issue__select__wrapper .form--control:focus,
.issue__select__wrapper select:focus {
    border-color: hsl(var(--base));
}


/* ============================================================
   DIVIDER
   ============================================================ */

.issue__browse__divider {
    width: 100%;
    height: 1px;

    margin: 21px 0;

    background: hsl(var(--border-color) / 0.10);
}


/* ============================================================
   BROWSE BUTTON
   ============================================================ */

.issue__browse__button {
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 10px 14px;

    background: transparent;

    border: 1px solid hsl(53deg 18% 10% / 14%);

    border-radius: 5px;

    color: hsl(var(--base));

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}

.issue__browse__button:hover {
    background: hsl(var(--base));

    color: hsl(var(--white));
}


/* ============================================================
   ARCHIVE NOTE
   ============================================================ */

.issue__archive__note {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin-top: 15px;

    padding: 15px;

    background: hsl(var(--section-bg));

    border-radius: 8px;
}

.issue__archive__note > i {
    margin-top: 2px;

    color: hsl(var(--base));

    font-size: 14px;
}

.issue__archive__note strong {
    display: block;

    margin-bottom: 4px;

    color: hsl(var(--heading-color));

    font-size: 10px;
    font-weight: 700;
}

.issue__archive__note p {
    margin: 0;

    color: hsl(var(--body-color) / 0.70);

    font-size: 9px;

    line-height: 1.6;
}


/* ============================================================
   EMPTY STATE
   ============================================================ */

.previous__paper__empty {
    width: 100%;

    padding: 70px 20px;

    text-align: center;

    background: hsl(var(--white));

    border: 1px solid hsl(var(--border-color) / 0.12);

    border-radius: 10px;
}

.previous__paper__empty i {
    display: block;

    margin-bottom: 15px;

    color: hsl(var(--body-color) / 0.30);

    font-size: 40px;
}

.previous__paper__empty h4 {
    margin: 0 0 7px;

    color: hsl(var(--heading-color));

    font-family: var(--heading-font);

    font-size: 18px;
}

.previous__paper__empty p {
    margin: 0;

    color: hsl(var(--body-color));

    font-size: 13px;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1199px) {

    .previous__paper__main {
        width: 72%;

        padding: 27px;
    }

    .previous__paper__visual {
        width: 28%;
    }

    .previous__paper__title {
        font-size: 22px;
    }

    .paper__cover__wrapper {
        width: 135px;
        height: 190px;
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 991px) {

    .previous__papers__top {
        align-items: flex-start;
    }

    .previous__papers__navigation {
        gap: 10px;
    }

    .previous__papers__viewall {
        font-size: 12px;
    }

    .previous__paper__card {
        min-height: 430px;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 767px) {

    .previous__papers__top {
        display: block;

        margin-bottom: 22px;
    }

    .previous__papers__header h2 {
        font-size: 24px;
    }

    .previous__papers__navigation {
        justify-content: flex-start;

        margin-top: 18px;
    }

    .previous__paper__card {
        display: block;

        min-height: auto;
    }

    .previous__paper__main {
        width: 100%;

        padding: 23px;
    }

    .previous__paper__visual {
        width: 100%;

        min-height: 280px;

        padding: 25px;

        border-top: 1px solid hsl(var(--border-color) / 0.10);

        border-left: 0;
    }

    .previous__paper__title {
        font-size: 21px;
    }

    .previous__paper__meta {
        display: grid;

        grid-template-columns: repeat(2, 1fr);
    }

    .paper__meta__item {
        min-width: 0;
    }

    .previous__papers__sidebar {
        margin-top: 10px;
    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 480px) {

    .previous__papers__header h2 {
        font-size: 22px;
    }

    .previous__papers__navigation {
        justify-content: space-between;
    }

    .previous__papers__viewall {
        flex: 1;

        justify-content: center;
    }

    .previous__paper__meta {
        grid-template-columns: 1fr;
    }

    .previous__paper__actions {
        flex-direction: column;

        align-items: stretch;
    }

    .previous__paper__actions .btn {
        width: 100%;

        justify-content: center;
    }

    .previous__paper__visual {
        min-height: 260px;
    }

    .issue__browse__card {
        padding: 20px;
    }

}