﻿:root {
    --front-bg: #f4f7fb;
    --front-white: #ffffff;
    --front-dark: #172033;
    --front-muted: #6b7280;
    --front-border: #e5e7eb;
    --front-primary: #1f4f8f;
    --front-primary-dark: #173b6c;
    --front-primary-soft: #eaf2ff;
    --front-accent: #b3261e;
    --front-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
    --front-radius: 18px;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--front-bg);
    color: var(--front-dark);
}

.journal-home {
    width: 100%;
    overflow-x: hidden;
}

.front-container {
    width: min(1440px, calc(100% - 56px));
    margin: 0 auto;
}

/* ISSN BAR */

.issn-bar {
    background: #0f172a;
    color: #dbeafe;
    font-size: 14px;
}

.issn-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.issn-separator {
    opacity: .45;
    margin: 0 10px;
}

.issn-links {
    display: flex;
    gap: 10px;
}

    .issn-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        padding: 4px 9px;
        border-radius: 999px;
        background: rgba(255,255,255,.1);
    }

/* HEADER */

.journal-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-bottom: 1px solid var(--front-border);
}

.journal-header-inner {
    min-height: 150px;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.journal-logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.journal-logo {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--front-primary), var(--front-accent));
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 38px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(31, 79, 143, .25);
}

.journal-logo-area h1 {
    margin: 0;
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.05;
    font-weight: 850;
    color: var(--front-dark);
    letter-spacing: -0.8px;
}

.journal-logo-area p {
    margin: 10px 0 0;
    color: var(--front-muted);
    font-size: 17px;
    line-height: 1.4;
}

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

.header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: .2s ease;
    white-space: nowrap;
}

.header-btn-primary {
    background: var(--front-primary);
    color: #fff;
}

    .header-btn-primary:hover {
        background: var(--front-primary-dark);
        color: #fff;
    }

.header-btn-outline {
    color: var(--front-primary);
    border: 1px solid rgba(31, 79, 143, .3);
    background: #fff;
}

    .header-btn-outline:hover {
        background: var(--front-primary-soft);
        color: var(--front-primary);
    }

/* NAV */

.journal-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--front-primary);
    box-shadow: 0 6px 20px rgba(15, 23, 42, .1);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 60px;
    overflow-x: auto;
}

    .nav-inner a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 15px;
        padding: 18px 16px;
        border-radius: 10px;
        white-space: nowrap;
        transition: .2s ease;
    }

        .nav-inner a:hover {
            background: rgba(255,255,255,.14);
        }

/* HERO */

.hero-section {
    background: radial-gradient(circle at 12% 20%, rgba(179,38,30,.16), transparent 28%), radial-gradient(circle at 82% 12%, rgba(31,79,143,.20), transparent 30%), linear-gradient(135deg, #10233f 0%, #1f4f8f 55%, #16365f 100%);
    color: #fff;
    padding: 72px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, .7fr);
    gap: 32px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-content h2 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    font-weight: 850;
    letter-spacing: -1px;
}

.hero-content p {
    max-width: 760px;
    margin: 24px 0 0;
    color: #dbeafe;
    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: .2s ease;
}

.hero-btn-primary {
    background: #fff;
    color: var(--front-primary);
}

    .hero-btn-primary:hover {
        color: var(--front-primary-dark);
        transform: translateY(-2px);
    }

.hero-btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
}

    .hero-btn-secondary:hover {
        background: rgba(255,255,255,.12);
        color: #fff;
    }

.hero-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 26px;
    padding: 30px;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0,0,0,.18);
}

    .hero-card h3 {
        margin: 0 0 12px;
        font-size: 22px;
        font-weight: 800;
    }

.hero-card-title {
    font-size: 28px !important;
    font-weight: 850;
    color: #fff !important;
    margin: 0 0 12px !important;
}

.hero-card p {
    color: #dbeafe;
    line-height: 1.7;
}

.hero-card a {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

/* MAIN */

.front-main {
    padding: 46px 0 64px;
}

.main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 34px;
    align-items: start;
}

.main-left,
.main-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.content-card,
.side-card,
.submit-card,
.stat-card {
    background: var(--front-white);
    border: 1px solid var(--front-border);
    border-radius: var(--front-radius);
    box-shadow: var(--front-shadow);
}

.content-card {
    padding: 34px;
}

.section-heading {
    margin-bottom: 20px;
}

    .section-heading span {
        display: inline-flex;
        color: var(--front-accent);
        font-weight: 800;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 8px;
    }

    .section-heading h2 {
        margin: 0;
        color: var(--front-dark);
        font-size: clamp(24px, 2.5vw, 34px);
        font-weight: 850;
        letter-spacing: -.5px;
    }

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.about-card p,
.content-card p {
    color: var(--front-muted);
    font-size: 16px;
    line-height: 1.8;
}

.text-link,
.small-link {
    color: var(--front-primary);
    font-weight: 800;
    text-decoration: none;
}

    .text-link:hover,
    .small-link:hover {
        color: var(--front-primary-dark);
    }

/* ARTICLES */

.article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.article-item {
    padding: 26px;
    border: 1px solid var(--front-border);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    transition: .2s ease;
}

    .article-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
        border-color: rgba(31, 79, 143, .25);
    }

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

    .article-meta span {
        display: inline-flex;
        padding: 5px 10px;
        border-radius: 999px;
        background: var(--front-primary-soft);
        color: var(--front-primary);
        font-size: 12px;
        font-weight: 800;
    }

.article-item h3 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.35;
}

    .article-item h3 a {
        color: var(--front-dark);
        text-decoration: none;
    }

        .article-item h3 a:hover {
            color: var(--front-primary);
        }

.article-item p {
    margin: 0 0 14px;
    color: var(--front-muted);
    line-height: 1.7;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--front-muted);
    font-size: 14px;
}

    .article-footer a {
        color: var(--front-accent);
        font-weight: 900;
        text-decoration: none;
    }

/* STATS */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    padding: 24px 18px;
    text-align: center;
}

    .stat-card strong {
        display: block;
        color: var(--front-primary);
        font-size: 34px;
        line-height: 1;
        font-weight: 900;
    }

    .stat-card span {
        display: block;
        margin-top: 8px;
        color: var(--front-muted);
        font-weight: 700;
    }

/* SIDEBAR */

.submit-card {
    padding: 28px;
    background: linear-gradient(135deg, var(--front-primary), var(--front-primary-dark));
    color: #fff;
}

    .submit-card h2 {
        margin: 0 0 12px;
        font-size: 26px;
        font-weight: 850;
    }

    .submit-card p {
        color: #dbeafe;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .submit-card a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        background: #fff;
        color: var(--front-primary);
        border-radius: 999px;
        font-weight: 900;
        text-decoration: none;
    }

.side-card {
    padding: 28px;
}

.side-title h3 {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 850;
}

.announcement-list,
.quick-links,
.index-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.announcement-item {
    display: block;
    padding: 14px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid var(--front-border);
    text-decoration: none;
}

    .announcement-item,

    .announcement-item strong {
        color: var(--front-dark);
        line-height: 1.4;
    }

.index-list span,
.quick-links a,

    .quick-links a:hover {
        background: var(--front-primary-soft);
        color: var(--front-primary);
    }
.index-link {
    font-size: 15px;
    min-height: 46px;
}

/* FOOTER */

.front-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 52px;
    margin-top: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr;
    gap: 48px;
    padding-bottom: 44px;
}

    .footer-grid h3,
    .footer-grid h4 {
        color: #fff;
        margin-top: 0;
    }

    .footer-grid p {
        line-height: 1.7;
    }

    .footer-grid a {
        display: block;
        color: #cbd5e1;
        text-decoration: none;
        margin-bottom: 8px;
    }

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    text-align: center;
    padding: 16px 20px;
    color: #94a3b8;
    font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .main-right {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .submit-card {
        grid-column: span 2;
    }

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

@media (max-width: 820px) {
    .front-container {
        width: min(100% - 28px, 1320px);
    }

    .journal-header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 0;
    }

    .journal-logo-area {
        align-items: flex-start;
    }

    .journal-logo {
        width: 86px;
        height: 86px;
        min-width: 86px;
        border-radius: 20px;
    }
    .journal-logo-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
    }

    .journal-header-actions {
        width: 100%;
    }

    .header-btn {
        flex: 1;
    }

    .hero-section {
        padding: 46px 0;
    }

    .hero-content h2 {
        letter-spacing: -.7px;
    }

    .main-right {
        display: flex;
    }

    .submit-card {
        grid-column: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 560px) {
    .issn-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    .journal-logo-area {
        flex-direction: column;
        gap: 14px;
    }

    .journal-header-actions {
        flex-direction: column;
    }

    .header-btn {
        width: 100%;
    }

    .content-card,
    .side-card,
    .submit-card {
        padding: 22px;
    }

    .section-heading-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-footer {
        flex-direction: column;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-btn {
        width: 100%;
    }
}
.topbar-logout-btn {
    border: none;
    background: rgba(255,255,255,.1);
    color: #fff;
    padding: 4px 9px;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

.journal-logo-img {
    background: #fff;
    overflow: hidden;
}

    .journal-logo-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 6px;
    }

.article-author {
    color: var(--front-muted);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.empty-state {
    padding: 18px;
    border-radius: 14px;
    background: #f8fafc;
    color: var(--front-muted);
    border: 1px dashed var(--front-border);
}

.index-link {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid var(--front-border);
    color: var(--front-dark);
    text-decoration: none;
    font-weight: 700;
}

    .index-link:hover {
        background: var(--front-primary-soft);
        color: var(--front-primary);
    }

.index-list img {
    max-width: 140px;
    max-height: 42px;
    object-fit: contain;
}

.announcement-modal {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.announcement-modal-box {
    position: relative;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.announcement-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: none;
    font-size: 20px;
    cursor: pointer;
}
.journal-home {
    font-size: 16px;
}

    .journal-home p {
        font-size: 16px;
    }

.content-card,
.side-card,
.submit-card,
.stat-card,
.article-item {
    line-height: 1.6;
}
/* ================================
   FINAL HOMEPAGE SCALE FIX
   ================================ */

body {
    background: #eef3f8 !important;
}

.journal-home {
    font-size: 16px !important;
}

/* ÜST ISSN BAR */
.issn-bar {
    min-height: 34px !important;
    font-size: 13px !important;
}

.issn-inner {
    min-height: 34px !important;
}

/* HEADER */
.journal-header {
    background: #0b3265 !important;
    color: #fff !important;
}

.journal-header-inner {
    min-height: 128px !important;
    padding: 24px 0 !important;
}

.journal-logo-area {
    gap: 22px !important;
}

.journal-logo {
    width: 72px !important;
    height: 72px !important;
    min-width: 72px !important;
    border-radius: 18px !important;
    background: #ffffff !important;
    color: #0b3265 !important;
    font-size: 34px !important;
}

.journal-logo-area h1 {
    color: #ffffff !important;
    font-size: clamp(30px, 3vw, 46px) !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    margin: 0 !important;
    max-width: 780px !important;
}

.journal-logo-area p {
    color: rgba(255, 255, 255, .78) !important;
    font-size: 16px !important;
    margin-top: 8px !important;
}

/* HEADER BUTONLARI */
.journal-header-actions {
    gap: 12px !important;
}

.header-btn {
    min-height: 42px !important;
    padding: 10px 20px !important;
    font-size: 15px !important;
}

.header-btn-outline {
    background: #ffffff !important;
    color: #0b3265 !important;
    border: none !important;
}

.header-btn-primary {
    background: #ffffff !important;
    color: #0b3265 !important;
    border: none !important;
}

/* NAVBAR */
.journal-nav {
    background: #071827 !important;
}

.nav-inner {
    min-height: 48px !important;
    gap: 10px !important;
}

    .nav-inner a {
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 700 !important;
        padding: 14px 10px !important;
    }

/* HERO */
.hero-section {
    padding: 64px 0 !important;
    background: linear-gradient(135deg, #21335f 0%, #174e88 100%) !important;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 48px !important;
}

.hero-badge {
    font-size: 14px !important;
    padding: 8px 16px !important;
    margin-bottom: 18px !important;
}

.hero-content h2 {
    font-size: clamp(38px, 4vw, 58px) !important;
    line-height: 1.08 !important;
    color: #ffffff !important;
    max-width: 760px !important;
}

.hero-content p {
    font-size: 17px !important;
    line-height: 1.75 !important;
    max-width: 760px !important;
    color: #e3edf9 !important;
}

.hero-card {
    padding: 30px !important;
    border-radius: 18px !important;
}

    .hero-card h3 {
        font-size: 20px !important;
    }

.hero-card-title {
    font-size: 25px !important;
}

/* ANA ALAN */
.front-main {
    padding: 48px 0 64px !important;
}

.front-container {
    width: min(1320px, calc(100% - 56px)) !important;
}

.main-grid {
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 32px !important;
}

/* KARTLAR */
.content-card,
.side-card,
.submit-card,
.stat-card {
    border-radius: 14px !important;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08) !important;
}

.content-card {
    padding: 30px !important;
}

.side-card,
.submit-card {
    padding: 24px !important;
}

.section-heading span {
    font-size: 12px !important;
}

.section-heading h2 {
    font-size: 28px !important;
    line-height: 1.25 !important;
}

.content-card p,
.about-card p {
    font-size: 16px !important;
    line-height: 1.75 !important;
}

/* MAKALELER */
.article-item {
    padding: 22px !important;
    min-height: 120px !important;
}

    .article-item h3 {
        font-size: 21px !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
    }

.article-author {
    font-size: 14px !important;
}

.article-item p {
    font-size: 15px !important;
}

/* SAĞ BLOKLAR */
.submit-card h2 {
    font-size: 24px !important;
}

.submit-card p {
    font-size: 15px !important;
}

.submit-card a {
    min-height: 42px !important;
    font-size: 15px !important;
}

.side-title h3 {
    font-size: 21px !important;
}

.announcement-item,
.index-list span,
.quick-links a,
.index-link {
    font-size: 14px !important;
    min-height: 42px !important;
    padding: 10px 14px !important;
}

/* SAYAÇLAR */
.stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
}

.stat-card {
    padding: 22px 16px !important;
}

    .stat-card strong {
        font-size: 30px !important;
    }

    .stat-card span {
        font-size: 14px !important;
    }

/* FOOTER */
.front-footer {
    margin-top: 0 !important;
    padding-top: 48px !important;
}

.footer-grid {
    gap: 48px !important;
    padding-bottom: 42px !important;
}

    .footer-grid h3 {
        font-size: 22px !important;
    }

    .footer-grid h4 {
        font-size: 18px !important;
    }

    .footer-grid p,
    .footer-grid a {
        font-size: 14px !important;
    }

/* MOBİL */
@media (max-width: 1100px) {
    .hero-grid,
    .main-grid {
        grid-template-columns: 1fr !important;
    }

    .main-right {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .submit-card {
        grid-column: span 2 !important;
    }
}

@media (max-width: 768px) {
    .front-container {
        width: min(100% - 28px, 1320px) !important;
    }

    .journal-header-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .journal-header-actions {
        width: 100% !important;
    }

    .header-btn {
        flex: 1 !important;
    }

    .hero-content h2 {
        font-size: 34px !important;
    }

    .main-right {
        display: flex !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }
}
.issn-inner-center {
    justify-content: center !important;
}
/* ================================
   ISSUE DETAIL PAGE - FINAL
   ================================ */

.issue-detail-hero {
    background: linear-gradient(135deg, #10233f 0%, #1f4f8f 100%);
    color: #fff;
    padding: 54px 0;
}

    .issue-detail-hero h1 {
        margin: 14px 0 8px;
        font-size: clamp(34px, 4vw, 54px);
        font-weight: 850;
        line-height: 1.1;
        color: #fff;
    }

    .issue-detail-hero p {
        max-width: 760px;
        color: #dbeafe;
        font-size: 18px;
        line-height: 1.7;
        margin: 0;
    }

.issue-back-link {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    margin-bottom: 10px;
}

    .issue-back-link:hover {
        color: #fff;
        text-decoration: underline;
    }

.issue-detail-main {
    padding: 42px 0 64px !important;
    background: #eef3f8;
}

.issue-detail-card {
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 34px 38px !important;
    border-radius: 18px !important;
    background: #fff !important;
    border: 1px solid #dfe5ec !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08) !important;
}

    .issue-detail-card .section-heading {
        margin-bottom: 26px !important;
    }

        .issue-detail-card .section-heading span {
            font-size: 13px !important;
            color: #b3261e !important;
            font-weight: 900 !important;
            text-transform: uppercase !important;
            letter-spacing: .06em !important;
        }

        .issue-detail-card .section-heading h2 {
            font-size: 32px !important;
            margin: 6px 0 0 !important;
            color: #111827 !important;
        }

.published-article-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.published-article-item {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 120px !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 22px 24px !important;
    border: 1px solid #dfe5ec !important;
    border-left: 5px solid #1f4f8f !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045) !important;
    transition: .2s ease !important;
}

    .published-article-item:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08) !important;
    }

.published-article-main {
    display: block !important;
}

.article-order-label {
    display: inline-flex !important;
    width: fit-content !important;
    margin-bottom: 10px !important;
    padding: 4px 10px !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
    border: 1px solid #e5e7eb !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
}

.published-article-item h3 {
    margin: 0 0 8px !important;
    font-size: 22px !important;
    line-height: 1.35 !important;
    color: #111827 !important;
    font-weight: 850 !important;
}

.published-article-authors {
    margin: 0 0 10px !important;
    color: #4b5563 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
}

.published-article-meta {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin: 0 0 12px !important;
}

    .published-article-meta span {
        display: inline-flex !important;
        align-items: center !important;
        padding: 5px 11px !important;
        border-radius: 999px !important;
        background: #eaf2ff !important;
        color: #174e88 !important;
        font-size: 13px !important;
        font-weight: 800 !important;
    }

.published-article-item p {
    max-width: 820px !important;
    margin: 0 !important;
    color: #4b5563 !important;
    font-size: 15.5px !important;
    line-height: 1.65 !important;
}

.published-keywords {
    margin-top: 10px !important;
    color: #536173 !important;
    font-size: 14px !important;
}

.published-article-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.pdf-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 88px !important;
    min-height: 40px !important;
    padding: 9px 18px !important;
    border-radius: 999px !important;
    background: #b3261e !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 900 !important;
    box-shadow: 0 8px 18px rgba(179, 38, 30, .20) !important;
}

    .pdf-btn:hover {
        background: #991f19 !important;
        color: #fff !important;
    }

.pdf-missing {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 88px !important;
    min-height: 40px !important;
    padding: 9px 18px !important;
    border-radius: 999px !important;
    background: #f1f3f5 !important;
    color: #7b8491 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
}

@media (max-width: 760px) {
    .issue-detail-card {
        padding: 24px !important;
    }

    .published-article-item {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }

    .published-article-actions {
        justify-content: flex-start !important;
        margin-top: 10px !important;
    }

    .pdf-btn,
    .pdf-missing {
        width: 100% !important;
    }
}
/* ================================
   ISSUE DETAIL FINAL COMPACT FIX
   ================================ */

.issue-detail-hero {
    padding: 42px 0 !important;
}

    .issue-detail-hero h1 {
        font-size: clamp(32px, 3.5vw, 48px) !important;
    }

.issue-detail-main {
    padding: 34px 0 54px !important;
}

.issue-detail-card {
    max-width: 1160px !important;
    padding: 30px 34px !important;
}

    .issue-detail-card .section-heading {
        margin-bottom: 22px !important;
    }

        .issue-detail-card .section-heading h2 {
            font-size: 30px !important;
        }

.published-article-list {
    gap: 14px !important;
}

.published-article-item {
    grid-template-columns: minmax(0, 1fr) 118px !important;
    gap: 20px !important;
    padding: 18px 22px !important;
    border-left-width: 4px !important;
}

.article-order-label {
    margin-bottom: 8px !important;
    padding: 4px 10px !important;
    font-size: 11px !important;
}

.published-article-item h3 {
    font-size: 20px !important;
    margin-bottom: 6px !important;
}

.published-article-authors {
    font-size: 14px !important;
    margin-bottom: 8px !important;
}

.published-article-meta {
    margin-bottom: 9px !important;
}

    .published-article-meta span {
        padding: 4px 10px !important;
        font-size: 12px !important;
    }

.published-article-item p {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
}

.pdf-btn,
.pdf-missing {
    min-width: 82px !important;
    min-height: 38px !important;
    padding: 8px 16px !important;
    font-size: 13px !important;
}

@media (max-width: 760px) {
    .issue-detail-hero {
        padding: 34px 0 !important;
    }

    .issue-detail-card {
        padding: 22px !important;
    }

    .published-article-item {
        grid-template-columns: 1fr !important;
        padding: 18px !important;
    }
}
/* HOME CURRENT ISSUE ARTICLE LIST */

.home-issue-article {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 22px;
    align-items: center;
    padding: 22px 24px !important;
    border-left: 5px solid var(--front-primary) !important;
}

.home-issue-article-main h3 {
    margin-bottom: 8px !important;
}

.home-issue-article-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--front-accent);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(179, 38, 30, .18);
}

    .home-pdf-btn:hover {
        color: #fff;
        background: #991f19;
    }

.home-pdf-missing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 82px;
    min-height: 38px;
    padding: 8px 16px;
    border-radius: 999px;
    background: #f1f3f5;
    color: #7b8491;
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 760px) {
    .home-issue-article {
        grid-template-columns: 1fr !important;
    }

    .home-issue-article-actions {
        justify-content: flex-start;
    }

    .home-pdf-btn,
    .home-pdf-missing {
        width: 100%;
    }
}
.home-current-issue-cover {
    margin-bottom: 22px;
    display: flex;
    justify-content: flex-start;
}

    .home-current-issue-cover img {
        width: 180px;
        max-width: 100%;
        border-radius: 12px;
        border: 1px solid #dfe5ec;
        box-shadow: 0 14px 32px rgba(15, 23, 42, .12);
        background: #fff;
    }
/* PUBLISHED ISSUES PAGE */

.published-issue-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.published-issue-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 130px;
    gap: 24px;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid #dfe5ec;
    border-left: 5px solid #1f4f8f;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

.published-issue-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.published-issue-cover {
    width: 92px;
    min-width: 92px;
    height: 126px;
    border-radius: 10px;
    border: 1px solid #dfe5ec;
    background: #f8fafc;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .10);
}

    .published-issue-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.published-issue-card h3 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #111827;
    font-weight: 850;
}

.published-issue-card p {
    margin: 0 0 10px;
    color: #4b5563;
    line-height: 1.6;
}

.published-issue-meta span {
    display: inline-flex;
    padding: 5px 11px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #174e88;
    font-size: 13px;
    font-weight: 800;
}

.published-issue-actions {
    display: flex;
    justify-content: center;
}

@media (max-width: 760px) {
    .published-issue-card {
        grid-template-columns: 1fr;
    }

    .published-issue-main {
        align-items: flex-start;
    }

    .published-issue-actions {
        justify-content: flex-start;
    }
}
.home-full-issue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    margin: 0 0 22px;
    border-radius: 999px;
    background: #b3261e;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(179, 38, 30, .18);
}

    .home-full-issue-btn:hover {
        background: #991f19;
        color: #fff;
    }
/* HOME CURRENT ISSUE HEADER */

.home-current-issue-header {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 26px;
}

.home-current-issue-cover {
    margin: 0 !important;
}

    .home-current-issue-cover img {
        width: 140px;
        height: 190px;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid #dfe5ec;
        box-shadow: 0 14px 32px rgba(15, 23, 42, .12);
        background: #fff;
    }

.home-current-issue-info {
    min-width: 0;
}

.home-current-label {
    display: inline-flex;
    margin-bottom: 8px;
    color: #f28c00;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.home-current-issue-info h2 {
    margin: 0 0 14px;
    font-size: 32px;
    line-height: 1.2;
    color: #111827;
    font-weight: 850;
}

.home-current-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-full-issue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 20px;
    margin: 0 !important;
    border-radius: 999px;
    background: #b3261e;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(179, 38, 30, .18);
}

    .home-full-issue-btn:hover {
        background: #991f19;
        color: #fff;
    }

.home-current-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border-radius: 999px;
    background: #eaf2ff;
    color: #174e88;
    font-weight: 900;
    text-decoration: none;
}

    .home-current-detail-link:hover {
        background: #dbeafe;
        color: #174e88;
    }

.home-current-all-link {
    align-self: start;
    padding-top: 8px;
}

@media (max-width: 820px) {
    .home-current-issue-header {
        grid-template-columns: 1fr;
    }

    .home-current-all-link {
        padding-top: 0;
    }

    .home-current-issue-cover img {
        width: 130px;
        height: 176px;
    }
}