/* UMP E-Journal Portal */
:root {
	--ump-green: #075E46;
	--ump-green-dark: #064D3A;
	--ump-green-soft: #E8F3EF;
	--ump-gold: #F4B900;
	--ump-gold-dark: #DDA800;
	--text: #1F2937;
	--muted: #6B7280;
	--border: #E5E7EB;
	--bg: #F7F9F8;
	--white: #FFFFFF;
	--shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 10px 28px rgba(0, 0, 0, 0.09);
	--container: 1320px;
}

/* Base */
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: 85px;
}
body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: Inter, Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.6;
}
img {
	display: block;
	max-width: 100%;
}
button,
input,
select {
	font: inherit;
}
button,
a {
	-webkit-tap-highlight-color: transparent;
}
input[type="search"]::-webkit-search-cancel-button {
	cursor: pointer;
}

/* Header */
.site_header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(10px);
}
.site_header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(var(--container), calc(100% - 48px));
	margin: 0 auto;
	padding: 12px 0;
}
.site_brand {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}
.site_brand img {
	width: 50px;
	height: 50px;
	object-fit: contain;
	flex: 0 0 auto;
}
.site_brand div {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.site_brand strong {
	color: var(--ump-green);
	font-size: clamp(16px, 4vw, 20px);
	line-height: 1.2;
}
.site_brand span {
	margin-top: 2px;
	color: var(--muted);
	font-size: clamp(9px, 3vw, 13px);
	white-space: nowrap;
}
.site_nav {
	display: flex;
	align-items: center;
	gap: 24px;
}
.site_nav a {
	position: relative;
	color: #374151;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}
.site_nav a:hover,
.site_nav a.active {
	color: var(--ump-green);
}
.site_nav a:not(.login_link)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -7px;
	height: 2px;
	background: var(--ump-green);
	transition: right 0.2s ease;
}
.site_nav a:not(.login_link):hover::after,
.site_nav a.active:not(.login_link)::after {
	right: 0;
}
.login_link {
	padding: 8px 14px;
	border: 1px solid var(--ump-green);
	border-radius: 5px;
	color: var(--ump-green) !important;
}
.login_link:hover {
	background: var(--ump-green);
	color: var(--white) !important;
}
.mobile_menu_button {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: transparent;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}
.mobile_menu_button span {
	display: block;
	width: 26px;
	height: 3px;
	border-radius: 999px;
	background: var(--ump-green);
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.mobile_menu_button.is_open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.mobile_menu_button.is_open span:nth-child(2) {
	opacity: 0;
}
.mobile_menu_button.is_open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* Main */
.portal_container {
	width: min(var(--container), calc(100% - 48px));
	margin: 0 auto;
}

/* Hero */
.ump_hero {
	position: relative;
	overflow: hidden;
	margin: 20px 0;
	border-radius: 12px;
	background: var(--ump-green);
	color: var(--white);
}
.ump_hero::before,
.ump_hero::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}
.ump_hero::before {
	width: 500px;
	height: 500px;
	right: -210px;
	top: -300px;
	border: 72px solid rgba(255, 255, 255, 0.055);
}
.ump_hero::after {
	width: 280px;
	height: 280px;
	right: 110px;
	bottom: -235px;
	border: 42px solid rgba(255, 255, 255, 0.035);
}
.ump_hero_content {
	position: relative;
	z-index: 1;
	max-width: 1000px;
	padding: 42px 54px;
}
.ump_eyebrow {
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.ump_hero h1 {
	margin: 0;
	color: var(--white);
	font-size: clamp(38px, 5vw, 48px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -1px;
}
.ump_hero_description {
	max-width: 760px;
	margin: 16px 0 24px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 16px;
}
.hero_article_search {
	width: min(860px, 100%);
	margin: 0;
}
.hero_article_search_box {
	display: flex;
	width: 100%;
}
.hero_article_search_box input {
	flex: 1;
	min-width: 0;
	height: 52px;
	padding: 0 18px;
	border: 0;
	border-radius: 6px 0 0 6px;
	background: var(--white);
	color: var(--text);
	font-size: 13px;
	outline: none;
}
.hero_article_search_box input:focus {
	box-shadow: inset 0 0 0 2px rgba(7, 94, 70, 0.22);
}
.hero_article_search_box button {
	height: 52px;
	padding: 0 28px;
	border: 0;
	border-radius: 0 6px 6px 0;
	background: var(--ump-gold);
	color: #151515;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
}
.hero_article_search_box button:hover {
	background: var(--ump-gold-dark);
}
.hero_search_hint {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 11px;
}

/* Journals */
.journal_section {
	padding-bottom: 64px;
}
.journal_discovery_header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 6px;
}
.journal_discovery_header h2 {
	margin: 2px 0 0;
	color: var(--text);
	font-size: 25px;
	line-height: 1.2;
}
.journal_discovery_label {
	color: var(--ump-green);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}
.journal_count {
	color: var(--muted);
	font-size: 12px;
}
.journal_tools {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	grid-template-areas: "tabs search" "subjects search";
	gap: 10px;
	margin-bottom: 20px;
	align-items: start;
}
.ump_portal_tabs {
	grid-area: tabs;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	padding: 5px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 7px;
	box-shadow: var(--shadow-sm);
}
.ump_portal_tabs button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 36px;
	padding: 0 11px;
	border: 0;
	border-radius: 5px;
	background: transparent;
	color: #374151;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
}
.ump_portal_tabs button:hover {
	background: var(--ump-green-soft);
	color: var(--ump-green);
}
.ump_portal_tabs button.active {
	background: var(--ump-green);
	color: var(--white);
}
.filter_count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 21px;
	height: 21px;
	padding: 0 5px;
	border-radius: 999px;
	background: #EDF3F1;
	color: var(--ump-green);
	font-size: 10px;
}
.ump_portal_tabs button.active .filter_count {
	background: rgba(255, 255, 255, 0.16);
	color: var(--white);
}
.subject_panel {
	grid-area: subjects;
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0;
	padding: 12px;
	border: 1px solid var(--border);
	border-radius: 7px;
	background: var(--bg);
}
.subject_panel[hidden] {
	display: none !important;
}
.subject_panel button {
	padding: 7px 12px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--white);
	color: #4B5563;
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
}
.subject_panel button:hover,
.subject_panel button.active {
	border-color: var(--ump-green);
	background: var(--ump-green);
	color: var(--white);
}
.journal_search {
	grid-area: search;
	display: flex;
}
.journal_search input {
	flex: 1;
	min-width: 0;
	height: 46px;
	padding: 0 14px;
	border: 1px solid var(--border);
	border-right: 0;
	border-radius: 6px 0 0 6px;
	background: var(--white);
	color: var(--text);
	font-size: 12px;
	outline: none;
}
.journal_search input:focus {
	border-color: var(--ump-green);
	box-shadow: inset 0 0 0 1px var(--ump-green);
}
.journal_search button {
	height: 46px;
	padding: 0 18px;
	border: 1px solid var(--ump-green);
	border-radius: 0 6px 6px 0;
	background: var(--ump-green);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}
.journal_search button:hover {
	background: var(--ump-green-dark);
}

/* Journal cards */
.journal_grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}
.journal_card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 9px;
	transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.journal_card:hover {
	transform: translateY(-3px);
	border-color: #D4DDD9;
	box-shadow: var(--shadow-md);
}
.journal_cover {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 205px;
	padding: 17px;
	background: var(--bg);
}
.journal_cover img {
	max-width: 100%;
	max-height: 172px;
	object-fit: contain;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
}
.journal_cover.placeholder::after {
	content: "UMP";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 125px;
	height: 166px;
	background: var(--ump-green);
	color: var(--white);
	font-size: 24px;
	font-weight: 800;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.journal_body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 15px;
}
.journal_body h3 {
	display: -webkit-box;
	overflow: hidden;
	margin: 0 0 8px;
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}
.journal_body h3 a {
	color: inherit;
	text-decoration: none;
}
.journal_body h3 a:hover {
	color: var(--ump-green);
}
.journal_subject {
	margin-bottom: 9px;
	color: var(--muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.55px;
	text-transform: uppercase;
}
.journal_badges {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 12px;
}
.badge {
	display: inline-flex;
	align-items: center;
	min-height: 21px;
	padding: 3px 7px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}
.badge.sinta {
	background: #E9F3FF;
	color: #175A91;
}
.badge.doaj {
	background: #FFF3DF;
	color: #8A5710;
}
.badge.accredited {
	background: var(--ump-green-soft);
	color: var(--ump-green);
}
.badge.scopus {
	background: #F0EBF8;
	color: #61428A;
}
.journal_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 7px;
}
.btn_primary,
.btn_secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 31px;
	padding: 6px 9px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn_primary {
	background: var(--ump-green);
	color: var(--white);
}
.btn_primary:hover {
	background: var(--ump-green-dark);
	color: var(--white);
}
.btn_secondary {
	border: 1px solid var(--border);
	background: var(--white);
	color: #4B5563;
}
.btn_secondary:hover {
	border-color: var(--ump-green);
	color: var(--ump-green);
}

/* Search page */
.search_page {
	width: min(var(--container), calc(100% - 48px));
	margin: 0 auto;
	padding: 36px 0 70px;
}
.search_page_header {
	max-width: 900px;
	margin-bottom: 34px;
}
.search_back {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--ump-green);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
}
.search_back:hover {
	text-decoration: underline;
}
.search_page_header h1 {
	margin: 3px 0 0;
	color: var(--text);
	font-size: 36px;
	line-height: 1.15;
}
.search_page_header p {
	max-width: 680px;
	margin: 10px 0 22px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
}
.article_search {
	display: flex;
	width: min(780px, 100%);
}
.article_search input {
	flex: 1;
	min-width: 0;
	height: 50px;
	padding: 0 16px;
	border: 1px solid #CBD5D1;
	border-right: 0;
	border-radius: 6px 0 0 6px;
	background: var(--white);
	color: var(--text);
	font-size: 13px;
	outline: none;
}
.article_search input:focus {
	border-color: var(--ump-green);
	box-shadow: inset 0 0 0 1px var(--ump-green);
}
.article_search button {
	height: 50px;
	padding: 0 24px;
	border: 0;
	border-radius: 0 6px 6px 0;
	background: var(--ump-green);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}
.article_search button:hover {
	background: var(--ump-green-dark);
}
.search_layout {
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}
.search_filters {
	position: sticky;
	top: 100px;
	padding-right: 22px;
	border-right: 1px solid var(--border);
}
.search_filter_header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 14px;
}
.search_filter_header h2 {
	margin: 0;
	font-size: 15px;
}
.search_filter_header button {
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ump-green);
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
}
.filter_group {
	padding: 17px 0;
	border-top: 1px solid var(--border);
}
.filter_group h3 {
	margin: 0 0 11px;
	color: var(--text);
	font-size: 11px;
}
.filter_group label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 9px 0;
	color: #4B5563;
	font-size: 11px;
	line-height: 1.45;
	cursor: pointer;
}
.filter_group input {
	margin-top: 2px;
	accent-color: var(--ump-green);
}
.results_header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 8px;
}
.results_label {
	color: var(--ump-green);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}
.results_header h2 {
	margin: 3px 0 0;
	font-size: 23px;
}
.results_header select {
	padding: 8px 10px;
	border: 1px solid var(--border);
	border-radius: 5px;
	background: var(--white);
	color: #4B5563;
	font-size: 10px;
}
.article_result {
	padding: 22px 0;
	border-top: 1px solid var(--border);
}
.article_meta {
	margin-bottom: 5px;
	color: var(--ump-green);
	font-size: 10px;
	font-weight: 700;
}
.article_result h3 {
	margin: 0 0 6px;
	font-size: 18px;
	line-height: 1.4;
}
.article_result h3 a {
	color: var(--text);
	text-decoration: none;
}
.article_result h3 a:hover {
	color: var(--ump-green);
}
.article_authors {
	margin-bottom: 8px;
	color: #4B5563;
	font-size: 11px;
}
.article_result p {
	max-width: 850px;
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.7;
}
.article_keywords {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 11px;
}
.article_keywords span {
	padding: 4px 7px;
	border-radius: 999px;
	background: var(--ump-green-soft);
	color: var(--ump-green);
	font-size: 8px;
	font-weight: 700;
}
.search_empty {
	padding: 50px 20px;
	border-top: 1px solid var(--border);
	text-align: center;
}
.search_empty h3 {
	margin: 0 0 5px;
	font-size: 16px;
}
.search_empty p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
}
.filter_toggle {
	display: none;
}

/* Login */
.auth_page {
	min-height: 100vh;
	background: var(--bg);
}
.auth_back {
	padding: 8px 13px;
	border: 1px solid var(--border);
	border-radius: 5px;
	color: #4B5563;
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
}
.auth_back:hover {
	border-color: var(--ump-green);
	color: var(--ump-green);
}
.auth_main {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 76px);
	padding: 42px 20px;
}
.auth_card {
	width: min(440px, 100%);
	padding: 32px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 12px;
	box-shadow: var(--shadow-md);
}
.auth_intro {
	margin-bottom: 26px;
}
.auth_label {
	display: inline-block;
	margin-bottom: 7px;
	color: var(--ump-green);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}
.auth_intro h1 {
	margin: 0;
	color: var(--text);
	font-size: 30px;
	line-height: 1.2;
}
.auth_intro p {
	margin: 10px 0 0;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.7;
}
.auth_form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.form_group {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.form_group label {
	color: #374151;
	font-size: 12px;
	font-weight: 700;
}
.form_group input {
	width: 100%;
	height: 46px;
	padding: 0 13px;
	border: 1px solid #D6DDDA;
	border-radius: 6px;
	background: var(--white);
	color: var(--text);
	font-size: 13px;
	outline: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form_group input:focus {
	border-color: var(--ump-green);
	box-shadow: 0 0 0 3px rgba(7, 94, 70, 0.08);
}
.form_label_row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.form_label_row a {
	color: var(--ump-green);
	font-size: 11px;
	font-weight: 600;
	text-decoration: none;
}
.form_label_row a:hover {
	text-decoration: underline;
}
.password_field {
	position: relative;
}
.password_field input {
	padding-right: 62px;
}
.password_toggle {
	position: absolute;
	top: 50%;
	right: 7px;
	transform: translateY(-50%);
	padding: 6px 8px;
	border: 0;
	border-radius: 4px;
	background: transparent;
	color: var(--ump-green);
	font-size: 10px;
	font-weight: 700;
	cursor: pointer;
}
.password_toggle:hover {
	background: var(--ump-green-soft);
}
.remember_field {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #4B5563;
	font-size: 12px;
	cursor: pointer;
}
.remember_field input {
	accent-color: var(--ump-green);
}
.auth_submit {
	width: 100%;
	height: 46px;
	border: 0;
	border-radius: 6px;
	background: var(--ump-green);
	color: var(--white);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.15s ease;
}
.auth_submit:hover {
	background: var(--ump-green-dark);
}
.auth_register {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--border);
	text-align: center;
	color: var(--muted);
	font-size: 12px;
}
.auth_register a {
	margin-left: 4px;
	color: var(--ump-green);
	font-weight: 700;
	text-decoration: none;
}
.auth_register a:hover {
	text-decoration: underline;
}

/* Footer */
.site_footer {
	background: var(--ump-green);
}
.site_footer_inner {
	width: min(var(--container), calc(100% - 48px));
	margin: 0 auto;
	padding-top: 30px;
}
.footer_grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr 1.1fr;
	gap: 40px;
	padding-bottom: 36px;
}
.footer_col {
	min-width: 0;
}
.footer_label {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--ump-gold);
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}
.footer_about h2 {
	margin: 0 0 10px;
	color: var(--white);
	font-size: 28px;
	line-height: 1.2;
}
.footer_col p {
	margin: 0 0 10px;
	color: var(--white);
	font-size: 14px;
	line-height: 1.7;
}
.footer_links,
.footer_contact_list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer_links li,
.footer_contact_list li {
	margin-bottom: 10px;
}
.footer_links a,
.footer_contact_list a {
	color: var(--white);
	text-decoration: none;
}
.footer_links a:hover,
.footer_contact_list a:hover {
	text-decoration: underline;
}
.footer_contact_list li {
	color: var(--white);
	font-size: 14px;
	line-height: 1.7;
}
.footer_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 0 24px;
	border-top: 1px solid var(--white);
	color: var(--white);
	font-size: 12px;
}
.footer_bottom_right {
	white-space: nowrap;
}

/* Responsive */
@media (max-width: 1162px) {
	.journal_tools {
		grid-template-columns: 1fr;
		grid-template-areas: "tabs" "subjects" "search";
	}
	.journal_grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
@media (max-width: 939px) {
	.site_header_inner,
	.portal_container,
	.search_page {
		width: min(calc(100% - 32px), var(--container));
	}
	.site_header_inner {
		position: relative;
	}
	.site_brand img {
		width: 44px;
		height: 44px;
	}
	.mobile_menu_button {
		display: flex;
	}
	.site_nav {
		position: absolute;
		display: none;
		top: calc(100% + 1px);
		left: 0;
		right: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px;
		background: var(--white);
		border: 1px solid var(--border);
		border-radius: 8px;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	}
	.site_nav.is_open {
		display: flex;
	}
	.site_nav a {
		display: block;
		padding: 11px 12px;
		border-radius: 5px;
	}
	.site_nav a:hover,
	.site_nav a.active {
		background: var(--ump-green-soft);
		color: var(--ump-green);
	}
	.site_nav a::after {
		display: none;
	}
	.login_link {
		margin-top: 4px;
		text-align: center;
	}
	.login_link:hover {
		background: var(--ump-green) !important;
	}
	.ump_hero_content {
		padding: 38px 34px;
	}
	.journal_grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.search_layout {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.filter_toggle {
		display: inline-flex;
		margin-bottom: 14px;
		padding: 8px 13px;
		border: 1px solid var(--ump-green);
		border-radius: 5px;
		background: var(--white);
		color: var(--ump-green);
		font-size: 11px;
		font-weight: 700;
		cursor: pointer;
	}
	.search_filters {
		position: static;
		display: none;
		padding: 14px;
		border: 1px solid var(--border);
		border-radius: 7px;
		background: var(--bg);
	}
	.search_filters.is_open {
		display: block;
	}
	.site_footer_inner {
		width: min(calc(100% - 32px), var(--container));
	}
	.footer_grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.footer_bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.footer_bottom_right {
		white-space: normal;
	}
}
@media (max-width: 700px) {
	.ump_hero {
		margin-top: 14px;
		border-radius: 8px;
	}
	.ump_hero_content {
		padding: 32px 20px;
	}
	.ump_hero_description {
		margin: 13px 0 21px;
		font-size: 14px;
	}
	.hero_article_search_box {
		display: block;
	}
	.hero_article_search_box input {
		width: 100%;
		border-radius: 5px;
	}
	.hero_article_search_box button {
		width: 100%;
		height: 46px;
		margin-top: 7px;
		border-radius: 5px;
	}
	.journal_grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.auth_main {
		align-items: flex-start;
		padding: 28px 12px;
	}
	.auth_card {
		padding: 24px 20px;
		border-radius: 9px;
	}
	.auth_intro h1 {
		font-size: 27px;
	}
	.auth_back {
		padding: 7px 10px;
		font-size: 10px;
	}
	.search_page {
		width: calc(100% - 24px);
		padding-top: 26px;
	}
	.search_page_header h1 {
		font-size: 29px;
	}
	.article_search {
		display: block;
	}
	.article_search input {
		width: 100%;
		border: 1px solid #CBD5D1;
		border-radius: 5px;
	}
	.article_search button {
		width: 100%;
		height: 44px;
		margin-top: 6px;
		border-radius: 5px;
	}
	.results_header {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
	}
	.article_result h3 {
		font-size: 16px;
	}
	.site_footer_inner {
		width: calc(100% - 24px);
		padding-top: 40px;
	}
	.footer_about h2 {
		font-size: 24px;
	}
	.footer_col p,
	.footer_contact_list li {
		font-size: 13px;
	}
	.footer_bottom {
		padding: 16px 0 22px;
		font-size: 11px;
	}
}
@media (max-width: 476px) {
	.journal_discovery_header {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}
	.filter_count {
		margin-left: auto;
	}
	.journal_grid {
		grid-template-columns: 1fr;
	}
	.journal_cover {
		height: 220px;
	}
	.journal_cover img {
		max-height: 185px;
	}
}