@import url("//cdn.web-fonts.ge/fonts/bpg-arial-caps/css/bpg-arial-caps.min.css");
@import url("//cdn.web-fonts.ge/fonts/bpg-nino-mtavruli-bold/css/bpg-nino-mtavruli-bold.min.css");
@import url('https://pro.fontawesome.com/releases/v5.15.4/css/all.css');

:root {
    --primary-color: #0058a8;
    --primary-color-hover: #003d75;
}

* {
    text-decoration: none !important;
}

html,
body {
    background-color: #fdfcfb !important;
}

.container {
    max-width: 1250px;
    margin: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.logobar-h {
    min-height: 139px;
    max-height: 139px;
    display: flex;
    align-items: center;
    position: relative;
}

@media (max-width: 992px) {
    .logobar-h {
        min-height: auto;
        max-height: none;
        height: auto;
        flex-wrap: wrap;
        gap: 10px;
        position: relative;
    }
}

.header-nav {
    min-height: 40px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    padding: 0px 10px;
    border-radius: 6px;
}

.header-nav a, .header-nav > div > a {
    font-family: 'BPG Arial Caps', sans-serif;
    color: #fff;
    padding: 15px;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.menu-dropdown {
    position: relative;
    display: inline-flex;
}
.menu-dropdown > .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    z-index: 1000;
    padding: 6px 0;
    animation: ddFadeIn 0.15s ease;
}
.menu-dropdown > .dropdown-menu.open {
    display: block;
}
.menu-dropdown > .dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    font-family: 'FiraGO', sans-serif;
    font-size: 13px;
    white-space: nowrap;
    transition: background 0.12s;
}
.menu-dropdown > .dropdown-menu a:hover {
    background: #eaf1fb;
    color: var(--primary-color);
}

.academy-name-alongside-logo {
    color: #666;
    font-family: 'BPG Arial Caps';
    max-width: 200px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 0.6px;
    padding-left: 30px;
    margin-left: 20px;
    position: relative;
}

.academy-name-alongside-logo::before {
    content: "";
    --w: 3px;
    min-width: var(--w);
    max-width: var(--w);
    background-color: #666;
    position: absolute;
    left: 0;
    top: 3px;
    bottom: 3px;
    z-index: 2;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switcher {
    display: flex;
    gap: 2px;
    position: relative;
}

.lang-switcher .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    min-width: 120px;
    background: #fff;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 6px 0;
    animation: ddFadeIn 0.15s ease;
}

.lang-switcher .dropdown-menu.open {
    display: block;
}

.lang-switcher .dropdown-menu button {
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    border-bottom: none;
}

.lang-switcher .dropdown-menu button:hover {
    background: #eaf1fb;
    color: var(--primary-color);
}

.lang-switcher button {
    background: none;
    border: none;
    padding: 4px 8px;
    font-family: 'BPG Arial Caps', serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    color: #999;
    transition: all 0.2s;
    border-bottom: 1px solid transparent;
}

.lang-switcher button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 700;
}

.lang-switcher button:not(.active):hover {
    color: #666;
}

.lang-divider {
    width: 1px;
    background: #ccc;
    align-self: stretch;
    margin: 4px 2px;
}

.btn-login,
.btn-register {
    font-family: 'BPG Arial Caps', serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 6px 18px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-login {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: transparent;
}

.btn-login:hover {
    background: rgba(0, 88, 168, 0.05);
}

.btn-register {
    color: #fff;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-register:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}

.btn-login i,
.btn-register i {
    font-size: 11px;
}

.search-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 88, 168, 0.95);
    align-items: center;
    justify-content: center;
}

.search-overlay.open {
    display: flex;
}

.search-overlay-content {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    position: relative;
}

.search-overlay-close {
    position: absolute;
    top: -60px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.search-overlay-close:hover {
    opacity: 1;
}

.search-overlay-form {
    display: flex;
    gap: 0;
}

.search-overlay-input {
    flex: 1;
    padding: 18px 24px;
    font-family: 'FiraGO';
    font-size: 18px;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .search-overlay-input {
        font-size: 16px;
        padding: 14px 16px;
    }
    .search-overlay-content {
        padding: 16px;
    }
    .search-overlay-close {
        top: -50px;
        right: 10px;
        font-size: 24px;
    }
}

.search-overlay-input::placeholder {
    color: #aaa;
}

.search-overlay-btn {
    padding: 18px 36px;
    background: #fff;
    color: var(--primary-color);
    border: none;
    font-family: 'BPG Arial Caps', serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.search-overlay-btn:hover {
    background: #e8f0f8;
}


.page-header {
    margin-bottom: 30px;
}

.page-header h1 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0;
}

.site-footer {
    background: #ffffff;
    color: #1a2332;
    margin-top: 60px;
    padding: 0;
    font-family: 'BPG Arial Caps', sans-serif;
    font-size: 15px;
    line-height: 1.7;
}

.footer-inner {
    background: var(--primary-color);
    border-radius: 6px 6px 12px 12px;
    padding: 44px 40px 40px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        padding: 32px 24px;
        margin-top: 30px;
    }
}

.footer-col h5 {
    font-family: 'BPG Arial Caps', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #fff;
    padding-bottom: 10px;
    text-decoration: none;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-issn {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 3px;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.footer-logo-wrap {
    margin-bottom: 16px;
}

.footer-logo-wrap img {
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 0;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: #fff;
    border-top: 1px solid #e1e4e8;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    padding: 14px 0;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0 16px;
    }
    .cookie-actions {
        justify-content: stretch;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

.cookie-text {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
}

.cookie-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    font-family: 'BPG Arial Caps', serif;
    font-size: 12px;
    letter-spacing: 0.4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--primary-color-hover);
}

.cookie-decline {
    background: #f0f2f4;
    color: #555;
}

.cookie-decline:hover {
    background: #e4e6e9;
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.user-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 16px 5px 5px;
    border: 1px solid #e0e4e8;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: all 0.25s;
}

.user-dropdown-trigger:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 12px rgba(0, 88, 168, 0.12);
}

.user-dropdown-trigger .avatar-sm {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: #eef2f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-dropdown-trigger .avatar-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-dropdown-trigger .avatar-sm .no-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #99aabb;
    font-size: 16px;
}

.user-dropdown-trigger .user-name {
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.user-dropdown-trigger .fa-chevron-down {
    font-size: 10px;
    color: #aaa;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-dropdown.open .fa-chevron-down {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 6px 0;
    animation: ddFadeIn 0.2s ease;
}

@keyframes ddFadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.user-dropdown.open .user-dropdown-menu {
    display: block;
}

.user-dropdown-menu .dd-header {
    padding: 10px 16px 8px;
    border-bottom: 1px solid #f0f2f4;
    margin-bottom: 4px;
}

.user-dropdown-menu .dd-header .dd-user-name {
    font-family: 'FiraGO';
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.user-dropdown-menu .dd-header .dd-user-email {
    font-family: 'FiraGO';
    font-size: 12px;
    color: #999;
}

.user-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-family: 'FiraGO';
    font-size: 13px;
    color: #444;
    transition: background 0.15s;
    text-decoration: none;
}

.user-dropdown-menu a:hover {
    background: #f5f8fc;
    color: var(--primary-color);
}

.user-dropdown-menu a i {
    width: 18px;
    font-size: 14px;
    color: #8899aa;
    text-align: center;
    transition: color 0.15s;
}

.user-dropdown-menu a:hover i {
    color: var(--primary-color);
}

.user-dropdown-menu .dropdown-divider {
    height: 1px;
    background: #f0f2f4;
    margin: 4px 12px;
}

.user-dropdown-menu a.dd-logout {
    color: #e74c3c;
}

.user-dropdown-menu a.dd-logout i {
    color: #e74c3c;
}

.user-dropdown-menu a.dd-logout:hover {
    background: #fef2f2;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.2s ease;
}

.modal-overlay.open {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-box {
    background: #fff;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    padding: 32px 28px 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: modalSlideUp 0.25s ease;
}

.modal-box .modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.modal-box .modal-icon.danger {
    background: #fef2f2;
    color: #e74c3c;
}

.modal-box .modal-icon.warning {
    background: #fef9e7;
    color: #f39c12;
}

.modal-box h3 {
    font-family: 'FiraGO';
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.modal-box p {
    font-family: 'FiraGO';
    font-size: 14px;
    color: #777;
    margin: 0 0 24px;
    line-height: 1.5;
}

.modal-box .modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-box .modal-actions button {
    padding: 10px 28px;
    font-family: 'BPG Arial Caps', serif;
    font-size: 13px;
    letter-spacing: 0.4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 8px;
}

.modal-box .modal-actions .btn-cancel {
    background: #f0f2f4;
    color: #555;
}

.modal-box .modal-actions .btn-cancel:hover {
    background: #e4e6e9;
}

.modal-box .modal-actions .btn-confirm {
    background: #e74c3c;
    color: #fff;
}

.modal-box .modal-actions .btn-confirm:hover {
    background: #c0392b;
}

/* Dashboard */
.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dash-card {
    background: #fff;
    border: 1px solid #e1e4e8;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dash-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0;
}

.dash-card-icon.blue {
    background: var(--primary-color);
}

.dash-card-icon.green {
    background: #27ae60;
}

.dash-card-icon.orange {
    background: #f39c12;
}

.dash-card-icon.red {
    background: #e74c3c;
}

.dash-card-info h3 {
    font-family: 'FiraGO';
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.dash-card-info p {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
    margin: 2px 0 0;
}

.account-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 600;
    border-radius: 0;
}

.account-status.pending {
    background: #fef9e7;
    color: #7d6608;
    border: 1px solid #f9e79f;
}

.account-status.approved {
    background: #e8f8f0;
    color: #1e8449;
    border: 1px solid #a9dfbf;
}

.account-status.rejected {
    background: #fdedec;
    color: #922b21;
    border: 1px solid #f5b7b1;
}

.dash-section {
    background: #fff;
    border: 1px solid #e1e4e8;
    margin-bottom: 24px;
}

.dash-section-header {
    padding: 16px 24px;
    border-bottom: 1px solid #e1e4e8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.dash-section-header h2 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    margin: 0;
}

.dash-section-body {
    padding: 0;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .dash-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .dash-section-header {
        padding: 14px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    .dash-card {
        padding: 16px;
    }
    .dash-card-info h3 {
        font-size: 20px;
    }
}

.dash-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'FiraGO';
}

.dash-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
    background: #fafafa;
    border-bottom: 1px solid #e1e4e8;
}

.dash-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.dash-table tr:last-child td {
    border-bottom: none;
}

.dash-table .status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.pending {
    background: #fef9e7;
    color: #7d6608;
}

.status-badge.review {
    background: #ebf5fb;
    color: #1a5276;
}

.status-badge.approved {
    background: #e8f8f0;
    color: #1e8449;
}

.status-badge.revision {
    background: #fdf2e9;
    color: #a04000;
}

.status-badge.rejected {
    background: #fdedec;
    color: #922b21;
}

.dash-table .actions a {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 13px;
}

.dash-table .actions a.btn-delete {
    color: #e74c3c;
}

.dash-table .actions a.btn-delete:hover {
    color: #c0392b;
}

.btn-new-submission {
    font-family: 'BPG Arial Caps', serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-new-submission:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}

.dash-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.dash-profile .avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-family: 'BPG Arial Caps', serif;
    font-weight: 700;
}

.dash-profile .info .name {
    font-family: 'FiraGO';
    font-weight: 700;
    font-size: 16px;
    color: #222;
}

.dash-profile .info .email {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
}

/* ====== Index / Home Page ====== */
.latest-relase {
    display: flex;
    gap: 24px;
}
@media (max-width: 768px) {
    .latest-relase { flex-direction: column; }
}
.efrfrf {
    flex-shrink: 0;
}
.relase-image-cover {
    position: relative;
    width: 293px;
    overflow: hidden;
}
.journal-cover-image {
    width: 100%;
    display: block;
}
.relase-image-cover-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 88, 168, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-family: 'BPG Arial Caps', serif;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.relase-image-cover:hover .relase-image-cover-hover {
    opacity: 1;
}
.latest-relase-details {
    flex: 1;
}
.latest-relase-details h1 {
    font-family: 'BPG Nino Mtavruli Bold', sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 0 12px;
}
.publication-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.publication-meta li {
    display: flex;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'FiraGO';
    font-size: 14px;
}
.publication-meta li .label {
    font-weight: 700;
    color: #555;
    min-width: 160px;
    flex-shrink: 0;
}
.publication-meta li p {
    margin: 0;
    color: #444;
}
.meta-footer {
    margin-top: 20px;
}
.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'BPG Arial Caps', serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 10px 28px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
}
.view-details-btn:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}
.prev-issues-heading {
    font-family: 'BPG Nino Mtavruli Bold', sans-serif;
    font-size: 22px;
    color: var(--primary-color);
    margin: 0 0 20px;
}
.prev-issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
}
.prev-issue-item {
    display: block;
    text-decoration: none;
}
.prev-issue-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid #e1e4e8;
    transition: box-shadow 0.25s;
}
.prev-issue-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.admin-cover {
    position: relative;
    overflow: hidden;
    padding-top: 115%;
}
.admin-cover img,
.admin-cover svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.admin-cover img {
    object-fit: cover;
}
.admin-cover svg {
    padding: 20%;
    margin: auto;
}
.prev-issue-item:hover .prev-issue-cover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.prev-issue-label {
    display: block;
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-top: 8px;
    text-align: center;
}
.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'BPG Arial Caps', serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 10px 32px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all 0.3s;
}
.btn-show-more:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Sidebar */
.sidebar {
    padding-left: 10px;
}
@media (max-width: 992px) {
    .sidebar { padding-left: 0; margin-top: 30px; }
}
.sidebar-section {
    margin-bottom: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e1e4e8;
}
.sidebar-section h4 {
    font-family: 'BPG Nino Mtavruli Bold', sans-serif;
    font-size: 14px;
    color: var(--primary-color);
    margin: 0 0 12px;
}
.sidebar-section p {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #555;
    margin: 0 0 6px;
}
.issn-box {
    display: inline-block;
    background: #f0f4f8;
    padding: 2px 10px;
    font-family: monospace;
    font-size: 12px;
    color: #333;
    letter-spacing: 0.3px;
}
.gr-journal-metadata p {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

/* ====== Archive Page ====== */
.archive-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}
.archive-header h1 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0;
}
.archive-search-form {
    display: flex;
    gap: 0;
}
.archive-search-form input {
    padding: 10px 16px;
    font-family: 'FiraGO';
    font-size: 14px;
    border: 1px solid #ddd;
    outline: none;
    background: #fff;
    min-width: 240px;
}
.archive-search-form input:focus {
    border-color: var(--primary-color);
}
.archive-search-form button {
    padding: 10px 20px;
    font-family: 'BPG Arial Caps', serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}
.archive-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e1e4e8;
}
.archive-filters-label {
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.archive-filters a {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
    padding: 4px 12px;
    transition: all 0.2s;
}
.archive-filters a.active,
.archive-filters a:hover {
    color: var(--primary-color);
    background: rgba(0, 88, 168, 0.06);
}
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.archive-item {
    display: block;
    background: #fff;
    border: 1px solid #e1e4e8;
    transition: box-shadow 0.25s;
    text-decoration: none;
}
.archive-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.archive-item-cover {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.archive-item-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.archive-item-body {
    padding: 12px 14px;
}
.archive-item-body h3 {
    font-family: 'FiraGO';
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
}
.archive-item-body p {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
    margin: 0;
}
.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    font-family: 'FiraGO';
    font-size: 14px;
    padding: 0 8px;
    border: 1px solid #e1e4e8;
    background: #fff;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}
.pagination a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.pagination span.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        gap: 4px;
    }
    .pagination a,
    .pagination span {
        min-width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .d-flex {
        flex-direction: column;
    }
    .article-actions {
        flex-direction: row;
        margin-top: 6px;
    }
}

/* ====== Details Page ====== */
.details-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .details-layout {
        grid-template-columns: 1fr;
    }
}
.details-cover {
    position: relative;
    overflow: hidden;
}
.details-cover img {
    width: 100%;
    display: block;
    border: 1px solid #e1e4e8;
}
.details-cover .overlay-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 88, 168, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-family: 'BPG Arial Caps', serif;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.details-cover:hover .overlay-hover {
    opacity: 1;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'BPG Arial Caps', serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    background: #e74c3c;
    color: #fff;
    border: 1px solid #e74c3c;
    transition: all 0.3s;
    text-align: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .btn-download {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
}
.btn-download:hover {
    background: #c0392b;
    border-color: #c0392b;
}
.details-header {
    margin-bottom: 24px;
}
.details-header h1 {
    font-family: 'BPG Nino Mtavruli Bold', sans-serif;
    font-size: 26px;
    color: var(--primary-color);
    margin: 0 0 12px;
}
.details-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.details-meta span {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.details-section {
    margin-bottom: 28px;
}
.details-section h2 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e1e4e8;
}
.details-section p {
    font-family: 'FiraGO';
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}
.details-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 600px) {
    .details-meta-grid {
        grid-template-columns: 1fr;
    }
}
.details-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    background: #fafafa;
    border: 1px solid #eee;
}
.details-meta-item .label {
    font-family: 'FiraGO';
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #999;
}
.details-meta-item .value {
    font-family: 'FiraGO';
    font-size: 14px;
    color: #444;
    word-break: break-all;
}
.articles-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.articles-list li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.article-item .article-authors {
    display: inline;
    margin-bottom: 0;
}
.article-item .article-pages {
    display: inline;
}
.d-flex {
    display: flex;
}
.justify-between {
    justify-content: space-between;
}
.w-100 {
    flex: 1;
    min-width: 0;
}
.article-actions {
    flex-shrink: 0;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.articles-list li:last-child {
    border-bottom: none;
}
.article-title {
    font-family: 'FiraGO';
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}
.article-title:hover {
    text-decoration: underline;
}
.article-authors {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
    margin-bottom: 2px;
}
.article-pages {
    font-family: 'FiraGO';
    font-size: 12px;
    color: #aaa;
}

.btn-more,
.btn-cite {
    font-family: 'FiraGO';
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 3px;
    cursor: pointer;
    transition: .2s;
    max-height: 29px;
}
.btn-more:hover,
.btn-cite:hover {
    background: var(--primary-color);
    color: #fff;
}

.article-expanded {
    margin-top: 10px;
    padding: 12px 14px;
    background: #f9f9f9;
    border-left: 3px solid var(--primary-color);
    border-radius: 3px;
    font-family: 'FiraGO';
    font-size: 13px;
    color: #555;
    line-height: 1.7;
}
.article-expanded p {
    margin: 0 0 6px;
}
.article-expanded p:last-child {
    margin-bottom: 0;
}
.article-expanded a {
    color: var(--primary-color);
    word-break: break-all;
}
.article-cite-box {
    margin-top: 10px;
    position: relative;
}
.cite-modal {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
    position: relative;
    overflow: hidden;
}
.cite-close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: none;
    background: none;
    font-size: 22px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
}
.cite-close:hover {
    color: #333;
}
.cite-modal-body {
    display: flex;
    min-height: 200px;
}
.cite-sidebar {
    width: 130px;
    flex-shrink: 0;
    background: #f7f7f7;
    padding: 16px 0;
    border-right: 1px solid #eee;
}
.cite-style-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 16px;
    border: none;
    background: none;
    font-family: 'FiraGO';
    font-size: 13px;
    color: #444;
    cursor: pointer;
    text-align: left;
    transition: .1s;
}
.cite-style-btn:hover {
    background: #eee;
}
.cite-style-btn.active {
    background: #fff;
    color: #1a1a1a;
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--primary-color);
}
.cite-arrow {
    font-size: 14px;
    color: var(--primary-color);
}
.cite-main {
    flex: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cite-text {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #333;
    line-height: 1.7;
    margin: 0;
}
.cite-text em {
    font-style: italic;
}
.btn-copy-cite {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 500;
    padding: 6px 18px;
    border: 1px solid #ccc;
    background: #fff;
    color: #444;
    border-radius: 4px;
    cursor: pointer;
    transition: .2s;
    align-self: flex-start;
}
.btn-copy-cite:hover {
    background: #f0f0f0;
    border-color: #aaa;
}
.copy-icon {
    font-size: 12px;
    letter-spacing: -1px;
}
.cite-export {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 12px;
    border-top: 1px solid #eee;
}
.btn-export {
    font-family: 'FiraGO';
    font-size: 12px;
    font-weight: 500;
    padding: 5px 16px;
    border: 1px solid #ccc;
    background: #fff;
    color: #555;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s;
}
.btn-export:hover {
    background: #f0f0f0;
    border-color: #aaa;
}

/* ====== About / Contact / Static Pages ====== */
.static-page {
    max-width: 800px;
    margin: 0 auto;
}
.static-page h1 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 28px;
    color: var(--primary-color);
    margin: 0 0 24px;
}
.static-page h2 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    margin: 28px 0 14px;
}
.static-page p {
    font-family: 'FiraGO';
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0 0 16px;
}
.static-page ul {
    font-family: 'FiraGO';
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    padding-left: 20px;
}

/* Editorial Board */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.editorial-card {
    background: #fff;
    border: 1px solid #e1e4e8;
    padding: 24px;
    text-align: center;
}
.editorial-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-family: 'BPG Arial Caps', serif;
    font-weight: 700;
    margin: 0 auto 14px;
}
.editorial-card .name {
    font-family: 'FiraGO';
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.editorial-card .role {
    font-family: 'FiraGO';
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.editorial-card .affiliation {
    font-family: 'FiraGO';
    font-size: 12px;
    color: #999;
}

/* Contact Form */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    font-family: 'FiraGO';
    font-size: 14px;
    color: #444;
}
.contact-info-list i {
    width: 20px;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 2px;
}
.contact-form label {
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'FiraGO';
    font-size: 14px;
    border: 1px solid #ddd;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
}
.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}
.contact-form .btn-submit {
    font-family: 'BPG Arial Caps', serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 12px 36px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}
.contact-form .btn-submit:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}

/* Submit / Login / Register Pages */
.auth-card {
    max-width: 460px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e1e4e8;
    padding: 36px 32px;
}
.auth-card h1 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 0 8px;
    text-align: center;
}
.auth-card .subtitle {
    font-family: 'FiraGO';
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-bottom: 24px;
}
.auth-card .form-group {
    margin-bottom: 18px;
}
.auth-card .form-group label {
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 6px;
}
.auth-card .form-group input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'FiraGO';
    font-size: 14px;
    border: 1px solid #ddd;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s;
}
.auth-card .form-group input:focus {
    border-color: var(--primary-color);
    background: #fff;
}
.auth-card .btn-submit {
    width: 100%;
    padding: 14px;
    font-family: 'BPG Arial Caps', serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}
.auth-card .btn-submit:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}
.auth-card .form-footer {
    text-align: center;
    margin-top: 20px;
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
}
.auth-card .form-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Submit page */
.submit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 768px) {
    .submit-layout { grid-template-columns: 1fr; }
}
.submit-guidelines h3 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 16px;
    color: var(--primary-color);
    margin: 0 0 12px;
}
.submit-guidelines ul {
    font-family: 'FiraGO';
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    padding-left: 18px;
}
.submit-form .form-group {
    margin-bottom: 18px;
}
.submit-form .form-group label {
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 6px;
}
.submit-form .form-group input,
.submit-form .form-group select,
.submit-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'FiraGO';
    font-size: 14px;
    border: 1px solid #ddd;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s;
}
.submit-form .form-group input:focus,
.submit-form .form-group select:focus,
.submit-form .form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
}
.submit-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Page content wrapper (about, ethics, etc.) */
/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
    background: #fff;
    border: 1px solid #e1e4e8;
    padding: 24px;
    text-align: center;
}
.contact-card i {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.contact-card h3 {
    font-family: 'FiraGO';
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px;
}
.contact-card p {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* Editorial Board (old class names) */
.editor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.editor-card {
    background: #fff;
    border: 1px solid #e1e4e8;
    padding: 24px;
    text-align: center;
}
.editor-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-family: 'BPG Arial Caps', serif;
    font-weight: 700;
    margin: 0 auto 14px;
    overflow: hidden;
}
.editor-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.editor-card .name {
    font-family: 'FiraGO';
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.editor-card .role {
    font-family: 'FiraGO';
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 8px;
}
.editor-card .affiliation {
    font-family: 'FiraGO';
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Submit guidelines */
.guidelines-step {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #eee;
}
.step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'BPG Arial Caps', serif;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}
.step-text {
    font-family: 'FiraGO';
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

/* Auth pages (login, register, reset password) */
.auth-container {
    max-width: 460px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #e1e4e8;
    padding: 36px 32px;
}
.auth-container h1 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 0 8px;
    text-align: center;
}
.auth-container .subtitle {
    font-family: 'FiraGO';
    font-size: 14px;
    color: #999;
    text-align: center;
    margin-bottom: 24px;
}
.auth-container .form-group {
    margin-bottom: 18px;
}
.auth-container .form-group label {
    font-family: 'FiraGO';
    font-size: 13px;
    font-weight: 600;
    color: #555;
    display: block;
    margin-bottom: 6px;
}
.auth-container .form-group input {
    width: 100%;
    padding: 12px 16px;
    font-family: 'FiraGO';
    font-size: 14px;
    border: 1px solid #ddd;
    outline: none;
    background: #fafafa;
    transition: border-color 0.2s;
}
.auth-container .form-group input:focus {
    border-color: var(--primary-color);
    background: #fff;
}
.auth-container .form-row {
    display: flex;
    gap: 16px;
}
.auth-container .form-row .form-group {
    flex: 1;
    margin-bottom: 18px;
}
.auth-container .auth-note {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}
.auth-container .auth-alt {
    text-align: center;
    margin-top: 20px;
    font-family: 'FiraGO';
    font-size: 13px;
    color: #888;
}
.auth-container .auth-alt a {
    color: var(--primary-color);
    font-weight: 600;
}
.auth-container .btn-submit {
    width: 100%;
    padding: 14px;
    font-family: 'BPG Arial Caps', serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}
.auth-container .btn-submit:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}
.auth-container .success-msg {
    text-align: center;
    padding: 16px;
    background: #e8f8f0;
    border: 1px solid #a9dfbf;
    color: #1e8449;
    font-family: 'FiraGO';
    font-size: 14px;
    margin-bottom: 20px;
}
.auth-container .error-msg {
    text-align: center;
    padding: 16px;
    background: #fdedec;
    border: 1px solid #f5b7b1;
    color: #922b21;
    font-family: 'FiraGO';
    font-size: 14px;
    margin-bottom: 20px;
}

/* Privacy page */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'FiraGO';
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}
.privacy-content h2 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    margin: 28px 0 14px;
}
.privacy-content p {
    margin-bottom: 16px;
}
.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

/* Robot / Captcha */
.captcha-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f9fafb;
    border: 1px solid #e1e4e8;
    margin-bottom: 18px;
}
.robot-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'FiraGO';
    font-size: 13px;
    color: #555;
}
.robot-checkbox .check-box {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    background: #fff;
}
.robot-checkbox .check-box.checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.robot-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-family: 'FiraGO';
    font-size: 11px;
}
.robot-badge i {
    font-size: 20px;
}
.spinner-overlay {
    display: none;
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.spinner-overlay.show {
    display: flex;
}
.captcha-error {
    color: #e74c3c;
    font-family: 'FiraGO';
    font-size: 12px;
    margin-top: -14px;
    margin-bottom: 14px;
    display: none;
}
.captcha-error.show {
    display: block;
}

/* Rules checkbox */
.rules-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-family: 'FiraGO';
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
.rules-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
}
.rules-checkbox a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Prev issues section */
.prev-issues-section {
    margin-top: 40px;
}

/* Last updated (privacy page) */
.last-updated {
    font-family: 'FiraGO';
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 20px;
}

/* Contact send button */
.btn-send {
    font-family: 'BPG Arial Caps', serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 12px 36px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-send:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}

/* Submit article button */
.btn-submit-article {
    font-family: 'BPG Arial Caps', serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px 40px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}
.btn-submit-article:hover {
    background: var(--primary-color-hover);
    border-color: var(--primary-color-hover);
}

/* Robot label (login captcha) */
.robot-label {
    font-family: 'FiraGO';
    font-size: 11px;
    color: #999;
    display: block;
    margin-top: 2px;
}

/* Static page content headings */
.page-content h2 {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 20px;
    color: var(--primary-color);
    margin: 28px 0 14px;
}

.page-content h3 {
    font-family: 'FiraGO';
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 24px 0 10px;
}

.page-content p {
    font-family: 'FiraGO';
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2px;
}

.page-content ul {
    font-family: 'FiraGO';
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    padding-left: 20px;
    margin-bottom: 16px;
}

.col-lg-9 > article {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
}
.no-records {
    text-align: center;
    color: #999;
    font-size: 14px;
    padding: 40px 0;
    margin: 0;
}




/* skeleton */

.outer2 {
    position: relative;
    background: #eee;
    border-radius: 10px;
}

.outer2:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 174.358974359%;
}

.outer2>.inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}


.bg-ddd{
    background-color: #ddd;
}

.skeleton {
    position: relative;
    overflow: hidden;
}

.skeleton::before {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    width: 50%;
    height: 100%;
    top: 0;
    left: 0;
    animation: loading 0.7s infinite;
}

@keyframes loading {
    0% {
        transform: skewX(-10deg) translateX(-100%);
    }
    100% {
        transform: skewX(-10deg) translateX(200%);
    }
}

/* ============================================
   RESPONSIVE STYLES - PUBLIC SIDE
   ============================================ */

/* Mobile menu toggle button - hidden by default */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 22px;
    cursor: pointer;
    padding: 6px 10px;
    line-height: 1;
}

.mobile-nav-header {
    display: none;
}

.mobile-overlay {
    display: none;
}

.mobile-user-icon {
    display: none;
}

.mobile-lang-switcher {
    display: none;
}

/* ---- Tablet & below (max-width: 992px) ---- */
@media (max-width: 992px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .academy-name-alongside-logo {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
    }

    .header-actions .btn-login span,
    .header-actions .btn-register span {
        display: none;
    }

    .header-actions .btn-login,
    .header-actions .btn-register {
        padding: 6px 12px;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border-radius: 0 0 6px 6px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
        background: var(--primary-color);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    }

    .header-nav.mobile-open {
        display: flex;
    }

    .header-nav .menu-dropdown {
        display: block;
        position: relative;
    }

    .header-nav .menu-dropdown > a,
    .header-nav .menu-dropdown > div > a {
        display: block;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 14px;
    }

    .header-nav .menu-dropdown > .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.08);
        animation: none;
    }

    .header-nav .menu-dropdown > .dropdown-menu.open {
        display: block;
    }

    .header-nav .menu-dropdown > .dropdown-menu a {
        padding: 12px 20px 12px 36px;
        color: rgba(255, 255, 255, 0.85);
        font-size: 13px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-nav .menu-dropdown > .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }

    .header-nav .search-nav-link {
        padding: 14px 20px;
        color: #fff;
        font-size: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .header-nav > div > a {
        padding: 14px 20px;
    }

    .logo img {
        max-height: 60px;
    }

    .sidebar {
        margin-top: 30px;
        padding-left: 0;
    }

    .col-lg-9 > article {
        padding: 20px;
    }
}

/* ---- Mobile (max-width: 768px) ---- */
@media (max-width: 768px) {
    .logobar-h {
        padding: 10px 0;
        position: relative;
    }

    .logo img {
        max-height: 50px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .btn-login,
    .header-actions .btn-register {
        padding: 5px 10px;
        font-size: 11px;
    }

    .lang-switcher button {
        font-size: 11px;
        padding: 4px 6px;
    }

    .public-main {
        margin-top: 12px !important;
    }

    /* Latest release - stack vertically */
    .latest-relase {
        flex-direction: column;
        gap: 16px;
    }

    .efrfrf {
        width: 100%;
    }

    .relase-image-cover {
        width: 100%;
        max-width: 293px;
        margin: 0 auto;
    }

    .latest-relase-details h1 {
        font-size: 20px;
    }

    .publication-meta li {
        flex-direction: column;
        gap: 2px;
    }

    .publication-meta li .label {
        min-width: auto;
        font-size: 12px;
    }

    /* Archive */
    .archive-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .archive-search-form {
        flex-direction: column;
    }

    .archive-search-form input {
        min-width: auto;
        width: 100%;
    }

    .archive-filters {
        flex-wrap: wrap;
    }

    .archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .archive-item-body h3 {
        font-size: 13px;
    }

    /* Details page */
    .details-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .details-cover img {
        max-width: 250px;
        margin: 0 auto;
    }

    .details-header h1 {
        font-size: 20px;
    }

    .details-meta {
        gap: 12px;
    }

    .cite-modal-body {
        flex-direction: column;
    }

    .cite-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        display: flex;
        overflow-x: auto;
        padding: 0;
    }

    .cite-style-btn {
        white-space: nowrap;
        padding: 10px 16px;
        border-right: 1px solid #eee;
    }

    .cite-style-btn.active {
        box-shadow: inset 0 3px 0 var(--primary-color);
    }

    .article-actions {
        flex-direction: column;
        gap: 4px;
    }

    .btn-more, .btn-cite {
        font-size: 11px;
        padding: 3px 10px;
    }

    /* Page header */
    .page-header h1 {
        font-size: 22px;
    }

    .page-header {
        margin-bottom: 20px;
    }

    /* Prev issues */
    .prev-issues-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .prev-issues-heading {
        font-size: 18px;
    }

    /* Footer */
    .footer-inner {
        padding: 28px 20px;
        margin-top: 30px;
    }

    .footer-col h5 {
        font-size: 16px;
    }

    .footer-bottom {
        padding: 16px 0;
    }

    /* Auth pages */
    .auth-container {
        padding: 24px 20px;
        margin: 0 16px;
    }

    .auth-card {
        padding: 24px 20px;
        margin: 0 16px;
    }

    /* Col article */
    .col-lg-9 > article {
        padding: 16px;
    }

    /* Details meta grid */
    .details-meta-grid {
        grid-template-columns: 1fr;
    }

    /* Contact form */
    .contact-form .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .btn-send {
        width: 100%;
        justify-content: center;
    }
}

/* ---- Small mobile (max-width: 480px) ---- */
@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logobar-h {
        padding: 8px 0;
    }

    .logo img {
        max-height: 42px;
    }

    .latest-relase-details h1 {
        font-size: 18px;
    }

    .publication-meta li .label {
        min-width: auto;
    }

    .relase-image-cover {
        max-width: 200px;
    }

    .archive-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 8px;
    }

    .prev-issues-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
    }

    .auth-container,
    .auth-card {
        margin: 0 8px;
    }

    .details-cover img {
        max-width: 200px;
    }

    .details-header h1 {
        font-size: 18px;
    }

    .cite-main {
        padding: 16px;
    }

    .cite-export {
        gap: 6px;
    }

    .btn-export {
        font-size: 11px;
        padding: 4px 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 18px;
    }

    .footer-inner {
        padding: 24px 16px;
    }

    .footer-grid {
        gap: 24px;
    }
}

/* ====== Mobile Header & Sidebar Menu ====== */
@media (max-width: 768px) {
    .logobar-h {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        padding: 8px 16px;
        min-height: auto;
        max-height: none;
        height: auto;
    }

    .logo img {
        height: 60px;
        max-height: 60px;
        width: auto;
    }

    body {
        padding-top: 76px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border: none;
        background: transparent;
        font-size: 22px;
        color: var(--primary-color);
        cursor: pointer;
        border-radius: 8px;
        transition: background 0.2s;
    }
    .mobile-menu-toggle:hover {
        background: #f0f4f8;
    }
    .mobile-menu-toggle:focus-visible {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }

    .academy-name-alongside-logo {
        display: none;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: auto;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        z-index: 1002;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border-radius: 0;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
        overflow-y: auto;
        transform: translateX(100%);
    }
    .header-nav.mobile-open {
        transform: translateX(0);
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid #eee;
    }
    .mobile-nav-title {
        font-family: 'FiraGO', sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: #333;
    }
    .mobile-nav-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: none;
        background: transparent;
        font-size: 20px;
        color: #666;
        cursor: pointer;
        border-radius: 8px;
        transition: background 0.2s;
    }
    .mobile-nav-close:hover {
        background: #f0f0f0;
    }

    .lang-switcher {
        display: none;
    }

    .header-actions .btn-login,
    .header-actions .btn-register {
        display: none;
    }

    .mobile-user-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: var(--primary-color);
        font-size: 20px;
        text-decoration: none;
    }

    .header-nav a,
    .header-nav .menu-dropdown > a,
    .header-nav .menu-dropdown > div > a {
        color: #333;
        padding: 14px 20px;
        font-size: 14px;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        background: transparent;
    }

    .menu-dropdown {
        display: block;
        position: static;
    }

    .menu-dropdown > .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        background: #f9f9f9;
        animation: none;
    }
    .menu-dropdown > .dropdown-menu.open {
        display: block;
    }
    .menu-dropdown > .dropdown-menu a {
        padding: 12px 20px 12px 32px;
        font-size: 13px;
        border-bottom: 1px solid #eee;
        white-space: normal;
        color: #444;
    }
    .menu-dropdown > .dropdown-menu a:hover {
        background: #eaf1fb;
        color: var(--primary-color);
    }

    .mobile-lang-switcher {
        display: flex;
        gap: 0;
        padding: 12px 20px;
        border-top: 1px solid #eee;
    }

    .mobile-lang-btn {
        flex: 1;
        padding: 10px 16px;
        border: 1px solid var(--primary-color);
        background: transparent;
        color: var(--primary-color);
        font-size: 13px;
        cursor: pointer;
        transition: all 0.2s;
        font-family: inherit;
    }

    .mobile-lang-btn:first-child {
        border-radius: 8px 0 0 8px;
        border-right: none;
    }

    .mobile-lang-btn:last-child {
        border-radius: 0 8px 8px 0;
    }

    .mobile-lang-btn.active {
        background: var(--primary-color);
        color: #fff;
    }

    .header-nav .search-nav-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px 20px;
        color: var(--primary-color);
        border-top: 1px solid #eee;
        margin-top: auto;
        font-size: 18px;
    }
    .header-nav .search-nav-link i {
        font-size: 20px;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 1001;
        background: rgba(0,0,0,0.4);
    }
    .mobile-overlay.show {
        display: block;
    }
}

@media (max-width: 480px) {
    .header-nav {
        width: 280px;
    }
}

