/* ============================================================
   JECD HOMEPAGE v2 — scoped to .jecd-home. Add to your universal
   CSS file. Replaces the earlier homepage CSS wholesale.
   Palette: deep teal-green #06291f / #0c2e22, mid teal #0c7a5a,
   gold #e0a437, ivory #faf8f4
   ============================================================ */

.jecd-home,
.jecd-home *{
    box-sizing:border-box;
}

.jecd-home{
    font-family:Arial, Helvetica, sans-serif;
    color:#1c2b24;
    overflow-x:hidden;
}

.jecd-eyebrow{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:12px;
}

/* ---------- buttons ---------- */

.jecd-btn{
    display:inline-flex;
    align-items:center;
    gap:9px;
    padding:14px 28px;
    border-radius:28px;
    font-size:14.5px;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
    transition:.25s ease;
    border:2px solid transparent;
}

.jecd-btn-solid-gold{
    background:#e0a437;
    color:#06291f;
}

.jecd-btn-solid-gold:hover{
    background:#eeb753;
    transform:translateY(-2px);
}

.jecd-btn-solid-navy{
    background:#06291f;
    color:#ffffff;
}

.jecd-btn-solid-navy:hover{
    background:#0c3d2c;
    transform:translateY(-2px);
}

.jecd-btn-outline-dark{
    background:transparent;
    color:#06291f;
    border-color:#06291f;
}

.jecd-btn-outline-dark:hover{
    background:#06291f;
    color:#ffffff;
}

/* ============ WELCOME STRIP ============ */

.jecd-welcome{
    background:#06291f;
    background-image:radial-gradient(circle at 85% 20%, rgba(224,164,55,.12), transparent 45%);
    padding:70px 32px 0;
    position:relative;
}

.jecd-welcome-inner{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
    padding-bottom:44px;
}

.jecd-welcome-text{
    max-width:600px;
}

.jecd-welcome-text .jecd-eyebrow{
    color:#e0a437;
}

.jecd-welcome-text h2{
    font-family:Georgia,"Times New Roman",serif;
    font-size:32px;
    line-height:1.35;
    color:#ffffff;
    margin:0;
}

.jecd-welcome-badges{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.jecd-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.18);
    color:#e8ece9;
    font-size:13px;
    font-weight:600;
    padding:9px 16px;
    border-radius:20px;
    backdrop-filter:blur(6px);
}

.jecd-badge .fa{
    color:#e0a437;
}

/* stats — half in/half out of the dark band */

.jecd-stats-row{
    max-width:1100px;
    margin:0 auto;
    transform:translateY(38px);
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    padding:0 0 70px;
}

.jecd-stat-card{
    text-align:center;
    padding:26px 12px;
    background:#ffffff;
    border-radius:14px;
    box-shadow:0 16px 34px rgba(6,41,31,.14);
}

.jecd-stat-num{
    display:block;
    font-family:Georgia,"Times New Roman",serif;
    font-size:30px;
    font-weight:700;
    color:#0c7a5a;
}

.jecd-stat-label{
    display:block;
    font-size:12px;
    color:#6b7a72;
    margin-top:8px;
}

/* ============ THREE PILLARS ============ */

.jecd-pillars{
    max-width:1150px;
    margin:110px auto 100px;
    padding:0 32px;
}

.jecd-pillars-head{
    max-width:560px;
    margin:0 auto 56px;
    text-align:center;
}

.jecd-pillars-head h2{
    font-family:Georgia,"Times New Roman",serif;
    font-size:30px;
    color:#06291f;
    margin:0 0 14px;
}

.jecd-pillars-head p{
    font-size:15px;
    color:#5a685f;
    line-height:1.7;
    margin:0;
}

.jecd-pillars-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:28px;
}

.jecd-pillar-card{
    position:relative;
    background:#ffffff;
    border:1px solid #e6ece8;
    border-radius:16px;
    padding:38px 30px 32px;
    box-shadow:0 10px 26px rgba(6,41,31,.06);
    transition:transform .25s ease, box-shadow .25s ease;
}

.jecd-pillar-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(6,41,31,.14);
}

.jecd-pillar-card-featured{
    background:#06291f;
    border-color:#06291f;
    transform:translateY(-16px);
}

.jecd-pillar-card-featured:hover{
    transform:translateY(-22px);
}

.jecd-pillar-num{
    position:absolute;
    top:22px;
    right:26px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:34px;
    font-weight:700;
    color:#eef1ee;
    z-index:0;
}

.jecd-pillar-card-featured .jecd-pillar-num{
    color:rgba(255,255,255,.08);
}

.jecd-pillar-icon{
    position:relative;
    z-index:1;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#eaf5f0;
    color:#0c7a5a;
    font-size:23px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.jecd-pillar-card-featured .jecd-pillar-icon{
    background:rgba(224,164,55,.18);
    color:#e0a437;
}

.jecd-pillar-card h3{
    position:relative;
    z-index:1;
    font-family:Georgia,"Times New Roman",serif;
    font-size:21px;
    color:#06291f;
    margin:0 0 12px;
}

.jecd-pillar-card-featured h3{
    color:#ffffff;
}

.jecd-pillar-card p{
    position:relative;
    z-index:1;
    font-size:14px;
    line-height:1.75;
    color:#5a685f;
    margin:0 0 18px;
}

.jecd-pillar-card-featured p{
    color:#c9d8ce;
}

.jecd-link-arrow{
    position:relative;
    z-index:1;
    color:#0c7a5a;
    font-weight:700;
    font-size:13.5px;
    text-decoration:none;
}

.jecd-pillar-card-featured .jecd-link-arrow{
    color:#e0a437;
}

.jecd-link-arrow:hover{
    text-decoration:underline;
}

/* ============ ABOUT ============ */

/* ============================================================
   JECD ABOUT THE JOURNAL — scoped to .jecd-about-page. Add to
   your universal CSS file.
   Palette: deep teal-green #06291f, mid teal #0c7a5a, gold
   #e0a437 — matching your JECD header
   ============================================================ */

.jecd-about-page,
.jecd-about-page *{
    box-sizing:border-box;
}

.jecd-about-page{
    max-width:820px;
    margin:0 auto;
    padding:20px 0 40px;
    font-family:Arial, Helvetica, sans-serif;
    color:#1c2b24;
}

.jecd-about-eyebrow{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:18px;
}

/* ---------- lead / pull quote ---------- */

.jecd-about-lead{
    margin:0 0 28px;
    padding:6px 0 6px 24px;
    border-left:4px solid #e0a437;
    font-family:Georgia,"Times New Roman",serif;
    font-style:italic;
    font-size:21px;
    line-height:1.55;
    color:#06291f;
}

/* ---------- highlight chips ---------- */

.jecd-about-chips{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:36px;
}

.jecd-chip{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:#06291f;
    background:#eaf5f0;
    border:1px solid #cfe8dc;
    padding:8px 18px;
    border-radius:20px;
}

/* ---------- body copy ---------- */

.jecd-about-body p{
    font-size:15.5px;
    line-height:1.85;
    color:#3a4a41;
    margin:0 0 22px;
}

.jecd-about-body p:last-child{
    margin-bottom:0;
}

/* first paragraph gets a subtle drop-cap treatment for an editorial feel */
.jecd-about-body p:first-of-type::first-letter{
    font-family:Georgia,"Times New Roman",serif;
    font-size:52px;
    font-weight:700;
    color:#0c7a5a;
    float:left;
    line-height:1;
    padding-right:10px;
    padding-top:4px;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width:767px){
    .jecd-about-page{
        padding:16px 18px 32px;
    }

    .jecd-about-lead{
        font-size:18px;
        padding-left:18px;
    }

    .jecd-about-body p{
        font-size:14.5px;
        line-height:1.75;
    }

    .jecd-about-body p:first-of-type::first-letter{
        font-size:40px;
    }
}

/*============================================================
JECD SUBJECT AREAS
Matches About, Aim & Scope and Vision & Mission
============================================================*/

.jecd-sa-page,
.jecd-sa-page *{
    box-sizing:border-box;
}

.jecd-sa-page{
    max-width:820px;
    margin:0 auto;
    padding:20px 0 45px;
    font-family:Arial,Helvetica,sans-serif;
    color:#1c2b24;
}

/*============================================================*/

.jecd-sa-eyebrow{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:18px;
}

.jecd-sa-lead{
    margin:0 0 30px;
    padding:6px 0 6px 24px;
    border-left:4px solid #e0a437;
    font-family:Georgia,"Times New Roman",serif;
    font-style:italic;
    font-size:21px;
    line-height:1.6;
    color:#06291f;
}

/*============================================================*/

.jecd-sa-chips{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:40px;
}

.jecd-chip{
    display:inline-block;
    padding:8px 18px;
    border-radius:20px;
    background:#eaf5f0;
    border:1px solid #cfe8dc;
    color:#06291f;
    font-size:13px;
    font-weight:700;
    transition:.25s;
}

.jecd-chip:hover{
    background:#0c7a5a;
    border-color:#0c7a5a;
    color:#fff;
}

/*============================================================*/

.jecd-sa-section{
    margin-bottom:50px;
}

.jecd-sa-section:last-child{
    margin-bottom:0;
}

.jecd-sa-section h2{
    margin:0 0 22px;
    padding-left:18px;
    position:relative;
    font-family:Georgia,"Times New Roman",serif;
    font-size:30px;
    color:#06291f;
}

.jecd-sa-section h2:before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    bottom:5px;
    width:4px;
    border-radius:5px;
    background:#e0a437;
}

/*============================================================*/

.jecd-sa-topics{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.jecd-sa-body{
    font-size:15.5px;
    line-height:1.9;
    color:#3a4a41;
    margin:0;
}

.jecd-sa-body:first-letter{
    float:left;
    font-family:Georgia,"Times New Roman",serif;
    font-size:52px;
    line-height:1;
    padding-right:10px;
    padding-top:4px;
    color:#0c7a5a;
    font-weight:700;
}

/*============================================================*/

@media(max-width:767px){

.jecd-sa-page{
    padding:16px 18px 35px;
}

.jecd-sa-lead{
    font-size:18px;
    padding-left:18px;
}

.jecd-sa-section{
    margin-bottom:40px;
}

.jecd-sa-section h2{
    font-size:25px;
}

.jecd-sa-body{
    font-size:14.5px;
    line-height:1.8;
}

.jecd-sa-body:first-letter{
    font-size:42px;
}

.jecd-chip{
    font-size:12px;
    padding:7px 16px;
}

}

/* why publish with jecd */
/* ============================================================
   JECD BENEFITS SECTIONS — scoped to .jecd-benefits-page.
   Add to your universal CSS file. Bullets are pure CSS
   (::before), not icon tags — safe from WYSIWYG editors
   stripping "empty" icon elements on save.
   Palette: deep teal-green #06291f, mid teal #0c7a5a, gold
   #e0a437 — matching your JECD header/about page
   ============================================================ */

.jecd-benefits-page,
.jecd-benefits-page *{
    box-sizing:border-box;
}

.jecd-benefits-page{
    max-width:980px;
    margin:0 auto;
    font-family:Arial, Helvetica, sans-serif;
    color:#1c2b24;
}

.jecd-benefits-block{
    padding:40px 0;
}

.jecd-benefits-block + .jecd-benefits-block{
    border-top:1px solid #eef1ee;
}

.jecd-benefits-eyebrow{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:12px;
}

.jecd-benefits-block h2{
    font-family:Georgia,"Times New Roman",serif;
    font-size:27px;
    color:#06291f;
    margin:0 0 8px;
}

.jecd-benefits-intro{
    font-size:15px;
    color:#4b5a51;
    margin:0 0 26px;
}

.jecd-benefits-block > h2{
    margin-bottom:28px;
}

/* ---------- benefit grid ---------- */

.jecd-benefits-grid{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px 24px;
}

.jecd-benefits-grid li{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:12px;
    background:#ffffff;
    border:1px solid #ece6d8;
    border-radius:10px;
    padding:14px 18px 14px 16px;
    font-size:14.5px;
    line-height:1.5;
    color:#2b3a32;
    font-weight:600;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.jecd-benefits-grid li:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(6,41,31,.08);
    border-color:#cfe8dc;
}

.jecd-benefits-grid li::before{
    content:"\2713";
    flex-shrink:0;
    width:22px;
    height:22px;
    border-radius:50%;
    background:#eaf5f0;
    color:#0c7a5a;
    font-size:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:1px;
}

/* alternate block gets a gold-tinted checkmark instead of teal,
   so the two sections feel related but distinct */
.jecd-benefits-block-alt .jecd-benefits-grid li::before{
    background:#fbf1dd;
    color:#b9822a;
}

.jecd-benefits-block-alt .jecd-benefits-grid li:hover{
    border-color:#f0ddb0;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width:767px){
    .jecd-benefits-block{
        padding:30px 18px;
    }

    .jecd-benefits-block h2{
        font-size:22px;
    }

    .jecd-benefits-grid{
        grid-template-columns:1fr;
        gap:10px;
    }

    .jecd-benefits-grid li{
        font-size:14px;
        padding:13px 16px;
    }
}

/* ============ LATEST ISSUE ============ */

.jecd-issue{
    background:#f4f7f5;
    padding:90px 32px;
}

.jecd-issue-card{
    max-width:1020px;
    margin:0 auto;
    background:#ffffff;
    border-radius:20px;
    box-shadow:0 16px 40px rgba(6,41,31,.1);
    display:flex;
    overflow:hidden;
}

.jecd-issue-cover{
    flex:0 0 260px;
    background:linear-gradient(160deg, #06291f, #0c7a5a);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    padding:30px;
}

.jecd-issue-medallion{
    width:120px;
    height:120px;
    border-radius:50%;
    border:2px solid rgba(224,164,55,.7);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#ffffff;
    font-family:Georgia,"Times New Roman",serif;
}

.jecd-issue-vol{
    font-size:20px;
    font-weight:700;
}

.jecd-issue-no{
    font-size:12.5px;
    color:#cfe0d6;
    margin-top:4px;
}

.jecd-issue-season{
    font-size:12.5px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#e0a437;
}

.jecd-issue-body{
    padding:40px 44px;
    flex:1;
}

.jecd-issue-body h3{
    font-family:Georgia,"Times New Roman",serif;
    font-size:23px;
    color:#06291f;
    margin:0 0 22px;
}

.jecd-issue-articles{
    list-style:none;
    margin:0 0 28px;
    padding:0;
}

.jecd-issue-articles li{
    display:flex;
    align-items:baseline;
    gap:14px;
    font-size:14.5px;
    color:#374a3f;
    padding:12px 0;
    border-bottom:1px solid #eef1ee;
}

.jecd-issue-articles li:last-child{
    border-bottom:none;
}

.jecd-issue-tag{
    font-family:Georgia,"Times New Roman",serif;
    font-size:13px;
    font-weight:700;
    color:#e0a437;
    flex-shrink:0;
}

/* ============ CALL FOR PAPERS ============ */

.jecd-cfp{
    background:linear-gradient(100deg, #06291f 0%, #0c3d2c 60%, #0c7a5a 100%);
}

.jecd-cfp-inner{
    max-width:1100px;
    margin:0 auto;
    padding:50px 32px;
    display:flex;
    align-items:center;
    gap:26px;
    flex-wrap:wrap;
}

.jecd-cfp-icon{
    width:56px;
    height:56px;
    border-radius:50%;
    background:rgba(224,164,55,.18);
    color:#e0a437;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.jecd-cfp-text{
    flex:1;
    min-width:260px;
}

.jecd-cfp-text h3{
    font-family:Georgia,"Times New Roman",serif;
    font-size:24px;
    color:#ffffff;
    margin:0 0 6px;
}

.jecd-cfp-text p{
    font-size:14.5px;
    color:#cfe0d6;
    margin:0;
    max-width:480px;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width:991px){
    .jecd-welcome-inner{
        align-items:flex-start;
    }

    .jecd-stats-row{
        grid-template-columns:1fr 1fr;
        gap:14px;
        transform:translateY(30px);
    }

    .jecd-pillars{
        margin:90px auto 70px;
    }

    .jecd-pillars-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .jecd-pillar-card-featured{
        transform:none;
    }

    .jecd-pillar-card-featured:hover{
        transform:translateY(-6px);
    }

    .jecd-about{
        grid-template-columns:1fr;
        gap:40px;
        margin-bottom:80px;
    }

    .jecd-about-visual{
        height:240px;
    }

    .jecd-issue-card{
        flex-direction:column;
    }

    .jecd-issue-cover{
        padding:34px 0;
    }
}

@media (max-width:600px){
    .jecd-welcome{
        padding:50px 20px 0;
    }

    .jecd-welcome-text h2{
        font-size:24px;
    }

    .jecd-stats-row{
        grid-template-columns:1fr 1fr;
    }

    .jecd-pillar-card-featured{
        transform:none;
    }

    .jecd-issue-body{
        padding:30px 22px;
    }

    .jecd-cfp-inner{
        text-align:left;
    }
}

/* medallion icon — swapped from inline SVG (WYSIWYG-stripped) to a
   Font Awesome icon, since those survive the admin content editor */
.jecd-about-medallion{
    font-size:0; /* collapse the &nbsp; so it doesn't add stray width */
}

.jecd-about-medallion .fa{
    font-size:64px;
    color:#e0a437;
    line-height:1;
}


/* ============================================================
   JECD SIDEBAR — styles OJS's own sidebar blocks (web feed,
   information). Add to your universal CSS file.
   Palette: deep teal-green #06291f, mid teal #0c7a5a, gold #e0a437
   ============================================================ */

.pkp_structure_sidebar.left{
    padding:0 20px;
}

/* ---------- shared card shell ---------- */

.pkp_structure_sidebar .pkp_block{
    background:#ffffff;
    border:1px solid #e6ece8;
    border-left:4px solid #0c7a5a;
    border-radius:10px;
    padding:22px;
    margin-bottom:22px;
    box-shadow:0 4px 14px rgba(6,41,31,.06);
}

.pkp_structure_sidebar .pkp_block .title{
    font-family:Georgia,"Times New Roman",serif;
    font-size:16.5px;
    font-weight:700;
    color:#06291f;
    margin:0 0 16px;
    padding-bottom:12px;
    border-bottom:1px solid #eef1ee;
}

/* ---------- information block ---------- */

.pkp_structure_sidebar .block_information .content ul{
    list-style:none;
    margin:0;
    padding:0;
}

.pkp_structure_sidebar .block_information .content ul li + li{
    margin-top:2px;
}

.pkp_structure_sidebar .block_information .content ul li a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:9px 4px;
    font-size:14.5px;
    color:#0c3d2c;
    text-decoration:none;
    font-weight:600;
    transition:color .2s ease, padding-left .2s ease;
}

.pkp_structure_sidebar .block_information .content ul li a::before{
    content:"";
    width:6px;
    height:6px;
    border-radius:50%;
    background:#e0a437;
    flex-shrink:0;
}

.pkp_structure_sidebar .block_information .content ul li a:hover{
    color:#0c7a5a;
    padding-left:8px;
}

/* ---------- web feed block (ATOM / RSS) — one full-width row each ---------- */

.pkp_structure_sidebar .block_web_feed .content ul{
    display:flex;
    flex-direction:column;
    gap:12px;
    list-style:none;
    margin:0;
    padding:0;
}

.pkp_structure_sidebar .block_web_feed .content ul li{
    display:block;
    width:100%;
}

.pkp_structure_sidebar .block_web_feed .content ul li a{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    width:100%;
    padding:14px 16px;
    background:#f4f7f5;
    border:1px solid #e6ece8;
    border-radius:10px;
    transition:background .2s ease, border-color .2s ease, transform .15s ease;
}

.pkp_structure_sidebar .block_web_feed .content ul li a:hover{
    background:#eaf5f0;
    border-color:#0c7a5a;
    transform:translateX(3px);
}

.pkp_structure_sidebar .block_web_feed .content ul li img{
    max-width:80px;
    max-height:40px;
    width:auto;
    height:auto;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width:991px){
    .pkp_structure_sidebar.left{
        padding:0 20px;
        margin-top:10px;
    }

    .pkp_structure_sidebar .pkp_block{
        padding:18px;
        margin-bottom:16px;
    }
}


/* ==========================================================
   JEHD CONTACT PAGE
   ========================================================== */

.contact_section{
    max-width:1000px;
    margin:40px auto;
    padding:0 15px;
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    box-sizing:border-box;
}

.contact_section .contact{
    flex:1;
    min-width:320px;
    background:#fff;
    border-top:5px solid #0c7a5a;
    border-radius:10px;
    padding:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.contact_section .contact:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.contact_section .contact h2{
    margin:0 0 25px;
    color:#0c7a5a;
    font-size:28px;
    font-weight:700;
    position:relative;
    padding-bottom:12px;
}

.contact_section .contact h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:4px;
    background:#0c7a5a;
    border-radius:5px;
}

.contact_section .name{
    font-size:22px;
    font-weight:600;
    color:#333;
    margin-bottom:20px;
}

.contact_section .phone,
.contact_section .email{
    margin-bottom:18px;
    font-size:16px;
    color:#555;
    line-height:1.8;
}

.contact_section .label{
    font-weight:600;
    color:#0c7a5a;
    margin-right:6px;
}

.contact_section a{
    color:#0c7a5a;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
    word-break:break-word;
}

.contact_section a:hover{
    color:#0c7a5a;
}

/* ==========================
   Responsive
   ========================== */

@media(max-width:768px){

.contact_section{
    flex-direction:column;
    gap:20px;
}

.contact_section .contact{
    min-width:100%;
    padding:25px;
}

.contact_section .contact h2{
    font-size:24px;
}

.contact_section .name{
    font-size:20px;
}

}



/* ==========================================================
   JECD LOGIN PAGE
   ========================================================== */

.page_login{
    max-width:600px;
    margin:60px auto;
    padding:0 20px;
}

.page_login h1{
    text-align:center;
    font-size:38px;
    color:#0d6b5f;
    margin-bottom:12px;
    font-weight:700;
}

.page_login > p{
    text-align:center;
    color:#666;
    margin-bottom:30px;
    font-size:15px;
}

/*==========================================================
    LOGIN CARD
==========================================================*/

.page_login .cmp_form.login{

    background:#ffffff;

    border-radius:16px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border-top:5px solid #d4a84c;

    border-left:5px solid #0d6b5f;

}

/*==========================================================
    ERROR
==========================================================*/

.page_login .pkp_form_error{

    background:#fff3f3;

    color:#c0392b;

    border-left:4px solid #c0392b;

    padding:15px;

    margin-bottom:25px;

    border-radius:8px;

}

/*==========================================================
    LABELS
==========================================================*/

.page_login .label{

    display:block;

    font-size:15px;

    font-weight:600;

    color:#0d6b5f;

    margin-bottom:8px;

}

.page_login .required{

    color:#d9534f;

}

/*==========================================================
    FIELDS
==========================================================*/

.page_login .username,
.page_login .password,
.page_login .remember{

    margin-bottom:22px;

}

.page_login input[type=text],
.page_login input[type=password]{

    width:100%;

    height:50px;

    padding:0 16px;

    border:1px solid #d9d9d9;

    border-radius:10px;

    background:#fff;

    font-size:15px;

    transition:.3s;

    box-sizing:border-box;

}

.page_login input[type=text]:focus,
.page_login input[type=password]:focus{

    outline:none;

    border-color:#0d6b5f;

    box-shadow:0 0 0 3px rgba(13,107,95,.12);

}

/*==========================================================
    FORGOT PASSWORD
==========================================================*/

.page_login .password a{

    display:inline-block;

    margin-top:10px;

    font-size:14px;

    color:#0d6b5f;

    text-decoration:none;

    transition:.3s;

}

.page_login .password a:hover{

    color:#d4a84c;

}

/*==========================================================
    REMEMBER
==========================================================*/

.page_login .remember label{

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

}

.page_login input[type=checkbox]{

    width:18px;

    height:18px;

    accent-color:#0d6b5f;

}

/*==========================================================
    BUTTONS
==========================================================*/

.page_login .buttons{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-top:30px;

}

.page_login .submit{

    width:100%;

    height:50px;

    border:none;

    border-radius:10px;

    background:#0d6b5f;

    color:#fff;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;

}

.page_login .submit:hover{

    background:#09574d;

}

.page_login .register{

    display:block;

    text-align:center;

    color:#0d6b5f;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.page_login .register:hover{

    color:#d4a84c;

}

/*==========================================================
    RECAPTCHA
==========================================================*/

.page_login .recaptcha_wrapper,
.page_login .altcha_wrapper{

    margin:25px 0;

}

/*==========================================================
    TABLET
==========================================================*/

@media(max-width:768px){

.page_login{

margin:40px auto;

}

.page_login .cmp_form.login{

padding:30px;

}

.page_login h1{

font-size:32px;

}

}

/*==========================================================
    MOBILE
==========================================================*/

@media(max-width:480px){

.page_login{

padding:0 15px;

}

.page_login .cmp_form.login{

padding:22px;

border-radius:12px;

}

.page_login h1{

font-size:28px;

}

.page_login input[type=text],
.page_login input[type=password],
.page_login .submit{

height:46px;

}

}
.page_login .login {
    max-width: 40em!important;
}

/* ============================================================
   JECD AIMS & SCOPE — scoped to .jecd-scope-page. Add to your
   universal CSS file.
   Palette: deep teal-green #06291f, mid teal #0c7a5a, gold
   #e0a437 — matching your About page and benefits sections
   ============================================================ */

.jecd-scope-page,
.jecd-scope-page *{
    box-sizing:border-box;
}

.jecd-scope-page{
    max-width:820px;
    margin:0 auto;
    padding:20px 0 40px;
    font-family:Arial, Helvetica, sans-serif;
    color:#1c2b24;
}

.jecd-scope-eyebrow{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:14px;
}

.jecd-scope-title{
    font-family:Georgia,"Times New Roman",serif;
    font-size:32px;
    line-height:1.3;
    font-weight:700;
    color:#06291f;
    margin:0 0 30px;
}

/* ---------- topic chips ---------- */

.jecd-scope-topics{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:36px;
    padding-bottom:32px;
    border-bottom:1px solid #eef1ee;
}

.jecd-scope-topics .jecd-chip{
    display:inline-block;
    font-size:13px;
    font-weight:700;
    color:#06291f;
    background:#eaf5f0;
    border:1px solid #cfe8dc;
    padding:8px 18px;
    border-radius:20px;
}

/* ---------- body copy ---------- */

.jecd-scope-body p{
    font-size:15.5px;
    line-height:1.85;
    color:#3a4a41;
    margin:0 0 22px;
}

.jecd-scope-body p:last-child{
    margin-bottom:0;
}

.jecd-scope-body p:first-of-type::first-letter{
    font-family:Georgia,"Times New Roman",serif;
    font-size:52px;
    font-weight:700;
    color:#0c7a5a;
    float:left;
    line-height:1;
    padding-right:10px;
    padding-top:4px;
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */

@media (max-width:767px){
    .jecd-scope-page{
        padding:16px 18px 32px;
    }

    .jecd-scope-title{
        font-size:24px;
        margin-bottom:22px;
    }

    .jecd-scope-topics{
        margin-bottom:26px;
        padding-bottom:24px;
    }

    .jecd-scope-body p{
        font-size:14.5px;
        line-height:1.75;
    }

    .jecd-scope-body p:first-of-type::first-letter{
        font-size:40px;
    }
}

/*============================================================
 JECD AIM & SCOPE
 Matches About Page Design
============================================================*/

.jecd-as-page,
.jecd-as-page *{
    box-sizing:border-box;
}

.jecd-as-page{
    max-width:820px;
    margin:0 auto;
    padding:20px 0 45px;
    font-family:Arial,Helvetica,sans-serif;
    color:#1c2b24;
}

/*============================================================
 EYEBROW
============================================================*/

.jecd-as-eyebrow{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:18px;
}

/*============================================================
 PAGE TITLE
============================================================*/

.jecd-as-title{
    margin:0 0 30px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:42px;
    color:#06291f;
    font-weight:700;
    line-height:1.2;
}

/*============================================================
 SECTIONS
============================================================*/

.jecd-as-section{
    margin-bottom:50px;
}

.jecd-as-section:last-child{
    margin-bottom:0;
}

.jecd-as-section h2{
    margin:0 0 20px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:30px;
    color:#06291f;
    font-weight:700;
    position:relative;
    padding-left:18px;
}

.jecd-as-section h2:before{
    content:"";
    position:absolute;
    left:0;
    top:4px;
    bottom:4px;
    width:4px;
    background:#e0a437;
    border-radius:5px;
}

/*============================================================
 INTRO
============================================================*/

.jecd-as-intro{
    margin:0 0 22px;
    font-size:16px;
    font-weight:700;
    color:#0c7a5a;
}

/*============================================================
 BODY
============================================================*/

.jecd-as-body{
    font-size:15.5px;
    line-height:1.85;
    color:#3a4a41;
    margin:0 0 24px;
}

.jecd-as-body:first-letter{
    float:left;
    font-family:Georgia,"Times New Roman",serif;
    font-size:52px;
    line-height:1;
    padding-right:9px;
    padding-top:4px;
    color:#0c7a5a;
    font-weight:700;
}

/*============================================================
 AIM LIST
============================================================*/

.jecd-as-grid{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px 22px;
}

.jecd-as-grid li{
    position:relative;
    padding-left:24px;
    font-size:15.5px;
    line-height:1.7;
    color:#3a4a41;
}

.jecd-as-grid li:before{
    content:"";
    position:absolute;
    left:0;
    top:11px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#e0a437;
}

/*============================================================
 TOPIC CHIPS
============================================================*/

.jecd-as-topics{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:10px;
}

.jecd-chip{
    display:inline-block;
    padding:8px 18px;
    border-radius:20px;
    background:#eaf5f0;
    border:1px solid #cfe8dc;
    color:#06291f;
    font-size:13px;
    font-weight:700;
    transition:.25s;
}

.jecd-chip:hover{
    background:#0c7a5a;
    color:#fff;
    border-color:#0c7a5a;
}

/*============================================================
 SPECIAL GRID
============================================================*/

.jecd-as-grid-alt li{
    font-weight:500;
}

/*============================================================
 HOVER
============================================================*/

.jecd-as-grid li,
.jecd-chip{
    transition:.25s;
}

.jecd-as-grid li:hover{
    color:#0c7a5a;
    transform:translateX(4px);
}

/*============================================================
 RESPONSIVE
============================================================*/

@media(max-width:767px){

.jecd-as-page{
    padding:16px 18px 35px;
}

.jecd-as-title{
    font-size:34px;
}

.jecd-as-section h2{
    font-size:25px;
}

.jecd-as-grid{
    grid-template-columns:1fr;
    gap:10px;
}

.jecd-as-body{
    font-size:14.5px;
    line-height:1.8;
}

.jecd-as-body:first-letter{
    font-size:42px;
}

.jecd-chip{
    font-size:12px;
    padding:7px 16px;
}

}
/*============================================================
JECD VISION & MISSION
Matches About & Aim/Scope Design
============================================================*/

.jecd-vm-page,
.jecd-vm-page *{
    box-sizing:border-box;
}

.jecd-vm-page{
    max-width:820px;
    margin:0 auto;
    padding:20px 0 45px;
    font-family:Arial,Helvetica,sans-serif;
    color:#1c2b24;
}

/*============================================================
EYEBROW
============================================================*/

.jecd-vm-eyebrow{
    display:block;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:18px;
}

/*============================================================
LEAD QUOTE
============================================================*/

.jecd-vm-lead{
    margin:0 0 30px;
    padding:6px 0 6px 24px;
    border-left:4px solid #e0a437;
    font-family:Georgia,"Times New Roman",serif;
    font-style:italic;
    font-size:21px;
    line-height:1.6;
    color:#06291f;
}

/*============================================================
CHIPS
============================================================*/

.jecd-vm-chips{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:40px;
}

.jecd-chip{
    display:inline-block;
    padding:8px 18px;
    background:#eaf5f0;
    border:1px solid #cfe8dc;
    border-radius:22px;
    color:#06291f;
    font-size:13px;
    font-weight:700;
    transition:.25s;
}

.jecd-chip:hover{
    background:#0c7a5a;
    border-color:#0c7a5a;
    color:#fff;
}

/*============================================================
SECTIONS
============================================================*/

.jecd-vm-section{
    margin-bottom:50px;
}

.jecd-vm-section:last-child{
    margin-bottom:0;
}

.jecd-vm-section h2{
    margin:0 0 22px;
    padding-left:18px;
    position:relative;
    font-family:Georgia,"Times New Roman",serif;
    font-size:30px;
    color:#06291f;
}

.jecd-vm-section h2:before{
    content:"";
    position:absolute;
    left:0;
    top:5px;
    bottom:5px;
    width:4px;
    background:#e0a437;
    border-radius:5px;
}

/*============================================================
BODY
============================================================*/

.jecd-vm-body{
    margin:0 0 22px;
    font-size:15.5px;
    line-height:1.9;
    color:#3a4a41;
}

.jecd-vm-body:first-letter{
    float:left;
    font-family:Georgia,"Times New Roman",serif;
    font-size:52px;
    line-height:1;
    padding-right:10px;
    padding-top:4px;
    color:#0c7a5a;
    font-weight:700;
}

/*============================================================
INTRO
============================================================*/

.jecd-vm-intro{
    margin:0 0 18px;
    font-size:16px;
    font-weight:700;
    color:#0c7a5a;
}

/*============================================================
LIST
============================================================*/

.jecd-vm-grid{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px 26px;
}

.jecd-vm-grid li{
    position:relative;
    padding-left:24px;
    color:#3a4a41;
    font-size:15px;
    line-height:1.7;
    transition:.25s;
}

.jecd-vm-grid li:before{
    content:"";
    position:absolute;
    left:0;
    top:10px;
    width:8px;
    height:8px;
    border-radius:50%;
    background:#e0a437;
}

.jecd-vm-grid li:hover{
    color:#0c7a5a;
    transform:translateX(4px);
}

/*============================================================
RESPONSIVE
============================================================*/

@media(max-width:767px){

.jecd-vm-page{
    padding:16px 18px 35px;
}

.jecd-vm-lead{
    font-size:18px;
    padding-left:18px;
}

.jecd-vm-section h2{
    font-size:25px;
}

.jecd-vm-grid{
    grid-template-columns:1fr;
}

.jecd-vm-body{
    font-size:14.5px;
    line-height:1.8;
}

.jecd-vm-body:first-letter{
    font-size:42px;
}

.jecd-chip{
    font-size:12px;
    padding:7px 16px;
}

}

/*==================================================
JECD PEER REVIEW PROCESS
==================================================*/

.jecd-peer-page{
    max-width:900px;
    margin:0 auto;
    padding:20px 0 50px;
    font-family:Arial,Helvetica,sans-serif;
    color:#2c3d36;
}

.jecd-peer-eyebrow{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:18px;
}

.jecd-peer-title{
    font-family:Georgia,serif;
    font-size:40px;
    color:#06291f;
    margin:0 0 25px;
}

.jecd-peer-lead{
    margin:0 0 45px;
    padding-left:24px;
    border-left:4px solid #e0a437;
    font-family:Georgia,serif;
    font-style:italic;
    font-size:22px;
    line-height:1.7;
    color:#06291f;
}

.jecd-peer-section{
    margin-bottom:55px;
}

.jecd-peer-section h2{
    color:#06291f;
    font-size:28px;
    margin-bottom:20px;
    position:relative;
    padding-bottom:12px;
}

.jecd-peer-section h2:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:#e0a437;
}

.jecd-peer-body,
.jecd-peer-intro,
.jecd-peer-note{
    color:#4d5f57;
    line-height:1.9;
    font-size:15.5px;
}

.jecd-peer-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:25px;
}

.jecd-peer-card{
    background:#fff;
    border:1px solid #e5ece8;
    border-left:4px solid #0c7a5a;
    border-radius:12px;
    padding:18px;
    font-weight:600;
    transition:.3s;
}

.jecd-peer-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.jecd-peer-checklist{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.jecd-peer-chip{
    background:#f5f8f6;
    border:1px solid #dce8e2;
    border-radius:30px;
    padding:10px 18px;
    color:#06291f;
    font-weight:600;
    font-size:14px;
}

.jecd-peer-decisions{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.jecd-decision{
    background:#fff;
    border-radius:12px;
    padding:24px;
    border-top:5px solid #0c7a5a;
    border:1px solid #e5ece8;
    transition:.3s;
}

.jecd-decision:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.jecd-decision h3{
    margin:0 0 12px;
    color:#06291f;
    font-size:21px;
}

.jecd-decision p{
    margin:0;
    line-height:1.8;
    color:#596962;
}

.jecd-decision.accept{
    border-top-color:#0c7a5a;
}

.jecd-decision.minor{
    border-top-color:#d8a43a;
}

.jecd-decision.major{
    border-top-color:#d68628;
}

.jecd-decision.reject{
    border-top-color:#9d2f2f;
}

.jecd-peer-note{
    margin-top:30px;
    padding:18px 22px;
    background:#f8faf9;
    border-left:4px solid #e0a437;
    border-radius:8px;
}

@media(max-width:768px){

.jecd-peer-page{
    padding:20px 18px 40px;
}

.jecd-peer-title{
    font-size:32px;
}

.jecd-peer-lead{
    font-size:19px;
}

.jecd-peer-grid,
.jecd-peer-decisions{
    grid-template-columns:1fr;
}

}

/*==================================================
JECD OPEN ACCESS POLICY
==================================================*/

.jecd-open-page{
    max-width:900px;
    margin:0 auto;
    padding:20px 0 50px;
    font-family:Arial,Helvetica,sans-serif;
    color:#2c3d36;
}

.jecd-open-eyebrow{
    display:block;
    font-size:12px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#0c7a5a;
    margin-bottom:18px;
}

.jecd-open-title{
    font-family:Georgia,serif;
    font-size:40px;
    color:#06291f;
    margin:0 0 25px;
}

.jecd-open-lead{
    margin:0 0 45px;
    padding-left:24px;
    border-left:4px solid #e0a437;
    font-family:Georgia,serif;
    font-style:italic;
    font-size:22px;
    line-height:1.7;
    color:#06291f;
}

.jecd-open-section{
    margin-bottom:55px;
}

.jecd-open-section h2{
    color:#06291f;
    font-size:28px;
    margin-bottom:20px;
    position:relative;
    padding-bottom:12px;
}

.jecd-open-section h2:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:#e0a437;
}

.jecd-open-body,
.jecd-open-intro{
    color:#4d5f57;
    font-size:15.5px;
    line-height:1.9;
}

.jecd-open-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:28px;
}

.jecd-open-card{
    background:#fff;
    border:1px solid #e4ece7;
    border-left:4px solid #0c7a5a;
    border-radius:12px;
    padding:18px;
    font-weight:600;
    transition:.3s;
}

.jecd-open-card:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.jecd-open-benefits{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:25px;
}

.jecd-open-chip{
    background:#f5f8f6;
    border:1px solid #dce8e2;
    border-radius:30px;
    padding:10px 18px;
    color:#06291f;
    font-weight:600;
    font-size:14px;
    transition:.3s;
}

.jecd-open-chip:hover{
    background:#0c7a5a;
    color:#fff;
}

.jecd-open-note{
    margin-top:30px;
    background:#f8faf9;
    border-left:4px solid #e0a437;
    padding:20px 24px;
    border-radius:8px;
    color:#44544c;
    line-height:1.8;
}

@media(max-width:768px){

.jecd-open-page{
    padding:20px 18px 40px;
}

.jecd-open-title{
    font-size:32px;
}

.jecd-open-lead{
    font-size:19px;
}

.jecd-open-grid{
    grid-template-columns:1fr;
}

}

/*==================================================
JECD ARTICLE PROCESSING CHARGES
==================================================*/

.jecd-apc-page,
.jecd-apc-page *{
box-sizing:border-box;
}

.jecd-apc-page{
max-width:850px;
margin:0 auto;
padding:20px 0 45px;
font-family:Arial,Helvetica,sans-serif;
color:#35453d;
}

/*--------------------------------*/

.jecd-apc-eyebrow{
display:block;
margin-bottom:12px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
color:#0c7a5a;
}

.jecd-apc-title{
margin:0 0 20px;
font-family:Georgia,"Times New Roman",serif;
font-size:40px;
color:#06291f;
font-weight:700;
line-height:1.25;
}

/*--------------------------------*/

.jecd-apc-lead{
margin:0 0 35px;
padding-left:22px;
border-left:4px solid #e0a437;
font-family:Georgia,serif;
font-size:21px;
font-style:italic;
line-height:1.7;
color:#06291f;
}

/*--------------------------------*/

.jecd-apc-body p{
font-size:15.5px;
line-height:1.9;
margin:0 0 22px;
color:#44534b;
}

.jecd-apc-body p:first-child::first-letter{
float:left;
font-family:Georgia,serif;
font-size:54px;
font-weight:700;
line-height:1;
padding-right:10px;
padding-top:4px;
color:#0c7a5a;
}

/*--------------------------------*/

.jecd-apc-section{
margin-top:45px;
padding-top:28px;
border-top:1px solid #e6ece8;
}

.jecd-apc-section h2{
margin:0 0 22px;
font-family:Georgia,serif;
font-size:29px;
color:#06291f;
position:relative;
padding-bottom:12px;
}

.jecd-apc-section h2:after{
content:"";
position:absolute;
left:0;
bottom:0;
width:70px;
height:3px;
background:#e0a437;
}

/*--------------------------------*/

.jecd-apc-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:18px;
margin-top:28px;
}

.jecd-apc-card{
background:#ffffff;
border:1px solid #dde8e3;
border-left:4px solid #0c7a5a;
padding:18px 20px;
border-radius:10px;
font-size:15px;
font-weight:600;
color:#36453d;
transition:.25s;
box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.jecd-apc-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 24px rgba(0,0,0,.08);
border-left-color:#e0a437;
}

/*--------------------------------*/

.jecd-apc-note{
background:#f8fbfa;
border:1px solid #dfe9e3;
border-radius:10px;
padding:28px;
}

.jecd-apc-note p{
margin:0 0 18px;
font-size:15px;
line-height:1.85;
color:#46554c;
}

.jecd-apc-note p:last-child{
margin-bottom:0;
}

/*--------------------------------*/

.jecd-apc-quote{
margin:0;
padding:28px 30px;
background:#f8fbfa;
border-left:5px solid #e0a437;
border-radius:10px;
font-family:Georgia,serif;
font-size:20px;
font-style:italic;
line-height:1.8;
color:#06291f;
}

/*--------------------------------*/

@media(max-width:768px){

.jecd-apc-page{
padding:18px;
}

.jecd-apc-title{
font-size:32px;
}

.jecd-apc-lead{
font-size:18px;
}

.jecd-apc-section h2{
font-size:24px;
}

.jecd-apc-grid{
grid-template-columns:1fr;
}

.jecd-apc-quote{
font-size:18px;
padding:22px;
}

}

/*==================================================
JECD PRIVACY STATEMENT
==================================================*/

.jecd-privacy-page,
.jecd-privacy-page *{
box-sizing:border-box;
}

.jecd-privacy-page{
max-width:850px;
margin:0 auto;
padding:20px 0 45px;
font-family:Arial,Helvetica,sans-serif;
color:#35453d;
}

/*--------------------------------*/

.jecd-privacy-eyebrow{
display:block;
margin-bottom:12px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
color:#0c7a5a;
}

.jecd-privacy-title{
margin:0 0 20px;
font-family:Georgia,"Times New Roman",serif;
font-size:40px;
color:#06291f;
font-weight:700;
line-height:1.25;
}

/*--------------------------------*/

.jecd-privacy-lead{
margin:0 0 35px;
padding-left:22px;
border-left:4px solid #e0a437;
font-family:Georgia,serif;
font-size:21px;
font-style:italic;
line-height:1.7;
color:#06291f;
}

/*--------------------------------*/

.jecd-privacy-body p{
font-size:15.5px;
line-height:1.9;
margin:0 0 22px;
color:#44534b;
}

.jecd-privacy-body p:first-child::first-letter{
float:left;
font-family:Georgia,serif;
font-size:54px;
font-weight:700;
line-height:1;
padding-right:10px;
padding-top:4px;
color:#0c7a5a;
}

/*--------------------------------*/

.jecd-privacy-section{
margin-top:45px;
padding-top:28px;
border-top:1px solid #e6ece8;
}

.jecd-privacy-section h2{
margin:0 0 22px;
font-family:Georgia,serif;
font-size:29px;
color:#06291f;
position:relative;
padding-bottom:12px;
}

.jecd-privacy-section h2:after{
content:"";
position:absolute;
left:0;
bottom:0;
width:70px;
height:3px;
background:#e0a437;
}

/*--------------------------------*/

.jecd-privacy-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:18px;
margin-top:28px;
}

.jecd-privacy-card{
background:#ffffff;
border:1px solid #dde8e3;
border-left:4px solid #0c7a5a;
padding:18px 20px;
border-radius:10px;
font-size:15px;
font-weight:600;
color:#36453d;
transition:.25s;
box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.jecd-privacy-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 24px rgba(0,0,0,.08);
border-left-color:#e0a437;
}

/*--------------------------------*/

.jecd-privacy-note{
background:#f8fbfa;
border:1px solid #dfe9e3;
border-radius:10px;
padding:28px;
}

.jecd-privacy-note p{
margin:0 0 18px;
font-size:15px;
line-height:1.85;
color:#46554c;
}

.jecd-privacy-note p:last-child{
margin-bottom:0;
}

/*--------------------------------*/

.jecd-privacy-quote{
margin:0;
padding:28px 30px;
background:#f8fbfa;
border-left:5px solid #e0a437;
border-radius:10px;
font-family:Georgia,serif;
font-size:20px;
font-style:italic;
line-height:1.8;
color:#06291f;
}

/*--------------------------------*/

@media(max-width:768px){

.jecd-privacy-page{
padding:18px;
}

.jecd-privacy-title{
font-size:32px;
}

.jecd-privacy-lead{
font-size:18px;
}

.jecd-privacy-section h2{
font-size:24px;
}

.jecd-privacy-grid{
grid-template-columns:1fr;
}

.jecd-privacy-quote{
font-size:18px;
padding:22px;
}

}

/*==================================================
JECD ARCHIVING POLICY
==================================================*/

.jecd-archive-page,
.jecd-archive-page *{
box-sizing:border-box;
}

.jecd-archive-page{
max-width:850px;
margin:0 auto;
padding:20px 0 45px;
font-family:Arial,Helvetica,sans-serif;
color:#35453d;
}

/*--------------------------------*/

.jecd-archive-eyebrow{
display:block;
margin-bottom:12px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
color:#0c7a5a;
}

.jecd-archive-title{
margin:0 0 20px;
font-family:Georgia,"Times New Roman",serif;
font-size:40px;
font-weight:700;
line-height:1.25;
color:#06291f;
}

/*--------------------------------*/

.jecd-archive-lead{
margin:0 0 35px;
padding-left:22px;
border-left:4px solid #e0a437;
font-family:Georgia,serif;
font-size:21px;
font-style:italic;
line-height:1.7;
color:#06291f;
}

/*--------------------------------*/

.jecd-archive-body p{
font-size:15.5px;
line-height:1.9;
margin:0 0 22px;
color:#44534b;
}

.jecd-archive-body p:first-child::first-letter{
float:left;
font-family:Georgia,serif;
font-size:54px;
font-weight:700;
line-height:1;
padding-right:10px;
padding-top:4px;
color:#0c7a5a;
}

/*--------------------------------*/

.jecd-archive-section{
margin-top:45px;
padding-top:28px;
border-top:1px solid #e6ece8;
}

.jecd-archive-section h2{
margin:0 0 22px;
font-family:Georgia,serif;
font-size:29px;
color:#06291f;
position:relative;
padding-bottom:12px;
}

.jecd-archive-section h2:after{
content:"";
position:absolute;
left:0;
bottom:0;
width:70px;
height:3px;
background:#e0a437;
}

/*--------------------------------*/

.jecd-archive-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:18px;
margin-top:28px;
}

.jecd-archive-card{
background:#ffffff;
border:1px solid #dde8e3;
border-left:4px solid #0c7a5a;
padding:18px 20px;
border-radius:10px;
font-size:15px;
font-weight:600;
color:#36453d;
transition:.25s;
box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.jecd-archive-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 24px rgba(0,0,0,.08);
border-left-color:#e0a437;
}

/*--------------------------------*/

.jecd-archive-note{
background:#f8fbfa;
border:1px solid #dfe9e3;
border-radius:10px;
padding:28px;
}

.jecd-archive-note p{
margin:0 0 18px;
font-size:15px;
line-height:1.85;
color:#46554c;
}

.jecd-archive-note p:last-child{
margin-bottom:0;
}

/*--------------------------------*/

.jecd-archive-quote{
margin:0;
padding:28px 30px;
background:#f8fbfa;
border-left:5px solid #e0a437;
border-radius:10px;
font-family:Georgia,serif;
font-size:20px;
font-style:italic;
line-height:1.8;
color:#06291f;
}

/*--------------------------------*/

@media(max-width:768px){

.jecd-archive-page{
padding:18px;
}

.jecd-archive-title{
font-size:32px;
}

.jecd-archive-lead{
font-size:18px;
}

.jecd-archive-section h2{
font-size:24px;
}

.jecd-archive-grid{
grid-template-columns:1fr;
}

.jecd-archive-quote{
font-size:18px;
padding:22px;
}

}

/*==================================================
JECD COPYRIGHT & LICENSING
==================================================*/

.jecd-copyright-page,
.jecd-copyright-page *{
box-sizing:border-box;
}

.jecd-copyright-page{
max-width:850px;
margin:0 auto;
padding:20px 0 45px;
font-family:Arial,Helvetica,sans-serif;
color:#35453d;
}

/*--------------------------------*/

.jecd-copyright-eyebrow{
display:block;
margin-bottom:12px;
font-size:12px;
font-weight:700;
letter-spacing:2px;
text-transform:uppercase;
color:#0c7a5a;
}

.jecd-copyright-title{
margin:0 0 20px;
font-family:Georgia,"Times New Roman",serif;
font-size:40px;
font-weight:700;
line-height:1.25;
color:#06291f;
}

/*--------------------------------*/

.jecd-copyright-lead{
margin:0 0 35px;
padding-left:22px;
border-left:4px solid #e0a437;
font-family:Georgia,serif;
font-size:21px;
font-style:italic;
line-height:1.7;
color:#06291f;
}

/*--------------------------------*/

.jecd-copyright-body p{
font-size:15.5px;
line-height:1.9;
margin:0 0 22px;
color:#44534b;
}

.jecd-copyright-body p:first-child::first-letter{
float:left;
font-family:Georgia,serif;
font-size:54px;
font-weight:700;
line-height:1;
padding-right:10px;
padding-top:4px;
color:#0c7a5a;
}

/*--------------------------------*/

.jecd-copyright-section{
margin-top:45px;
padding-top:28px;
border-top:1px solid #e6ece8;
}

.jecd-copyright-section h2{
margin:0 0 22px;
font-family:Georgia,serif;
font-size:29px;
color:#06291f;
position:relative;
padding-bottom:12px;
}

.jecd-copyright-section h2:after{
content:"";
position:absolute;
left:0;
bottom:0;
width:70px;
height:3px;
background:#e0a437;
}

/*--------------------------------*/

.jecd-copyright-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:18px;
margin-top:28px;
}

.jecd-copyright-card{
background:#ffffff;
border:1px solid #dde8e3;
border-left:4px solid #0c7a5a;
padding:18px 20px;
border-radius:10px;
font-size:15px;
font-weight:600;
color:#36453d;
transition:.25s;
box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.jecd-copyright-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 24px rgba(0,0,0,.08);
border-left-color:#e0a437;
}

/*--------------------------------*/

.jecd-copyright-quote{
margin:0;
padding:28px 30px;
background:#f8fbfa;
border:1px solid #dfe9e3;
border-left:5px solid #e0a437;
border-radius:10px;
font-family:Georgia,serif;
font-size:20px;
font-style:italic;
line-height:1.8;
color:#06291f;
}

/*--------------------------------*/

@media(max-width:768px){

.jecd-copyright-page{
padding:18px;
}

.jecd-copyright-title{
font-size:32px;
}

.jecd-copyright-lead{
font-size:18px;
}

.jecd-copyright-section h2{
font-size:24px;
}

.jecd-copyright-grid{
grid-template-columns:1fr;
}

.jecd-copyright-quote{
font-size:18px;
padding:22px;
}

}

/*==================================================
JECD SUBMISSION GUIDELINES
==================================================*/

.jecd-submit-page{
    max-width:900px;
    margin:0 auto;
    padding:20px 0 50px;
    font-family:Arial,Helvetica,sans-serif;
    color:#2b3d36;
}

.jecd-submit-eyebrow{
    display:block;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#0c7a5a;
    font-weight:700;
    margin-bottom:18px;
}

.jecd-submit-title{
    font-family:Georgia,serif;
    font-size:40px;
    color:#06291f;
    margin:0 0 24px;
    font-weight:700;
}

.jecd-submit-lead{
    border-left:4px solid #e0a437;
    padding-left:22px;
    margin:0 0 45px;
    font-family:Georgia,serif;
    font-style:italic;
    font-size:22px;
    line-height:1.7;
    color:#06291f;
}

.jecd-submit-section{
    margin-bottom:55px;
}

.jecd-submit-section h2{
    color:#06291f;
    font-size:28px;
    margin-bottom:20px;
    position:relative;
    padding-bottom:12px;
}

.jecd-submit-section h2:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:70px;
    height:3px;
    background:#e0a437;
}

.jecd-submit-intro,
.jecd-submit-body{
    color:#4a5d54;
    line-height:1.9;
    margin-bottom:24px;
    font-size:15.5px;
}

.jecd-submit-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.jecd-submit-card{
    background:#fff;
    border:1px solid #e5ece9;
    border-left:4px solid #0c7a5a;
    border-radius:12px;
    padding:18px;
    font-weight:600;
    transition:.3s;
}

.jecd-submit-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.jecd-submit-checklist{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.jecd-check{
    background:#f5f8f6;
    border:1px solid #dce8e2;
    color:#06291f;
    border-radius:30px;
    padding:10px 18px;
    font-size:14px;
    font-weight:600;
}

.jecd-manuscript-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.jecd-manuscript-item{
    background:#ffffff;
    border:1px solid #e7ece9;
    border-radius:10px;
    padding:15px;
    font-weight:600;
    color:#0c7a5a;
}

.jecd-submit-note{
    margin-top:25px;
    color:#586962;
    line-height:1.8;
}

.jecd-process{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.jecd-step{
    background:#fff;
    border:1px solid #e6ece8;
    border-radius:14px;
    padding:26px;
    position:relative;
}

.jecd-step span{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0c7a5a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    margin-bottom:18px;
}

.jecd-step h3{
    color:#06291f;
    margin-bottom:12px;
    font-size:20px;
}

.jecd-step p{
    color:#56675f;
    line-height:1.8;
    font-size:15px;
}

.jecd-step:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

@media(max-width:768px){

.jecd-submit-title{
font-size:32px;
}

.jecd-submit-grid,
.jecd-manuscript-grid,
.jecd-process{
grid-template-columns:1fr;
}

.jecd-submit-page{
padding:20px 18px 40px;
}

.jecd-submit-lead{
font-size:19px;
}

}