/* ==========================================================================
   IJWGH Custom Styles & Mobile Responsiveness
   ========================================================================== */

/* 1. Header Styles */
.ijwgh-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
    pointer-events: none;
}

.ijwgh-header>* {
    pointer-events: auto;
}

.ijwgh-header.header-hidden {
    transform: translateY(-100%);
}

/* 2. Responsive Mobile Layouts */
@media (max-width: 992px) {

    /* Header Nav */
    .ijwgh-header-main {
        flex-direction: column;
        padding: 15px;
        border-radius: 20px;
        margin: 10px;
        width: calc(100% - 20px);
        box-sizing: border-box;
    }

    .ijwgh-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
        text-align: center;
    }

    .ijwgh-nav a {
        font-size: 13px;
        padding: 5px 10px;
    }

    /* Homepage & Grids */
    .ijwgh-hero h1 {
        font-size: 32px !important;
        line-height: 1.2 !important;
    }

    .ijwgh-hero p {
        font-size: 16px !important;
    }

    .ijwgh-about,
    .ijwgh-articles-section .ijwgh-articles-grid {
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
    }

    .ijwgh-about-img img {
        width: 100% !important;
        max-width: 280px;
    }

    /* Issue Page */
    .page_issue {
        flex-direction: column !important;
    }

    .issue-sidebar,
    .issue-main {
        width: 100% !important;
    }

    /* Footer */
    .ijwgh-footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .ijwgh-footer-links,
    .ijwgh-footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ijwgh-hero h1 {
        font-size: 28px !important;
    }

    .ijwgh-header-top {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 10px;
    }

    .ijwgh-nav {
        flex-direction: column;
    }
}

/* Extracted from templates/frontend/pages/userRegisterComplete.tpl */

.auth-page {
    background-color: #f8fafc;
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.auth-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../../../templates/images/about_world_map.png') center left/contain no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.auth-container {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
}

.auth-left {
    flex: 1;
    padding: 50px;
    text-align: center;
}

.auth-icon-box {
    width: 70px;
    height: 70px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 25px;
}

.auth-left h1 {
    margin: 0 0 15px;
    font-size: 28px;
    font-family: var(--font-heading);
    color: #0f172a;
}

.auth-left p {
    margin: 0 0 30px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
}

.registration_complete_actions {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.registration_complete_actions li a {
    display: block;
    padding: 15px 20px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    border: 1px solid transparent;
}

.registration_complete_actions li a:hover {
    background: #fff;
    border-color: #d9993b;
    color: #d9993b;
    box-shadow: 0 5px 15px rgba(217, 153, 59, 0.1);
    transform: translateY(-2px);
}

.registration_complete_actions li i {
    margin-right: 10px;
    color: #64748b;
}

.registration_complete_actions li a:hover i {
    color: #d9993b;
}

@media (max-width: 768px) {
    .auth-container {
        max-width: 100%;
        margin: 0 15px;
    }

    .auth-left {
        padding: 40px 20px;
    }
}


/* Extracted from templates/frontend/pages/userRegister.tpl */

.auth-page {
    background-color: #f8fafc;
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.auth-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../../../templates/images/about_world_map.png') center left/contain no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.auth-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
}

.auth-left {
    flex: 1;
    padding: 50px;
}

.auth-right-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('../../../../templates/images/login-globe-books.png') bottom right/contain no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.auth-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.auth-icon-box {
    width: 50px;
    height: 50px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.auth-header h1 {
    margin: 0 0 5px;
    font-size: 28px;
    font-family: var(--font-heading);
    color: #0f172a;
}

.auth-header p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
    color: #94a3b8;
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: #475569;
}

.auth-footer a {
    color: #d9993b;
    font-weight: 700;
    text-decoration: none;
}

/* Right Side Features */
.feature-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: #fef3c7;
    color: #d9993b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-content h3 {
    margin: 0 0 5px;
    font-size: 15px;
    font-family: var(--font-body);
    color: #0f172a;
    font-weight: 700;
}

.feature-content p {
    margin: 0;
    font-size: 13px;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
        max-width: 100%;
        margin: 0 15px;
    }

    .auth-left {
        padding: 40px 20px;
    }

    .auth-left .fields {
        grid-template-columns: 1fr;
    }
}

/* OJS Registration Form Override Styles */
.auth-left form {
    width: 100%;
}

.auth-left fieldset .fields {
    border: none;
    padding: 0;
    margin: 0;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
}

.auth-left fieldset .fields>.optin,
.auth-left fieldset .fields>.checkbox,
.auth-left fieldset .fields>.reviewer_interests,
.auth-left fieldset .fields>.recaptcha,
.auth-left fieldset .fields>.altcha_wrapper {
    grid-column: 1 / -1;
}

.auth-left fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px;
}

.auth-left fieldset legend {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.auth-left label {
    display: block;
    margin-bottom: 15px;
}

.auth-left label .label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.auth-left input[type="text"],
.auth-left input[type="password"],
.auth-left input[type="email"],
.auth-left select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: 0.3s;
    box-sizing: border-box;
    height: 45px;
}

.auth-left input:focus,
.auth-left select:focus {
    border-color: #d9993b;
    box-shadow: 0 0 0 3px rgba(217, 153, 59, 0.1);
    outline: none;
}

.auth-left button.submit,
.auth-left button[type="submit"] {
    width: 100%;
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 20px;
}

.auth-left button.submit:hover,
.auth-left button[type="submit"]:hover {
    background: #1e293b;
}

.auth-left .optin,
.auth-left .checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0px;
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
}

.auth-left .optin input,
.auth-left .checkbox input {
    margin-top: 3px;
    accent-color: #0f172a;
}

.consent {
    margin-bottom: 0px !important;
}


/* Extracted from templates/frontend/pages/userLogin.tpl */

.auth-page {
    background-color: #f8fafc;
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.auth-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../../../templates/images/about_world_map.png') center left/contain no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.auth-container {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
}

.auth-left {
    flex: 1;
    padding: 50px;
}

.auth-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.auth-icon-box {
    width: 50px;
    height: 50px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.auth-header h1 {
    margin: 0 0 5px;
    font-size: 28px;
    font-family: var(--font-heading);
    color: #0f172a;
}

.auth-header p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.auth-form .fields {
    border: none;
    padding: 0;
    margin: 0;
}

.auth-form label .label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"] {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: 0.3s;
}

.input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 42px;
    color: #94a3b8;
}

.auth-form input:focus {
    border-color: #d9993b;
    box-shadow: 0 0 0 3px rgba(217, 153, 59, 0.1);
    outline: none;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
}

.auth-options .remember {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #0f172a;
}

.auth-options .remember input {
    width: 16px;
    height: 16px;
    accent-color: #0f172a;
}

.auth-options a {
    color: #d9993b;
    text-decoration: none;
    font-weight: 600;
}

.btn-login {
    width: 100%;
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-login:hover {
    background: #1e293b;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
    color: #94a3b8;
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: #475569;
}

.auth-footer a {
    color: #d9993b;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-left {
        padding: 40px 30px;
    }
}

.pkp_form_error {
    background: #fee2e2;
    color: #b91c1c;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}


/* Extracted from templates/frontend/pages/userLostPassword.tpl */

.auth-page {
    background-color: #f8fafc;
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.auth-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../../../../templates/images/about_world_map.png') center left/contain no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.auth-container {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    overflow: hidden;
}

.auth-left {
    flex: 1;
    padding: 50px;
}

.auth-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.auth-icon-box {
    width: 50px;
    height: 50px;
    background: #0f172a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.auth-header h1 {
    margin: 0 0 5px;
    font-size: 24px;
    font-family: var(--font-heading);
    color: #0f172a;
}

.auth-header p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.auth-form .fields {
    border: none;
    padding: 0;
    margin: 0;
}

.auth-form label .label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"] {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    transition: 0.3s;
}

.input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 42px;
    color: #94a3b8;
}

.auth-form input:focus {
    border-color: #d9993b;
    box-shadow: 0 0 0 3px rgba(217, 153, 59, 0.1);
    outline: none;
}

.btn-login {
    width: 100%;
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-login:hover {
    background: #1e293b;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
    color: #94a3b8;
    font-size: 12px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #e2e8f0;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.auth-footer {
    text-align: center;
    font-size: 14px;
    color: #475569;
}

.auth-footer a {
    color: #d9993b;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 768px) {
    .auth-container {
        max-width: 100%;
        margin: 0 15px;
    }

    .auth-left {
        padding: 40px 30px;
    }
}

.pkp_form_error {
    background: #fee2e2;
    color: #b91c1c;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
}


/* Extracted from templates/frontend/pages/editorialTeam.tpl */

/* Hero Section */
.ed-hero {
    background: #061121 url('../../../../templates/images/editorial_hero_bg.png') center/cover;
    position: relative;
    padding: 100px 0 160px;
    color: #fff;
}

.ed-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(6, 17, 33, 0.95) 0%, rgba(6, 17, 33, 0.7) 50%, rgba(6, 17, 33, 0.2) 100%);
}

.ed-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.ed-hero-content h1 {
    font-size: 48px;
    font-family: var(--font-heading);
    margin: 0 0 10px;
    color: #fff;
}

.ed-hero-content .breadcrumb {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 30px;
}

.ed-hero-content .breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.ed-hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
}

/* Stats Bar */
.ed-stats-container {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.ed-stats-bar {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.ed-stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    border-right: 1px solid #e2e8f0;
    flex: 1;
}

.ed-stat-item:last-child {
    border-right: none;
}

.ed-stat-icon {
    width: 50px;
    height: 50px;
    background: #0f224a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ed-stat-text strong {
    display: block;
    font-size: 20px;
    font-family: var(--font-heading);
    color: #0f172a;
    margin-bottom: 3px;
}

.ed-stat-text span {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Sections */
.ed-section-title {
    font-size: 24px;
    font-family: var(--font-heading);
    color: #0f172a;
    margin: 80px 0 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ed-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Cards */
.ed-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: 0.3s;
}

.ed-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.ed-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    background: #e2e8f0;
}

.ed-card-name {
    font-size: 16px;
    font-family: var(--font-heading);
    color: #0f172a;
    margin: 0 0 5px;
    font-weight: 700;
}

.ed-card-title {
    font-size: 11px;
    color: #d9993b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ed-card-affil {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.ed-card-email {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: #d9993b;
    font-size: 18px;
    opacity: 0.5;
    transition: 0.3s;
}

.ed-card:hover .ed-card-email {
    opacity: 1;
}

/* Member Cards */
.ed-member-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.member-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.member-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.member-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e2e8f0;
}

.member-info h4 {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.member-title {
    font-size: 10px;
    color: #d9993b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.member-affil {
    font-size: 11px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Filters */
.ed-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ed-filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.ed-filter-btn.active,
.ed-filter-btn:hover {
    background: #0f224a;
    color: #fff;
    border-color: #0f224a;
}

/* Newsletter */
.newsletter-bar {
    background: #0f224a;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    width: 300px;
    font-size: 14px;
    outline: none;
}

.newsletter-btn {
    background: #d9993b;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #b87d29;
}

@media (max-width: 992px) {
    .ed-stats-bar {
        flex-direction: column;
        gap: 20px;
    }

    .ed-stat-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
    }

    .ed-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

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

    .newsletter-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .ed-member-grid {
        grid-template-columns: 1fr;
    }

    .ed-filters {
        justify-content: flex-start;
    }
}


/* Extracted from templates/frontend/pages/about.tpl */

.section-title-small {
    color: #d9993b;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title-large {
    color: #0f172a;
    font-size: 38px;
    line-height: 1.2;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 0 30px;
}

.text-body {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #0f224a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.badge-text strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 3px;
}

.badge-text span {
    display: block;
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
}

.vision-card {
    background: #f0f4f8;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.vision-img {
    width: 40%;
    background: url('../../../../templates/images/about_telescope.png') center/cover;
}

.vision-content {
    width: 60%;
    padding: 50px;
}

.vision-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
}

.pillar-item {
    text-align: center;
}

.pillar-item i {
    font-size: 24px;
    color: #0f224a;
    margin-bottom: 15px;
}

.pillar-item strong {
    display: block;
    font-size: 13px;
    color: #0f172a;
    margin-bottom: 8px;
    font-weight: 700;
}

.pillar-item p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.values-section {
    background: #f1f8f4 url('../../../../templates/images/about_hikers_bg.png') center/cover;
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 32px;
    color: #3b82f6;
    margin-bottom: 20px;
    color: #4ade80;
}

.value-item strong {
    display: block;
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-item p {
    font-size: 13px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.focus-section {
    background: #f0f4f8;
    border-radius: 20px;
    padding: 50px;
    margin-top: 60px;
    text-align: center;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.focus-item i {
    font-size: 32px;
    color: #0f224a;
    margin-bottom: 15px;
}

.focus-item h4 {
    font-size: 14px;
    color: #0f172a;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.editor-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    position: relative;
}

.editor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    margin-bottom: 15px;
    object-fit: cover;
}

.editor-title {
    font-size: 10px;
    color: #d9993b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.editor-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 5px;
}

.editor-affil {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

.editor-email {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #d9993b;
    font-size: 16px;
}

.newsletter-bar {
    background: #0f224a;
    border-radius: 12px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-input {
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    width: 300px;
    font-size: 14px;
    outline: none;
}

.newsletter-btn {
    background: #d9993b;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-btn:hover {
    background: #b87d29;
}

@media (max-width: 992px) {
    .section-title-large {
        font-size: 28px;
    }

    .container>div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    .vision-card {
        flex-direction: column;
    }

    .vision-img {
        width: 100%;
        height: 250px;
    }

    .vision-content {
        width: 100%;
        padding: 30px;
    }

    .vision-pillars {
        grid-template-columns: 1fr 1fr;
    }

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

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

    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr 1fr !important;
    }

    .newsletter-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vision-pillars {
        grid-template-columns: 1fr;
    }

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

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

    div[style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}


/* Editorial Board CSS */
.ed-section-title {
    font-size: 28px;
    font-family: var(--font-heading);
    color: #0f172a;
    border-bottom: 2px solid #d9993b;
    display: inline-block;
    padding-bottom: 5px;
}

.ed-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.ed-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #f1f5f9;
}

.ed-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 5px;
}

.ed-card-title {
    font-size: 11px;
    color: #d9993b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ed-card-affil {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.ed-card-email {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: #d9993b;
    font-size: 16px;
    cursor: pointer;
}

.ed-member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.member-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.member-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px;
}

.member-title {
    font-size: 10px;
    color: #d9993b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.member-affil {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Editorial Board CSS */
.ed-section-title {
    font-size: 28px;
    font-family: var(--font-heading);
    color: #0f172a;
    border-bottom: 2px solid #d9993b;
    display: inline-block;
    padding-bottom: 5px;
}

.ed-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.ed-card-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #f1f5f9;
}

.ed-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 5px;
}

.ed-card-title {
    font-size: 11px;
    color: #d9993b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ed-card-affil {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.ed-card-email {
    position: absolute;
    bottom: 25px;
    right: 25px;
    color: #d9993b;
    font-size: 16px;
    cursor: pointer;
}

.ed-member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.member-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.member-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.member-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px;
}

.member-title {
    font-size: 10px;
    color: #d9993b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.member-affil {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Premium Footer CSS */
.ijwgh-premium-footer {
    background: #0f172a;
    color: #fff;
    font-family: var(--font-body), sans-serif;
    padding: 60px 40px 20px;
    box-sizing: border-box;
    width: 100%;
}

.ijwgh-premium-footer .footer-container {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.ijwgh-premium-footer .footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ijwgh-premium-footer .footer-logo-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.ijwgh-premium-footer .footer-logo-text {
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}

.ijwgh-premium-footer .footer-logo-text strong {
    font-family: var(--font-heading);
}

.ijwgh-premium-footer .footer-desc {
    font-size: 13px;
    color: #94a3b8;
    max-width: 300px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.ijwgh-premium-footer .footer-social {
    display: flex;
    gap: 10px;
}

.ijwgh-premium-footer .footer-social a {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.ijwgh-premium-footer .footer-social a:hover {
    background: #d9993b;
    border-color: #d9993b;
}

.ijwgh-premium-footer .footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-family: var(--font-heading);
    margin: 0 0 20px;
    font-weight: 700;
}

.ijwgh-premium-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ijwgh-premium-footer .footer-col ul li {
    margin-bottom: 12px;
}

.ijwgh-premium-footer .footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.ijwgh-premium-footer .footer-col ul li a:hover {
    color: #d9993b;
}

.ijwgh-premium-footer .footer-col p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ijwgh-premium-footer .footer-newsletter {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.ijwgh-premium-footer .footer-newsletter input {
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 13px;
    outline: none;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
    color: #0f172a;
    background: #fff;
}

.ijwgh-premium-footer .footer-newsletter button {
    background: #d9993b;
    color: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.ijwgh-premium-footer .footer-newsletter button:hover {
    background: #b87d29;
}

.ijwgh-premium-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 12px;
    color: #64748b;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.ijwgh-premium-footer .copy-text,
.ijwgh-premium-footer .designed-by {
    color: #94a3b8;
}

/* ===================== HOMEPAGE PREMIUM REDESIGN ===================== */

/* --- Hero Section --- */
.ijwgh-home-hero {
    position: relative;
    padding: 120px 40px 180px;
    border-radius: 40px;
    margin: 0px 20px 20px 20px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--primary);
}

.ijwgh-home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(6, 30, 61, 0.92) 0%, rgba(6, 30, 61, 0.75) 35%, rgba(6, 30, 61, 0.35) 65%, rgba(6, 30, 61, 0.15) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-tags {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 25px;
}

.hero-content p {
    color: #e2e8f0;
    font-size: 18px;
    margin: 0 0 40px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-slider-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-slider-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.hero-slider-dots span.active {
    background: #fff;
}

/* --- Stats Bar --- */
.relative-container {
    position: relative;
}

.ijwgh-home-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 25px 40px;
    position: relative;
    margin-top: -60px;
    z-index: 10;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 22px;
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.1;
}

.stat-text span {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* --- About Section --- */
.section-padding {
    padding: 40px 0;
}

.ijwgh-home-about-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.section-eyebrow {
    color: var(--accent);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow-line {
    height: 2px;
    width: 40px;
    background-color: var(--accent);
}

.about-text-col h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin-bottom: 20px;
}

.about-text-col p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 20px;
}

.about-cover-col {
    text-align: center;
    position: relative;
}

.journal-3d-cover {
    width: 280px;
    height: 380px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 4px 15px 15px 4px;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.2), inset 15px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cover-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0.1;
}

.cover-eyebrow {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.journal-3d-cover h3 {
    color: #fff;
    font-size: 24px;
    text-align: center;
    margin: 0 0 30px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}

.journal-3d-cover i {
    color: var(--accent);
    position: relative;
    z-index: 2;
}

.cover-volume {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-family: var(--font-body);
    letter-spacing: 1px;
    color: #ccc;
}

.cover-spine {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 15px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.about-features-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-row {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f7ede2;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    margin: 0 0 5px;
    font-size: 16px;
    font-family: var(--font-body);
}

.feature-text p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Current Issue Section --- */
.ijwgh-home-issue-banner {
    display: grid !important;
    grid-template-columns: 240px 1fr !important;
    background-color: #faf7f2;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    gap: 40px;
    align-items: center;
}

.issue-banner-cover {
    width: 100%;
    height: 340px;
    background-color: var(--primary);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cover-img,
.cover-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.cover-img {
    opacity: 0.9;
}

.cover-img-placeholder {
    opacity: 0.2;
}

.cover-placeholder-content {
    padding: 30px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    position: relative;
    z-index: 2;
}

.cover-placeholder-content h4 {
    color: #fff;
    font-size: 20px;
    text-align: center;
    margin: 0 0 20px;
    line-height: 1.2;
}

.cover-placeholder-content i {
    color: var(--accent);
    margin-top: auto;
    margin-bottom: 15px;
}

.cover-meta {
    background-color: var(--accent);
    color: #fff;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 2;
    font-weight: 600;
}

.issue-banner-details h3 {
    color: var(--primary);
    font-size: 26px;
    margin: 0 0 15px;
    font-family: var(--font-heading);
}

.issue-banner-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.issue-banner-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--text-main);
    font-size: 13px;
    font-weight: 500;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--accent);
}

.issue-banner-actions {
    display: flex;
    gap: 15px;
}

.issue-banner-actions .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
}

.issue-banner-actions .btn-outline {
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.issue-banner-sections ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.issue-banner-sections li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.issue-banner-sections li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.issue-banner-sections li a:hover {
    color: var(--accent);
}

.issue-banner-sections li a span:last-child {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.view-all-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

/* --- Focus Areas --- */
.section-title-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.section-title-center .line {
    height: 1px;
    width: 60px;
    background-color: var(--border);
}

.section-title-center h3 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    font-weight: 700;
}

.ijwgh-home-focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.focus-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.focus-card i {
    color: var(--primary);
    margin-bottom: 15px;
}

.focus-card h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-family: var(--font-body);
}

.focus-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 15px;
}

.focus-card a {
    font-size: 12px;
    font-weight: 700;
}

/* --- Newsletter --- */
.ijwgh-home-newsletter {
    background-color: var(--primary);
    background-image: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 12px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.newsletter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-icon i {
    color: var(--accent);
}

.newsletter-text h3 {
    color: #fff;
    font-family: var(--font-body);
    margin: 0 0 5px;
    font-size: 20px;
}

.newsletter-text p {
    margin: 0;
    color: #cbd5e1;
    font-size: 14px;
}

.ijwgh-home-newsletter form {
    display: flex;
    gap: 15px;
    width: 450px;
}

.ijwgh-home-newsletter input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    font-family: var(--font-body);
}

.ijwgh-home-newsletter button {
    border-radius: 6px;
}


/* ==========================================================================
   COMPLETE MOBILE RESPONSIVE CSS - ALL SECTIONS
   ========================================================================== */

/* ---------- Global Overrides ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* ===================== TABLET — max-width: 1200px ===================== */
@media (max-width: 1200px) {

    /* --- Header --- */
    .ijwgh-header-main {
        padding: 15px 20px !important;
    }

    .ijwgh-nav {
        gap: 10px !important;
    }

    .ijwgh-nav a {
        font-size: 13px !important;
        padding: 6px 10px !important;
    }

    /* --- Hero Section --- */
    .ijwgh-home-hero {
        padding: 80px 20px 120px !important;
    }

    .ijwgh-home-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        margin-top: -40px !important;
        padding: 20px !important;
    }

    .stat-item:nth-child(2) {
        border-right: none !important;
    }

    .ijwgh-home-about-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .ijwgh-home-issue-banner {
        grid-template-columns: 240px 1fr !important;
    }

    .issue-banner-sections {
        grid-column: span 2 !important;
    }

    .ijwgh-home-focus-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .ijwgh-home-newsletter {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 40px 30px !important;
    }

    .newsletter-info {
        flex-direction: column !important;
    }

    /* --- Issue Page (grid 2.5fr 1fr → stacked) --- */
    div[style*="2.5fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* --- Article Details Page (flex 3 and 1 → stacked) --- */
    div[style*="display: flex; gap: 40px; align-items: flex-start;"] {
        flex-direction: column !important;
    }

    div[style*="display: flex; gap: 40px; align-items: flex-start;"]>div {
        width: 100% !important;
        flex: none !important;
    }

    /* --- Footer --- */
    .ijwgh-premium-footer .footer-container {
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    .ijwgh-premium-footer .footer-brand-col {
        grid-column: span 3 !important;
    }
}

/* ===================== ISSUE PAGE ===================== */
.ijwgh-submit-ad {
    background-position: center;
    background-size: cover;
    background-color: var(--primary);
    border-radius: 12px;
    padding: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}


/* ===================== SMALL TABLET — max-width: 992px ===================== */
@media (max-width: 992px) {

    /* --- Header --- */
    .ijwgh-header-main {
        flex-direction: column !important;
        padding: 15px !important;
        gap: 10px !important;
    }

    .ijwgh-nav {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px !important;
        margin-top: 10px !important;
    }

    .ijwgh-nav a {
        font-size: 12px !important;
        padding: 5px 8px !important;
    }

    .ijwgh-header-top {
        font-size: 12px !important;
        padding: 8px 15px !important;
    }

    .ijwgh-logo span {
        font-size: 16px !important;
    }

    /* --- Hero Section --- */
    .ijwgh-home-hero {
        padding: 60px 20px 80px !important;
        margin: 10px !important;
        border-radius: 20px !important;
    }

    .hero-content h1 {
        font-size: 36px !important;
    }

    /* --- Focus Areas --- */
    .ijwgh-home-focus-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* --- Current Issue Banner --- */
    .ijwgh-home-issue-banner {
        grid-template-columns: 1fr !important;
    }

    .issue-banner-cover {
        max-width: 320px !important;
        margin: 0 auto !important;
    }

    .issue-banner-sections {
        grid-column: span 1 !important;
    }

    .issue-banner-details {
        text-align: center !important;
    }

    .issue-banner-meta,
    .issue-banner-actions {
        justify-content: center !important;
    }

    /* --- Subpage Hero --- */
    .subpage-hero {
        padding: 40px 0 50px !important;
    }

    .subpage-hero h1 {
        font-size: 28px !important;
    }

    /* --- Section Padding --- */
    .section-padding {
        padding: 40px 15px !important;
    }

    /* --- Editorial Board --- */
    .ed-stats-bar {
        flex-direction: column !important;
        gap: 20px !important;
    }

    .ed-stat-item {
        border-right: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
        padding-bottom: 20px !important;
    }

    .ed-stat-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

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

    /* --- About Page --- */
    .vision-card {
        flex-direction: column !important;
    }

    .vision-img {
        width: 100% !important;
        height: 250px !important;
    }

    .vision-content {
        width: 100% !important;
        padding: 30px !important;
    }

    .vision-pillars {
        grid-template-columns: 1fr 1fr !important;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .focus-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    /* --- Auth Pages --- */
    .auth-container {
        flex-direction: column !important;
        max-width: 100% !important;
        margin: 0 15px !important;
    }

    .auth-left {
        padding: 40px 25px !important;
    }

    .auth-left fieldset .fields {
        grid-template-columns: 1fr !important;
    }

    /* --- Footer at 992px --- */
    .ijwgh-premium-footer .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .ijwgh-premium-footer .footer-brand-col {
        grid-column: span 2;
    }
}


/* ===================== MOBILE — max-width: 768px ===================== */
@media (max-width: 768px) {

    /* --- Header --- */
    .ijwgh-header-top {
        flex-direction: column !important;
        text-align: center !important;
        gap: 5px !important;
        padding: 8px 10px !important;
        font-size: 11px !important;
    }

    .ijwgh-header-top .ijwgh-auth {
        display: flex !important;
        gap: 10px !important;
        justify-content: center !important;
    }

    .ijwgh-nav {
        flex-direction: column !important;
        align-items: center !important;
    }

    .ijwgh-logo {
        font-size: 16px !important;
        text-align: center !important;
        justify-content: center !important;
    }

    .ijwgh-logo img {
        height: 40px !important;
        margin-right: 10px !important;
    }

    /* --- Hero Section --- */
    .ijwgh-home-hero {
        padding: 50px 15px 60px !important;
        margin: 8px !important;
        border-radius: 15px !important;
    }

    .hero-content h1 {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: 14px !important;
        max-width: 100% !important;
    }

    /* Hero buttons stack */
    .hero-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .hero-actions a {
        text-align: center !important;
    }

    .ijwgh-home-stats {
        grid-template-columns: 1fr !important;
    }

    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border) !important;
        padding-bottom: 15px !important;
    }

    .stat-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }

    /* --- Focus Areas (keep 2-col) --- */
    .ijwgh-home-focus-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .focus-card {
        padding: 20px 12px !important;
    }

    /* --- Current Issue Highlight --- */
    .ijwgh-home-issue-banner {
        padding: 20px !important;
        gap: 25px !important;
    }

    .issue-banner-cover {
        height: 380px !important;
    }

    .issue-banner-details h3 {
        font-size: 22px !important;
    }

    /* Issue meta row */
    .issue-banner-meta,
    .issue-banner-actions {
        flex-wrap: wrap !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .issue-banner-actions a {
        text-align: center !important;
    }

    /* --- Newsletter Banner --- */
    .ijwgh-home-newsletter {
        padding: 25px 20px !important;
    }

    .newsletter-info {
        gap: 15px !important;
    }

    .newsletter-text h3 {
        font-size: 18px !important;
    }

    .ijwgh-home-newsletter form {
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* --- Issue Page --- */
    .subpage-hero {
        padding: 30px 0 40px !important;
    }

    .subpage-hero h1 {
        font-size: 24px !important;
    }

    /* Article list items */
    div[style*="display: flex; justify-content: space-between"][style*="padding-bottom: 25px"] {
        flex-direction: column !important;
        gap: 15px !important;
    }

    div[style*="flex: 1; padding-right: 20px"] {
        padding-right: 0 !important;
    }

    /* Issue grid stacked */
    div[style*="2.5fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* --- Editorial Board --- */
    .ed-hero {
        padding: 60px 0 100px !important;
    }

    .ed-hero-content h1 {
        font-size: 30px !important;
    }

    .ed-member-grid {
        grid-template-columns: 1fr !important;
    }

    .ed-filters {
        justify-content: flex-start !important;
    }

    /* --- About Page --- */
    .section-title-large {
        font-size: 24px !important;
    }

    .vision-pillars {
        grid-template-columns: 1fr !important;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
    }

    .values-section {
        padding: 30px !important;
    }

    .focus-section {
        padding: 30px !important;
    }

    .focus-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* --- Newsletter Bar (editorial/about) --- */
    .newsletter-bar {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    .newsletter-form {
        width: 100% !important;
        flex-direction: column !important;
    }

    .newsletter-input {
        width: 100% !important;
    }

    /* --- Auth Pages --- */
    .auth-left {
        padding: 30px 20px !important;
    }

    .auth-header h1 {
        font-size: 22px !important;
    }

    /* --- Footer --- */
    .ijwgh-premium-footer {
        padding: 40px 20px 20px !important;
    }

    .ijwgh-premium-footer .footer-container {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }

    .ijwgh-premium-footer .footer-brand-col {
        grid-column: span 2 !important;
    }

    .ijwgh-premium-footer .footer-newsletter-col {
        grid-column: span 2 !important;
    }

    .ijwgh-premium-footer .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        justify-content: center !important;
    }
}


/* ===================== SMALL MOBILE — max-width: 480px ===================== */
@media (max-width: 480px) {

    /* --- Header --- */
    .ijwgh-header-top {
        font-size: 10px !important;
        padding: 6px 10px !important;
    }

    .ijwgh-header-main {
        padding: 10px !important;
    }

    .ijwgh-logo {
        font-size: 14px !important;
    }

    .ijwgh-logo img {
        height: 35px !important;
    }

    .ijwgh-nav a {
        font-size: 11px !important;
        padding: 4px 6px !important;
    }

    /* --- Hero Section --- */
    .hero-content h1 {
        font-size: 22px !important;
    }

    .hero-content p {
        font-size: 13px !important;
    }

    /* --- About Section book cover --- */
    .journal-3d-cover {
        width: 180px !important;
        height: 260px !important;
    }

    .journal-3d-cover h3 {
        font-size: 18px !important;
    }

    /* --- Focus Areas (→ 1 column) --- */
    .ijwgh-home-focus-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Current Issue cover --- */
    .issue-banner-cover {
        height: 320px !important;
    }

    /* --- Issue Page --- */
    .subpage-hero h1 {
        font-size: 20px !important;
    }

    /* --- Issue detail flex row (cover + text) --- */
    div[style*="display: flex; gap: 30px; margin-bottom: 40px"] {
        flex-direction: column !important;
        gap: 20px !important;
    }

    div[style*="width: 220px; flex-shrink: 0"] {
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 auto !important;
    }

    /* --- Article title & tag buttons --- */
    div[style*="display: flex; gap: 10px; align-items: center"] {
        flex-wrap: wrap !important;
    }

    /* --- Editorial Board --- */
    .ed-hero-content h1 {
        font-size: 24px !important;
    }

    .ed-stats-bar {
        padding: 20px !important;
    }

    /* --- About Page --- */
    .section-title-large {
        font-size: 33px !important;
    }

    .focus-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Auth Pages --- */
    .auth-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .auth-header h1 {
        font-size: 20px !important;
    }

    .auth-page {
        padding: 30px 0 60px !important;
    }

    /* --- Footer --- */
    .footer-left,
    .footer-right {
        padding: 25px 15px !important;
    }

    .footer-social {
        justify-content: center !important;
    }

    .footer-logo-text {
        font-size: 13px !important;
    }

    .footer-col h4 {
        font-size: 15px !important;
        margin-bottom: 15px !important;
    }

    /* --- Extra Mobile Adjustments (320px - 425px) --- */
    .hero-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        justify-content: center !important;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        font-size: 10px !important;
        padding: 8px 12px !important;
        width: auto !important;
        flex: 1;
        text-align: center;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .ijwgh-home-newsletter {
        padding: 25px 15px !important;
    }

    .newsletter-info h3 {
        font-size: 18px !important;
    }

    .newsletter-info p {
        font-size: 12px !important;
    }

    .feature-text h4 {
        font-size: 14px !important;
    }

    .feature-text p {
        font-size: 11px !important;
    }

    .feature-row {
        gap: 15px !important;
        align-items: center !important;
    }

    .editorial-board-card {
        padding: 15px !important;
    }

    .ed-member-name {
        font-size: 14px !important;
    }

    .ed-member-title {
        font-size: 10px !important;
    }

    .ed-member-affil {
        font-size: 11px !important;
    }

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

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







/* --- Current Issue Highlight (flex row → column) --- */
div[style*="background-color: #faf7f2"] {
    flex-direction: column !important;
    padding: 30px !important;
    gap: 30px !important;
}

div[style*="background-color: #faf7f2"]>div[style*="flex-shrink: 0"] {
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    height: 420px !important;
}

/* --- Newsletter Banner --- */
div[style*="background-color: var(--primary)"][style*="border-radius: 12px"][style*="padding: 40px 60px"] {
    flex-direction: column !important;
    padding: 30px 25px !important;
    text-align: center !important;
    gap: 20px !important;
}

div[style*="background-color: var(--primary)"][style*="border-radius: 12px"] form {
    width: 100% !important;
    flex-direction: column !important;
}

div[style*="background-color: var(--primary)"][style*="border-radius: 12px"] form input {
    width: 100% !important;
}

/* --- Issue Page (grid 2.5fr 1fr → stacked) --- */
.container>div[style*="grid-template-columns: 2.5fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
}

/* --- Footer --- */
.ijwgh-premium-footer {
    flex-direction: column;
}

.footer-left,
.footer-right {
    flex: none;
    width: 100%;
    padding: 40px 25px;
    box-sizing: border-box;
}

.footer-links-group {
    gap: 40px;
    flex-direction: row;
    flex-wrap: wrap;
}
}


/* ===================== SMALL TABLET — max-width: 992px ===================== */
@media (max-width: 992px) {

    /* --- Header --- */
    .ijwgh-header-main {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .ijwgh-nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-top: 10px;
    }

    .ijwgh-nav a {
        font-size: 12px;
        padding: 5px 8px;
    }

    .ijwgh-header-top {
        font-size: 12px;
        padding: 8px 15px;
    }

    .ijwgh-logo span {
        font-size: 16px;
    }

    /* --- Hero Section --- */
    section[style*="padding: 120px 40px 180px"] {
        padding: 60px 20px 80px !important;
        margin: 10px !important;
        border-radius: 20px !important;
    }

    section[style*="padding: 120px 40px 180px"] h1 {
        font-size: 32px !important;
    }

    section[style*="padding: 120px 40px 180px"] div[style*="max-width: 800px"] {
        max-width: 100% !important;
    }

    /* --- Focus Areas (3 → 2) --- */
    div[style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* --- Current Issue cover card --- */
    div[style*="background-color: #faf7f2"]>div[style*="flex-shrink: 0"] {
        max-width: 260px !important;
        height: 360px !important;
    }

    /* --- Issue Page inline flex layout --- */
    div[style*="padding: 40px; max-width: 1200px"][style*="display: flex"] {
        flex-direction: column !important;
        padding: 20px !important;
    }

    div[style*="padding: 40px; max-width: 1200px"]>div[style*="flex: 3"],
    div[style*="padding: 40px; max-width: 1200px"]>div[style*="flex: 1"] {
        flex: none !important;
        width: 100% !important;
    }

    div[style*="width: 220px; flex-shrink: 0"] {
        width: 180px !important;
    }

    /* --- Subpage Hero --- */
    .subpage-hero {
        padding: 40px 0 50px !important;
    }

    .subpage-hero h1 {
        font-size: 28px !important;
    }

    /* --- Article Page meta flex --- */
    div[style*="display: flex; justify-content: space-between"][style*="border-bottom"] {
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* --- Section Padding --- */
    .section-padding {
        padding: 40px 15px !important;
    }

    /* --- Editorial Board --- */
    .ed-stats-bar {
        flex-direction: column;
        gap: 20px;
    }

    .ed-stat-item {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 20px;
    }

    .ed-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

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

    /* --- About Page --- */
    .vision-card {
        flex-direction: column !important;
    }

    .vision-img {
        width: 100% !important;
        height: 250px !important;
    }

    .vision-content {
        width: 100% !important;
        padding: 30px !important;
    }

    .vision-pillars {
        grid-template-columns: 1fr 1fr !important;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .focus-grid {
        grid-template-columns: 1fr 1fr 1fr !important;
    }

    /* --- Auth Pages --- */
    .auth-container {
        flex-direction: column !important;
        max-width: 100% !important;
        margin: 0 15px !important;
    }

    .auth-left {
        padding: 40px 25px !important;
    }

    .auth-left fieldset .fields {
        grid-template-columns: 1fr !important;
    }
}


/* ===================== MOBILE — max-width: 768px ===================== */
@media (max-width: 768px) {

    /* --- Header --- */
    .ijwgh-header-top {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 8px 10px;
        font-size: 11px;
    }

    .ijwgh-header-top .ijwgh-auth {
        display: flex;
        gap: 10px;
        justify-content: center;
    }

    .ijwgh-nav {
        flex-direction: column;
        align-items: center;
    }

    .ijwgh-logo {
        font-size: 16px;
        text-align: center;
        justify-content: center;
    }

    .ijwgh-logo img {
        height: 40px;
        margin-right: 10px;
    }

    /* --- Hero Section --- */
    section[style*="padding: 120px 40px 180px"] {
        padding: 50px 15px 60px !important;
        margin: 8px !important;
        border-radius: 15px !important;
    }

    section[style*="padding: 120px 40px 180px"] h1 {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }

    section[style*="padding: 120px 40px 180px"] p {
        font-size: 14px !important;
        max-width: 100% !important;
    }

    /* Hero buttons stack */
    section[style*="padding: 120px 40px 180px"] div[style*="display: flex; gap: 20px"] {
        flex-direction: column !important;
        gap: 10px !important;
    }

    section[style*="padding: 120px 40px 180px"] div[style*="display: flex; gap: 20px"] a {
        text-align: center !important;
    }

    /* --- About Section --- */
    .container>div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    /* Journal cover book in about section */
    div[style*="width: 280px; height: 380px"] {
        width: 220px !important;
        height: 310px !important;
    }

    /* --- Focus Areas (2 → 2 smaller, keep 2-col) --- */
    div[style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    div[style*="grid-template-columns: repeat(5, 1fr)"]>div {
        padding: 20px 12px !important;
    }

    /* --- Current Issue Highlight --- */
    div[style*="background-color: #faf7f2"] {
        padding: 20px !important;
        gap: 25px !important;
    }

    div[style*="background-color: #faf7f2"]>div[style*="flex-shrink: 0"] {
        max-width: 100% !important;
        height: 380px !important;
    }

    div[style*="background-color: #faf7f2"] h3 {
        font-size: 22px !important;
    }

    /* Issue meta row */
    div[style*="display: flex; gap: 30px; margin-bottom: 40px"] {
        flex-wrap: wrap !important;
        gap: 15px !important;
        margin-bottom: 25px !important;
    }

    /* Issue buttons */
    div[style*="background-color: #faf7f2"] div[style*="display: flex; gap: 20px"]:last-child {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* --- Newsletter Banner --- */
    div[style*="background-color: var(--primary)"][style*="border-radius: 12px"] {
        padding: 25px 20px !important;
    }

    div[style*="background-color: var(--primary)"][style*="border-radius: 12px"] div[style*="display: flex; align-items: center; gap: 30px"] {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    div[style*="background-color: var(--primary)"][style*="border-radius: 12px"] h3 {
        font-size: 18px !important;
    }

    /* --- Issue Page --- */
    .subpage-hero {
        padding: 30px 0 40px !important;
    }

    .subpage-hero h1 {
        font-size: 24px !important;
    }

    .subpage-hero div[style*="font-size: 13px; margin-bottom: 25px"] {
        font-size: 12px !important;
        margin-bottom: 15px !important;
    }

    /* Article list items */
    div[style*="display: flex; justify-content: space-between"][style*="border-bottom"][style*="padding-bottom: 25px"] {
        flex-direction: column !important;
        gap: 15px !important;
    }

    div[style*="display: flex; justify-content: space-between"][style*="border-bottom"]>div[style*="flex: 1; padding-right: 20px"] {
        padding-right: 0 !important;
    }

    /* Issue sidebar cards */
    .container>div[style*="grid-template-columns: 2.5fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* --- Editorial Board --- */
    .ed-hero {
        padding: 60px 0 100px !important;
    }

    .ed-hero-content h1 {
        font-size: 30px !important;
    }

    .ed-member-grid {
        grid-template-columns: 1fr !important;
    }

    .ed-filters {
        justify-content: flex-start !important;
    }

    /* --- About Page --- */
    .section-title-large {
        font-size: 33px !important;
    }

    .vision-pillars {
        grid-template-columns: 1fr !important;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
    }

    .values-section {
        padding: 30px !important;
    }

    .focus-section {
        padding: 30px !important;
    }

    .focus-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    /* --- Newsletter Bar (editorial/about) --- */
    .newsletter-bar {
        flex-direction: column !important;
        text-align: center !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    .newsletter-form {
        width: 100% !important;
        flex-direction: column !important;
    }

    .newsletter-input {
        width: 100% !important;
    }

    /* --- Auth Pages --- */
    .auth-left {
        padding: 30px 20px !important;
    }

    .auth-header h1 {
        font-size: 22px !important;
    }

    /* --- Footer --- */
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-links-group {
        flex-direction: column;
        gap: 30px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-left {
        padding: 30px 20px;
    }

    .footer-right {
        padding: 30px 20px;
    }
}


/* ===================== SMALL MOBILE — max-width: 480px ===================== */
@media (max-width: 480px) {

    /* --- Header --- */
    .ijwgh-header-top {
        font-size: 10px;
        padding: 6px 10px;
    }

    .ijwgh-header-main {
        padding: 10px;
    }

    .ijwgh-logo {
        font-size: 14px;
    }

    .ijwgh-logo img {
        height: 35px;
    }

    .ijwgh-nav a {
        font-size: 11px;
        padding: 4px 6px;
    }

    /* --- Hero Section --- */
    section[style*="padding: 120px 40px 180px"] h1 {
        font-size: 22px !important;
    }

    section[style*="padding: 120px 40px 180px"] p {
        font-size: 13px !important;
    }

    section[style*="padding: 120px 40px 180px"] div[style*="color: #cbd5e1; font-size: 13px"] {
        font-size: 11px !important;
        flex-wrap: wrap !important;
    }

    /* --- About Section book cover --- */
    div[style*="width: 280px; height: 380px"] {
        width: 180px !important;
        height: 260px !important;
    }

    div[style*="width: 280px; height: 380px"] h3 {
        font-size: 18px !important;
    }

    /* --- Focus Areas (2 → 1 column) --- */
    div[style*="grid-template-columns: repeat(5, 1fr)"] {
        grid-template-columns: 1fr !important;
    }

    /* --- Current Issue cover --- */
    div[style*="background-color: #faf7f2"]>div[style*="flex-shrink: 0"] {
        height: 320px !important;
    }

    /* --- Issue Page --- */
    .subpage-hero h1 {
        font-size: 20px !important;
    }

    div[style*="padding: 40px; max-width: 1200px"] {
        padding: 15px !important;
    }

    /* --- Issue detail flex row (cover + text) --- */
    div[style*="display: flex; gap: 30px; margin-bottom: 40px"]:first-child {
        flex-direction: column !important;
        gap: 20px !important;
    }

    div[style*="width: 220px; flex-shrink: 0"] {
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 auto !important;
    }

    /* --- Article title & tag buttons --- */
    div[style*="display: flex; gap: 10px; align-items: center"] {
        flex-wrap: wrap !important;
    }

    /* --- Editorial Board --- */
    .ed-hero-content h1 {
        font-size: 24px !important;
    }

    .ed-stats-bar {
        padding: 20px !important;
    }

    /* --- About Page --- */
    .section-title-large {
        font-size: 20px !important;
    }

    .focus-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- Auth Pages --- */
    .auth-header {
        flex-direction: column !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .auth-header h1 {
        font-size: 20px !important;
    }

    .auth-page {
        padding: 30px 0 60px !important;
    }

    /* --- Footer --- */
    .footer-left,
    .footer-right {
        padding: 25px 15px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo-text {
        font-size: 13px;
    }

    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }
}

/* --- Hide Scroller --- */
::-webkit-scrollbar {
    display: none;
}

body,
html {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* ===================== ISSUE VIEW PAGE ===================== */

/* Hero Section */
.subpage-hero {
    background-color: #061121;
    background-image: url('../../../../templates/images/editorial_hero_bg.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 50px 0 60px;
    position: relative;
    border-radius: 40px;
    margin: 20px 20px 40px;
    overflow: hidden;
}



.subpage-hero::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    bottom: -50px;
    width: 600px;
    background: url('../../../../templates/images/globe-bg-dark.jpg') center right/contain no-repeat;
    opacity: 0.3;
    mix-blend-mode: luminosity;
    z-index: 1;
}

.subpage-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.issue-breadcrumbs {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.issue-breadcrumbs a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.issue-breadcrumbs a:hover {
    text-decoration: underline;
}

.subpage-hero-container h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 20px;
    color: #fff;
    letter-spacing: -0.5px;
}

.issue-hero-meta {
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
}

.issue-hero-meta .divider {
    color: #b58d51;
    margin: 0 10px;
}

/* Main Container and Grid */
.issue-page-container {
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.issue-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

/* Left Column: Main Content */
.issue-main-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 0 0 25px;
    font-weight: 700;
}

.issue-description {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.issue-description p {
    margin-bottom: 15px;
}

.issue-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.issue-meta-tags .meta-tag {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.issue-meta-tags .meta-tag i {
    color: #b58d51;
    font-size: 15px;
}

/* Articles Section */
.articles-section {
    margin-top: 40px;
}

.articles-section h3 {
    font-size: 22px;
    color: var(--primary);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.article-list-item {
    padding: 25px 0;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.article-list-item:last-child {
    border-bottom: none;
}

.article-badge-container {
    flex-shrink: 0;
}

.article-badge {
    background-color: #fef3c7;
    color: #b45309;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    flex-grow: 1;
}

.article-content h4 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.4;
}

.article-content h4 a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.article-content h4 a:hover {
    color: #b58d51;
}

.article-authors {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-actions {
    flex-shrink: 0;
}

.btn-abstract {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    background: #fff;
}

.btn-abstract:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: var(--primary);
}

/* Right Column: Sidebar */
.issue-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 25px;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.card-header i {
    font-size: 24px;
    color: #b58d51;
    background: #fef9f0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-header h4 {
    margin: 0;
    font-size: 15px;
    color: var(--primary);
    line-height: 1.3;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.info-list li:first-child {
    padding-top: 0;
}

.info-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.info-list .label {
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.info-list .value {
    color: var(--primary);
    font-weight: 600;
}

.text-right {
    text-align: right;
}

/* Submit Research Card */
.submit-research-card {
    background: var(--primary);
    border-radius: 12px;
    padding: 30px 25px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(6, 17, 33, 0.2);
}

.submit-research-card::after {
    content: '\f0ac';
    /* Globe icon */
    font-family: 'FontAwesome';
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 120px;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.submit-research-card h4 {
    font-size: 20px;
    margin: 0 0 15px;
    position: relative;
    color: #fff;
    z-index: 2;
    line-height: 1.3;
}

.submit-research-card p {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #b58d51;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    position: relative;
    z-index: 2;
}

.btn-submit:hover {
    background: #a17a41;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .issue-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .article-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .article-actions {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .subpage-hero-container h1 {
        font-size: 28px;
    }

    .subpage-hero {
        padding: 50px 20px;
        margin-bottom: 40px;
        border-radius: 20px;
    }

    .issue-main-content h2 {
        font-size: 24px;
    }
}

/* ===================== PREMIUM FOOTER ===================== */
.ijwgh-premium-footer {
    background-color: #0b1525;
    color: #94a3b8;
    padding-top: 60px;
    font-family: var(--font-base, sans-serif);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-col .footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.footer-logo-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    font-family: var(--font-heading, serif);
}

.footer-logo-text strong {
    font-weight: 700;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #94a3b8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-social a:hover {
    background: #b58d51;
    color: #fff;
    border-color: #b58d51;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-family: var(--font-heading, serif);
    margin-top: 0;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.newsletter-col p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #94a3b8;
}

.footer-newsletter {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex-grow: 1;
    background: #fff;
    border: none;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 13px;
    color: #333;
    outline: none;
}

.footer-newsletter button {
    background: #d97706;
    color: #fff;
    border: none;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.footer-newsletter button:hover {
    background: #b45309;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.footer-bottom-bar .copy-text {
    color: #94a3b8;
}

.footer-bottom-bar .designed-by {
    color: #94a3b8;
}

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

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

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

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

    .footer-newsletter button {
        padding: 12px;
    }
}

/* ===================== ARTICLE VIEW PAGE ===================== */

.article-layout-container {
    margin: 40px auto 40px;
    padding: 0 20px;
}

.article-unified-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.article-hero {
    background-color: #061121;
    padding: 60px;
    color: #fff;
    position: relative;
}

.article-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.article-tag {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.article-tag:hover {
    opacity: 0.9;
    color: #fff;
}

.article-tag-primary {
    background-color: #b58d51;
    color: #fff;
}

.article-tag-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.article-title {
    font-size: 38px;
    margin: 0 0 25px;
    font-family: var(--font-heading);
    line-height: 1.3;
    max-width: 900px;
    color: #fff;
    font-weight: 700;
}

.article-meta-row {
    display: flex;
    gap: 25px;
    align-items: center;
    font-size: 14px;
    color: #cbd5e1;
    flex-wrap: wrap;
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta-item.bordered {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 25px;
}

.article-meta-icon {
    color: #b58d51;
}

.article-content-wrapper {
    padding: 60px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.article-main-content {
    flex: 1;
    min-width: 70%;
}

.article-section-heading {
    margin: 0 0 20px;
    font-size: 24px;
    color: #061121;
    font-family: var(--font-heading);
    font-weight: 400;
}

.article-section-subheading {
    margin: 0 0 15px;
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
    border-bottom: 1px solid #cbd5e1;
    padding-bottom: 10px;
}

.article-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 40px;
}

.article-keywords-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.article-keyword-label {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
    margin-right: 10px;
}

.article-keyword-pill {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.article-divider {
    border: 0;
    border-top: 1px solid #cbd5e1;
    margin: 40px 0;
}

.article-cite-box {
    background-color: #fff;
    border-left: 4px solid #b58d51;
    padding: 25px;
    margin: 40px 0;
    border-radius: 4px 8px 8px 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    display: flex;
    gap: 15px;
}

.article-cite-title {
    margin: 0 0 10px;
    font-size: 16px;
    color: #0f172a;
    font-weight: 700;
}

.article-cite-text {
    margin: 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

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

.article-author-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.article-author-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
    margin-bottom: 5px;
}

.article-author-detail {
    font-size: 13px;
    color: #475569;
    margin-bottom: 5px;
}

.article-author-icon {
    color: #cbd5e1;
    width: 15px;
    text-align: center;
}

.article-download-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-download-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    border: 1px solid #ef4444;
    border-radius: 6px;
    color: #ef4444;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    background-color: #fef2f2;
    transition: all 0.2s;
}

.btn-download-primary:hover {
    background-color: #fee2e2;
    color: #dc2626;
}

.btn-download-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    color: #0f172a;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    background-color: #fff;
    transition: all 0.2s;
}

.btn-download-secondary:hover {
    background-color: #f8fafc;
}

.article-sidebar {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-sidebar-section {
    background-color: transparent;
    padding: 0;
    border: none;
}

.article-sidebar-heading {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-sidebar-heading span {
    flex: 1;
    height: 1px;
    background-color: #cbd5e1;
}

.article-sidebar-cover img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.article-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-info-table {
    width: 100%;
    font-size: 13px;
    color: #475569;
    line-height: 1.8;
    border-collapse: collapse;
}

.article-info-table td {
    padding: 6px 0;
    border-bottom: 1px dashed #cbd5e1;
}

.article-info-table td.label {
    font-weight: 600;
    width: 40%;
}

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

@media (max-width: 768px) {
    .article-hero {
        padding: 40px 20px;
    }

    .article-content-wrapper {
        padding: 20px 20px;
        flex-direction: column;
        gap: 40px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-meta-item.bordered {
        border-left: none;
        padding-left: 0;
        width: 100%;
    }
}

/* ===================== AUTHOR PAGE ===================== */

.author-hero-features {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.author-guidelines-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.author-content-flex {
    display: flex;
    gap: 40px;
}

.author-resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.author-questions-box {
    background: #fbfbf9;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-questions-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 20px;
}

@media (max-width: 1200px) {
    .author-guidelines-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .author-content-flex {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .author-guidelines-grid {
        grid-template-columns: 1fr;
    }

    .author-hero-features {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 15px;
    }

    .author-resource-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .author-questions-box {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .author-questions-contact {
        flex-direction: column;
        margin: 0;
    }
}

/* --- Author Page Refactor --- */
.author-guidelines-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.author-guidelines-header h3 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: var(--font-body);
    font-weight: 700;
}

.author-header-line {
    height: 1px;
    width: 60px;
    background-color: var(--border);
}

.author-guideline-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.author-guideline-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.author-guideline-icon i {
    color: #fff;
}

.author-guideline-card h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-family: var(--font-body);
}

.author-guideline-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.author-content-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.author-section-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-body);
    margin: 0 0 30px;
    color: var(--primary);
}

.author-process-timeline {
    position: relative;
}

.author-process-line {
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: #e2e8f0;
    z-index: 1;
}

.author-process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.author-process-step:last-child {
    margin-bottom: 0;
}

.author-process-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-process-text h4 {
    margin: 0 0 5px;
    font-size: 15px;
    font-family: var(--font-body);
}

.author-process-text p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.author-resource-item h4 {
    margin: 0 0 5px;
    font-size: 15px;
    font-family: var(--font-body);
}

.author-resource-item p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--border);
    font-size: 13px;
    padding: 8px 15px;
}

.author-hero-features {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .author-hero-features {
        gap: 15px;
        margin-top: 20px;
    }
}

@media (max-width: 760px) {
    .author-hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .author-content-flex {
        flex-direction: column;
    }

    .author-guidelines-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 425px) {
    .author-guidelines-grid {
        grid-template-columns: 1fr;
    }

    .author-content-card {
        padding: 20px;
    }

    .author-process-icon {
        width: 30px;
        height: 30px;
    }

    .author-process-line {
        left: 14px;
    }

    .author-process-step {
        gap: 15px;
    }

    .btn-outline-primary {
        display: block;
        text-align: center;
        margin-top: 10px;
    }
}

/* --- Archive Page Refactor --- */
.archive-layout-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.archive-main-col {
    flex: 3;
}

.archive-sidebar-col {
    flex: 1;
}

.archive-issue-item {
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 25px;
    align-items: stretch;
    transition: box-shadow 0.2s;
}

.archive-issue-buttons {
    flex-shrink: 0;
    width: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    border-left: 1px solid #f1f5f9;
    padding-left: 25px;
}

@media (max-width: 900px) {
    .archive-layout-flex {
        flex-direction: column;
        gap: 30px;
    }

    .archive-main-col,
    .archive-sidebar-col {
        flex: auto;
        width: 100%;
    }
}

@media (max-width: 760px) {
    .archive-issue-item {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .archive-issue-buttons {
        width: 100%;
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding-left: 0;
        padding-top: 15px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .archive-issue-buttons a {
        flex: 1;
        text-align: center;
    }
}