/* =========================
   BRAND TOKENS
========================= */
:root {
    --elkuator-blue: #001c5f;
    --elkuator-blue-soft: #12307a;
    --elkuator-red: #cb3c3c;
    --elkuator-red-soft: #e15a5a;
    --elkuator-bg: #f5f7fb;
    --elkuator-text: #1f2937;
    --elkuator-muted: #6b7280;
    --elkuator-line: #e5e7eb;
    --elkuator-white: #ffffff;
}

/* =========================
   GLOBAL RESET
========================= */
html,
body {
    margin: 0;
    padding: 0;
    background: #f5f7fb;
}

body.pkp_page_index,
body.pkp_page_search,
body.pkp_page_login,
body.pkp_page_user,
.elkuator-homepage,
.elkuator-journal-section {
    background: #f5f7fb;
}

.pkp_structure_page,
.pkp_structure_content,
.pkp_structure_main {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

.pkp_structure_content,
.pkp_structure_main {
    float: none !important;
}

.pkp_structure_sidebar,
.pkp_site_nav_menu,
.pkp_navigation_primary_row,
.pkp_navigation_user_wrapper,
.pkp_site_name_wrapper,
.pkp_site_nav_toggle,
.page_index_site .cmp_journals,
.page_index_site .homepage_image,
.page_index_site .additional_content,
.pkp_structure_footer_wrapper,
.pkp_structure_footer {
    display: none !important;
}

.page_index_site .pkp_structure_content,
.page_index_site .pkp_structure_main,
.page_index_site .pkp_structure_page {
    border: none !important;
    box-shadow: none !important;
    background: #f5f7fb !important;
}

.page_index_site .pkp_structure_main::before,
.page_index_site .pkp_structure_main::after,
.page_index_site .pkp_structure_content::before,
.page_index_site .pkp_structure_content::after,
.page_index_site .pkp_structure_page::before,
.page_index_site .pkp_structure_page::after,
::before,
::after {
    display: none;
}

/* =========================
   HEADER
========================= */
.pkp_structure_head {
    background: #ffffff !important;
    border-bottom: 1px solid #e7ebf3;
}

.elkuator-header {
    background: #ffffff;
}

.elkuator-container,
.elkuator-section-container,
.elkuator-footer-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

/* =========================
   BRAND
========================= */
.elkuator-container {
    padding-top: 18px;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.elkuator-brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.elkuator-logo {
    max-height: 58px;
    width: auto;
    display: block;
}

.elkuator-title-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--elkuator-blue);
}

/* =========================
   NAV
========================= */

.elkuator-nav > a,
.elkuator-dropdown-toggle {
    text-decoration: none;
    color: #001c5f;
    font-size: 15px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.elkuator-nav > a:hover,
.elkuator-dropdown-toggle:hover {
    color: var(--elkuator-blue);
}

/* =========================
   DROPDOWN
========================= */
.elkuator-dropdown {
    position: relative;
}

.elkuator-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.elkuator-caret {
    font-size: 11px;
}

.elkuator-dropdown-menu {
    display: none;
    position: absolute;
    top: 36px;
    left: 0;
    min-width: 320px;
    max-height: 420px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 28, 95, 0.12);
    padding: 8px 0;
    list-style: none;
    margin: 0;
    z-index: 9999;
}

.elkuator-dropdown-menu li {
    margin: 0;
    padding: 0;
}

.elkuator-dropdown-menu li a {
    display: block;
    padding: 11px 16px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
    white-space: normal;
    transition: all 0.15s ease;
}

.elkuator-dropdown-menu li a:hover {
    background: rgba(0, 28, 95, 0.05);
    color: var(--elkuator-blue);
}

.elkuator-dropdown.is-open .elkuator-dropdown-menu {
    display: block;
}

/* =========================
   HERO
========================= */
.elkuator-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.80), rgba(0, 28, 95, 0.18)),
        url("https://ejournal.uin-suka.ac.id/assets/images/lines.jpg") center center / cover no-repeat;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 28, 95, 0.06);
}

.elkuator-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(0, 28, 95, 0.10)),
        radial-gradient(circle at top right, rgba(203, 60, 60, 0.12), transparent 32%);
    pointer-events: none;
}

.elkuator-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 44px 24px 52px;
    text-align: center;
}

.elkuator-hero-title {
    margin: 0 0 28px;
    color: var(--elkuator-blue);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.elkuator-hero-search {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}

.elkuator-hero-search input {
    width: 100%;
    height: 58px;
    border: 1px solid #d8dfeb;
    border-radius: 14px;
    padding: 0 64px 0 20px;
    font-size: 16px;
    color: #334155;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 28, 95, 0.06);
}

.elkuator-hero-search input:focus {
    outline: none;
    border-color: var(--elkuator-blue-soft);
    box-shadow: 0 0 0 4px rgba(0, 28, 95, 0.10);
}

.elkuator-hero-search button {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--elkuator-red);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
}

/* =========================
   JOURNAL SECTION
========================= */
.elkuator-journal-section {
    padding: 28px 0 64px;
}

.elkuator-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    border-bottom: 1px solid #e4e9f2;
    padding-bottom: 14px;
    margin-bottom: 18px;
}

.elkuator-tab-btn {
    background: none;
    border: none;
    color: #4b5563;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.elkuator-tab-btn:hover,
.elkuator-tab-btn.is-active {
    color: var(--elkuator-blue);
    border-bottom-color: var(--elkuator-red);
}

.elkuator-toolbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.elkuator-count-wrap {
    font-size: 14px;
    color: var(--elkuator-muted);
}

.elkuator-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 6px;
    background: rgba(203, 60, 60, 0.08);
    color: var(--elkuator-red);
    border: 1px solid rgba(203, 60, 60, 0.25);
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 700;
    font-size: 13px;
}

.elkuator-toolbar-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.elkuator-toolbar-item {
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
}

.elkuator-toolbar-item label {
    font-weight: 500;
}

.elkuator-toolbar-item select {
    min-width: 220px;
    height: 40px;
    border: 1px solid #d8dfeb;
    border-radius: 8px;
    padding: 0 12px;
    background: #fff;
    color: #374151;
}

/* =========================
   JOURNAL GRID
========================= */
.elkuator-journal-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.elkuator-journal-card {
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 28, 95, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.elkuator-journal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 28, 95, 0.10);
}

.elkuator-journal-card-link {
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    height: 100%;
}

.elkuator-journal-thumb {
    position: relative;
    background: #ffffff;
    padding: 14px 14px 30px;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 230px;
}

.elkuator-journal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.elkuator-journal-thumb-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 28, 95, 0.10), rgba(203, 60, 60, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.elkuator-journal-thumb-placeholder span {
    font-size: 42px;
    font-weight: 700;
    color: var(--elkuator-blue);
    text-transform: uppercase;
}

.elkuator-card-badges {
    position: absolute;
    left: 50%;
    bottom: 6px;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: calc(100% - 20px);
}

.elkuator-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.elkuator-badge-indexer {
    background: rgba(0, 28, 95, 0.08);
    color: var(--elkuator-blue);
    border: 1px solid rgba(0, 28, 95, 0.20);
}

.elkuator-badge-sinta {
    background: rgba(203, 60, 60, 0.08);
    color: var(--elkuator-red);
    border: 1px solid rgba(203, 60, 60, 0.25);
}

.elkuator-journal-body {
    padding: 0 14px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.elkuator-journal-title {
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #111827;
    font-weight: 700;
    min-height: 58px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.elkuator-journal-desc {
    margin: 0;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.6;
    min-height: 78px;
    flex: 1 1 auto;
}

.elkuator-empty-state {
    text-align: center;
    background: #ffffff;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    padding: 40px 20px;
    color: #6b7280;
}

/* =========================
   CUSTOM FOOTER
========================= */
.elkuator-footer-wrapper {
    background: #333;
    margin-top: 56px;
}

.elkuator-footer {
    background: transparent;
    color: #ffffff;
    padding: 52px 0 20px;
}

.elkuator-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 173px;
    align-items: start;
}

.elkuator-footer-brand {
    margin-bottom: 16px;
}

.elkuator-footer-logo {
    max-width: 230px;
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.elkuator-footer-heading {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #ffffff;
}

.elkuator-footer-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.75;
    max-width: 300px;
}

.elkuator-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.75;
}

.elkuator-footer-icon {
    font-size: 14px;
    line-height: 1.7;
    flex: 0 0 auto;
}

.elkuator-footer-item a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.elkuator-footer-item a:hover {
    color: #ffd5d5;
}

.elkuator-footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.elkuator-footer-copy {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

/* =========================
   AUTH + SEARCH PAGES
   Search / Login / Register
========================= */
body.pkp_page_search .pkp_structure_main,
body.pkp_page_login .pkp_structure_main,
body.pkp_page_user .pkp_structure_main {
    max-width: 1100px !important;
    margin: 36px auto 64px !important;
    padding: 0 24px !important;
    box-sizing: border-box;
}

body.pkp_page_search .pkp_structure_main > *:not(#pkp_content_main),
body.pkp_page_login .pkp_structure_main > *:not(#pkp_content_main),
body.pkp_page_user .pkp_structure_main > *:not(#pkp_content_main) {
    background: #ffffff;
    border: 1px solid #e6ebf3;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 28, 95, 0.05);
    padding: 28px;
    margin-bottom: 20px;
}

body.pkp_page_search h1,
body.pkp_page_login h1,
body.pkp_page_user h1 {
    color: #001c5f;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 18px;
}

body.pkp_page_search .cmp_breadcrumbs,
body.pkp_page_login .cmp_breadcrumbs,
body.pkp_page_user .cmp_breadcrumbs {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-bottom: 14px !important;
}

body.pkp_page_search label,
body.pkp_page_login label,
body.pkp_page_user label {
    display: block;
    font-weight: 600;
    color: #334155;
    margin-bottom: 8px;
}

body.pkp_page_search input[type="text"],
body.pkp_page_search input[type="search"],
body.pkp_page_search input[type="email"],
body.pkp_page_search input[type="password"],
body.pkp_page_search select,
body.pkp_page_search textarea,
body.pkp_page_login input[type="text"],
body.pkp_page_login input[type="email"],
body.pkp_page_login input[type="password"],
body.pkp_page_login select,
body.pkp_page_login textarea,
body.pkp_page_user input[type="text"],
body.pkp_page_user input[type="email"],
body.pkp_page_user input[type="password"],
body.pkp_page_user select,
body.pkp_page_user textarea {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    border: 1px solid #d6deea;
    border-radius: 12px;
    background: #ffffff;
    color: #1f2937;
    padding: 0 14px;
    box-sizing: border-box;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.pkp_page_search textarea,
body.pkp_page_login textarea,
body.pkp_page_user textarea {
    min-height: 120px;
    padding-top: 12px;
    padding-bottom: 12px;
}

body.pkp_page_search input:focus,
body.pkp_page_search select:focus,
body.pkp_page_search textarea:focus,
body.pkp_page_login input:focus,
body.pkp_page_login select:focus,
body.pkp_page_login textarea:focus,
body.pkp_page_user input:focus,
body.pkp_page_user select:focus,
body.pkp_page_user textarea:focus {
    outline: none;
    border-color: #001c5f;
    box-shadow: 0 0 0 4px rgba(0, 28, 95, 0.08);
}

body.pkp_page_search .cmp_form button,
body.pkp_page_search input[type="submit"],
body.pkp_page_login .cmp_form button,
body.pkp_page_login input[type="submit"],
body.pkp_page_user .cmp_form button,
body.pkp_page_user input[type="submit"] {
    background: #001c5f;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    min-height: 46px;
    padding: 0 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

body.pkp_page_search .pkp_form_error,
body.pkp_page_login .pkp_form_error,
body.pkp_page_user .pkp_form_error,
body.pkp_page_search .cmp_notification,
body.pkp_page_login .cmp_notification,
body.pkp_page_user .cmp_notification {
    border-radius: 12px;
    padding: 14px 16px;
}

body.pkp_page_search fieldset {
    border: 1px solid #e6ebf3;
    border-radius: 14px;
    padding: 22px 20px !important;
    margin-top: 18px;
}

body.pkp_page_search legend {
    color: #001c5f;
    font-weight: 700;
    padding: 0 8px;
}

body.pkp_page_search .cmp_notification,
body.pkp_page_search .search_results,
body.pkp_page_search .obj_issue_summary,
body.pkp_page_search .obj_article_summary {
    border-radius: 14px;
}

body.pkp_page_login .pkp_structure_main > *:not(#pkp_content_main) {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

body.pkp_page_user.pkp_op_register .pkp_structure_main > *:not(#pkp_content_main) {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

body.pkp_page_search .pkp_structure_main > *:not(#pkp_content_main) {
    max-width: 100%;
}

body.pkp_page_login input[type="checkbox"],
body.pkp_page_user input[type="checkbox"],
body.pkp_page_search input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: auto;
    margin-right: 8px;
}

.g-recaptcha,
.recaptcha,
div[class*="recaptcha"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 100%;
}

/* =========================
   SEARCH PAGE FIX
========================= */
body.pkp_page_search .search_filters,
body.pkp_page_search .cmp_form .fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
    align-items: start;
}

body.pkp_page_search .search_filters .field,
body.pkp_page_search .cmp_form .field {
    width: 100%;
}

body.pkp_page_search button,
body.pkp_page_search .cmp_form button,
body.pkp_page_search input[type="submit"] {
    min-width: 120px;
    padding: 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.page_search .submit button:after {
    background: transparent;
    margin-left: 10px;
    margin-top: 8px;
}

body.pkp_page_search button .fa,
body.pkp_page_search .cmp_form button .fa {
    margin: 0;
    font-size: 14px;
}

/* =========================
   REGISTER + LOGIN ACTION LINKS
========================= */
body.pkp_page_login .pkp_structure_main a[href*="register"],
body.pkp_page_user.pkp_op_register .pkp_structure_main a[href*="login"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 12px;
    border: 1px solid #001c5f;
    color: #001c5f !important;
    background: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

body.pkp_page_login .pkp_structure_main a[href*="register"]:hover,
body.pkp_page_user.pkp_op_register .pkp_structure_main a[href*="login"]:hover {
    background: #001c5f;
    color: #ffffff !important;
}

body.pkp_page_login .pkp_structure_main form .buttons,
body.pkp_page_user.pkp_op_register .pkp_structure_main form .buttons,
body.pkp_page_login .pkp_structure_main .cmp_form .buttons,
body.pkp_page_user.pkp_op_register .pkp_structure_main .cmp_form .buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .elkuator-journal-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .elkuator-journal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .elkuator-hero-title {
        font-size: 40px;
    }

    .elkuator-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .elkuator-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .elkuator-nav {
        flex-wrap: wrap;
        gap: 16px;
    }

    .elkuator-logo {
        max-height: 48px;
    }

    .elkuator-dropdown-menu {
        min-width: 260px;
    }

    .elkuator-hero {
        min-height: 220px;
    }

    .elkuator-hero-inner {
        padding: 36px 20px 42px;
    }

    .elkuator-hero-title {
        font-size: 30px;
        margin-bottom: 22px;
    }

    .elkuator-hero-search input {
        height: 52px;
        font-size: 15px;
    }

    .elkuator-filter-tabs {
        gap: 16px;
    }

    .elkuator-journal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .elkuator-footer-logo {
        max-width: 190px;
    }

    body.pkp_page_search .pkp_structure_main,
    body.pkp_page_login .pkp_structure_main,
    body.pkp_page_user .pkp_structure_main {
        margin: 24px auto 48px !important;
        padding: 0 16px !important;
    }

    body.pkp_page_search .pkp_structure_main > *:not(#pkp_content_main),
    body.pkp_page_login .pkp_structure_main > *:not(#pkp_content_main),
    body.pkp_page_user .pkp_structure_main > *:not(#pkp_content_main) {
        padding: 20px;
        border-radius: 14px;
    }

    body.pkp_page_search h1,
    body.pkp_page_login h1,
    body.pkp_page_user h1 {
        font-size: 32px;
    }

    body.pkp_page_search .search_filters,
    body.pkp_page_search .cmp_form .fields {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .elkuator-journal-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* =========================
   SCROLLBAR
========================= */
.elkuator-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.elkuator-dropdown-menu::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 6px;
}

.elkuator-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* =========================
   HEADER NAV SPACING TUNING
========================= */
.elkuator-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.elkuator-brand {
    flex: 0 0 auto;
}

.elkuator-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 12px;
    margin-left: auto;
}

.elkuator-nav > a,
.elkuator-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 2px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.elkuator-dropdown {
    display: inline-flex;
    align-items: center;
}

.elkuator-dropdown-toggle {
    gap: 6px;
}

.elkuator-caret {
    font-size: 10px;
    position: relative;
    top: -1px;
}

/* sedikit rapikan di layar sedang */
@media (max-width: 1200px) {
    .elkuator-nav {
        gap: 20px;
    }

    .elkuator-nav > a,
    .elkuator-dropdown-toggle {
        font-size: 13px;
    }
}

/* tablet */
@media (max-width: 992px) {
    .elkuator-container {
        gap: 20px;
    }

    .elkuator-nav {
        gap: 16px;
        row-gap: 10px;
    }

    .elkuator-nav > a,
    .elkuator-dropdown-toggle {
        height: 38px;
        font-size: 13px;
    }
}

/* mobile */
@media (max-width: 768px) {
    .elkuator-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .elkuator-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 14px 16px;
        margin-left: 0;
    }
}