/* ==========================================================
   UGEFIC 2026 — PURPLE & ORANGE MASTER PALETTE
   Existing UGEFIC stylesheet preserved; colors harmonized.
   ========================================================== */

.pkp_brand_footer {
    display: none !important;
}

/* ==========================================================
   UGEFIC 2026 — EDITORIAL BOARD
   Purple & Orange Theme
   ========================================================== */

.ugefic-editorial {

    --editorial-purple-dark: #32145F;
    --editorial-purple: #5B2A86;
    --editorial-purple-light: #8E5BB7;

    --editorial-orange: #F28C28;
    --editorial-orange-light: #FFB45B;

    --editorial-white: #FFFFFF;
    --editorial-bg: #FAF8FC;

    --editorial-text: #29242F;
    --editorial-muted: #6F6877;

    --editorial-border: #E7DFEE;
    --editorial-purple-soft: #F3ECF8;

    max-width: 1180px;
    margin: 0 auto;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--editorial-text);
    line-height: 1.7;
}


/* ==========================================================
   HERO
   ========================================================== */

.ugefic-editorial-hero {

    position: relative;

    min-height: 350px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 65px 70px;

    color: #fff;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(242,140,40,.20),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--editorial-purple-dark),
            var(--editorial-purple)
        );

    border-radius: 0 0 20px 20px;
}

.ugefic-editorial-hero-content {

    position: relative;
    z-index: 5;

    max-width: 780px;
}

.ugefic-editorial-kicker {

    color: var(--editorial-orange-light);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.ugefic-editorial-hero h1 {

    color: #fff;

    font-size: clamp(44px, 6vw, 65px);

    line-height: 1;

    letter-spacing: -1.5px;

    margin: 0 0 20px;
}

.ugefic-editorial-hero h1 span {

    color: var(--editorial-orange);
}

.ugefic-editorial-line {

    width: 65px;
    height: 3px;

    background: var(--editorial-orange);

    margin-bottom: 18px;
}

.ugefic-editorial-hero p {

    max-width: 720px;

    color: rgba(255,255,255,.80);

    font-size: 15px;

    margin: 0;
}


/* ==========================================================
   HERO DECORATION
   ========================================================== */

.ugefic-editorial-circle {

    position: absolute;

    border: 1px solid rgba(242,140,40,.25);

    border-radius: 50%;

    pointer-events: none;
}

.ugefic-editorial-circle.circle-one {

    width: 450px;
    height: 450px;

    right: -190px;
    top: -200px;
}

.ugefic-editorial-circle.circle-two {

    width: 260px;
    height: 260px;

    right: 100px;
    bottom: -190px;
}


/* ==========================================================
   INTRODUCTION
   ========================================================== */

.ugefic-editorial-intro {

    max-width: 760px;

    text-align: center;

    margin: 70px auto 45px;

    padding: 0 25px;
}

.ugefic-editorial-label {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 9px;

    color: var(--editorial-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.ugefic-editorial-label span {

    width: 25px;
    height: 2px;

    background: var(--editorial-orange);
}

.ugefic-editorial-intro h2 {

    color: var(--editorial-purple-dark);

    font-size: 34px;

    line-height: 1.25;

    margin: 0 0 12px;
}

.ugefic-editorial-intro h2 strong {

    color: var(--editorial-orange);
}

.ugefic-editorial-intro p {

    color: var(--editorial-muted);

    font-size: 14px;

    margin: 0;
}


/* ==========================================================
   BOARD GRID
   ========================================================== */

.ugefic-editorial-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    padding: 0 35px 70px;
}


/* ==========================================================
   MEMBER CARD
   ========================================================== */

.ugefic-editorial-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 22px;

    min-height: 155px;

    padding: 28px 30px;

    background: var(--editorial-white);

    border: 1px solid var(--editorial-border);

    border-radius: 10px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.ugefic-editorial-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(242,140,40,.55);

    box-shadow:
        0 15px 35px rgba(50,20,95,.09);
}


/* ==========================================================
   NUMBER
   ========================================================== */

.ugefic-editorial-number {

    position: absolute;

    top: 15px;
    right: 18px;

    color:
        rgba(91,42,134,.10);

    font-size: 30px;

    line-height: 1;

    font-weight: 900;
}


/* ==========================================================
   AVATAR
   ========================================================== */

.ugefic-editorial-avatar {

    position: relative;
    z-index: 2;

    width: 72px;
    height: 72px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--editorial-purple),
            var(--editorial-purple-light)
        );

    color: #fff;

    font-size: 19px;

    font-weight: 800;

    border:
        4px solid var(--editorial-purple-soft);

    box-shadow:
        0 5px 15px rgba(50,20,95,.12);
}

.ugefic-editorial-card:nth-child(3n) .ugefic-editorial-avatar {

    background:
        linear-gradient(
            135deg,
            var(--editorial-orange),
            var(--editorial-orange-light)
        );

    color: var(--editorial-purple-dark);

    border-color: #FFF1DF;
}


/* ==========================================================
   MEMBER INFORMATION
   ========================================================== */

.ugefic-editorial-info {

    position: relative;
    z-index: 2;

    padding-right: 20px;
}

.ugefic-editorial-role {

    color: var(--editorial-orange);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 6px;
}

.ugefic-editorial-info h3 {

    color: var(--editorial-purple-dark);

    font-size: 17px;

    line-height: 1.35;

    margin: 0 0 5px;
}

.ugefic-editorial-info p {

    color: var(--editorial-muted);

    font-size: 12px;

    margin: 0;
}


/* ==========================================================
   FEATURED MEMBER
   ========================================================== */

.ugefic-editorial-card.featured {

    border-top: 3px solid var(--editorial-orange);

    background:
        linear-gradient(
            135deg,
            #FFFFFF,
            #FCF9FE
        );
}


/* ==========================================================
   CLOSING
   ========================================================== */

.ugefic-editorial-closing {

    padding: 0 35px 70px;
}

.ugefic-editorial-closing-inner {

    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 50px 30px;

    border-radius: 10px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(242,140,40,.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--editorial-purple-dark),
            var(--editorial-purple)
        );
}

.ugefic-editorial-closing-label {

    color: var(--editorial-orange-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.ugefic-editorial-closing-inner h2 {

    color: #fff;

    font-size: 30px;

    line-height: 1.3;

    margin: 0 0 10px;
}

.ugefic-editorial-closing-inner p {

    max-width: 700px;

    margin: 0 auto;

    color: rgba(255,255,255,.72);

    font-size: 13px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 800px) {

    .ugefic-editorial-grid {

        grid-template-columns: 1fr;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .ugefic-editorial-hero {

        min-height: 310px;

        padding: 50px 25px;

        border-radius: 0;
    }

    .ugefic-editorial-hero h1 {

        font-size: 45px;
    }

    .ugefic-editorial-grid {

        padding-left: 20px;
        padding-right: 20px;
    }

    .ugefic-editorial-card {

        align-items: flex-start;

        padding: 25px 22px;

        gap: 17px;
    }

    .ugefic-editorial-avatar {

        width: 60px;
        height: 60px;

        font-size: 16px;
    }

    .ugefic-editorial-info h3 {

        font-size: 15px;
    }

    .ugefic-editorial-intro {

        margin-top: 55px;
    }

    .ugefic-editorial-intro h2 {

        font-size: 28px;
    }

    .ugefic-editorial-closing {

        padding-left: 20px;
        padding-right: 20px;
    }

    .ugefic-editorial-closing-inner {

        padding: 40px 22px;
    }

    .ugefic-editorial-closing-inner h2 {

        font-size: 25px;
    }

}

/* ==========================================================
   UGEFIC 2026 — REVIEWERS
   Purple & Orange Theme
   ========================================================== */

.ugefic-reviewers {

    --reviewer-purple-dark: #32145F;
    --reviewer-purple: #5B2A86;
    --reviewer-purple-light: #8E5BB7;

    --reviewer-orange: #F28C28;
    --reviewer-orange-light: #FFB45B;

    --reviewer-white: #FFFFFF;
    --reviewer-bg: #FAF8FC;

    --reviewer-text: #29242F;
    --reviewer-muted: #6F6877;

    --reviewer-border: #E7DFEE;
    --reviewer-purple-soft: #F3ECF8;

    max-width: 1180px;
    margin: 0 auto;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--reviewer-text);
    line-height: 1.7;
}


/* ==========================================================
   HERO
   ========================================================== */

.ugefic-reviewers-hero {

    position: relative;

    min-height: 350px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 65px 70px;

    color: #fff;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(242,140,40,.20),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--reviewer-purple-dark),
            var(--reviewer-purple)
        );

    border-radius: 0 0 20px 20px;
}

.ugefic-reviewers-hero-content {

    position: relative;
    z-index: 5;

    max-width: 780px;
}

.ugefic-reviewers-kicker {

    color: var(--reviewer-orange-light);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.ugefic-reviewers-hero h1 {

    color: #fff;

    font-size: clamp(44px, 6vw, 65px);

    line-height: 1;

    letter-spacing: -1.5px;

    margin: 0 0 20px;
}

.ugefic-reviewers-hero h1 span {
    color: var(--reviewer-orange);
}

.ugefic-reviewers-line {

    width: 65px;
    height: 3px;

    background: var(--reviewer-orange);

    margin-bottom: 18px;
}

.ugefic-reviewers-hero p {

    max-width: 720px;

    color: rgba(255,255,255,.80);

    font-size: 15px;

    margin: 0;
}


/* ==========================================================
   HERO DECORATION
   ========================================================== */

.ugefic-reviewers-circle {

    position: absolute;

    border: 1px solid rgba(242,140,40,.25);

    border-radius: 50%;

    pointer-events: none;
}

.ugefic-reviewers-circle.circle-one {

    width: 450px;
    height: 450px;

    right: -190px;
    top: -200px;
}

.ugefic-reviewers-circle.circle-two {

    width: 260px;
    height: 260px;

    right: 100px;
    bottom: -190px;
}


/* ==========================================================
   INTRO
   ========================================================== */

.ugefic-reviewers-intro {

    max-width: 760px;

    text-align: center;

    margin: 70px auto 45px;

    padding: 0 25px;
}

.ugefic-reviewers-label {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 9px;

    color: var(--reviewer-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.ugefic-reviewers-label span {

    width: 25px;
    height: 2px;

    background: var(--reviewer-orange);
}

.ugefic-reviewers-intro h2 {

    color: var(--reviewer-purple-dark);

    font-size: 34px;

    line-height: 1.25;

    margin: 0 0 12px;
}

.ugefic-reviewers-intro h2 strong {

    color: var(--reviewer-orange);
}

.ugefic-reviewers-intro p {

    color: var(--reviewer-muted);

    font-size: 14px;

    margin: 0;
}


/* ==========================================================
   REVIEWER GRID
   ========================================================== */

.ugefic-reviewers-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    padding: 0 35px 70px;
}


/* ==========================================================
   REVIEWER CARD
   ========================================================== */

.ugefic-reviewer-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 22px;

    min-height: 145px;

    padding: 28px 30px;

    background: var(--reviewer-white);

    border: 1px solid var(--reviewer-border);

    border-radius: 10px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.ugefic-reviewer-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(242,140,40,.55);

    box-shadow:
        0 15px 35px rgba(50,20,95,.09);
}


/* ==========================================================
   NUMBER
   ========================================================== */

.ugefic-reviewer-number {

    position: absolute;

    top: 15px;
    right: 18px;

    color:
        rgba(91,42,134,.10);

    font-size: 30px;

    line-height: 1;

    font-weight: 900;
}


/* ==========================================================
   AVATAR
   ========================================================== */

.ugefic-reviewer-avatar {

    position: relative;
    z-index: 2;

    width: 72px;
    height: 72px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--reviewer-purple),
            var(--reviewer-purple-light)
        );

    color: #fff;

    font-size: 18px;

    font-weight: 800;

    border:
        4px solid var(--reviewer-purple-soft);

    box-shadow:
        0 5px 15px rgba(50,20,95,.12);
}


/* Orange accent pada beberapa reviewer */

.ugefic-reviewer-card:nth-child(3n) .ugefic-reviewer-avatar {

    background:
        linear-gradient(
            135deg,
            var(--reviewer-orange),
            var(--reviewer-orange-light)
        );

    color: var(--reviewer-purple-dark);

    border-color: #FFF1DF;
}


/* ==========================================================
   REVIEWER INFORMATION
   ========================================================== */

.ugefic-reviewer-info {

    position: relative;
    z-index: 2;

    padding-right: 20px;
}

.ugefic-reviewer-role {

    color: var(--reviewer-orange);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 6px;
}

.ugefic-reviewer-info h3 {

    color: var(--reviewer-purple-dark);

    font-size: 17px;

    line-height: 1.35;

    margin: 0 0 5px;
}

.ugefic-reviewer-info p {

    color: var(--reviewer-muted);

    font-size: 12px;

    margin: 0;
}


/* ==========================================================
   FEATURED
   ========================================================== */

.ugefic-reviewer-card.featured {

    border-top: 3px solid var(--reviewer-orange);

    background:
        linear-gradient(
            135deg,
            #FFFFFF,
            #FCF9FE
        );
}


/* ==========================================================
   CLOSING
   ========================================================== */

.ugefic-reviewers-closing {

    padding: 0 35px 70px;
}

.ugefic-reviewers-closing-inner {

    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 50px 30px;

    border-radius: 10px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(242,140,40,.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--reviewer-purple-dark),
            var(--reviewer-purple)
        );
}

.ugefic-reviewers-closing-label {

    color: var(--reviewer-orange-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.ugefic-reviewers-closing-inner h2 {

    color: #fff;

    font-size: 30px;

    line-height: 1.3;

    margin: 0 0 10px;
}

.ugefic-reviewers-closing-inner p {

    max-width: 700px;

    margin: 0 auto;

    color: rgba(255,255,255,.72);

    font-size: 13px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 800px) {

    .ugefic-reviewers-grid {

        grid-template-columns: 1fr;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .ugefic-reviewers-hero {

        min-height: 310px;

        padding: 50px 25px;

        border-radius: 0;
    }

    .ugefic-reviewers-hero h1 {

        font-size: 45px;
    }

    .ugefic-reviewers-grid {

        padding-left: 20px;
        padding-right: 20px;
    }

    .ugefic-reviewer-card {

        align-items: flex-start;

        padding: 25px 22px;

        gap: 17px;
    }

    .ugefic-reviewer-avatar {

        width: 60px;
        height: 60px;

        font-size: 15px;
    }

    .ugefic-reviewer-info h3 {

        font-size: 15px;
    }

    .ugefic-reviewers-intro {

        margin-top: 55px;
    }

    .ugefic-reviewers-intro h2 {

        font-size: 28px;
    }

    .ugefic-reviewers-closing {

        padding-left: 20px;
        padding-right: 20px;
    }

    .ugefic-reviewers-closing-inner {

        padding: 40px 22px;
    }

    .ugefic-reviewers-closing-inner h2 {

        font-size: 25px;
    }

}

/* ==========================================================
   UGEFIC 2026 — CONFERENCE COMMITTEE
   Purple & Orange Theme
   ========================================================== */

.ugefic-committee {

    --committee-purple-dark: #32145F;
    --committee-purple: #5B2A86;
    --committee-purple-light: #8E5BB7;

    --committee-orange: #F28C28;
    --committee-orange-light: #FFB45B;

    --committee-white: #FFFFFF;
    --committee-text: #29242F;
    --committee-muted: #6F6877;

    --committee-border: #E7DFEE;
    --committee-purple-soft: #F3ECF8;

    max-width: 1180px;
    margin: 0 auto;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--committee-text);
    line-height: 1.7;
}


/* ==========================================================
   HERO
   ========================================================== */

.ugefic-committee-hero {

    position: relative;

    min-height: 350px;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding: 65px 70px;

    color: #fff;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(242,140,40,.20),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--committee-purple-dark),
            var(--committee-purple)
        );

    border-radius: 0 0 20px 20px;
}

.ugefic-committee-hero-content {

    position: relative;
    z-index: 5;

    max-width: 800px;
}

.ugefic-committee-kicker {

    color: var(--committee-orange-light);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.ugefic-committee-hero h1 {

    color: #fff;

    font-size: clamp(42px, 6vw, 65px);

    line-height: 1;

    letter-spacing: -1.5px;

    margin: 0 0 20px;
}

.ugefic-committee-hero h1 span {

    color: var(--committee-orange);
}

.ugefic-committee-line {

    width: 65px;
    height: 3px;

    background: var(--committee-orange);

    margin-bottom: 18px;
}

.ugefic-committee-hero p {

    max-width: 730px;

    color: rgba(255,255,255,.80);

    font-size: 15px;

    margin: 0;
}


/* ==========================================================
   HERO DECORATION
   ========================================================== */

.ugefic-committee-circle {

    position: absolute;

    border: 1px solid rgba(242,140,40,.25);

    border-radius: 50%;

    pointer-events: none;
}

.ugefic-committee-circle.circle-one {

    width: 450px;
    height: 450px;

    right: -190px;
    top: -200px;
}

.ugefic-committee-circle.circle-two {

    width: 260px;
    height: 260px;

    right: 100px;
    bottom: -190px;
}


/* ==========================================================
   INTRO
   ========================================================== */

.ugefic-committee-intro {

    max-width: 760px;

    text-align: center;

    margin: 70px auto 45px;

    padding: 0 25px;
}

.ugefic-committee-label {

    display: flex;

    justify-content: center;
    align-items: center;

    gap: 9px;

    color: var(--committee-orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.ugefic-committee-label span {

    width: 25px;
    height: 2px;

    background: var(--committee-orange);
}

.ugefic-committee-intro h2 {

    color: var(--committee-purple-dark);

    font-size: 34px;

    line-height: 1.25;

    margin: 0 0 12px;
}

.ugefic-committee-intro h2 strong {

    color: var(--committee-orange);
}

.ugefic-committee-intro p {

    color: var(--committee-muted);

    font-size: 14px;

    margin: 0;
}


/* ==========================================================
   GRID
   ========================================================== */

.ugefic-committee-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    padding: 0 35px 70px;
}


/* ==========================================================
   CARD
   ========================================================== */

.ugefic-committee-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 22px;

    min-height: 150px;

    padding: 28px 30px;

    background: var(--committee-white);

    border: 1px solid var(--committee-border);

    border-radius: 10px;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.ugefic-committee-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(242,140,40,.55);

    box-shadow:
        0 15px 35px rgba(50,20,95,.09);
}


/* ==========================================================
   NUMBER
   ========================================================== */

.ugefic-committee-number {

    position: absolute;

    top: 15px;
    right: 18px;

    color:
        rgba(91,42,134,.10);

    font-size: 30px;

    line-height: 1;

    font-weight: 900;
}


/* ==========================================================
   AVATAR
   ========================================================== */

.ugefic-committee-avatar {

    position: relative;
    z-index: 2;

    width: 72px;
    height: 72px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--committee-purple),
            var(--committee-purple-light)
        );

    color: #fff;

    font-size: 18px;

    font-weight: 800;

    border:
        4px solid var(--committee-purple-soft);

    box-shadow:
        0 5px 15px rgba(50,20,95,.12);
}


/* Orange accent */

.ugefic-committee-card:nth-child(3n) .ugefic-committee-avatar {

    background:
        linear-gradient(
            135deg,
            var(--committee-orange),
            var(--committee-orange-light)
        );

    color: var(--committee-purple-dark);

    border-color: #FFF1DF;
}


/* ==========================================================
   INFORMATION
   ========================================================== */

.ugefic-committee-info {

    position: relative;
    z-index: 2;

    padding-right: 20px;
}

.ugefic-committee-role {

    color: var(--committee-orange);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 6px;
}

.ugefic-committee-info h3 {

    color: var(--committee-purple-dark);

    font-size: 17px;

    line-height: 1.35;

    margin: 0 0 5px;
}

.ugefic-committee-info p {

    color: var(--committee-muted);

    font-size: 12px;

    margin: 0;
}


/* ==========================================================
   FEATURED
   ========================================================== */

.ugefic-committee-card.featured {

    border-top: 3px solid var(--committee-orange);

    background:
        linear-gradient(
            135deg,
            #FFFFFF,
            #FCF9FE
        );
}


/* ==========================================================
   CLOSING
   ========================================================== */

.ugefic-committee-closing {

    padding: 0 35px 70px;
}

.ugefic-committee-closing-inner {

    text-align: center;

    padding: 50px 30px;

    border-radius: 10px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(242,140,40,.15),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--committee-purple-dark),
            var(--committee-purple)
        );
}

.ugefic-committee-closing-label {

    color: var(--committee-orange-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}

.ugefic-committee-closing-inner h2 {

    color: #fff;

    font-size: 30px;

    line-height: 1.3;

    margin: 0 0 10px;
}

.ugefic-committee-closing-inner p {

    max-width: 700px;

    margin: 0 auto;

    color: rgba(255,255,255,.72);

    font-size: 13px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 800px) {

    .ugefic-committee-grid {

        grid-template-columns: 1fr;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .ugefic-committee-hero {

        min-height: 310px;

        padding: 50px 25px;

        border-radius: 0;
    }

    .ugefic-committee-hero h1 {

        font-size: 43px;
    }

    .ugefic-committee-grid {

        padding-left: 20px;
        padding-right: 20px;
    }

    .ugefic-committee-card {

        align-items: flex-start;

        padding: 25px 22px;

        gap: 17px;
    }

    .ugefic-committee-avatar {

        width: 60px;
        height: 60px;

        font-size: 15px;
    }

    .ugefic-committee-info h3 {

        font-size: 15px;
    }

    .ugefic-committee-intro {

        margin-top: 55px;
    }

    .ugefic-committee-intro h2 {

        font-size: 28px;
    }

    .ugefic-committee-closing {

        padding-left: 20px;
        padding-right: 20px;
    }

    .ugefic-committee-closing-inner {

        padding: 40px 22px;
    }

    .ugefic-committee-closing-inner h2 {

        font-size: 25px;
    }

}

/* ==========================================================
   UGEFIC 2026
   HOMEPAGE ABOUT / JOURNAL SUMMARY
   CLEAN TYPOGRAPHY VERSION
   ========================================================== */


/* ----------------------------------------------------------
   MAIN CONTAINER
   ---------------------------------------------------------- */

.homepage_about {

    position: relative;

    max-width: 1100px;

    margin: 40px auto;

    padding: 0 0 45px;

    background: #ffffff;

    border: 1px solid #e7dfef;

    border-radius: 14px;

    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(50, 20, 95, 0.06);

    color: #40394a;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    line-height: 1.75;

}


/* ----------------------------------------------------------
   RESET WORD / MICROSOFT OFFICE FORMATTING
   ---------------------------------------------------------- */

.homepage_about p,
.homepage_about span {

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: inherit !important;

    line-height: inherit !important;

    letter-spacing: normal !important;

    word-spacing: normal !important;

    color: inherit;

}


/* Hilangkan formatting bawaan Word */

.homepage_about p {

    text-indent: 0 !important;

    word-break: normal;

    overflow-wrap: normal;

}


/* ----------------------------------------------------------
   TOP COLOR ACCENT
   ---------------------------------------------------------- */

.homepage_about::before {

    content: "";

    display: block;

    width: 100%;

    height: 5px;

    background:
        linear-gradient(
            90deg,
            #32145f 0%,
            #5b2a86 65%,
            #f28c28 100%
        );

}


/* ----------------------------------------------------------
   ABOUT THE CONFERENCE
   ---------------------------------------------------------- */

.homepage_about > h2 {

    margin: 0;

    padding:
        40px
        55px
        10px;

    color: #32145f;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 30px !important;

    font-weight: 800;

    line-height: 1.25 !important;

}


/* Orange underline */

.homepage_about > h2::after {

    content: "";

    display: block;

    width: 55px;

    height: 4px;

    margin-top: 12px;

    background: #f28c28;

    border-radius: 4px;

}


/* ----------------------------------------------------------
   UGEFIC 2026
   ---------------------------------------------------------- */

.homepage_about > h2 + p {

    margin:
        15px
        55px
        5px;

    padding: 0;

    text-align: center !important;

    color: #5b2a86;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 27px !important;

    font-weight: 800;

    line-height: 1.3 !important;

}


/* ----------------------------------------------------------
   CONFERENCE THEME
   ---------------------------------------------------------- */

.homepage_about > h2 + p + p {

    margin:
        8px
        55px
        40px;

    padding:
        20px
        28px;

    color: #5b2a86;

    background:
        linear-gradient(
            135deg,
            #f7f1fb,
            #fff8ef
        );

    border-left:
        4px solid #f28c28;

    border-radius:
        0 10px 10px 0;

    text-align: center !important;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 18px !important;

    font-weight: 700;

    line-height: 1.55 !important;

}


/* ----------------------------------------------------------
   MAIN BODY TEXT
   ---------------------------------------------------------- */

.homepage_about > h2 + p + p ~ p {

    
    margin:
        0
        55px
        24px;

    padding: 0;

    max-width: none;

    color: #4b4552;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif !important;

    font-size: 15px !important;

    font-weight: 400;

    line-height: 1.8 !important;

    text-align: justify !important;

    letter-spacing: normal !important;

    word-spacing: normal !important;

}


/* ----------------------------------------------------------
   PARAGRAPH SPACING
   ---------------------------------------------------------- */

.homepage_about > h2 + p + p ~ p + p {

    margin-top: 22px;

}


/* ----------------------------------------------------------
   LAST PARAGRAPH
   ---------------------------------------------------------- */

.homepage_about > h2 + p + p ~ p:last-child {

    margin-bottom: 0;

}


/* ----------------------------------------------------------
   STRONG
   ---------------------------------------------------------- */

.homepage_about strong {

    color: #5b2a86;

    font-weight: 700;

}


/* ----------------------------------------------------------
   LINKS
   ---------------------------------------------------------- */

.homepage_about a {

    color: #5b2a86;

    text-decoration: none;

}

.homepage_about a:hover {

    color: #f28c28;

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 768px) {

    .homepage_about {

        margin:
            30px
            20px;

        font-size: 15px;

    }


    .homepage_about > h2 {

        padding:
            35px
            35px
            10px;

        font-size: 27px !important;

    }


    .homepage_about > h2 + p {

        margin-left: 35px;

        margin-right: 35px;

        font-size: 23px !important;

    }


    .homepage_about > h2 + p + p {

        margin-left: 35px;

        margin-right: 35px;

        font-size: 16px !important;

    }


    .homepage_about > h2 + p + p ~ p {

        margin-left: 35px;

        margin-right: 35px;

        font-size: 15px !important;

        line-height: 1.8 !important;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 480px) {

    .homepage_about {

        margin:
            20px
            10px;

        border-radius: 10px;

    }


    .homepage_about > h2 {

        padding:
            30px
            22px
            10px;

        font-size: 24px !important;

    }


    .homepage_about > h2 + p {

        margin:
            15px
            22px
            5px;

        font-size: 21px !important;

        line-height: 1.3 !important;

    }


    .homepage_about > h2 + p + p {

        margin:
            8px
            22px
            30px;

        padding:
            17px
            18px;

        font-size: 15px !important;

        line-height: 1.55 !important;

    }


    .homepage_about > h2 + p + p ~ p {

        margin:
            0
            22px
            20px;

        font-size: 14px !important;

        line-height: 1.8 !important;

        text-align: left !important;

    }

}

  
  /* ==========================================================
   UGEFIC 2026
   CONTACT & SUBMISSION
   ========================================================== */

.ugefic-contact {

    --contact-green: #5B2A86;
    --contact-green-dark: #32145F;
    --contact-green-soft: #F3ECF8;

    --contact-gold: #F28C28;
    --contact-gold-light: #FFB45B;

    --contact-white: #FFFFFF;
    --contact-bg: #FAF8FC;

    --contact-text: #29242F;
    --contact-muted: #6F6877;

    --contact-border: #E7DFEE;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--contact-text);

    line-height: 1.7;

    max-width: 1180px;

    margin: 0 auto;
}


/* ==========================================================
   HERO
   ========================================================== */

.ugefic-contact-hero {

    position: relative;

    min-height: 370px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 65px 70px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(242,140,40,.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--contact-green-dark),
            var(--contact-green)
        );

    color: white;

    border-radius: 0 0 20px 20px;
}


.ugefic-contact-hero-content {

    position: relative;

    z-index: 5;

    max-width: 800px;
}


.ugefic-contact-kicker {

    color: var(--contact-gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.ugefic-contact-hero h1 {

    color: white;

    font-size: clamp(44px, 6vw, 68px);

    line-height: 1;

    letter-spacing: -1.5px;

    margin: 0 0 22px;
}


.ugefic-contact-hero h1 span {

    color: var(--contact-gold);
}


.ugefic-contact-line {

    width: 65px;

    height: 3px;

    background: var(--contact-gold);

    margin-bottom: 18px;
}


.ugefic-contact-hero p {

    max-width: 720px;

    color: rgba(255,255,255,.82);

    font-size: 16px;

    margin: 0;
}


/* DECORATIONS */

.ugefic-contact-decoration {

    position: absolute;

    border: 1px solid rgba(242,140,40,.20);

    border-radius: 50%;

    pointer-events: none;
}


.contact-decoration-one {

    width: 450px;

    height: 450px;

    right: -190px;

    top: -200px;
}


.contact-decoration-two {

    width: 260px;

    height: 260px;

    right: 90px;

    bottom: -190px;
}


/* ==========================================================
   MAIN
   ========================================================== */

.ugefic-contact-main {

    padding:
        75px 45px 80px;
}


.ugefic-contact-section-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--contact-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 25px;
}


.ugefic-contact-section-label span {

    width: 25px;

    height: 2px;

    display: inline-block;

    background: var(--contact-gold);
}


/* ==========================================================
   CONTACT GRID
   ========================================================== */

.ugefic-contact-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 25px;
}


.ugefic-contact-card {

    position: relative;

    background: white;

    border: 1px solid var(--contact-border);

    border-radius: 10px;

    padding: 32px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.ugefic-contact-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(242,140,40,.45);

    box-shadow:
        0 15px 35px rgba(0,0,0,.07);
}


/* CARD HEADER */

.ugefic-contact-card-header {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 28px;
}


.ugefic-contact-icon {

    width: 55px;

    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--contact-green);

    color: var(--contact-gold-light);

    border-radius: 9px;

    font-size: 22px;

    font-weight: 800;
}


.ugefic-contact-icon.gold {

    background: var(--contact-gold);

    color: var(--contact-green-dark);
}


.ugefic-contact-card-label {

    color: var(--contact-gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 3px;
}


.ugefic-contact-card h2 {

    color: var(--contact-green);

    font-size: 22px;

    line-height: 1.3;

    margin: 0;
}


/* ==========================================================
   CONTACT PERSON
   ========================================================== */

.ugefic-contact-person {

    padding-top: 22px;

    border-top: 1px solid var(--contact-border);
}


.ugefic-contact-person h3 {

    color: var(--contact-green);

    font-size: 18px;

    margin: 0 0 20px;
}


.ugefic-contact-info {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 16px;
}


.ugefic-contact-info:last-child {

    margin-bottom: 0;
}


.ugefic-contact-info-icon {

    width: 39px;

    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--contact-green-soft);

    color: var(--contact-green);

    border-radius: 7px;

    font-size: 9px;

    font-weight: 900;
}


.ugefic-contact-info span {

    display: block;

    color: var(--contact-muted);

    font-size: 10px;

    margin-bottom: 1px;
}


.ugefic-contact-info a {

    color: var(--contact-green);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;
}


.ugefic-contact-info a:hover {

    color: var(--contact-gold);

}


/* ==========================================================
   SUBMISSION
   ========================================================== */

.ugefic-contact-card.submission {

    border-top:
        4px solid var(--contact-gold);
}


.ugefic-contact-description {

    color: var(--contact-muted);

    font-size: 14px;

    margin:
        0 0 25px;
}


/* SUBMISSION BUTTON */

.ugefic-submission-button {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 15px 18px;

    background: var(--contact-green);

    color: white !important;

    border-radius: 7px;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 700;

    transition:
        background .3s ease,
        transform .3s ease;
}


.ugefic-submission-button:hover {

    background: var(--contact-green-dark);

    color: var(--contact-gold-light) !important;

    transform: translateX(3px);
}


.ugefic-submission-button strong {

    color: var(--contact-gold-light);

    font-size: 20px;

    line-height: 1;
}


/* URL */

.ugefic-contact-url {

    margin-top: 18px;

    padding-top: 15px;

    border-top: 1px solid var(--contact-border);
}


.ugefic-contact-url span {

    display: block;

    color: var(--contact-gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.3px;
}


.ugefic-contact-url small {

    color: var(--contact-muted);

    font-size: 10px;

    word-break: break-all;
}


/* ==========================================================
   BROADCAST
   ========================================================== */

.ugefic-broadcast {

    padding:
        70px 45px;

    background: var(--contact-bg);
}


.ugefic-broadcast-inner {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 60px;

    align-items: center;
}


.ugefic-broadcast-label {

    color: var(--contact-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.ugefic-broadcast-info h2 {

    color: var(--contact-green);

    font-size: 34px;

    line-height: 1.25;

    margin: 0 0 12px;
}


.ugefic-broadcast-info h2 strong {

    color: var(--contact-gold);
}


.ugefic-broadcast-info p {

    color: var(--contact-muted);

    font-size: 14px;

    margin: 0;
}


/* BROADCAST OPTIONS */

.ugefic-broadcast-options {

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.ugefic-broadcast-option {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px;

    background: white;

    border:
        1px solid var(--contact-border);

    border-radius: 8px;

    transition: .3s ease;
}


.ugefic-broadcast-option:hover {

    transform: translateX(5px);

    border-color:
        rgba(242,140,40,.50);

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);
}


.ugefic-broadcast-icon {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--contact-green);

    color: var(--contact-gold-light);

    border-radius: 8px;

    font-size: 12px;

    font-weight: 900;
}


.ugefic-broadcast-option span {

    display: block;

    color: var(--contact-gold);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.ugefic-broadcast-option h3 {

    color: var(--contact-green);

    font-size: 16px;

    margin: 2px 0 0;
}


.ugefic-broadcast-option a {

    color: var(--contact-green);

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;
}


.ugefic-broadcast-option a:hover {

    color: var(--contact-gold);
}


/* ==========================================================
   CLOSING
   ========================================================== */

.ugefic-contact-closing {

    padding:
        65px 45px 75px;
}


.ugefic-contact-closing-inner {

    position: relative;

    overflow: hidden;

    text-align: center;

    padding:
        50px 30px;

    border-radius: 10px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(242,140,40,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--contact-green-dark),
            var(--contact-green)
        );
}


.ugefic-contact-closing-label {

    color: var(--contact-gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.ugefic-contact-closing-inner h2 {

    color: white;

    font-size: 30px;

    margin: 0 0 10px;
}


.ugefic-contact-closing-inner p {

    max-width: 650px;

    margin: 0 auto 25px;

    color: rgba(255,255,255,.72);

    font-size: 14px;
}


/* EMAIL BUTTON */

.ugefic-email-button {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    padding: 12px 20px;

    background: var(--contact-gold);

    color: var(--contact-green-dark) !important;

    border-radius: 6px;

    text-decoration: none !important;

    font-size: 12px;

    font-weight: 800;

    transition: .3s ease;
}


.ugefic-email-button:hover {

    background: var(--contact-gold-light);

    color: var(--contact-green-dark) !important;

    transform: translateY(-2px);
}


.ugefic-email-button span {

    font-size: 18px;

    line-height: 1;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 850px) {

    .ugefic-contact-grid {

        grid-template-columns: 1fr;

    }


    .ugefic-broadcast-inner {

        grid-template-columns: 1fr;

        gap: 35px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .ugefic-contact-hero {

        min-height: 320px;

        padding: 50px 25px;

        border-radius: 0;

    }


    .ugefic-contact-hero h1 {

        font-size: 45px;

    }


    .ugefic-contact-hero p {

        font-size: 15px;

    }


    .ugefic-contact-main {

        padding:
            55px 20px 60px;

    }


    .ugefic-contact-card {

        padding: 25px;

    }


    .ugefic-contact-card-header {

        align-items: flex-start;

    }


    .ugefic-broadcast {

        padding:
            55px 20px;

    }


    .ugefic-broadcast-info h2 {

        font-size: 28px;

    }


    .ugefic-contact-closing {

        padding:
            40px 20px 50px;

    }


    .ugefic-contact-closing-inner {

        padding:
            40px 22px;

    }


    .ugefic-contact-closing-inner h2 {

        font-size: 25px;

    }

}

  /* ==========================================================
   UGEFIC 2026
   CONFERENCE FEE
   ========================================================== */

.ugefic-fee {

    --fee-green: #5B2A86;
    --fee-green-dark: #32145F;
    --fee-green-soft: #F3ECF8;

    --fee-gold: #F28C28;
    --fee-gold-light: #FFB45B;

    --fee-white: #FFFFFF;
    --fee-bg: #FAF8FC;

    --fee-text: #29242F;
    --fee-muted: #6F6877;

    --fee-border: #E7DFEE;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--fee-text);

    line-height: 1.7;

    max-width: 1180px;

    margin: 0 auto;
}


/* ==========================================================
   HERO
   ========================================================== */

.ugefic-fee-hero {

    position: relative;

    min-height: 360px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 65px 70px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(242,140,40,.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--fee-green-dark),
            var(--fee-green)
        );

    color: white;

    border-radius: 0 0 20px 20px;
}


.ugefic-fee-hero-content {

    position: relative;

    z-index: 5;

    max-width: 800px;
}


.ugefic-fee-kicker {

    color: var(--fee-gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.ugefic-fee-hero h1 {

    color: white;

    font-size: clamp(45px, 6vw, 68px);

    line-height: 1;

    letter-spacing: -1.5px;

    margin: 0 0 20px;
}


.ugefic-fee-hero h1 span {

    color: var(--fee-gold);
}


.ugefic-fee-line {

    width: 65px;

    height: 3px;

    background: var(--fee-gold);

    margin-bottom: 18px;
}


.ugefic-fee-hero p {

    max-width: 720px;

    color: rgba(255,255,255,.82);

    font-size: 16px;

    margin: 0;
}


/* HERO DECORATIONS */

.ugefic-fee-decoration {

    position: absolute;

    border: 1px solid rgba(242,140,40,.20);

    border-radius: 50%;

    pointer-events: none;
}


.fee-decoration-one {

    width: 440px;

    height: 440px;

    right: -180px;

    top: -190px;
}


.fee-decoration-two {

    width: 250px;

    height: 250px;

    right: 100px;

    bottom: -190px;
}


/* ==========================================================
   INTRO
   ========================================================== */

.ugefic-fee-intro {

    max-width: 760px;

    text-align: center;

    margin: 75px auto 45px;

    padding: 0 25px;
}


.ugefic-fee-section-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: var(--fee-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


.ugefic-fee-section-label span {

    display: inline-block;

    width: 25px;

    height: 2px;

    background: var(--fee-gold);
}


.ugefic-fee-intro h2 {

    color: var(--fee-green);

    font-size: 34px;

    line-height: 1.25;

    margin: 0 0 12px;
}


.ugefic-fee-intro h2 strong {

    color: var(--fee-gold);
}


.ugefic-fee-intro p {

    color: var(--fee-muted);

    font-size: 14px;

    margin: 0;
}


/* ==========================================================
   PRICING CARDS
   ========================================================== */

.ugefic-fee-cards {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

    padding: 0 35px 75px;
}


.ugefic-fee-card {

    position: relative;

    background: white;

    border: 1px solid var(--fee-border);

    border-radius: 10px;

    padding: 32px 28px;

    min-height: 350px;

    display: flex;

    flex-direction: column;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.ugefic-fee-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(242,140,40,.50);

    box-shadow:
        0 16px 35px rgba(0,0,0,.08);
}


/* CARD TOP */

.ugefic-fee-card-top {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;
}


.ugefic-fee-number {

    color: var(--fee-gold);

    font-size: 30px;

    line-height: 1;

    font-weight: 800;
}


.ugefic-fee-category {

    color: var(--fee-green);

    background: var(--fee-green-soft);

    border-radius: 30px;

    padding: 5px 11px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* CARD TITLE */

.ugefic-fee-card h3 {

    color: var(--fee-green);

    font-size: 21px;

    line-height: 1.3;

    margin: 0 0 12px;
}


.ugefic-fee-description {

    color: var(--fee-muted);

    font-size: 13px;

    line-height: 1.7;

    margin: 0 0 25px;
}


/* PRICE */

.ugefic-fee-price {

    margin-top: auto;

    padding-top: 22px;

    border-top: 1px solid var(--fee-border);
}


.ugefic-fee-usd {

    color: var(--fee-green);

    font-size: 40px;

    line-height: 1;

    font-weight: 800;

    margin-bottom: 8px;
}


.ugefic-fee-usd span {

    color: var(--fee-gold);

    font-size: 24px;

    vertical-align: top;

    margin-right: 2px;
}


.ugefic-fee-or {

    color: var(--fee-muted);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 2px;
}


.ugefic-fee-idr {

    color: var(--fee-text);

    font-size: 15px;

    font-weight: 700;
}


/* ==========================================================
   FEATURED CARD
   ========================================================== */

.ugefic-fee-card.featured {

    border:
        2px solid var(--fee-gold);

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(242,140,40,.12);
}


.ugefic-fee-card.featured:hover {

    transform:
        translateY(-13px);

    box-shadow:
        0 20px 40px rgba(242,140,40,.16);
}


.ugefic-fee-badge {

    position: absolute;

    top: -13px;

    left: 50%;

    transform: translateX(-50%);

    white-space: nowrap;

    padding: 5px 13px;

    background: var(--fee-gold);

    color: var(--fee-green-dark);

    border-radius: 30px;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


/* STUDENT CARD */

.ugefic-fee-card.student {

    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #F8F3FC
        );
}


/* ==========================================================
   PAYMENT NOTE
   ========================================================== */

.ugefic-fee-note {

    display: flex;

    align-items: center;

    gap: 20px;

    margin:
        0 35px 75px;

    padding: 27px 30px;

    background:
        linear-gradient(
            135deg,
            #F7F1FB,
            #F3ECF8
        );

    border-left:
        4px solid var(--fee-gold);

    border-radius: 7px;
}


.ugefic-fee-note-icon {

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--fee-gold);

    color: var(--fee-green-dark);

    font-size: 22px;

    font-weight: 800;
}


.ugefic-fee-note-label {

    color: var(--fee-gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 2px;
}


.ugefic-fee-note h3 {

    color: var(--fee-green);

    font-size: 18px;

    margin: 0 0 3px;
}


.ugefic-fee-note p {

    color: var(--fee-muted);

    font-size: 13px;

    margin: 0;
}


/* ==========================================================
   CLOSING
   ========================================================== */

.ugefic-fee-closing {

    padding: 0 35px 70px;
}


.ugefic-fee-closing-content {

    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 50px 30px;

    border-radius: 10px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(242,140,40,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--fee-green-dark),
            var(--fee-green)
        );
}


.ugefic-fee-closing-label {

    color: var(--fee-gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.ugefic-fee-closing-content h2 {

    color: white;

    font-size: 30px;

    line-height: 1.3;

    margin: 0 0 10px;
}


.ugefic-fee-closing-content p {

    max-width: 700px;

    margin: 0 auto;

    color: rgba(255,255,255,.72);

    font-size: 14px;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .ugefic-fee-cards {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .ugefic-fee-card.featured {

        transform: none;

    }


    .ugefic-fee-card.featured:hover {

        transform: translateY(-7px);

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .ugefic-fee-hero {

        min-height: 310px;

        padding: 50px 25px;

        border-radius: 0;

    }


    .ugefic-fee-hero h1 {

        font-size: 45px;

    }


    .ugefic-fee-hero p {

        font-size: 15px;

    }


    .ugefic-fee-intro {

        margin-top: 55px;

    }


    .ugefic-fee-intro h2 {

        font-size: 28px;

    }


    .ugefic-fee-cards {

        grid-template-columns: 1fr;

        padding:
            0 20px 55px;

    }


    .ugefic-fee-card {

        min-height: auto;

    }


    .ugefic-fee-card.featured {

        transform: none;

        margin-top: 8px;

    }


    .ugefic-fee-card.featured:hover {

        transform: translateY(-7px);

    }


    .ugefic-fee-note {

        margin:
            0 20px 55px;

        align-items: flex-start;

    }


    .ugefic-fee-closing {

        padding:
            0 20px 50px;

    }


    .ugefic-fee-closing-content {

        padding:
            40px 22px;

    }


    .ugefic-fee-closing-content h2 {

        font-size: 25px;

    }

}

  /* ==========================================================
    UGEFIC 2026
    DATE & PLACE CONFERENCE
    ========================================================== */

.ugefic-date-place {

    --dp-green: #5B2A86;
    --dp-green-dark: #32145F;
    --dp-green-soft: #F3ECF8;

    --dp-gold: #F28C28;
    --dp-gold-light: #FFB45B;

    --dp-white: #FFFFFF;
    --dp-background: #FAF8FC;

    --dp-text: #29242F;
    --dp-muted: #6F6877;

    --dp-border: #E7DFEE;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--dp-text);

    line-height: 1.7;

    max-width: 1180px;

    margin: 0 auto;

}


/* ==========================================================
   HERO
   ========================================================== */

.ugefic-dp-hero {

    position: relative;

    min-height: 350px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 65px 70px;

    margin-bottom: 70px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(242,140,40,.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--dp-green-dark),
            var(--dp-green)
        );

    color: white;

    border-radius: 0 0 18px 18px;

}


.ugefic-dp-hero-content {

    position: relative;

    z-index: 5;

}


.ugefic-dp-kicker {

    color: var(--dp-gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;

}


.ugefic-dp-hero h1 {

    color: white;

    font-size: clamp(44px, 6vw, 65px);

    line-height: 1.05;

    letter-spacing: -1px;

    margin: 0 0 15px;

}


.ugefic-dp-hero h1 span {

    color: var(--dp-gold);

}


.ugefic-dp-hero p {

    color: rgba(255,255,255,.85);

    font-size: 18px;

    margin: 0;

}


.ugefic-dp-line {

    width: 65px;

    height: 3px;

    background: var(--dp-gold);

    margin: 22px 0 17px;

}


.ugefic-dp-hybrid {

    display: inline-block;

    border: 1px solid rgba(255,180,91,.50);

    color: var(--dp-gold-light);

    padding: 5px 13px;

    border-radius: 30px;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* HERO DECORATION */

.ugefic-dp-decoration {

    position: absolute;

    border: 1px solid rgba(242,140,40,.20);

    border-radius: 50%;

    pointer-events: none;

}


.dp-decoration-one {

    width: 420px;

    height: 420px;

    right: -170px;

    top: -190px;

}


.dp-decoration-two {

    width: 240px;

    height: 240px;

    right: 80px;

    bottom: -170px;

}


/* ==========================================================
   SECTION
   ========================================================== */

.ugefic-dp-main {

    padding: 0 40px;

    margin-bottom: 85px;

}


.ugefic-dp-section-heading {

    max-width: 780px;

    margin: 0 auto 40px;

    text-align: center;

}


.ugefic-dp-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    color: var(--dp-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;

}


.ugefic-dp-label span {

    display: inline-block;

    width: 25px;

    height: 2px;

    background: var(--dp-gold);

}


.ugefic-dp-section-heading h2 {

    color: var(--dp-green);

    font-size: 35px;

    line-height: 1.25;

    margin: 0 0 13px;

}


.ugefic-dp-section-heading h2 strong {

    color: var(--dp-gold);

}


.ugefic-dp-section-heading p {

    color: var(--dp-muted);

    font-size: 14px;

    margin: 0;

}


/* ==========================================================
   EVENT INFORMATION CARDS
   ========================================================== */

.ugefic-dp-event-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 30px;

}


.ugefic-dp-event-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 25px;

    background: white;

    border: 1px solid var(--dp-border);

    border-radius: 9px;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.ugefic-dp-event-card:hover {

    transform: translateY(-5px);

    border-color: rgba(242,140,40,.50);

    box-shadow:
        0 12px 30px rgba(0,0,0,.07);

}


.ugefic-dp-icon {

    flex-shrink: 0;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--dp-green);

    color: var(--dp-gold-light);

    border-radius: 9px;

    font-size: 18px;

    font-weight: 800;

}


.ugefic-dp-event-label {

    color: var(--dp-gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 4px;

}


.ugefic-dp-event-content h3 {

    color: var(--dp-green);

    font-size: 16px;

    line-height: 1.35;

    margin: 0;

}


.ugefic-dp-event-content p {

    color: var(--dp-muted);

    font-size: 13px;

    margin: 2px 0 0;

}


/* ==========================================================
   HYBRID BOX
   ========================================================== */

.ugefic-dp-hybrid-box {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 25px 28px;

    background:
        linear-gradient(
            135deg,
            #F8F3FC,
            #F3ECF8
        );

    border-left: 4px solid var(--dp-gold);

    border-radius: 7px;

}


.ugefic-dp-hybrid-icon {

    flex-shrink: 0;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--dp-gold);

    color: var(--dp-green-dark);

    font-size: 24px;

}


.ugefic-dp-hybrid-box h3 {

    color: var(--dp-green);

    font-size: 18px;

    margin: 0 0 3px;

}


.ugefic-dp-hybrid-box p {

    color: var(--dp-muted);

    font-size: 13px;

    margin: 0;

}


/* ==========================================================
   IMPORTANT DATES
   ========================================================== */

.ugefic-important-dates {

    background: var(--dp-background);

    padding: 70px 50px;

    margin-left: -20px;

    margin-right: -20px;

}


.ugefic-timeline {

    position: relative;

    max-width: 850px;

    margin: 0 auto;

}


/* vertical line */

.ugefic-timeline::before {

    content: "";

    position: absolute;

    left: 25px;

    top: 20px;

    bottom: 20px;

    width: 2px;

    background:
        linear-gradient(
            to bottom,
            var(--dp-gold),
            rgba(242,140,40,.20)
        );

}


.ugefic-timeline-item {

    position: relative;

    display: flex;

    gap: 25px;

    margin-bottom: 25px;

}


.ugefic-timeline-number {

    position: relative;

    z-index: 2;

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--dp-green);

    border: 4px solid var(--dp-background);

    color: var(--dp-gold-light);

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 0 0 1px var(--dp-gold);

}


.ugefic-timeline-content {

    flex: 1;

    background: white;

    padding: 22px 25px;

    border: 1px solid var(--dp-border);

    border-radius: 8px;

    transition: .3s ease;

}


.ugefic-timeline-content:hover {

    transform: translateX(5px);

    border-color: rgba(242,140,40,.50);

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);

}


.ugefic-timeline-content span {

    color: var(--dp-gold);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.ugefic-timeline-content h3 {

    color: var(--dp-green);

    font-size: 20px;

    margin: 3px 0 3px;

}


.ugefic-timeline-content p {

    color: var(--dp-muted);

    font-size: 13px;

    margin: 0;

}


/* FINAL TIMELINE */

.ugefic-timeline-item.final
.ugefic-timeline-number {

    background: var(--dp-gold);

    color: var(--dp-green-dark);

}


.ugefic-timeline-item.final
.ugefic-timeline-content {

    border-color: rgba(242,140,40,.45);

}


/* ==========================================================
   CLOSING
   ========================================================== */

.ugefic-dp-closing {

    padding: 60px 40px;

}


.ugefic-dp-closing-content {

    position: relative;

    overflow: hidden;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--dp-green-dark),
            var(--dp-green)
        );

    padding: 45px 30px;

    border-radius: 10px;

    color: white;

}


.ugefic-dp-closing-content h3 {

    color: white;

    font-size: 28px;

    margin: 0 0 7px;

}


.ugefic-dp-closing-content p {

    color: rgba(255,255,255,.75);

    font-size: 14px;

    margin: 0 0 20px;

}


.ugefic-dp-date-highlight {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 13px;

    color: var(--dp-gold-light);

    font-size: 12px;

    letter-spacing: 1px;

}


.ugefic-dp-date-highlight span {

    color: var(--dp-gold);

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 950px) {

    .ugefic-dp-event-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .ugefic-dp-hero {

        min-height: 310px;

        padding: 45px 25px;

        border-radius: 0;

        margin-bottom: 50px;

    }


    .ugefic-dp-hero h1 {

        font-size: 43px;

    }


    .ugefic-dp-hero p {

        font-size: 16px;

    }


    .ugefic-dp-main {

        padding: 0 20px;

    }


    .ugefic-dp-section-heading h2 {

        font-size: 28px;

    }


    .ugefic-dp-event-grid {

        grid-template-columns: 1fr;

    }


    .ugefic-dp-event-card {

        padding: 22px;

    }


    .ugefic-dp-hybrid-box {

        align-items: flex-start;

    }


    .ugefic-important-dates {

        padding: 55px 20px;

        margin-left: 0;

        margin-right: 0;

    }


    .ugefic-timeline-item {

        gap: 15px;

    }


    .ugefic-timeline::before {

        left: 23px;

    }


    .ugefic-timeline-number {

        width: 46px;

        height: 46px;

    }


    .ugefic-timeline-content {

        padding: 18px;

    }


    .ugefic-timeline-content h3 {

        font-size: 17px;

    }


    .ugefic-dp-closing {

        padding: 40px 20px;

    }


    .ugefic-dp-date-highlight {

        flex-direction: column;

        gap: 4px;

    }

}
 
 
 /* ==========================================================
    UGEFIC 2026
    ABOUT THE CONFERENCE
    ========================================================== */

.ugefic-about {

    --about-green: #5B2A86;
    --about-green-dark: #32145F;
    --about-green-soft: #F3ECF8;

    --about-gold: #F28C28;
    --about-gold-light: #FFB45B;

    --about-white: #FFFFFF;
    --about-bg: #FAF8FC;

    --about-text: #29242F;
    --about-muted: #6F6877;

    --about-border: #E7DFEE;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--about-text);

    line-height: 1.7;

    max-width: 1180px;

    margin: 0 auto;

}


/* ==========================================================
   HERO
   ========================================================== */

.ugefic-about-hero {

    position: relative;

    min-height: 450px;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 75px 70px;

    margin-bottom: 0;

    background:
        radial-gradient(
            circle at 82% 25%,
            rgba(242,140,40,.16),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--about-green-dark),
            var(--about-green)
        );

    color: white;

    border-radius: 0 0 20px 20px;

}


.ugefic-about-hero-content {

    position: relative;

    z-index: 5;

    max-width: 850px;

}


.ugefic-about-kicker {

    color: var(--about-gold-light);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 8px;

}


.ugefic-about-year {

    color: rgba(255,255,255,.85);

    font-size: 17px;

    letter-spacing: 1px;

    margin-bottom: 10px;

}


.ugefic-about-year strong {

    color: var(--about-gold-light);

}


.ugefic-about-hero h1 {

    color: white;

    font-size: clamp(45px, 6vw, 70px);

    line-height: 1;

    letter-spacing: -1.5px;

    margin: 0 0 25px;

}


.ugefic-about-hero h1 span {

    color: var(--about-gold);

}


.ugefic-about-line {

    width: 70px;

    height: 3px;

    background: var(--about-gold);

    margin-bottom: 18px;

}


.ugefic-about-hero p {

    max-width: 760px;

    color: rgba(255,255,255,.82);

    font-size: 17px;

    margin: 0;

}


/* HERO DECORATIONS */

.ugefic-about-decoration {

    position: absolute;

    border: 1px solid rgba(242,140,40,.22);

    border-radius: 50%;

    pointer-events: none;

}


.about-decoration-one {

    width: 480px;

    height: 480px;

    right: -200px;

    top: -220px;

}


.about-decoration-two {

    width: 300px;

    height: 300px;

    right: 80px;

    bottom: -220px;

}


/* ==========================================================
   MAIN THEME
   ========================================================== */

.ugefic-about-theme {

    position: relative;

    max-width: 950px;

    margin: -55px auto 85px;

    z-index: 10;

    padding: 35px 45px;

    background: white;

    border-top: 4px solid var(--about-gold);

    border-radius: 8px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.09);

    text-align: center;

}


.ugefic-about-theme-label {

    color: var(--about-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;

}


.ugefic-about-theme h2 {

    color: var(--about-green);

    font-size: 22px;

    line-height: 1.5;

    margin: 0;

}


/* ==========================================================
   CONTENT
   ========================================================== */

.ugefic-about-content {

    padding: 0 45px;

    margin-bottom: 90px;

}


.ugefic-about-section-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--about-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 20px;

}


.ugefic-about-section-label span {

    width: 25px;

    height: 2px;

    background: var(--about-gold);

    display: inline-block;

}


.ugefic-about-section-label.center {

    justify-content: center;

}


/* ==========================================================
   INTRO
   ========================================================== */

.ugefic-about-intro {

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 60px;

    margin-bottom: 60px;

}


.ugefic-about-intro-title h2 {

    color: var(--about-green);

    font-size: 35px;

    line-height: 1.25;

    margin: 0;

}


.ugefic-about-intro-title h2 strong {

    color: var(--about-gold);

}


.ugefic-about-intro-text p {

    color: var(--about-muted);

    font-size: 14px;

    margin: 0 0 17px;

}


.ugefic-about-intro-text p:last-child {

    margin-bottom: 0;

}


/* ==========================================================
   FEATURE SECTIONS
   ========================================================== */

.ugefic-about-feature {

    display: grid;

    grid-template-columns: 90px 1fr;

    gap: 35px;

    padding: 38px 0;

    border-top: 1px solid var(--about-border);

}


.ugefic-about-feature.reverse {

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--about-bg),
            transparent
        );

    margin-left: -30px;

    margin-right: -30px;

    padding-left: 30px;

    padding-right: 30px;

}


.ugefic-about-feature-number {

    color: var(--about-gold);

    font-size: 42px;

    line-height: 1;

    font-weight: 800;

}


.ugefic-about-feature-label {

    color: var(--about-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.7px;

    margin-bottom: 5px;

}


.ugefic-about-feature-content h3 {

    color: var(--about-green);

    font-size: 23px;

    line-height: 1.3;

    margin: 0 0 14px;

}


.ugefic-about-feature-content p {

    color: var(--about-muted);

    font-size: 14px;

    margin: 0 0 14px;

}


.ugefic-about-feature-content p:last-child {

    margin-bottom: 0;

}


/* ==========================================================
   COLLABORATION
   ========================================================== */

.ugefic-about-collaboration {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 28px 30px;

    margin-top: 25px;

    background:
        linear-gradient(
            135deg,
            var(--about-green-dark),
            var(--about-green)
        );

    border-radius: 9px;

}


.ugefic-about-collaboration-icon {

    flex-shrink: 0;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--about-gold);

    color: var(--about-green-dark);

    font-size: 27px;

}


.ugefic-about-collaboration h3 {

    color: white;

    font-size: 19px;

    margin: 0 0 5px;

}


.ugefic-about-collaboration p {

    color: rgba(255,255,255,.72);

    font-size: 13px;

    margin: 0;

}


/* ==========================================================
   PURPOSE
   ========================================================== */

.ugefic-about-purpose {

    background: var(--about-bg);

    padding: 75px 45px;

    margin-left: -20px;

    margin-right: -20px;

}


.ugefic-about-purpose-header {

    max-width: 760px;

    text-align: center;

    margin: 0 auto 45px;

}


.ugefic-about-purpose-header h2 {

    color: var(--about-green);

    font-size: 35px;

    line-height: 1.25;

    margin: 0 0 12px;

}


.ugefic-about-purpose-header h2 strong {

    color: var(--about-gold);

}


.ugefic-about-purpose-header p {

    color: var(--about-muted);

    font-size: 14px;

    margin: 0;

}


/* PURPOSE CARDS */

.ugefic-about-purpose-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

}


.ugefic-purpose-card {

    background: white;

    border: 1px solid var(--about-border);

    border-radius: 9px;

    padding: 30px;

    transition: .3s ease;

}


.ugefic-purpose-card:hover {

    transform: translateY(-5px);

    border-color: rgba(242,140,40,.50);

    box-shadow:
        0 12px 30px rgba(0,0,0,.07);

}


.ugefic-purpose-number {

    color: var(--about-gold);

    font-size: 30px;

    font-weight: 800;

    margin-bottom: 15px;

}


.ugefic-purpose-card h3 {

    color: var(--about-green);

    font-size: 18px;

    margin: 0 0 10px;

}


.ugefic-purpose-card p {

    color: var(--about-muted);

    font-size: 13px;

    margin: 0;

}


/* ==========================================================
   PARTICIPANTS
   ========================================================== */

.ugefic-about-participants {

    padding: 70px 45px;

}


.ugefic-about-participants-inner {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;

}


.ugefic-about-participants h2 {

    color: var(--about-green);

    font-size: 33px;

    line-height: 1.25;

    margin: 0;

}


.ugefic-about-participants h2 strong {

    color: var(--about-gold);

}


/* PARTICIPANT LIST */

.ugefic-participant-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.ugefic-participant-list span {

    padding: 9px 15px;

    background: var(--about-green-soft);

    border: 1px solid #E7DFEE;

    color: var(--about-green);

    border-radius: 30px;

    font-size: 12px;

    font-weight: 600;

}


/* ==========================================================
   CLOSING
   ========================================================== */

.ugefic-about-closing {

    padding: 70px 45px;

}


.ugefic-about-closing-inner {

    position: relative;

    overflow: hidden;

    text-align: center;

    padding: 55px 35px;

    border-radius: 12px;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(242,140,40,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--about-green-dark),
            var(--about-green)
        );

}


.ugefic-about-closing-label {

    color: var(--about-gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;

}


.ugefic-about-closing-inner h2 {

    max-width: 750px;

    margin: 0 auto 15px;

    color: white;

    font-size: 32px;

    line-height: 1.3;

}


.ugefic-about-closing-inner p {

    max-width: 700px;

    margin: 0 auto;

    color: rgba(255,255,255,.72);

    font-size: 14px;

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 900px) {

    .ugefic-about-intro {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .ugefic-about-purpose-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .ugefic-about-participants-inner {

        grid-template-columns: 1fr;

        gap: 30px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .ugefic-about-hero {

        min-height: 350px;

        padding: 50px 25px;

        border-radius: 0;

    }


    .ugefic-about-kicker {

        font-size: 9px;

        letter-spacing: 1.3px;

    }


    .ugefic-about-hero h1 {

        font-size: 45px;

    }


    .ugefic-about-hero p {

        font-size: 15px;

    }


    .ugefic-about-theme {

        margin:
            -35px 20px
            60px;

        padding: 27px 22px;

    }


    .ugefic-about-theme h2 {

        font-size: 18px;

    }


    .ugefic-about-content {

        padding: 0 20px;

    }


    .ugefic-about-intro-title h2 {

        font-size: 28px;

    }


    .ugefic-about-feature {

        grid-template-columns: 55px 1fr;

        gap: 18px;

    }


    .ugefic-about-feature-number {

        font-size: 30px;

    }


    .ugefic-about-feature-content h3 {

        font-size: 19px;

    }


    .ugefic-about-feature.reverse {

        margin-left: -10px;

        margin-right: -10px;

        padding-left: 10px;

        padding-right: 10px;

    }


    .ugefic-about-collaboration {

        align-items: flex-start;

        flex-direction: column;

        padding: 25px;

    }


    .ugefic-about-purpose {

        padding: 55px 20px;

        margin-left: 0;

        margin-right: 0;

    }


    .ugefic-about-purpose-header h2 {

        font-size: 28px;

    }


    .ugefic-about-purpose-grid {

        grid-template-columns: 1fr;

    }


    .ugefic-about-participants {

        padding: 55px 20px;

    }


    .ugefic-about-participants h2 {

        font-size: 28px;

    }


    .ugefic-about-closing {

        padding: 40px 20px;

    }


    .ugefic-about-closing-inner {

        padding: 40px 25px;

    }


    .ugefic-about-closing-inner h2 {

        font-size: 25px;

    }

}


/* ==========================================================
   UGEFIC 2026
   FOCUS & SCOPE
   ========================================================== */

.ugefic-focus-scope {

    --ug-green: #5B2A86;
    --ug-green-dark: #32145F;
    --ug-green-soft: #F3ECF8;

    --ug-gold: #F28C28;
    --ug-gold-light: #FFB45B;

    --ug-white: #FFFFFF;
    --ug-background: #FAF8FC;

    --ug-text: #29242F;
    --ug-muted: #6F6877;

    --ug-border: #E7DFEE;

    font-family:
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    color: var(--ug-text);

    line-height: 1.7;

    max-width: 1180px;

    margin: 0 auto;

}


/* ==========================================================
   HERO
   ========================================================== */

.ugefic-hero {

    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;

    overflow: hidden;

    margin-bottom: 75px;

    padding: 70px 70px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(242,140,40,.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            var(--ug-green-dark),
            var(--ug-green)
        );

    border-radius: 0 0 18px 18px;

    color: white;

}


.ugefic-hero-content {

    position: relative;

    z-index: 5;

    max-width: 800px;

}


.ugefic-kicker {

    color: var(--ug-gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.2px;

    margin-bottom: 12px;

}


.ugefic-year {

    font-size: 17px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 8px;

}


.ugefic-year span {

    color: var(--ug-gold-light);

}


.ugefic-hero h1 {

    color: white;

    font-size: clamp(42px, 6vw, 68px);

    line-height: 1;

    font-weight: 700;

    margin: 0 0 22px;

    letter-spacing: -1.5px;

}


.ugefic-hero h1 span {

    color: var(--ug-gold);

}


.ugefic-hero-description {

    font-size: 21px;

    line-height: 1.45;

    font-weight: 500;

    max-width: 750px;

    color: rgba(255,255,255,.92);

    margin: 0;

}


.ugefic-hero-line {

    width: 70px;

    height: 3px;

    background: var(--ug-gold);

    margin: 22px 0 15px;

}


.ugefic-hero-small {

    font-size: 14px;

    color: rgba(255,255,255,.72);

    margin: 0;

}


/* HERO DECORATION */

.ugefic-hero-decoration {

    position: absolute;

    border: 1px solid rgba(242,140,40,.22);

    border-radius: 50%;

    pointer-events: none;

}


.decoration-one {

    width: 430px;

    height: 430px;

    right: -170px;

    top: -190px;

}


.decoration-two {

    width: 260px;

    height: 260px;

    right: 60px;

    bottom: -190px;

}


/* ==========================================================
   INTRODUCTION
   ========================================================== */

.ugefic-introduction {

    padding: 0 40px;

    margin-bottom: 90px;

}


.ugefic-section-label {

    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--ug-gold);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 13px;

}


.ugefic-section-label > span {

    width: 25px;

    height: 2px;

    background: var(--ug-gold);

    display: inline-block;

}


.ugefic-section-label.center {

    justify-content: center;

}


.ugefic-introduction h2 {

    max-width: 780px;

    color: var(--ug-green);

    font-size: 36px;

    line-height: 1.25;

    letter-spacing: -.5px;

    margin: 0 0 20px;

}


.ugefic-introduction h2 strong {

    color: var(--ug-gold);

}


.ugefic-intro-text {

    max-width: 850px;

    color: var(--ug-muted);

    font-size: 15px;

    margin-bottom: 35px;

}


/* ==========================================================
   MAIN THEME BOX
   ========================================================== */

.ugefic-theme-box {

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 28px 32px;

    background:
        linear-gradient(
            135deg,
            #F8F3FC,
            #F3ECF8
        );

    border: 1px solid var(--ug-border);

    border-left: 4px solid var(--ug-gold);

    border-radius: 8px;

}


.ugefic-theme-icon {

    flex-shrink: 0;

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--ug-green);

    color: var(--ug-gold-light);

    font-size: 19px;

    font-weight: 800;

    border-radius: 10px;

    box-shadow:
        0 8px 20px rgba(50,20,95,.15);

}


.ugefic-theme-label {

    color: var(--ug-gold);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

}


.ugefic-theme-content h3 {

    color: var(--ug-green);

    font-size: 19px;

    line-height: 1.4;

    margin: 4px 0 5px;

}


.ugefic-theme-content p {

    margin: 0;

    color: var(--ug-muted);

    font-size: 14px;

}


/* ==========================================================
   SUBTHEMES HEADER
   ========================================================== */

.ugefic-subthemes {

    background: var(--ug-background);

    padding: 70px 40px;

    margin-left: -20px;

    margin-right: -20px;

}


.ugefic-section-header {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 45px;

}


.ugefic-section-header h2 {

    color: var(--ug-green);

    font-size: 36px;

    line-height: 1.25;

    margin: 0 0 13px;

}


.ugefic-section-header h2 strong {

    color: var(--ug-gold);

}


.ugefic-section-header > p {

    color: var(--ug-muted);

    font-size: 14px;

    margin: 0;

}


/* ==========================================================
   SUBTHEME GRID
   ========================================================== */

.ugefic-subtheme-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;

}


/* ==========================================================
   CARD
   ========================================================== */

.ugefic-card {

    position: relative;

    background: var(--ug-white);

    border: 1px solid var(--ug-border);

    border-radius: 10px;

    padding: 27px;

    min-height: 100%;

    box-sizing: border-box;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;

}


.ugefic-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 3px;

    background: var(--ug-gold);

    transform: scaleX(0);

    transform-origin: left;

    transition: transform .3s ease;

    border-radius: 10px 10px 0 0;

}


.ugefic-card:hover {

    transform: translateY(-6px);

    border-color: rgba(242,140,40,.45);

    box-shadow:
        0 15px 35px rgba(0,0,0,.08);

}


.ugefic-card:hover::before {

    transform: scaleX(1);

}


/* CARD TOP */

.ugefic-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 18px;

}


.ugefic-number {

    width: 39px;

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    background: var(--ug-green);

    color: var(--ug-gold-light);

    font-size: 12px;

    font-weight: 800;

}


.ugefic-card-tag {

    color: #6F6877;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.2px;

    text-align: right;

}


/* CARD TITLE */

.ugefic-card h3 {

    color: var(--ug-green);

    font-size: 17px;

    line-height: 1.4;

    margin: 0 0 18px;

}


/* CARD LIST */

.ugefic-card ul {

    padding: 0;

    margin: 0;

    list-style: none;

}


.ugefic-card li {

    position: relative;

    padding-left: 18px;

    color: var(--ug-muted);

    font-size: 13px;

    line-height: 1.55;

    margin-bottom: 9px;

}


.ugefic-card li::before {

    content: "";

    position: absolute;

    left: 0;

    top: 9px;

    width: 6px;

    height: 6px;

    border-radius: 50%;

    background: var(--ug-gold);

}


/* ==========================================================
   CLOSING
   ========================================================== */

.ugefic-closing {

    padding: 55px 40px;

}


.ugefic-closing-content {

    display: flex;

    align-items: center;

    gap: 22px;

    padding: 28px 30px;

    border-radius: 10px;

    background: var(--ug-green);

    box-shadow:
        0 12px 30px rgba(50,20,95,.14);

}


.ugefic-closing-icon {

    flex-shrink: 0;

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--ug-gold);

    color: var(--ug-green-dark);

    font-size: 26px;

    font-weight: 300;

}


.ugefic-closing h3 {

    color: white;

    font-size: 19px;

    margin: 0 0 5px;

}


.ugefic-closing p {

    color: rgba(255,255,255,.75);

    font-size: 13px;

    margin: 0;

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 950px) {

    .ugefic-subtheme-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

    .ugefic-hero {

        padding: 60px 45px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 650px) {

    .ugefic-focus-scope {

        width: 100%;

    }


    .ugefic-hero {

        min-height: 330px;

        padding: 45px 25px;

        border-radius: 0;

        margin-bottom: 55px;

    }


    .ugefic-kicker {

        font-size: 9px;

        letter-spacing: 1.5px;

    }


    .ugefic-hero h1 {

        font-size: 43px;

    }


    .ugefic-hero-description {

        font-size: 17px;

    }


    .ugefic-introduction {

        padding: 0 20px;

        margin-bottom: 60px;

    }


    .ugefic-introduction h2 {

        font-size: 28px;

    }


    .ugefic-theme-box {

        align-items: flex-start;

        flex-direction: column;

        padding: 25px;

    }


    .ugefic-subthemes {

        padding: 55px 20px;

        margin-left: 0;

        margin-right: 0;

    }


    .ugefic-section-header h2 {

        font-size: 29px;

    }


    .ugefic-subtheme-grid {

        grid-template-columns: 1fr;

        gap: 17px;

    }


    .ugefic-card {

        padding: 23px;

    }


    .ugefic-closing {

        padding: 40px 20px;

    }


    .ugefic-closing-content {

        align-items: flex-start;

        padding: 24px;

    }

}



/* === Ekbis Plain Footer === */
.ekbis-footer-plain {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: #eeeeee;
  padding: 20px 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  color: #000;
  margin-top: 30px;
}

.ekbis-footer-left {
  max-width: 70%;
}

.ekbis-footer-left img {
  margin: 8px 0;
}

.ekbis-footer-left a {
  color: #5B2A86;
  text-decoration: none;
}

.ekbis-footer-left a:hover {
  text-decoration: underline;
}

.ekbis-footer-right {
  text-align: right;
  font-size: 14px;
}

/* === Make a Submission Button - JIEB Theme === */
.block_make_submission_link {
  display: block !important;
  text-align: center !important;
  background: linear-gradient(135deg, #32145F, #8E5BB7) !important; /* oranye */
  color: #FFFFFF !important;
  font-weight: 700 !important;
  padding: 12px 14px !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25) !important;
  transition: all 0.25s ease !important;
  font-size: 14px !important;
  letter-spacing: 0.5px !important;
  border: 2px solid #5B2A86 !important; /* aksen biru */
}

/* Hover effect */
.block_make_submission_link:hover {
  background: linear-gradient(135deg, #32145F, #8E5BB7) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 14px rgba(0,0,0,0.3) !important;
  color: #FFFFFF !important;
}

/* Active (saat diklik) */
.block_make_submission_link:active {
  transform: translateY(0) !important;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25) !important;
}


/* === JIEB Additional Menu Block === */
.jieb-additional-menu {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.jieb-menu-title {
  background: #F28C28; /* oranye utama */
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #5B2A86; /* aksen biru */
}

/* Item */
.jieb-menu-item {
  display: block;
  padding: 10px 12px;
  color: #333 !important;
  text-decoration: none !important;
  border-bottom: 1px solid #e0e0e0;
  font-size: 13px;
  transition: all 0.25s ease;
  background: #FFFFFF;
}

/* Hover */
.jieb-menu-item:hover {
  background: #FFF4E6; /* oranye muda */
  color: #D96F16 !important;
  padding-left: 16px;
}

/* Last item no border */
.jieb-menu-item:last-child {
  border-bottom: none;
}


/* === Editorial Board Page - JIEB === */
.ekbis-editorial-board {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul section */
.ekbis-editorial-board h2 {
  margin-top: 24px;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 3px solid #F28C28; /* oranye tema */
  color: #5B2A86; /* biru aksen */
  font-size: 20px;
}

/* Card editor */
.editor-card {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.25s ease;
}

/* Hover effect card */
.editor-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.2);
}

/* Info nama & institusi */
.editor-info {
  font-size: 14px;
  line-height: 1.5;
}

.editor-info strong {
  display: block;
  font-size: 15px;
  color: #000;
}

/* Link (Scopus, SINTA, Scholar) */
.editor-links {
  margin-top: 4px;
}

.editor-links a {
  display: inline-block;
  margin-right: 8px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none !important;
  color: #FFFFFF !important;
  background: #F28C28; /* default oranye */
  transition: all 0.25s ease;
}

/* Warna beda per platform (opsional) */
.editor-links a:nth-child(1) { background: #5B2A86; } /* Scopus / biru */
.editor-links a:nth-child(2) { background: #5B2A86; } /* SINTA / hijau */
.editor-links a:nth-child(3) { background: #F28C28; } /* Scholar / oranye tua */

/* Hover link */
.editor-links a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 576px) {
  .editor-info {
    font-size: 13px;
  }

  .editor-info strong {
    font-size: 14px;
  }

  .editor-links a {
    margin-bottom: 6px;
  }
}


/* === Peer Reviewers Page - JIEB === */
.ekbis-peer-reviewers {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul */
.ekbis-peer-reviewers h2 {
  margin-top: 24px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 3px solid #F28C28; /* oranye tema */
  color: #5B2A86; /* biru aksen */
  font-size: 22px;
}

/* Paragraf pembuka */
.ekbis-peer-reviewers p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 14px;
}

/* Card reviewer */
.reviewer-card {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 12px 14px;
  margin-bottom: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all 0.25s ease;
}

/* Hover effect */
.reviewer-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.22);
}

/* Info reviewer */
.reviewer-info {
  font-size: 14px;
  line-height: 1.5;
}

.reviewer-info strong {
  display: block;
  font-size: 15px;
  color: #000;
}

/* Link buttons */
.reviewer-links {
  margin-top: 4px;
}

.reviewer-links a {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 4px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none !important;
  color: #FFFFFF !important;
  background: #F28C28; /* default oranye */
  transition: all 0.25s ease;
}

/* Warna beda per platform */
.reviewer-links a:nth-child(1) { background: #5B2A86; } /* Scopus - biru */
.reviewer-links a:nth-child(2) { background: #F28C28; } /* Scholar - oranye tua */
.reviewer-links a:nth-child(3) { background: #5B2A86; } /* SINTA - hijau */

/* Hover link */
.reviewer-links a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 576px) {
  .reviewer-info {
    font-size: 13px;
  }

  .reviewer-info strong {
    font-size: 14px;
  }

  .reviewer-links a {
    margin-bottom: 6px;
  }
}

/* === Focus and Scope Page - JIEB === */
.ekbis-focus-scope {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul utama */
.ekbis-focus-scope h2 {
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 3px solid #F28C28; /* oranye tema */
  color: #5B2A86; /* biru aksen */
  font-size: 22px;
}

/* Subjudul */
.ekbis-focus-scope h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #F28C28;
  font-size: 18px;
}

/* Paragraf */
.ekbis-focus-scope p {
  line-height: 1.6;
  margin-bottom: 14px;
  font-size: 14px;
}

/* List */
.ekbis-focus-scope ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.ekbis-focus-scope li {
  margin-bottom: 6px;
  font-size: 14px;
}


/* === Publication Ethics Page - JIEB === */
.ekbis-publication-ethics {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul utama */
.ekbis-publication-ethics h2 {
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 3px solid #F28C28; /* oranye tema */
  color: #5B2A86; /* biru aksen */
  font-size: 22px;
}

/* Subjudul */
.ekbis-publication-ethics h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #F28C28;
  font-size: 17px;
}

/* Paragraf */
.ekbis-publication-ethics p {
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 14px;
  text-align: justify;
}

/* List */
.ekbis-publication-ethics ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

.ekbis-publication-ethics li {
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.6;
}

/* Card-like section effect (opsional, halus) */
.ekbis-publication-ethics h3 + ul,
.ekbis-publication-ethics h3 + p {
  background: #fafafa;
  border-left: 4px solid #F28C28;
  padding: 10px 12px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-publication-ethics h2 {
    font-size: 20px;
  }

  .ekbis-publication-ethics h3 {
    font-size: 16px;
  }

  .ekbis-publication-ethics p,
  .ekbis-publication-ethics li {
    font-size: 13px;
  }
}

/* === Author Fees Page - JIEB === */
.ekbis-author-fees {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul */
.ekbis-author-fees h2 {
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 3px solid #F28C28; /* oranye tema */
  color: #5B2A86; /* biru aksen */
  font-size: 22px;
}

/* Paragraf */
.ekbis-author-fees p {
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 14px;
  text-align: justify;
}

/* Kotak biaya */
.fee-box {
  margin: 16px auto 20px auto;
  padding: 14px 20px;
  max-width: 280px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #F28C28, #FFB45B);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-author-fees h2 {
    font-size: 20px;
  }

  .ekbis-author-fees p {
    font-size: 13px;
  }

  .fee-box {
    font-size: 22px;
    max-width: 220px;
  }
}

/* === Indexing Page - JIEB === */
.ekbis-indexing {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

/* Judul */
.ekbis-indexing h2 {
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 3px solid #F28C28; /* oranye tema */
  color: #5B2A86; /* biru aksen */
  font-size: 22px;
}

/* Grid */
.indexing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

/* Item */
.index-item {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover */
.index-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0,0,0,0.25);
}

/* Logo */
.index-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

/* Responsive */
@media (max-width: 576px) {
  .indexing-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
  }

  .index-item img {
    max-height: 60px;
  }
}

/* === Author Guidelines Page - JIEB === */
.ekbis-author-guidelines {
  max-width: 1000px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  line-height: 1.7;
}

/* Judul utama */
.ekbis-author-guidelines h2 {
  margin-top: 24px;
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 3px solid #F28C28; /* oranye tema */
  color: #5B2A86; /* biru aksen */
  font-size: 22px;
}

/* Subjudul */
.ekbis-author-guidelines h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #F28C28;
  font-size: 17px;
}

/* Paragraf */
.ekbis-author-guidelines p {
  margin-bottom: 12px;
  font-size: 14px;
  text-align: justify;
}

/* List */
.ekbis-author-guidelines ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.ekbis-author-guidelines li {
  margin-bottom: 6px;
  font-size: 14px;
}

/* Garis pemisah */
.ekbis-author-guidelines hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Code-like block (contoh format) */
.ekbis-author-guidelines p em {
  color: #444;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-author-guidelines h2 {
    font-size: 20px;
  }

  .ekbis-author-guidelines h3 {
    font-size: 16px;
  }

  .ekbis-author-guidelines p,
  .ekbis-author-guidelines li {
    font-size: 13px;
  }
}

/* === JIEB Template Download Block === */
.ekbis-template-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-template-title {
  background: #F28C28; /* oranye tema */
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #5B2A86; /* aksen biru */
}

/* Link container */
.ekbis-template-image-link {
  display: block;
  text-align: center;
  padding: 12px;
  margin: 10px;
  background: #FFFFFF;
  border-radius: 6px;
  text-decoration: none !important;
  color: #333 !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

/* Hover effect */
.ekbis-template-image-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #FFF4E6; /* oranye muda */
  color: #D96F16 !important;
}

/* Image */
.ekbis-template-image-link img {
  display: block;
  margin: 0 auto 8px auto;
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;

  /* Shadow biar kelihatan kontras */
  /* filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5)); */
}

/* Text under image */
.ekbis-template-image-link {
  font-size: 13px;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-template-image-link img {
    max-height: 100px;
  }
}


/* === Indexed By Block - JIEB === */
.ekbis-indexedby-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-indexedby-title {
  background: #F28C28; /* oranye tema */
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #5B2A86; /* aksen biru */
}

/* Grid */
.ekbis-indexedby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom di sidebar */
  gap: 10px;
  padding: 10px;
}

/* Item */
.ekbis-indexedby-item {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover */
.ekbis-indexedby-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #FFF4E6;
}

/* Logo */
.ekbis-indexedby-item img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); */
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-indexedby-grid {
    grid-template-columns: repeat(3, 1fr); /* di HP bisa 3 kolom */
  }

  .ekbis-indexedby-item img {
    max-height: 45px;
  }
}

/* === Supported By Block - Ekbis (Style sama dengan JPP) === */
.ekbis-supportedby-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-supportedby-title {
  background: #F28C28; /* oranye Ekbis */
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #5B2A86; /* aksen biru */
}

/* Content */
.ekbis-supportedby-content {
  background: #FFFFFF;
  border-radius: 6px;
  margin: 10px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
}

/* Hover effect (samakan dengan JPP) */
.ekbis-supportedby-content:hover {
  transform: translateY(-2px);
  background: #FFF4E6; /* oranye muda */
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Logo */
.ekbis-supportedby-content img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 6px;
  /* filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4)); */
}

/* Text */
.ekbis-supportedby-text {
  font-size: 13px;
  font-weight: 700;
  color: #5B2A86; /* biru Ekbis */
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-supportedby-content img {
    max-height: 70px;
  }
}



/* === Tools Block - JIEB === */
.ekbis-tools-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-tools-title {
  background: #F28C28; /* oranye tema */
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #5B2A86; /* aksen biru */
}

/* List (atas-bawah) */
.ekbis-tools-list {
  display: grid;
  grid-template-columns: 1fr; /* satu kolom */
  gap: 10px;
  padding: 10px;
}

/* Item */
.ekbis-tool-item {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
  text-decoration: none !important;
  color: #333 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover */
.ekbis-tool-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #FFF4E6; /* oranye muda */
}

/* Logo */
.ekbis-tool-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  margin-bottom: 6px;
  /* filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)); */
}

/* Text */
.ekbis-tool-item span {
  font-size: 12px;
  font-weight: 700;
  color: #5B2A86;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-tool-item img {
    max-height: 50px;
  }
}

/* === Visitor Block - JIEB === */
.ekbis-visitor-block {
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  margin-bottom: 12px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.ekbis-visitor-title {
  background: #F28C28; /* oranye tema */
  color: #FFFFFF;
  text-align: center;
  font-weight: 700;
  padding: 12px 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #5B2A86; /* aksen biru */
}

/* List: atas-bawah biar besar */
.ekbis-visitor-list {
  display: grid;
  grid-template-columns: 1fr; /* 1 kolom */
  gap: 10px;
  padding: 10px;
}

/* Item */
.ekbis-visitor-item {
  background: #FFFFFF;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  transition: all 0.25s ease;
  text-decoration: none !important;
  color: #333 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hover */
.ekbis-visitor-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  background: #FFF4E6; /* oranye muda */
}

/* Image */
.ekbis-visitor-item img {
  display: block;
  margin: 0 auto 6px auto;
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
  /* Shadow biar teks di gambar kelihatan */
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
}

/* Label */
.ekbis-visitor-item span {
  font-size: 12px;
  font-weight: 700;
  color: #5B2A86;
}

/* Responsive */
@media (max-width: 576px) {
  .ekbis-visitor-item img {
    max-height: 80px;
  }
}

/* === Archive Page - JIEB === */
.ekbis-archive-page {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
}

.ekbis-archive-page h2 {
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 3px solid #F28C28; /* oranye tema */
  color: #5B2A86; /* biru aksen */
  font-size: 22px;
}

.ekbis-archive-page p {
  line-height: 1.6;
  margin-bottom: 14px;
  font-size: 14px;
  text-align: justify;
}

.ekbis-archive-page .archive-link {
  text-align: center;
  margin: 20px 0;
}

.ekbis-archive-page .archive-link a {
  display: inline-block;
  background: #F28C28;
  color: #FFFFFF !important;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
}

.ekbis-archive-page .archive-link a:hover {
  background: #F28C28;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}


/* Responsive Logo */
/* Default (desktop) */
.pkp_site_name .is_img img {
  max-width: 100%;
  height: auto;
  max-height: 120px;
  width: auto;
}

/* Logo di tablet */
@media (max-width: 992px) {
  .pkp_site_name .is_img img {
    max-height: 100px;
  }
}

/* Logo di HP */
@media (max-width: 576px) {
  .pkp_site_name .is_img img {
    max-height: 30px;
  }
}