/* =========================================================
   NIMBUS: JOURNAL OF ACADEMIC RESEARCH
   JOURNAL INFORMATION PAGE
   CUSTOM CSS
   ========================================================= */


/* =========================================================
   ROOT COLOURS
   ========================================================= */

.njoar-page {
    --njoar-blue: #244c70;
    --njoar-blue-light: #477fa5;
    --njoar-blue-soft: #eef5fa;
    --njoar-dark: #1d3347;
    --njoar-text: #222222;
    --njoar-muted: #66727d;
    --njoar-border: #dce4ea;
    --njoar-white: #ffffff;
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.njoar-page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 50px 20px;
    box-sizing: border-box;

    font-family: Arial, Helvetica, sans-serif;
    color: var(--njoar-text);
    line-height: 1.7;
}


/* =========================================================
   HERO SECTION
   ========================================================= */

.njoar-hero {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #eef5fa 0%,
            #ffffff 55%,
            #f5f9fc 100%
        );

    border: 1px solid var(--njoar-border);
    border-radius: 18px;

    padding: 45px 50px;
    margin-bottom: 30px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(36, 76, 112, 0.08);
}


.njoar-hero::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    right: -90px;
    top: -100px;

    background: rgba(71, 127, 165, 0.10);

    border-radius: 50%;
}


.njoar-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}


.njoar-label {
    display: inline-block;

    background: var(--njoar-blue);
    color: #ffffff;

    padding: 6px 15px;

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 15px;
}


.njoar-hero h1 {
    margin: 0 0 12px 0;

    color: var(--njoar-blue);

    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
}


.njoar-hero-subtitle {
    color: var(--njoar-blue-light);

    font-size: 17px;
    font-weight: 600;

    margin-bottom: 20px;
}


.njoar-hero p {
    font-size: 16px;
    margin: 0;

    color: #333333;
    text-align: justify;
}


/* =========================================================
   SECTION
   ========================================================= */

.njoar-section {
    margin-bottom: 35px;
}


.njoar-section-heading {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 20px;
}


.njoar-section-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: var(--njoar-blue);
    color: #ffffff;

    border-radius: 10px;

    font-size: 20px;
}


.njoar-section-heading h2 {
    margin: 0;

    color: var(--njoar-blue);

    font-size: 25px;
    line-height: 1.3;
}


.njoar-section-heading-line {
    flex: 1;
    height: 1px;

    background: var(--njoar-border);
}


/* =========================================================
   ABOUT JOURNAL
   ========================================================= */

.njoar-about {
    background: #ffffff;

    border: 1px solid var(--njoar-border);

    border-left: 5px solid var(--njoar-blue);

    border-radius: 12px;

    padding: 28px 30px;

    box-shadow:
        0 5px 18px rgba(36, 76, 112, 0.06);
}


.njoar-about p {
    margin: 0 0 18px 0;

    font-size: 15.5px;

    text-align: justify;
}


.njoar-about p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   JOURNAL INFORMATION CARDS
   ========================================================= */

.njoar-info-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.njoar-info-card {
    position: relative;

    background: #ffffff;

    border: 1px solid var(--njoar-border);

    border-radius: 13px;

    padding: 22px;

    min-height: 110px;

    box-sizing: border-box;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


.njoar-info-card:hover {
    transform: translateY(-4px);

    border-color: var(--njoar-blue-light);

    box-shadow:
        0 8px 22px rgba(36, 76, 112, 0.12);
}


.njoar-card-icon {
    font-size: 22px;
    margin-bottom: 8px;

    color: var(--njoar-blue);
}


.njoar-card-label {
    display: block;

    color: var(--njoar-muted);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    font-weight: 700;

    margin-bottom: 4px;
}


.njoar-card-value {
    display: block;

    color: var(--njoar-blue);

    font-size: 16px;

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   PUBLICATION DETAILS
   ========================================================= */

.njoar-publication-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.njoar-publication-card {
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f6f9fb
        );

    border: 1px solid var(--njoar-border);

    border-radius: 12px;

    padding: 20px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.njoar-publication-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 7px 20px rgba(36, 76, 112, 0.10);
}


.njoar-publication-card strong {
    display: block;

    color: var(--njoar-blue);

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    margin-bottom: 6px;
}


.njoar-publication-card span {
    font-size: 15px;
    color: #333333;
}


/* =========================================================
   EDITORIAL TEAM
   ========================================================= */

.njoar-editorial {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}


.njoar-editor-card {
    display: flex;

    align-items: center;

    gap: 18px;

    background: #ffffff;

    border: 1px solid var(--njoar-border);

    border-radius: 14px;

    padding: 24px;

    box-shadow:
        0 5px 18px rgba(36, 76, 112, 0.05);
}


.njoar-editor-icon {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    background: var(--njoar-blue-soft);

    color: var(--njoar-blue);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;

    flex-shrink: 0;
}


.njoar-editor-card small {
    display: block;

    color: var(--njoar-muted);

    text-transform: uppercase;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.8px;

    margin-bottom: 3px;
}


.njoar-editor-card strong {
    display: block;

    color: var(--njoar-blue);

    font-size: 17px;
}


/* =========================================================
   PUBLISHER DESCRIPTION
   ========================================================= */

.njoar-publisher-box {
    margin-top: 20px;

    background: var(--njoar-blue-soft);

    border-radius: 13px;

    padding: 25px 28px;

    border: 1px solid #d9e6ef;
}


.njoar-publisher-box p {
    margin: 0;

    font-size: 15.5px;

    text-align: justify;
}


/* =========================================================
   PUBLICATION INFORMATION TABLE
   ========================================================= */

.njoar-table-wrapper {
    width: 100%;

    overflow-x: auto;

    border: 1px solid var(--njoar-border);

    border-radius: 13px;

    box-shadow:
        0 5px 18px rgba(36, 76, 112, 0.05);
}


.njoar-table {
    width: 100%;

    border-collapse: collapse;

    background: #ffffff;

    font-size: 14.5px;
}


.njoar-table th {
    width: 34%;

    background: var(--njoar-blue);

    color: #ffffff;

    text-align: left;

    padding: 14px 18px;

    font-weight: 700;

    border-bottom: 1px solid #ffffff;
}


.njoar-table td {
    padding: 14px 18px;

    border-bottom: 1px solid var(--njoar-border);

    color: #333333;
}


.njoar-table tr:last-child th,
.njoar-table tr:last-child td {
    border-bottom: none;
}


.njoar-table tr:nth-child(even) td {
    background: #f8fafc;
}


.njoar-table tr:hover td {
    background: var(--njoar-blue-soft);
}


/* =========================================================
   FOCUS AREAS
   ========================================================= */

.njoar-focus-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}


.njoar-focus-card {
    position: relative;

    background: #ffffff;

    border: 1px solid var(--njoar-border);

    border-radius: 11px;

    padding: 17px 18px 17px 45px;

    font-size: 14.5px;

    color: #333333;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}


.njoar-focus-card::before {
    content: "✓";

    position: absolute;

    left: 16px;
    top: 15px;

    width: 20px;
    height: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--njoar-blue);

    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 700;
}


.njoar-focus-card:hover {
    background: var(--njoar-blue-soft);

    border-color: #bcd2e0;

    transform: translateY(-3px);
}


/* =========================================================
   MISSION STATEMENT
   ========================================================= */

.njoar-mission {
    position: relative;

    background:
        linear-gradient(
            135deg,
            #244c70,
            #477fa5
        );

    color: #ffffff;

    border-radius: 16px;

    padding: 35px 40px;

    overflow: hidden;

    box-shadow:
        0 10px 28px rgba(36, 76, 112, 0.18);
}


.njoar-mission::after {
    content: "✦";

    position: absolute;

    right: 35px;
    top: 20px;

    font-size: 80px;

    color: rgba(255,255,255,0.08);
}


.njoar-mission h2 {
    position: relative;

    z-index: 2;

    margin: 0 0 15px 0;

    font-size: 25px;

    color: #ffffff;
}


.njoar-mission p {
    position: relative;

    z-index: 2;

    margin: 0;

    font-size: 16px;

    line-height: 1.8;

    text-align: justify;
}


/* =========================================================
   GENERAL TEXT BOX
   ========================================================= */

.njoar-text {
    background: #ffffff;

    border: 1px solid var(--njoar-border);

    border-radius: 12px;

    padding: 25px 30px;
}


.njoar-text p {
    margin: 0 0 18px 0;

    font-size: 15.5px;

    text-align: justify;
}


.njoar-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 900px) {

    .njoar-info-grid,
    .njoar-publication-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .njoar-focus-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 700px) {

    .njoar-page {
        padding: 20px 12px 35px 12px;
    }


    .njoar-hero {
        padding: 30px 22px;
        border-radius: 12px;
    }


    .njoar-hero h1 {
        font-size: 25px;
    }


    .njoar-hero-subtitle {
        font-size: 15px;
    }


    .njoar-info-grid,
    .njoar-publication-grid,
    .njoar-editorial,
    .njoar-focus-grid {
        grid-template-columns: 1fr;
    }


    .njoar-section-heading h2 {
        font-size: 21px;
    }


    .njoar-section-heading-line {
        display: none;
    }


    .njoar-about,
    .njoar-text {
        padding: 20px;
    }


    .njoar-mission {
        padding: 28px 22px;
    }


    .njoar-mission h2 {
        font-size: 21px;
    }


    .njoar-table {
        min-width: 650px;
    }

}
/* Hide OJS default footer logo */
.pkp_brand_footer {
    display: none !important;
}
/* =========================================================
   NIMBUS: JOURNAL OF ACADEMIC RESEARCH
   ANNOUNCEMENTS DESIGN
   ========================================================= */


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.njoar-announcements {
    width: 100%;
    max-width: 1100px;

    margin: 30px auto;

    padding: 0;

    box-sizing: border-box;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #222222;

    line-height: 1.7;
}


/* =========================================================
   ANNOUNCEMENT HEADER
   ========================================================= */

.njoar-announcement-header {
    display: flex;

    align-items: center;

    gap: 20px;

    padding: 28px 32px;

    margin-bottom: 24px;

    background:
        linear-gradient(
            135deg,
            #244c70 0%,
            #477fa5 100%
        );

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(36, 76, 112, 0.16);
}


.njoar-announcement-icon {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255,255,255,0.15);

    border: 1px solid rgba(255,255,255,0.25);

    border-radius: 14px;

    font-size: 29px;
}


.njoar-announcement-label {
    display: block;

    margin-bottom: 4px;

    color: rgba(255,255,255,0.85);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.njoar-announcement-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: 27px;

    line-height: 1.35;

    font-weight: 700;
}


/* =========================================================
   ANNOUNCEMENT BODY
   ========================================================= */

.njoar-announcement-body {
    padding: 28px 32px;

    margin-bottom: 28px;

    background: #ffffff;

    border: 1px solid #dce4ea;

    border-left: 5px solid #244c70;

    border-radius: 13px;

    box-shadow:
        0 5px 18px rgba(36, 76, 112, 0.06);
}


.njoar-announcement-body p {
    margin: 0 0 18px;

    color: #333333;

    font-size: 15.5px;

    line-height: 1.8;

    text-align: justify;
}


.njoar-announcement-body p:last-child {
    margin-bottom: 0;
}


.njoar-announcement-body strong {
    color: #244c70;
}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.njoar-announcement-section {
    margin-bottom: 28px;
}


.njoar-announcement-section-title {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 18px;

    padding-bottom: 10px;

    border-bottom: 1px solid #dce4ea;
}


.njoar-feature-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #244c70;

    color: #ffffff;

    border-radius: 9px;

    font-size: 18px;

    font-weight: 700;
}


.njoar-announcement-section-title h3 {
    margin: 0;

    color: #244c70;

    font-size: 22px;

    font-weight: 700;
}


/* =========================================================
   FEATURE GRID
   ========================================================= */

.njoar-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 14px;
}


.njoar-feature-card {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 65px;

    padding: 15px 18px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #dce4ea;

    border-radius: 11px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.njoar-feature-card:hover {
    transform: translateY(-3px);

    border-color: #477fa5;

    box-shadow:
        0 7px 18px rgba(36, 76, 112, 0.10);
}


.njoar-feature-card span {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef5fa;

    color: #244c70;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 700;
}


.njoar-feature-card strong {
    color: #333333;

    font-size: 14.5px;

    line-height: 1.5;
}


/* =========================================================
   CALL FOR PAPERS
   ========================================================= */

.njoar-call-for-papers {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    margin-bottom: 25px;

    background:
        linear-gradient(
            135deg,
            #eef5fa,
            #f8fbfd
        );

    border: 1px solid #d4e2ec;

    border-radius: 15px;

    box-shadow:
        0 6px 20px rgba(36, 76, 112, 0.06);
}


.njoar-cfp-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #244c70;

    color: #ffffff;

    border-radius: 12px;

    font-size: 25px;
}


.njoar-cfp-label {
    display: inline-block;

    margin-bottom: 5px;

    padding: 4px 11px;

    background: #244c70;

    color: #ffffff;

    border-radius: 20px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.njoar-cfp-content h3 {
    margin: 5px 0 12px;

    color: #244c70;

    font-size: 22px;

    line-height: 1.4;
}


.njoar-cfp-content p {
    margin: 0 0 14px;

    color: #333333;

    font-size: 15px;

    line-height: 1.75;

    text-align: justify;
}


.njoar-cfp-content p:last-child {
    margin-bottom: 0;
}


.njoar-cfp-content strong {
    color: #244c70;
}


/* =========================================================
   STAY TUNED
   ========================================================= */

.njoar-stay-tuned {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 24px 28px;

    background: #ffffff;

    border: 1px solid #dce4ea;

    border-radius: 13px;

    box-shadow:
        0 5px 18px rgba(36, 76, 112, 0.06);
}


.njoar-stay-tuned-icon {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eef5fa;

    color: #244c70;

    border-radius: 50%;

    font-size: 22px;
}


.njoar-stay-tuned h3 {
    margin: 0 0 5px;

    color: #244c70;

    font-size: 18px;

    font-weight: 700;
}


.njoar-stay-tuned p {
    margin: 0;

    color: #555555;

    font-size: 14px;

    line-height: 1.6;
}


.njoar-stay-tuned strong {
    color: #244c70;
}


/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */

@media screen and (max-width: 800px) {

    .njoar-feature-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {

    .njoar-announcements {
        margin: 20px auto;

        padding: 0 10px;
    }


    .njoar-announcement-header {
        padding: 23px 20px;

        gap: 14px;

        border-radius: 12px;
    }


    .njoar-announcement-icon {
        width: 50px;
        height: 50px;

        font-size: 23px;
    }


    .njoar-announcement-header h2 {
        font-size: 21px;
    }


    .njoar-announcement-body {
        padding: 22px 20px;
    }


    .njoar-announcement-body p {
        font-size: 14.5px;

        text-align: left;
    }


    .njoar-announcement-section-title h3 {
        font-size: 19px;
    }


    .njoar-call-for-papers {
        flex-direction: column;

        padding: 23px 20px;
    }


    .njoar-cfp-content h3 {
        font-size: 19px;
    }


    .njoar-cfp-content p {
        font-size: 14.5px;

        text-align: left;
    }


    .njoar-stay-tuned {
        padding: 20px;

        align-items: flex-start;
    }


    .njoar-stay-tuned-icon {
        width: 44px;
        height: 44px;
    }

}/* =========================================================
   NIMBUS: JOURNAL OF ACADEMIC RESEARCH
   ABOUT THE JOURNAL PAGE
   ========================================================= */


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.njoar-about-page {

    --njoar-blue: #244c70;
    --njoar-blue-light: #477fa5;
    --njoar-blue-soft: #eef5fa;
    --njoar-dark: #1d3347;
    --njoar-text: #303030;
    --njoar-muted: #687681;
    --njoar-border: #dce4ea;
    --njoar-white: #ffffff;

    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    padding: 30px 20px 45px;

    box-sizing: border-box;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--njoar-text);

    line-height: 1.7;
}


/* =========================================================
   HERO
   ========================================================= */

.njoar-about-hero {

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 32px 38px;

    margin-bottom: 30px;

    background:
        linear-gradient(
            135deg,
            #244c70 0%,
            #477fa5 100%
        );

    border-radius: 17px;

    box-shadow:
        0 9px 27px rgba(36, 76, 112, 0.16);

}


.njoar-about-hero-icon {

    width: 66px;
    height: 66px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,0.14);

    border:
        1px solid rgba(255,255,255,0.25);

    border-radius: 15px;

    font-size: 30px;

}


.njoar-about-eyebrow {

    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,0.82);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.njoar-about-hero h1 {

    margin: 0;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 700;

}


.njoar-about-hero p {

    margin: 5px 0 0;

    color:
        rgba(255,255,255,0.90);

    font-size: 14px;

    font-weight: 600;

}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.njoar-about-introduction {

    margin-bottom: 38px;

    padding: 30px 34px;

    background: #ffffff;

    border:
        1px solid var(--njoar-border);

    border-left:
        5px solid var(--njoar-blue);

    border-radius: 14px;

    box-shadow:
        0 5px 18px rgba(36,76,112,0.06);

}


/* =========================================================
   SECTION TITLE
   ========================================================= */

.njoar-about-section-title {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;

}


.njoar-about-title-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        var(--njoar-blue);

    color: #ffffff;

    border-radius: 9px;

    font-size: 18px;

}


.njoar-about-section-title span {

    display: block;

    color: var(--njoar-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.njoar-about-section-title h2 {

    margin: 1px 0 0;

    color: var(--njoar-blue);

    font-size: 23px;

    line-height: 1.4;

}


/* =========================================================
   INTRODUCTION CONTENT
   ========================================================= */

.njoar-about-content p {

    margin: 0 0 18px;

    color: #333333;

    font-size: 15.5px;

    line-height: 1.8;

    text-align: justify;

}


.njoar-about-content p:last-child {

    margin-bottom: 0;

}


.njoar-about-content strong {

    color: var(--njoar-blue);

}


/* =========================================================
   GENERAL SECTION
   ========================================================= */

.njoar-about-section {

    margin-bottom: 38px;

}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.njoar-about-heading {

    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 12px;

    margin-bottom: 20px;

    border-bottom:
        1px solid var(--njoar-border);

}


.njoar-about-heading-icon {

    width: 43px;
    height: 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background:
        var(--njoar-blue);

    color: #ffffff;

    border-radius: 9px;

    font-size: 19px;

}


.njoar-about-heading span {

    display: block;

    color: var(--njoar-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

}


.njoar-about-heading h2 {

    margin: 1px 0 0;

    color: var(--njoar-blue);

    font-size: 23px;

    line-height: 1.35;

}


/* =========================================================
   JOURNAL INFORMATION GRID
   ========================================================= */

.njoar-about-info-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

}


.njoar-about-info-card {

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 105px;

    padding: 19px;

    box-sizing: border-box;

    background: #ffffff;

    border:
        1px solid var(--njoar-border);

    border-radius: 12px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.njoar-about-info-card:hover {

    transform:
        translateY(-4px);

    border-color:
        var(--njoar-blue-light);

    box-shadow:
        0 8px 20px rgba(36,76,112,0.10);

}


.njoar-about-info-icon {

    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        var(--njoar-blue-soft);

    color:
        var(--njoar-blue);

    border-radius: 10px;

    font-size: 19px;

}


.njoar-about-info-card small {

    display: block;

    margin-bottom: 3px;

    color: var(--njoar-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;

}


.njoar-about-info-card strong {

    display: block;

    color:
        var(--njoar-blue);

    font-size: 15px;

    line-height: 1.45;

}


/* =========================================================
   ISSN CARD
   ========================================================= */

.njoar-about-issn {

    background:
        linear-gradient(
            135deg,
            #eef5fa,
            #ffffff
        );

    border-color:
        #cbdde9;

}


.njoar-about-issn strong {

    letter-spacing: 1px;

}


/* =========================================================
   PUBLICATION DETAILS
   ========================================================= */

.njoar-publication-cards {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

}


.njoar-publication-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    background:
        #ffffff;

    border:
        1px solid var(--njoar-border);

    border-radius: 11px;

    transition:
        transform .25s ease,
        box-shadow .25s ease;

}


.njoar-publication-item:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 7px 18px rgba(36,76,112,0.09);

}


.njoar-publication-number {

    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        var(--njoar-blue-soft);

    color:
        var(--njoar-blue);

    border-radius: 50%;

    font-size: 11px;

    font-weight: 700;

}


.njoar-publication-item small {

    display: block;

    margin-bottom: 2px;

    color:
        var(--njoar-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .7px;

    text-transform: uppercase;

}


.njoar-publication-item strong {

    display: block;

    color:
        #333333;

    font-size: 15px;

}


/* =========================================================
   EDITORIAL TEAM
   ========================================================= */

.njoar-editorial-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

}


.njoar-editorial-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 23px;

    background:
        #ffffff;

    border:
        1px solid var(--njoar-border);

    border-radius: 13px;

    box-shadow:
        0 5px 16px rgba(36,76,112,0.05);

}


.njoar-editorial-icon {

    width: 56px;
    height: 56px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        var(--njoar-blue-soft);

    color:
        var(--njoar-blue);

    border-radius: 50%;

    font-size: 23px;

}


.njoar-editorial-card small {

    display: block;

    margin-bottom: 3px;

    color:
        var(--njoar-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

}


.njoar-editorial-card h3 {

    margin: 0;

    color:
        var(--njoar-blue);

    font-size: 17px;

}


/* =========================================================
   FINAL STATEMENT
   ========================================================= */

.njoar-about-statement {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 22px;

    overflow: hidden;

    padding: 30px 35px;

    background:
        linear-gradient(
            135deg,
            #244c70,
            #477fa5
        );

    border-radius: 15px;

    color: #ffffff;

    box-shadow:
        0 9px 25px rgba(36,76,112,0.16);

}


.njoar-statement-mark {

    font-family:
        Georgia,
        serif;

    color:
        rgba(255,255,255,.25);

    font-size: 80px;

    line-height: .8;

}


.njoar-about-statement h2 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 22px;

}


.njoar-about-statement p {

    margin: 0;

    color:
        rgba(255,255,255,.92);

    font-size: 15px;

    line-height: 1.7;

}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 900px) {

    .njoar-about-info-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 650px) {

    .njoar-about-page {

        padding:
            20px 12px 35px;

    }


    .njoar-about-hero {

        padding:
            25px 20px;

        gap: 15px;

        border-radius: 12px;

    }


    .njoar-about-hero-icon {

        width: 50px;
        height: 50px;

        font-size: 23px;

    }


    .njoar-about-hero h1 {

        font-size: 22px;

    }


    .njoar-about-hero p {

        font-size: 12px;

    }


    .njoar-about-introduction {

        padding:
            22px 20px;

    }


    .njoar-about-content p {

        font-size: 14.5px;

        text-align: left;

    }


    .njoar-about-info-grid,
    .njoar-publication-cards,
    .njoar-editorial-grid {

        grid-template-columns: 1fr;

    }


    .njoar-about-heading h2 {

        font-size: 20px;

    }


    .njoar-about-statement {

        padding:
            25px 22px;

        gap: 13px;

    }


    .njoar-statement-mark {

        font-size: 55px;

    }


    .njoar-about-statement h2 {

        font-size: 19px;

    }


    .njoar-about-statement p {

        font-size: 14px;

    }

}/* =========================================================
   NIMBUS: JOURNAL OF ACADEMIC RESEARCH
   EDITORIAL TEAM PAGE
   ========================================================= */


.njoar-editorial-page {

    --njoar-blue: #244c70;
    --njoar-blue-light: #477fa5;
    --njoar-blue-soft: #eef5fa;
    --njoar-dark: #1d3347;
    --njoar-text: #303030;
    --njoar-muted: #687681;
    --njoar-border: #dce4ea;
    --njoar-white: #ffffff;

    width: 100%;

    max-width: 1150px;

    margin: 0 auto;

    padding: 30px 20px 45px;

    box-sizing: border-box;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--njoar-text);

    line-height: 1.7;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.njoar-editorial-hero {

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 32px 38px;

    margin-bottom: 30px;

    background:
        linear-gradient(
            135deg,
            #244c70 0%,
            #477fa5 100%
        );

    border-radius: 17px;

    box-shadow:
        0 9px 27px rgba(36,76,112,0.16);
}


.njoar-editorial-hero-icon {

    width: 66px;

    height: 66px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.14);

    border:
        1px solid rgba(255,255,255,0.25);

    border-radius: 15px;

    font-size: 30px;
}


.njoar-editorial-eyebrow {

    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,0.82);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.njoar-editorial-hero h1 {

    margin: 0;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.3;
}


.njoar-editorial-hero p {

    margin: 5px 0 0;

    color:
        rgba(255,255,255,0.90);

    font-size: 14px;
}


/* =========================================================
   EDITOR-IN-CHIEF
   ========================================================= */

.njoar-chief-editor {

    position: relative;

    padding: 34px;

    margin-bottom: 42px;

    background:
        linear-gradient(
            135deg,
            #f7fbfd,
            #ffffff
        );

    border:
        1px solid #cbdde9;

    border-left:
        6px solid var(--njoar-blue);

    border-radius: 15px;

    box-shadow:
        0 8px 24px rgba(36,76,112,0.08);
}


.njoar-chief-badge {

    position: absolute;

    top: 0;

    right: 25px;

    padding: 7px 14px;

    background:
        var(--njoar-blue);

    color: #ffffff;

    border-radius:
        0 0 8px 8px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.njoar-chief-content {

    display: flex;

    align-items: center;

    gap: 25px;
}


.njoar-chief-avatar {

    width: 105px;

    height: 105px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #244c70,
            #477fa5
        );

    color: #ffffff;

    border-radius: 50%;

    font-size: 30px;

    font-weight: 700;

    letter-spacing: 1px;

    box-shadow:
        0 6px 15px rgba(36,76,112,0.18);
}


.njoar-chief-details h2 {

    margin: 0 0 4px;

    color:
        var(--njoar-blue);

    font-size: 26px;
}


.njoar-chief-details h3 {

    margin: 0 0 5px;

    color:
        #444444;

    font-size: 16px;

    font-weight: 600;
}


.njoar-institution {

    margin: 0 0 12px;

    color:
        var(--njoar-muted);

    font-size: 14px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.njoar-contact-row {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.njoar-contact-row a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 12px;

    background:
        var(--njoar-blue-soft);

    color:
        var(--njoar-blue);

    border-radius: 7px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;
}


.njoar-contact-row a:hover {

    background:
        var(--njoar-blue);

    color: #ffffff;
}


/* =========================================================
   EDITORIAL SECTION
   ========================================================= */

.njoar-editor-section {

    margin-bottom: 42px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.njoar-editor-section-heading {

    display: flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 13px;

    margin-bottom: 20px;

    border-bottom:
        1px solid var(--njoar-border);
}


.njoar-editor-section-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--njoar-blue);

    color: #ffffff;

    border-radius: 10px;

    font-size: 19px;
}


.njoar-editor-section-heading span {

    display: block;

    color:
        var(--njoar-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.njoar-editor-section-heading h2 {

    margin: 1px 0 0;

    color:
        var(--njoar-blue);

    font-size: 23px;

    line-height: 1.35;
}


/* =========================================================
   EDITOR GRID
   ========================================================= */

.njoar-editor-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   EDITOR CARD
   ========================================================= */

.njoar-editor-card {

    position: relative;

    padding: 24px;

    background:
        #ffffff;

    border:
        1px solid var(--njoar-border);

    border-radius: 13px;

    box-shadow:
        0 5px 17px rgba(36,76,112,0.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.njoar-editor-card:hover {

    transform:
        translateY(-4px);

    border-color:
        #b9d0df;

    box-shadow:
        0 10px 25px rgba(36,76,112,0.10);
}


.njoar-editor-number {

    position: absolute;

    top: 17px;

    right: 18px;

    color:
        #d9e5ec;

    font-size: 25px;

    font-weight: 700;
}


.njoar-editor-profile {

    display: flex;

    align-items: flex-start;

    gap: 17px;
}


.njoar-editor-avatar {

    width: 58px;

    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--njoar-blue-soft);

    color:
        var(--njoar-blue);

    border-radius: 50%;

    font-size: 17px;

    font-weight: 700;
}


.njoar-editor-info {

    min-width: 0;
}


.njoar-editor-info h3 {

    margin: 0 35px 5px 0;

    color:
        var(--njoar-blue);

    font-size: 18px;

    line-height: 1.4;
}


.njoar-designation {

    margin: 0 0 5px;

    color:
        #444444;

    font-size: 13.5px;

    font-weight: 600;

    line-height: 1.5;
}


.njoar-editor-info .njoar-institution {

    margin-bottom: 10px;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   EMAIL
   ========================================================= */

.njoar-email {

    display: inline-block;

    margin-bottom: 10px;

    color:
        var(--njoar-blue);

    font-size: 12.5px;

    font-weight: 600;

    text-decoration: none;

    word-break: break-word;
}


.njoar-email:hover {

    text-decoration: underline;
}


/* =========================================================
   PROFILE LINK
   ========================================================= */

.njoar-profile {

    display: block;

    color:
        var(--njoar-blue);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;
}


.njoar-profile span {

    margin-left: 4px;

    transition:
        margin-left .2s ease;
}


.njoar-profile:hover span {

    margin-left: 8px;
}


/* =========================================================
   FINAL MESSAGE
   ========================================================= */

.njoar-editorial-message {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 28px 32px;

    background:
        linear-gradient(
            135deg,
            #244c70,
            #477fa5
        );

    border-radius: 15px;

    color: #ffffff;

    box-shadow:
        0 8px 23px rgba(36,76,112,0.15);
}


.njoar-message-icon {

    width: 55px;

    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.15);

    border-radius: 50%;

    font-size: 23px;
}


.njoar-editorial-message h2 {

    margin: 0 0 6px;

    color: #ffffff;

    font-size: 21px;
}


.njoar-editorial-message p {

    margin: 0;

    color:
        rgba(255,255,255,0.92);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 850px) {

    .njoar-editor-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {

    .njoar-editorial-page {

        padding:
            20px 12px 35px;

    }


    .njoar-editorial-hero {

        padding:
            24px 20px;

        gap: 14px;

        border-radius: 12px;

    }


    .njoar-editorial-hero-icon {

        width: 50px;

        height: 50px;

        font-size: 23px;

    }


    .njoar-editorial-hero h1 {

        font-size: 22px;

    }


    .njoar-editorial-hero p {

        font-size: 12px;

    }


    .njoar-chief-editor {

        padding:
            28px 20px;

    }


    .njoar-chief-badge {

        right: 15px;

        font-size: 8px;

    }


    .njoar-chief-content {

        flex-direction: column;

        align-items: flex-start;

        text-align: left;

    }


    .njoar-chief-avatar {

        width: 82px;

        height: 82px;

        font-size: 24px;

    }


    .njoar-chief-details h2 {

        font-size: 22px;

    }


    .njoar-editor-section-heading h2 {

        font-size: 20px;

    }


    .njoar-editor-card {

        padding: 20px;

    }


    .njoar-editor-profile {

        gap: 13px;

    }


    .njoar-editor-avatar {

        width: 48px;

        height: 48px;

        font-size: 14px;

    }


    .njoar-editor-info h3 {

        font-size: 16px;

    }


    .njoar-editorial-message {

        align-items: flex-start;

        padding:
            23px 20px;

    }


    .njoar-message-icon {

        width: 45px;

        height: 45px;

    }


    .njoar-editorial-message h2 {

        font-size: 18px;

    }

}/* =========================================================
   NIMBUS: JOURNAL OF ACADEMIC RESEARCH
   REVIEWERS TEAM PAGE
   ========================================================= */

.njoar-reviewers-page {

    --njoar-blue: #244c70;
    --njoar-blue-light: #477fa5;
    --njoar-blue-soft: #eef5fa;
    --njoar-dark: #1d3347;
    --njoar-text: #303030;
    --njoar-muted: #687681;
    --njoar-border: #dce4ea;
    --njoar-white: #ffffff;

    width: 100%;

    max-width: 1150px;

    margin: 0 auto;

    padding: 30px 20px 45px;

    box-sizing: border-box;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--njoar-text);

    line-height: 1.7;
}


/* =========================================================
   PAGE HEADER
   ========================================================= */

.njoar-reviewers-hero {

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 32px 38px;

    margin-bottom: 28px;

    background:
        linear-gradient(
            135deg,
            #244c70 0%,
            #477fa5 100%
        );

    border-radius: 17px;

    box-shadow:
        0 9px 27px rgba(36,76,112,0.16);
}


.njoar-reviewers-hero-icon {

    width: 66px;

    height: 66px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.14);

    border:
        1px solid rgba(255,255,255,0.25);

    border-radius: 15px;

    color: #ffffff;

    font-size: 31px;

    font-weight: 700;
}


.njoar-reviewers-eyebrow {

    display: block;

    margin-bottom: 4px;

    color:
        rgba(255,255,255,0.82);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}


.njoar-reviewers-hero h1 {

    margin: 0;

    color: #ffffff;

    font-size: 30px;

    line-height: 1.3;
}


.njoar-reviewers-hero p {

    margin: 5px 0 0;

    color:
        rgba(255,255,255,0.90);

    font-size: 14px;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.njoar-reviewers-intro {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 25px 30px;

    margin-bottom: 38px;

    background: #ffffff;

    border:
        1px solid var(--njoar-border);

    border-left:
        5px solid var(--njoar-blue);

    border-radius: 13px;

    box-shadow:
        0 5px 18px rgba(36,76,112,0.05);
}


.njoar-reviewers-intro-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--njoar-blue-soft);

    color:
        var(--njoar-blue);

    border-radius: 10px;

    font-size: 20px;
}


.njoar-reviewers-intro h2 {

    margin: 0 0 5px;

    color:
        var(--njoar-blue);

    font-size: 21px;
}


.njoar-reviewers-intro p {

    margin: 0;

    color: #444444;

    font-size: 14.5px;

    line-height: 1.75;
}


.njoar-reviewers-intro strong {

    color:
        var(--njoar-blue);
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.njoar-reviewers-section {

    margin-bottom: 38px;
}


.njoar-reviewers-heading {

    display: flex;

    align-items: center;

    gap: 14px;

    padding-bottom: 13px;

    margin-bottom: 20px;

    border-bottom:
        1px solid var(--njoar-border);
}


.njoar-reviewers-heading-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--njoar-blue);

    color: #ffffff;

    border-radius: 10px;

    font-size: 20px;
}


.njoar-reviewers-heading span {

    display: block;

    color:
        var(--njoar-muted);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;
}


.njoar-reviewers-heading h2 {

    margin: 1px 0 0;

    color:
        var(--njoar-blue);

    font-size: 23px;

    line-height: 1.35;
}


/* =========================================================
   REVIEWER GRID
   ========================================================= */

.njoar-reviewers-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   REVIEWER CARD
   ========================================================= */

.njoar-reviewer-card {

    position: relative;

    padding: 23px;

    background:
        #ffffff;

    border:
        1px solid var(--njoar-border);

    border-radius: 13px;

    box-shadow:
        0 5px 17px rgba(36,76,112,0.05);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.njoar-reviewer-card:hover {

    transform:
        translateY(-4px);

    border-color:
        #b9d0df;

    box-shadow:
        0 10px 25px rgba(36,76,112,0.10);
}


.njoar-reviewer-number {

    position: absolute;

    top: 15px;

    right: 18px;

    color:
        #d9e5ec;

    font-size: 25px;

    font-weight: 700;
}


.njoar-reviewer-profile {

    display: flex;

    align-items: flex-start;

    gap: 17px;
}


/* =========================================================
   REVIEWER AVATAR
   ========================================================= */

.njoar-reviewer-avatar {

    width: 58px;

    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        var(--njoar-blue-soft);

    color:
        var(--njoar-blue);

    border-radius: 50%;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================================
   REVIEWER INFORMATION
   ========================================================= */

.njoar-reviewer-info {

    min-width: 0;
}


.njoar-reviewer-info h3 {

    margin: 0 35px 5px 0;

    color:
        var(--njoar-blue);

    font-size: 18px;

    line-height: 1.4;
}


.njoar-reviewer-info p {

    margin: 8px 0 0;

    color:
        #444444;

    font-size: 13.5px;

    font-weight: 600;

    line-height: 1.55;
}


/* =========================================================
   SUBJECT / DISCIPLINE LABEL
   ========================================================= */

.njoar-reviewer-field {

    display: inline-block;

    padding: 4px 10px;

    background:
        var(--njoar-blue-soft);

    color:
        var(--njoar-blue);

    border-radius: 20px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .4px;
}


/* =========================================================
   FINAL STATEMENT
   ========================================================= */

.njoar-reviewers-statement {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 28px 32px;

    background:
        linear-gradient(
            135deg,
            #244c70,
            #477fa5
        );

    border-radius: 15px;

    color: #ffffff;

    box-shadow:
        0 8px 23px rgba(36,76,112,0.15);
}


.njoar-reviewers-statement-icon {

    width: 55px;

    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.15);

    border-radius: 50%;

    color: #ffffff;

    font-size: 23px;

    font-weight: 700;
}


.njoar-reviewers-statement h2 {

    margin: 0 0 6px;

    color: #ffffff;

    font-size: 21px;
}


.njoar-reviewers-statement p {

    margin: 0;

    color:
        rgba(255,255,255,0.92);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 850px) {

    .njoar-reviewers-grid {

        grid-template-columns: 1fr;

    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 600px) {

    .njoar-reviewers-page {

        padding:
            20px 12px 35px;

    }


    .njoar-reviewers-hero {

        padding:
            24px 20px;

        gap: 14px;

        border-radius: 12px;

    }


    .njoar-reviewers-hero-icon {

        width: 50px;

        height: 50px;

        font-size: 23px;

    }


    .njoar-reviewers-hero h1 {

        font-size: 22px;

    }


    .njoar-reviewers-hero p {

        font-size: 12px;

    }


    .njoar-reviewers-intro {

        padding:
            22px 20px;

    }


    .njoar-reviewers-intro p {

        font-size: 14px;

    }


    .njoar-reviewers-heading h2 {

        font-size: 20px;

    }


    .njoar-reviewer-card {

        padding:
            20px;

    }


    .njoar-reviewer-profile {

        gap: 13px;

    }


    .njoar-reviewer-avatar {

        width: 48px;

        height: 48px;

        font-size: 14px;

    }


    .njoar-reviewer-info h3 {

        font-size: 16px;

    }


    .njoar-reviewers-statement {

        align-items: flex-start;

        padding:
            23px 20px;

    }


    .njoar-reviewers-statement-icon {

        width: 45px;

        height: 45px;

    }


    .njoar-reviewers-statement h2 {

        font-size: 18px;

