@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #0f1726;
    --bg-soft: #172132;
    --panel: #1a2437;
    --panel-soft: #202c41;
    --panel-strong: #111827;
    --ink: #f4f7fb;
    --muted: #9aa8bb;
    --line: rgba(255, 255, 255, 0.08);
    --brand: #cf1d26;
    --brand-dark: #9f131a;
    --accent: #f0b24d;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --site-width: calc(100vw - 28px);
    --content-width: min(1380px, calc(100vw - 104px));
    --shadow-soft: 0 14px 28px rgba(0, 0, 0, 0.24);
    --shadow-card: 0 24px 52px rgba(0, 0, 0, 0.28);
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(17, 79, 122, 0.15), transparent 22%),
        radial-gradient(circle at 84% 12%, rgba(162, 193, 221, 0.05), transparent 16%),
        radial-gradient(circle at 52% 88%, rgba(19, 52, 86, 0.10), transparent 24%),
        linear-gradient(135deg, #07111b 0%, #0a1d31 38%, #0d1725 72%, #0a121d 100%);
    color: var(--ink);
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    line-height: 1.72;
    overflow-x: clip;
}

a {
    color: #fff;
    transition: color 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

a:hover,
a:focus {
    color: #fff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page h1,
.page h2,
.azhent_title,
.current_issue_title,
.obj_article_summary .title,
.obj_issue_summary .title,
.azhent_section_head h2 {
    margin: 0;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

.pkp_structure_head {
    position: sticky;
    top: 0;
    z-index: 30;
    background:
        radial-gradient(circle at top center, rgba(255,255,255,0.08), transparent 22%),
        linear-gradient(180deg, #0c111a 0%, #111827 55%, #152033 100%);
    border-bottom: 0;
    box-shadow: none;
}

.pkp_head_wrapper,
.pkp_footer_content,
.azhent_topbar_inner {
    width: var(--site-width);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.pkp_structure_content {
    width: var(--content-width);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
}

.azhent_topbar {
    border-bottom: 0;
    background: transparent;
}

.azhent_topbar_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 40px;
    white-space: nowrap;
}

.azhent_topbar_left,
.azhent_topbar_right,
.azhent_locale_switcher,
.azhent_navigation_user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.azhent_topbar_left {
    justify-content: flex-start;
    flex-wrap: nowrap;
    min-width: 0;
}

.azhent_topbar_right {
    justify-content: flex-end;
    flex-wrap: nowrap;
    min-width: 0;
    padding-top: 4px;
}

.azhent_social,
.azhent_toplink,
.azhent_navigation_user > li > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 8px;
    color: rgba(255,255,255,0.92) !important;
    font-size: 0.84rem;
    font-weight: 600;
}

.azhent_social {
    width: 28px;
    padding: 0;
}

.azhent_topbar_text {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 4px;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.azhent_topbar_text:hover,
.azhent_topbar_text:focus {
    color: #fff;
}

.azhent_toplink:hover,
.azhent_toplink:focus,
.azhent_social:hover,
.azhent_social:focus,
.azhent_navigation_user > li > a:hover,
.azhent_navigation_user > li > a:focus {
    background: rgba(255,255,255,0.08);
    color: #fff !important;
}

.azhent_locale_switcher .is_current {
    background: rgba(255,255,255,0.08);
}

.azhent_search_form {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 6px;
    flex: 0 0 auto;
}

.azhent_search_form input {
    width: 190px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.azhent_search_form input::placeholder {
    color: rgba(255,255,255,0.56);
}

.azhent_search_form button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 8px;
    background: var(--brand);
    color: #fff;
}

.azhent_search_form button:hover,
.azhent_search_form button:focus {
    background: var(--brand-dark);
}

.azhent_locale_select {
    height: 30px;
    padding: 0 28px 0 10px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-size: 0.84rem;
    font-weight: 600;
}

.azhent_locale_select option {
    color: #111827;
}

.azhent_navigation_user > li > a,
.azhent_toplink {
    border: 1px solid rgba(255,255,255,0.08);
}

.azhent_navigation_user > li > a:hover,
.azhent_navigation_user > li > a:focus,
.azhent_toplink:hover,
.azhent_toplink:focus {
    border-color: rgba(255,255,255,0.14);
}

.pkp_head_wrapper {
    padding: 32px 0 14px;
}

.pkp_site_name_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 0 4px 14px;
    border-bottom: 0;
}

.pkp_site_name {
    display: flex;
    align-items: center;
    min-height: 84px;
}

.pkp_site_name_wrapper .is_img img {
    max-height: 92px;
    width: auto;
}

.pkp_navigation_user_wrapper {
    display: none;
}

.pkp_site_nav_menu {
    padding-top: 18px;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.pkp_navigation_primary_wrapper {
    display: flex;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.pkp_navigation_primary {
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    backdrop-filter: none;
}

.pkp_navigation_primary_row {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.pkp_site_nav_menu::before,
.pkp_site_nav_menu::after,
.pkp_navigation_primary_row::before,
.pkp_navigation_primary_row::after,
.pkp_navigation_primary_wrapper::before,
.pkp_navigation_primary_wrapper::after {
    display: none !important;
    content: none !important;
}

.pkp_navigation_primary > li {
    margin: 0;
    position: relative;
    list-style: none;
}

.pkp_navigation_primary > li + li::before {
    display: none;
}

.pkp_navigation_primary > li > a {
    min-width: 156px;
    padding: 13px 24px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
    color: rgba(255,255,255,0.92) !important;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.012em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    text-transform: none;
    clip-path: none;
}

.pkp_navigation_primary > li > a:hover,
.pkp_navigation_primary > li > a:focus,
.pkp_navigation_primary > li.current > a {
    transform: translateY(-1px);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    color: #fff !important;
    border-color: rgba(255,255,255,0.14);
}

.pkp_navigation_primary > li.current > a {
    background: linear-gradient(135deg, #d62828, #b11217);
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
    border-color: rgba(214, 40, 40, 0.38);
    box-shadow: 0 10px 24px rgba(177, 18, 23, 0.28);
}

body.pkp_page_index.pkp_op_index .pkp_navigation_primary > li:nth-child(1) > a,
body.pkp_page_issue.pkp_op_view .pkp_navigation_primary > li:nth-child(2) > a,
body.pkp_page_issue.pkp_op_archive .pkp_navigation_primary > li:nth-child(3) > a,
body.pkp_page_about .pkp_navigation_primary > li:nth-child(4) > a {
    background: linear-gradient(135deg, #d62828, #b11217);
    color: #fff !important;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
    border-color: rgba(214, 40, 40, 0.38);
    box-shadow: 0 10px 24px rgba(177, 18, 23, 0.28);
}

.pkp_navigation_primary > li > ul {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--panel-strong);
}

.pkp_navigation_primary > li > ul a {
    color: #fff !important;
}

.pkp_search {
    display: none;
}

.pkp_structure_content {
    padding: 0 0 54px;
    border: 0;
    box-shadow: none;
}

.pkp_structure_content.has_sidebar {
    display: block !important;
    width: 100%;
    max-width: none;
}

.pkp_structure_main {
    width: 100%;
    max-width: none;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.pkp_structure_page,
.page_index_journal,
.azhent_home,
.azhent_home_grid,
.azhent_home_main {
    border: 0;
    box-shadow: none;
}

.pkp_structure_page {
    width: 100%;
    max-width: none !important;
    margin: 0;
    overflow-x: clip;
}

.pkp_structure_content::before,
.pkp_structure_content::after,
.pkp_structure_content.has_sidebar::before,
.pkp_structure_content.has_sidebar::after,
.pkp_structure_main::before,
.pkp_structure_main::after,
.pkp_structure_sidebar::before,
.pkp_structure_sidebar::after {
    display: none !important;
    content: none !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

.pkp_structure_sidebar {
    background: transparent;
    padding: 0;
}

.pkp_structure_content.has_sidebar .pkp_structure_main {
    width: 100% !important;
    max-width: none !important;
    float: none !important;
    margin: 0 auto !important;
}

.pkp_structure_content.has_sidebar .pkp_structure_sidebar {
    display: none !important;
}

.pkp_block {
    margin-bottom: 16px;
    padding: 18px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.pkp_block .title,
.pkp_block h2,
.pkp_block h3 {
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.azhent_home {
    display: grid;
    gap: 24px;
}

.azhent_hero_panel,
.azhent_issue_shell,
.azhent_extra_content,
.azhent_side_card,
.cmp_announcements {
    background: linear-gradient(180deg, rgba(31, 43, 64, 0.96), rgba(24, 34, 51, 0.96));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
}

.azhent_hero_panel {
    position: relative;
    overflow: hidden;
    padding: 24px 32px 18px;
    background: transparent;
    border: 0;
    box-shadow: none;
    isolation: isolate;
    margin-top: 0;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
}

.azhent_hero_panel::before {
    content: "";
    position: absolute;
    top: -40px;
    bottom: -40px;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%) scale(1.06);
    background:
        radial-gradient(circle at 14% 18%, rgba(17, 79, 122, 0.15), transparent 22%),
        radial-gradient(circle at 84% 12%, rgba(162, 193, 221, 0.05), transparent 16%),
        radial-gradient(circle at 52% 88%, rgba(19, 52, 86, 0.10), transparent 24%),
        linear-gradient(135deg, #07111b 0%, #0a1d31 38%, #0d1725 72%, #0a121d 100%);
    filter: blur(18px) saturate(1.02) brightness(0.92);
    pointer-events: none;
    z-index: 0;
}

.azhent_hero_panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 8, 14, 0.10), rgba(4, 8, 14, 0.18));
    pointer-events: none;
    z-index: 0;
}

.azhent_hero_backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 14, 22, 0.24), rgba(9, 14, 22, 0.14));
    pointer-events: none;
    z-index: 0;
}

.azhent_hero_content,
.azhent_metric_bar {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    margin-left: auto;
    margin-right: auto;
}

.azhent_hero_content {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: stretch;
}

.azhent_hero_cover img {
    display: block;
    width: 320px;
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(0,0,0,0.35);
    margin: 0 auto;
}

.azhent_kicker {
    margin-top: 8px !important;
    margin-bottom: 2px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.azhent_hero_main .azhent_kicker,
.azhent_hero_main h3.azhent_kicker {
    margin-top: 0 !important;
}

.azhent_title,
.page_index_journal .azhent_hero_main .azhent_title,
.page_index_journal .azhent_hero_main h1.azhent_title {
    max-width: none;
    font-family: 'Manrope', sans-serif !important;
    font-size: clamp(2.6rem, 4.5vw, 3.2rem) !important;
    font-weight: 800 !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 8px !important;
}

.page_index_journal .azhent_hero_main .azhent_kicker,
.page_index_journal .azhent_hero_main div.azhent_kicker {
    margin-top: 25px !important;
    margin-bottom: 0 !important;
}

.azhent_hero_description {
    max-width: 70ch;
    margin: 18px auto 0;
    padding: 18px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    color: var(--muted);
    font-size: 1.02rem;
    text-align: center;
}

.azhent_hero_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 14px;
}

.azhent_hero_main {
    text-align: center;
}

.azhent_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0,0,0,0.18);
}

.azhent_button_primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff !important;
}

.azhent_button_secondary {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
}

.azhent_metric_bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-top: 18px;
    padding-top: 0;
    border-top: 0;
}

.azhent_metric {
    min-width: 180px;
    padding: 14px 24px;
    background: transparent;
    border: 0;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;
    box-shadow: none;
}

.azhent_metric:last-child {
    border-right: 0;
}

.azhent_metric_value {
    color: #fff;
    font-size: 1.55rem;
    font-weight: 800;
    text-align: center;
}

.azhent_metric_label {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.azhent_home_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) 355px;
    gap: 30px;
    align-items: start;
    width: min(100%, 1245px);
    margin: 0 auto;
}

.azhent_page_grid {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) 355px;
    gap: 30px;
    align-items: start;
    width: min(100%, 1245px);
    margin: 0 auto;
}

.azhent_listing_main {
    display: grid;
    gap: 24px;
}

.azhent_home_side {
    display: grid;
    gap: 18px;
}

.azhent_side_card {
    padding: 20px;
}

.azhent_side_title,
.homepage_announcements h2,
.cmp_announcements h2,
.azhent_section_title,
.galleys h3 {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.azhent_side_links {
    display: grid;
    gap: 10px;
}

.azhent_side_badges {
    display: grid;
    gap: 14px;
}

.azhent_side_badges a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.azhent_side_badges img {
    display: block;
    width: 180px;
    max-width: 100%;
    max-height: 52px;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) grayscale(1);
    opacity: 0.92;
}

.azhent_side_badges a.badge-scielo img {
    width: 250px;
    max-height: 86px;
}

.azhent_side_badges a.badge-latindex img {
    width: 250px;
    max-height: 86px;
}

.azhent_side_links a {
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}

.azhent_side_meta,
.azhent_side_meta a,
.azhent_issue_description,
.azhent_article_card .subtitle,
.azhent_article_card .meta,
.azhent_article_card .authors,
.azhent_article_card .pages,
.page p,
.page li,
.item.abstract,
.item.references {
    color: var(--muted);
}

.azhent_side_meta {
    font-size: 0.92rem;
    line-height: 1.58;
}

.azhent_side_meta strong {
    color: rgba(255,255,255,0.88);
}

.azhent_plain_text {
    font-family: Arial, Helvetica, sans-serif;
    font-variant-ligatures: none;
    font-feature-settings: "liga" 0, "clig" 0, "calt" 0;
}

.azhent_issue_shell {
    padding: 22px;
}

.page_issue .azhent_issue_shell,
.page_issue .azhent_section_block {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.page_issue .azhent_issue_shell {
    padding: 0;
}

.page_issue .azhent_section_block {
    padding: 0;
    border-radius: 0;
}

.azhent_issue_page_shell h1,
.page_issue_archive .azhent_section_head h1 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.1;
}

.azhent_section_head {
    margin-bottom: 18px;
}

.azhent_section_head h2 {
    max-width: none;
    width: 100%;
    font-size: clamp(1.45rem, 2.15vw, 1.95rem);
    line-height: 1.14;
}

.page_issue_archive .azhent_section_head,
.page_issue .azhent_section_head {
    margin-bottom: 16px;
}

.page_issue_archive .azhent_kicker,
.page_issue .azhent_kicker {
    margin-top: 0 !important;
    margin-bottom: 4px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
}

.page_issue_archive .azhent_section_head h1,
.page_issue .azhent_issue_page_shell h1 {
    font-size: clamp(1.75rem, 2.5vw, 2.35rem);
    line-height: 1.08;
}

.azhent_issue_feature {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 0;
    margin-bottom: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

.azhent_issue_media {
    display: flex;
    justify-content: center;
}

.azhent_issue_media .cover {
    width: 100%;
    max-width: 270px;
}

.azhent_issue_media .cover img {
    display: block;
    width: 100%;
    max-width: 270px;
    border-radius: 18px;
    box-shadow: 0 18px 32px rgba(0,0,0,0.28);
}

.azhent_issue_content {
    font-size: 0.97rem;
    align-self: start;
}

.azhent_issue_description {
    font-size: 0.95rem;
    line-height: 1.68;
}

.azhent_slider_card {
    overflow: hidden;
}

.azhent_issue_swiper {
    overflow: hidden;
    padding-bottom: 26px;
}

.azhent_issue_slide {
    display: grid;
    gap: 10px;
    color: #fff !important;
}

.azhent_issue_slide img {
    display: block;
    width: 100%;
    max-width: 92%;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.24);
    aspect-ratio: 0.72 / 1;
    object-fit: cover;
}

.azhent_issue_slide_text {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
}

.azhent_issue_swiper .swiper-pagination {
    bottom: 0 !important;
}

.azhent_issue_swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3);
    opacity: 1;
}

.azhent_issue_swiper .swiper-pagination-bullet-active {
    background: var(--brand);
}

.azhent_archive_card {
    padding-top: 18px;
}

.azhent_archive_list {
    display: grid;
    gap: 8px;
    max-height: 420px;
    overflow: auto;
    padding-right: 4px;
}

.azhent_archive_item {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
}

.azhent_archive_item:hover,
.azhent_archive_item:focus {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.14);
}

.azhent_issue_archive_list {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.azhent_archive_groups {
    display: grid;
    gap: 28px;
}

.azhent_archive_year_group {
    display: grid;
    gap: 18px;
}

.azhent_archive_year_heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.08rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.azhent_archive_year_heading::before,
.azhent_archive_year_heading::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: rgba(255,255,255,0.14);
}

.azhent_archive_year_heading span {
    white-space: nowrap;
}

.azhent_archive_card_item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(26, 37, 56, 0.90), rgba(21, 31, 47, 0.90));
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.azhent_archive_card_item::before,
.azhent_archive_card_item::after {
    content: none !important;
    display: none !important;
}

.azhent_archive_cover {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.azhent_archive_cover .cover,
.azhent_archive_cover img {
    display: block;
    width: 100%;
}

.azhent_archive_cover img {
    max-width: 220px;
    border-radius: 16px;
    box-shadow: 0 18px 32px rgba(0,0,0,0.22);
}

.azhent_archive_body {
    display: grid;
    gap: 12px;
    align-content: start;
    min-width: 0;
}

.azhent_archive_card_item h2 {
    font-size: 1.38rem;
    line-height: 1.22;
}

.azhent_archive_card_item .title {
    color: #fff !important;
}

.azhent_archive_card_item .series {
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
}

.azhent_archive_meta {
    display: grid;
    gap: 6px;
}

.azhent_archive_label {
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.azhent_archive_meta a,
.azhent_archive_body .description {
    color: var(--muted);
}

.azhent_archive_body .description {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.7;
}

.azhent_archive_actions {
    margin-top: 2px;
}

.azhent_issue_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.azhent_meta_item {
    min-width: 220px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
}

.azhent_meta_label {
    display: block;
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.azhent_issue_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.obj_galley_link,
.obj_galley_link.pdf,
.cmp_button,
.button,
.pkp_button,
.current_issue .read_more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff !important;
    font-size: 0.88rem;
    font-weight: 700;
}

.azhent_issue_sections {
    display: grid;
    gap: 18px;
}

.azhent_section_block {
    padding: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}

.cmp_article_list.articles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cmp_article_list.articles > li {
    margin: 0;
}

.azhent_article_card {
    height: auto;
    padding: 16px 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.azhent_article_inner {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    height: auto;
}

.azhent_article_cover img {
    display: block;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.22);
}

.azhent_article_body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.azhent_article_card .title {
    font-size: 1.05rem;
    line-height: 1.34;
}

.azhent_article_card .title a {
    color: #fff !important;
}

.azhent_article_card .authors {
    font-weight: 700;
}

.azhent_article_excerpt {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.64;
}

.azhent_article_doi {
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.azhent_article_doi strong {
    color: rgba(255,255,255,0.82);
    font-weight: 700;
}

.azhent_article_doi a {
    color: #d8e5f5 !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.azhent_article_card .galleys_links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
    padding: 0;
    list-style: none;
}

.azhent_extra_content {
    padding: 24px;
}

.cmp_breadcrumbs {
    margin-bottom: 20px;
}

.page_issue .cmp_breadcrumbs,
.page_issue_archive .cmp_breadcrumbs,
.page_article .cmp_breadcrumbs {
    width: min(100%, 1245px);
    margin: 12px auto 20px;
}

.cmp_breadcrumbs ol {
    padding: 10px 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 999px;
}

.cmp_breadcrumbs a,
.cmp_breadcrumbs li {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.cmp_breadcrumbs .separator,
.cmp_breadcrumbs .current span {
    color: rgba(255,255,255,0.56);
}

.obj_issue_summary,
.obj_article_details .main_entry,
.obj_article_details .entry_details,
input,
select,
textarea {
    background: var(--panel);
    border: 1px solid var(--line);
    color: #fff;
}

.obj_issue_summary,
.obj_article_details .main_entry,
.obj_article_details .entry_details {
    border-radius: var(--radius-lg);
}

.page_issue_archive,
.page_issue,
.page_article {
    display: grid;
    gap: 24px;
}

.page:not(.page_issue_archive):not(.page_issue):not(.page_article):not(.page_index_journal) {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 18px 40px;
}

.page:not(.page_issue_archive):not(.page_issue):not(.page_article):not(.page_index_journal) .cmp_breadcrumbs {
    margin-top: 12px;
}

.page_article {
    width: min(100%, 1180px);
    margin: 0 auto;
}

.page_article .obj_article_details {
    display: grid;
    gap: 22px;
}

.page_article .obj_article_details > .page_title {
    font-family: "Manrope", sans-serif !important;
    max-width: none;
    width: 100%;
    font-size: clamp(1.7rem, 2.2vw, 2.15rem);
    line-height: 1.1;
    margin-bottom: 6px;
}

.page_article .obj_article_details > .subtitle {
    max-width: 60ch;
    margin-top: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.58;
}

.page_article .obj_article_details > .row,
.page_article .obj_article_details .azhent_article_grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 18px;
    align-items: start;
    width: 100%;
}

.page_article .obj_article_details .azhent_article_main,
.page_article .obj_article_details .azhent_article_side,
.page_article .obj_article_details .main_entry,
.page_article .obj_article_details .entry_details {
    padding: 22px;
    background: linear-gradient(180deg, rgba(31,43,64,0.96), rgba(24,34,51,0.96));
}

.page_article .obj_article_details .azhent_article_main,
.page_article .obj_article_details .main_entry {
    display: grid;
    gap: 16px;
    min-height: 100%;
    min-width: 0;
    align-content: start;
    width: auto !important;
    max-width: none !important;
    float: none !important;
    clear: none !important;
    justify-self: stretch;
}

.page_article .obj_article_details .azhent_article_side,
.page_article .obj_article_details .entry_details {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 96px;
    min-width: 0;
    align-self: start;
    width: auto !important;
    max-width: none !important;
    float: none !important;
    clear: none !important;
    justify-self: stretch;
    grid-auto-rows: max-content;
}

.page_article .obj_article_details .azhent_article_main .item,
.page_article .obj_article_details .azhent_article_side .item,
.page_article .obj_article_details .main_entry .item,
.page_article .obj_article_details .entry_details .item {
    margin-bottom: 0;
}

.page_article .obj_article_details .label {
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.page_article .obj_article_details .azhent_article_side .label,
.page_article .obj_article_details .entry_details .label,
.page_article .obj_article_details .azhent_article_side .sub_item .label,
.page_article .obj_article_details .entry_details .sub_item .label {
    color: #ffcb72 !important;
    opacity: 1 !important;
}

.page_article .obj_article_details .azhent_article_side .value,
.page_article .obj_article_details .entry_details .value,
.page_article .obj_article_details .azhent_article_side .value a,
.page_article .obj_article_details .entry_details .value a,
.page_article .obj_article_details .azhent_article_side .title,
.page_article .obj_article_details .entry_details .title {
    color: #f3f7fd !important;
}

.page_article .obj_article_details .azhent_article_side,
.page_article .obj_article_details .entry_details,
.page_article .obj_article_details .azhent_article_side p,
.page_article .obj_article_details .entry_details p,
.page_article .obj_article_details .azhent_article_side strong,
.page_article .obj_article_details .entry_details strong {
    color: #dce7f5;
}

.page_article .obj_article_details .authors {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.page_article .obj_article_details .authors li {
    padding: 12px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    min-height: 0;
    height: auto;
    align-content: start;
}

.page_article .obj_article_details .authors .name {
    display: block;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.page_article .obj_article_details .authors .affiliation,
.page_article .obj_article_details .authors .userGroup,
.page_article .obj_article_details .authors .email,
.page_article .obj_article_details .authors .orcid {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.page_article .obj_article_details .authors .email a,
.page_article .obj_article_details .authors .orcid a {
    color: #dbe8fb !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page_article .obj_article_details .doi {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.page_article .obj_article_details .doi a {
    color: #dbe8fb;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.page_article .obj_article_details .abstract,
.page_article .obj_article_details .references,
.page_article .obj_article_details .author_bios {
    max-width: none;
}

.page_article .obj_article_details .abstract,
.page_article .obj_article_details .references,
.page_article .obj_article_details .author_bios,
.page_article .obj_article_details .keywords {
    color: #dbe5f3;
    line-height: 1.74;
}

.page_article .obj_article_details .how_to_cite .value {
    color: #dbe5f3;
    line-height: 1.72;
}

.page_article .obj_article_details .how_to_cite a {
    color: #f3f7fd !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page_article .obj_article_details .azhent_article_main > .item,
.page_article .obj_article_details .main_entry > .item {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.page_article .obj_article_details .azhent_article_main > .item:last-child,
.page_article .obj_article_details .main_entry > .item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.page_article .obj_article_details .azhent_article_side > .item,
.page_article .obj_article_details .entry_details > .item {
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.page_article .obj_article_details .azhent_article_side > .item:last-child,
.page_article .obj_article_details .entry_details > .item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}


.page_article .obj_article_details .cover_image img {
    display: block;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 18px 30px rgba(0,0,0,0.22);
}

.page_article .obj_article_details .authors li {
    background: rgba(255,255,255,0.03);
}

.page_article .obj_article_details .azhent_article_side .galleys_links .obj_galley_link,
.page_article .obj_article_details .entry_details .galleys_links .obj_galley_link {
    justify-content: flex-start;
}

.page_article .obj_article_details .galleys_links,
.page_article .obj_article_details .supplementary_galleys_links {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page_article .obj_article_details .galleys_links .obj_galley_link,
.page_article .obj_article_details .supplementary_galleys_links .obj_galley_link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border: 0;
    color: #fff !important;
    font-weight: 800;
}

.page_article .obj_article_details .azhent_back_home {
    padding-top: 4px;
}

.azhent_secondary_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.azhent_secondary_button:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.18);
}

.azhent_footer {
    position: relative;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.azhent_footer::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
        linear-gradient(180deg, #09111b 0%, #0c1622 100%);
    z-index: 0;
}

.azhent_footer_content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    width: 100%;
    max-width: none !important;
    margin: 0;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}

.azhent_footer_top {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(210px, 0.82fr) minmax(240px, 0.9fr);
    gap: 28px;
}

.azhent_footer_col {
    display: grid;
    gap: 14px;
    align-content: start;
    min-width: 0;
}

.azhent_footer_mark {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.azhent_footer_copy,
.azhent_footer_license,
.azhent_footer_contact {
    color: rgba(255,255,255,0.76);
    font-size: 0.96rem;
    line-height: 1.72;
    min-width: 0;
    overflow-wrap: anywhere;
}

.azhent_footer_copy {
    font-size: 1.08rem;
    line-height: 1.68;
    color: rgba(255,255,255,0.88);
}

.azhent_footer_license a,
.azhent_footer_contact a {
    color: #d8e5f5 !important;
}

.azhent_footer_cc {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 6px;
}

.azhent_footer_cc img {
    display: block;
    width: 170px;
    max-width: 100%;
    height: auto;
    flex: 0 0 auto;
}

.azhent_footer_cc_text {
    max-width: 34ch;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    line-height: 1.62;
}

.azhent_footer_heading {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.azhent_footer_links {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.azhent_footer_links a {
    color: rgba(255,255,255,0.82) !important;
    font-size: 0.95rem;
    font-weight: 600;
}

.azhent_footer_links a:hover,
.azhent_footer_links a:focus {
    color: #fff !important;
}

.azhent_footer_brand {
    display: grid;
    gap: 12px;
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
}

.azhent_footer_brand_text {
    max-width: 32ch;
    color: rgba(255,255,255,0.74);
    font-size: 0.94rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.azhent_footer_brand img {
    display: block;
    width: 168px;
    max-width: 100%;
    height: auto;
}

.azhent_brand_footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 10px;
}

.azhent_brand_footer img {
    max-height: 86px;
    width: auto;
    opacity: 1;
    filter: brightness(0) invert(1) grayscale(1) contrast(1.15);
}

input,
select,
textarea {
    border-radius: 12px;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.55);
}

.pkp_structure_footer_wrapper {
    margin-top: 28px;
    background: transparent;
    border-top: 0;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.pkp_footer_content {
    width: var(--site-width);
    max-width: none;
    padding: 34px 0 40px;
    color: rgba(255,255,255,0.84);
}

.pkp_footer_content.azhent_footer_content {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
}

.pkp_footer_content a {
    color: #d8e5f5 !important;
}

@media (max-width: 1280px) {
    .azhent_home_grid {
        grid-template-columns: 1fr;
    }

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

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

    .azhent_home_side {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .page_article .obj_article_details > .row,
    .page_article .obj_article_details .azhent_article_grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 1080px) {
    .azhent_hero_content,
    .azhent_issue_feature,
    .cmp_article_list.articles {
        grid-template-columns: 1fr;
    }

    .azhent_title,
    .azhent_section_head h2 {
        max-width: none;
    }

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

    .azhent_footer_content {
        padding-left: 10px;
        padding-right: 10px;
    }

    .pkp_footer_content.azhent_footer_content {
        width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

@media (max-width: 768px) {
    :root {
        --site-width: calc(100vw - 12px);
        --content-width: calc(100vw - 20px);
    }

    body {
        font-size: 17px;
    }

    .azhent_topbar_inner {
        flex-direction: column;
        align-items: stretch;
        white-space: normal;
        justify-content: center;
        padding: 8px 0;
    }

    .azhent_topbar_left,
    .azhent_topbar_right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .azhent_search_form input {
        width: 120px;
    }

    .pkp_head_wrapper {
        padding-top: 12px;
    }

    .pkp_site_name_wrapper .is_img img {
        max-height: 72px;
    }

    .pkp_navigation_primary {
        gap: 8px;
    }

    .pkp_navigation_primary > li > a {
        padding: 9px 14px;
        font-size: 0.84rem;
    }

    .azhent_hero_panel,
    .azhent_issue_shell,
    .azhent_extra_content,
    .azhent_side_card,
    .cmp_announcements {
        padding: 18px;
        border-radius: 20px;
    }

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

    .azhent_hero_content,
    .azhent_issue_feature {
        gap: var(--space-3);
    }

    .azhent_hero_cover img {
        width: 240px;
    }

    .azhent_title {
        font-size: 2.6rem;
    }

    .azhent_section_head h2 {
        font-size: 2.3rem;
    }

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

    .azhent_article_cover {
        max-width: 180px;
    }

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

    .azhent_footer_meta {
        flex-direction: column;
    }

    .azhent_brand_footer {
        justify-content: flex-start;
    }
}
