.journal-site-header {
	background: #fff;
}

body {
	margin: 0;
	background: #f4f4f4;
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
}

a {
	color: #006fb7;
}

a:hover {
	color: #00598f;
}

.journal-hero {
	min-height: 215px;
	background:
		linear-gradient(90deg, rgba(19, 78, 112, .78), rgba(19, 78, 112, .34)),
		var(--journal-hero-image, url("../images/hero.jpg")) center / cover no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.journal-hero__inner {
	width: min(1100px, calc(100% - 32px));
	padding: 34px 0;
	text-align: center;
}

.journal-hero__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 96px;
	min-height: 96px;
	max-width: 180px;
	margin: 0 auto 18px;
	background: rgba(255, 255, 255, .94);
	padding: 12px;
	box-sizing: border-box;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}

.journal-hero__logo img {
	display: block;
	max-width: 156px;
	max-height: 92px;
	width: auto;
	height: auto;
}

.journal-hero h1 {
	margin: 0 0 28px;
	font-size: 38px;
	font-weight: 300;
	letter-spacing: 3px;
	line-height: 1.2;
	text-transform: uppercase;
}

.journal-search {
	max-width: 620px;
	margin: 0 auto 14px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 92px;
	gap: 0;
}

.journal-search__label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.journal-search input[type="text"] {
	min-width: 0;
	height: 44px;
	border: 0;
	padding: 0 16px;
	font-size: 15px;
	color: #222;
}

.journal-search button {
	border: 0;
	background: #006fb7;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.journal-search button:hover,
.submit-btn:hover {
	background: #00598f;
	color: #fff;
}

.journal-search__check {
	grid-column: 1 / -1;
	text-align: left;
	margin-top: 8px;
	font-size: 14px;
	line-height: 1.35;
}

.journal-search__check input {
	margin-right: 6px;
}

.submit-btn {
	display: inline-block;
	background: #006fb7;
	color: #fff;
	padding: 11px 28px;
	text-transform: uppercase;
	font-weight: 700;
	text-decoration: none;
	letter-spacing: .02em;
}

.journal-tabs {
	min-height: 72px;
	background: #fff;
	display: flex;
	justify-content: center;
	gap: 36px;
	border-bottom: 1px solid #ddd;
	padding: 0 20px;
}

.journal-tabs a {
	position: relative;
	display: flex;
	align-items: center;
	color: #333;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
}

.journal-tabs a:hover,
.journal-tabs a.active {
	color: #006fb7;
}

.journal-tabs a.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	background: #006fb7;
}

.journal-utility {
	background: #f8f9fa;
	border-bottom: 1px solid #e3e6e8;
}

.journal-utility__inner {
	width: min(1180px, calc(100% - 32px));
	min-height: 42px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 22px;
}

.journal-user-menu,
.journal-utility ul,
.language-toggle__list {
	display: flex;
	align-items: center;
	gap: 14px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.journal-user-menu a,
.journal-utility a,
.journal-utility button,
.language-toggle__label,
.language-toggle .active {
	color: #44515a;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.journal-user-menu a:hover,
.journal-utility a:hover,
.language-toggle a:hover {
	color: #006fb7;
}

.language-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
}

.language-toggle__label {
	color: #73808a;
}

.language-toggle .active {
	color: #006fb7;
}

.journal-page-bg {
	background: #f4f4f4;
	padding: 28px 0 60px;
}

.journal-layout {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.journal-sidebar {
	background: #eee;
}

.journal-sidebar details {
	border-bottom: 1px solid #d7d7d7;
}

.journal-sidebar summary {
	padding: 18px 22px;
	cursor: pointer;
	font-weight: 700;
	list-style: none;
}

.journal-sidebar summary::-webkit-details-marker {
	display: none;
}

.journal-sidebar summary::after {
	content: "+";
	float: right;
	font-weight: 700;
}

.journal-sidebar details[open] summary::after {
	content: "-";
}

.journal-sidebar a {
	display: block;
	padding: 14px 32px;
	color: #333;
	text-decoration: none;
	border-top: 1px solid #e0e0e0;
}

.journal-sidebar a:hover {
	background: #e4e4e4;
	color: #006fb7;
}

.journal-content {
	background: #fff;
	padding: 34px 38px;
	min-width: 0;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
}

.journal-content > *:first-child {
	margin-top: 0;
}

.journal-content h2 {
	font-size: 26px;
	line-height: 1.25;
	margin: 0 0 24px;
	color: #222;
}

.journal-info-card {
	display: grid;
	grid-template-columns: 180px minmax(0, 1fr);
	gap: 36px;
	border-top: 1px solid #e5e5e5;
	padding-top: 18px;
}

.journal-cover {
	width: 180px;
	max-width: 100%;
	height: auto;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}

.journal-info-text h3 {
	font-size: 22px;
	line-height: 1.25;
	margin: 0 0 8px;
	color: #222;
}

.journal-info-text p {
	margin: 4px 0;
}

.journal-description {
	margin-top: 14px;
	line-height: 1.55;
	max-width: 650px;
	color: #333;
}

.journal-section {
	margin-top: 36px;
}

.journal-section + .journal-section {
	border-top: 1px solid #e5e5e5;
	padding-top: 30px;
}

.journal-section h2 {
	margin-bottom: 12px;
}

.journal-article-text {
	max-width: 780px;
	line-height: 1.65;
}

.journal-article-text p {
	margin: 0 0 1em;
}

.journal-article-text h3 {
	margin: 1.7em 0 .55em;
	font-size: 20px;
	line-height: 1.3;
	color: #222;
}

.journal-panel {
	background: #f8f9fa;
	border: 1px solid #e5e5e5;
	padding: 20px;
	margin-bottom: 28px;
}

.journal-filter-hero {
	background:
		linear-gradient(90deg, rgba(0, 111, 183, .12), rgba(19, 78, 112, .04)),
		#f8fbfd;
	border: 1px solid #dce9f2;
	padding: 24px 26px;
	margin-bottom: 22px;
}

.journal-filter-hero__eyebrow {
	display: block;
	margin-bottom: 6px;
	color: #006fb7;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.journal-filter-hero h2 {
	margin-bottom: 8px;
}

.journal-filter-hero p {
	max-width: 680px;
	margin: 0;
	color: #53616a;
	line-height: 1.6;
}

.journal-filter-panel {
	padding: 0;
	overflow: hidden;
}

.journal-filter-panel > .search_input,
.journal-filter-panel > .search_advanced,
.journal-filter-panel > .submit {
	padding-left: 20px;
	padding-right: 20px;
}

.journal-filter-panel > .search_input {
	padding-top: 20px;
}

.journal-filter-panel > .submit {
	padding-bottom: 20px;
}

.journal-filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	background: #fff;
	border-bottom: 1px solid #e1e5e8;
}

.journal-filter-tabs a {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding: 0 18px;
	border-right: 1px solid #e1e5e8;
	color: #333;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
}

.journal-filter-tabs a:hover,
.journal-filter-tabs a.active {
	background: #006fb7;
	color: #fff;
}

.journal-results-heading {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px solid #e5e5e5;
	margin-top: 6px;
	padding-bottom: 12px;
}

.journal-results-heading h3 {
	margin: 0;
	font-size: 22px;
	line-height: 1.3;
}

.journal-results-heading span {
	color: #66737c;
	font-size: 14px;
	font-weight: 700;
}

.current_issue_title {
	font-weight: 700;
	margin-bottom: 18px;
}

.read_more {
	display: inline-block;
	margin-top: 18px;
	color: #006fb7;
	font-weight: 700;
	text-decoration: none;
}

.journal-list,
.issues_archive,
.search_results {
	list-style: none;
	padding: 0;
	margin: 0;
}

.journal-list > li,
.issues_archive > li,
.search_results > li {
	border-top: 1px solid #e5e5e5;
	padding: 22px 0;
}

.journal-list--ranked > li {
	position: relative;
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.journal-rank {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: #edf5fb;
	color: #006fb7;
	border: 1px solid #cfe2ef;
	font-weight: 700;
}

.journal-list--ranked .obj_article_summary {
	min-width: 0;
}

.journal-list > li:first-child,
.issues_archive > li:first-child,
.search_results > li:first-child {
	border-top: 0;
}

.obj_issue_summary,
.obj_article_summary {
	display: block;
}

.cmp_article_list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cmp_article_list > li {
	border-top: 1px solid #e5e5e5;
	padding: 22px 0;
}

.cmp_article_list > li:first-child {
	border-top: 0;
}

.obj_article_summary .title,
.obj_issue_summary .title {
	margin: 0 0 8px;
	font-size: 18px;
	line-height: 1.35;
	font-weight: 700;
}

.obj_article_summary .title a,
.obj_issue_summary .title a {
	color: #222;
	text-decoration: none;
}

.obj_article_summary .title a:hover,
.obj_issue_summary .title a:hover {
	color: #006fb7;
}

.obj_article_summary .authors,
.obj_article_summary .pages,
.obj_article_summary .published,
.obj_issue_summary .description {
	color: #666;
	font-size: 14px;
}

.obj_article_summary .subtitle {
	display: block;
	margin-top: 4px;
	color: #555;
	font-weight: 400;
}

.obj_article_summary .cover {
	float: right;
	width: 96px;
	margin-left: 20px;
}

.obj_article_summary .cover img,
.obj_issue_summary img {
	max-width: 100%;
	height: auto;
}

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

.obj_issue_summary .cover {
	width: 110px;
	grid-column: 2;
	grid-row: 1 / span 4;
}

.galleys,
.article_galleys {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.galleys a,
.article_galleys a,
.galley-link,
.cmp_manuscript_button,
.cmp_button,
.page_submissions .cmp_notification a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	background: #006fb7;
	color: #fff;
	border: 0;
	padding: 7px 13px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
}

.galleys a:hover,
.article_galleys a:hover,
.galley-link:hover,
.cmp_manuscript_button:hover,
.cmp_button:hover,
.page_submissions .cmp_notification a:hover {
	background: #00598f;
	color: #fff;
}

.galleys_links,
.supplementary_galleys_links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	padding: 0;
	margin: 12px 0 0;
}

.obj_issue_toc .heading,
.obj_issue_toc h2,
.obj_issue_toc h3 {
	margin-top: 30px;
	margin-bottom: 14px;
	font-size: 21px;
}

.obj_issue_toc > .heading {
	display: grid;
	grid-template-columns: 190px minmax(0, 1fr);
	gap: 26px;
	align-items: start;
	background: #f8f9fa;
	border: 1px solid #e5e5e5;
	padding: 20px;
	margin: 0 0 28px;
}

.obj_issue_toc > .heading .cover {
	grid-row: 1 / span 5;
	margin: 0;
}

.obj_issue_toc > .heading .cover img {
	width: 190px;
	max-width: 100%;
	height: auto;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}

.obj_issue_toc > .heading .description {
	line-height: 1.6;
}

.obj_issue_toc > .galleys {
	display: block;
	margin: 24px 0;
}

.sections,
.section {
	margin-top: 24px;
}

.cmp_notification {
	border-left: 4px solid #006fb7;
	background: #f1f7fb;
	padding: 16px 18px;
	margin: 0 0 24px;
}

.cmp_form fieldset {
	border: 0;
	padding: 0;
	margin: 20px 0 0;
}

.cmp_form legend {
	display: block;
	width: 100%;
	margin-bottom: 14px;
	font-weight: 700;
	color: #222;
}

.cmp_form label,
.cmp_form .label {
	display: block;
	margin: 0 0 6px;
	font-weight: 700;
	color: #333;
}

.cmp_form input[type="text"],
.cmp_form input[type="email"],
.cmp_form input[type="password"],
.cmp_form select,
.cmp_form textarea {
	width: 100%;
	max-width: 100%;
	min-height: 42px;
	border: 1px solid #cfcfcf;
	background: #fff;
	padding: 8px 11px;
	color: #222;
	box-sizing: border-box;
}

.cmp_form .date_range {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.cmp_form .date_range select {
	width: auto;
	min-width: 92px;
	margin-right: 6px;
	margin-bottom: 8px;
}

.cmp_form .author {
	margin-top: 18px;
}

.cmp_form .submit {
	margin-top: 18px;
}

.cmp_form button.submit,
.cmp_form .submit button,
button.submit {
	background: #006fb7;
	color: #fff;
	border: 0;
	min-height: 42px;
	padding: 0 22px;
	font-weight: 700;
	cursor: pointer;
}

.cmp_form button.submit:hover,
.cmp_form .submit button:hover,
button.submit:hover {
	background: #00598f;
}

.cmp_pagination {
	border-top: 1px solid #e5e5e5;
	margin-top: 24px;
	padding-top: 18px;
}

.cmp_pagination .current,
.cmp_pagination a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 34px;
	margin-right: 6px;
	border: 1px solid #d8d8d8;
	padding: 0 10px;
	text-decoration: none;
}

.cmp_pagination .current {
	background: #006fb7;
	border-color: #006fb7;
	color: #fff;
}

.page_article .article-details,
.page_article .obj_article_details {
	max-width: none;
}

.article-view-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	border-bottom: 1px solid #e5e5e5;
	margin: -8px 0 26px;
	padding-bottom: 16px;
}

.article-view-toolbar a {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	background: #f1f7fb;
	border: 1px solid #cfe2ef;
	color: #006fb7;
	padding: 0 12px;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
}

.article-view-toolbar a:hover {
	background: #006fb7;
	color: #fff;
}

.page_article .obj_article_details {
	position: relative;
}

.page_article h1,
.page_article .page_title,
.obj_article_details .page_title {
	margin: 0;
	background:
		linear-gradient(90deg, rgba(0, 111, 183, .10), rgba(19, 78, 112, .03)),
		#f8fbfd;
	border: 1px solid #dce9f2;
	border-bottom: 0;
	padding: 26px 30px 8px;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 32px;
	line-height: 1.25;
	color: #222;
}

.obj_article_details .subtitle {
	margin: 0 0 26px;
	background: #f8fbfd;
	border: 1px solid #dce9f2;
	border-top: 0;
	padding: 0 30px 24px;
	color: #53616a;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-weight: 400;
	line-height: 1.35;
}

.obj_article_details > .row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 38px;
	align-items: start;
}

.obj_article_details .main_entry {
	min-width: 0;
}

.obj_article_details .entry_details {
	position: sticky;
	top: 18px;
	background: #f8f9fa;
	border: 1px solid #e1e6e9;
	padding: 0;
}

.obj_article_details .entry_details .item {
	border-top: 1px solid #e0e0e0;
	padding: 18px;
	margin-top: 0;
}

.obj_article_details .entry_details .item:first-child {
	border-top: 0;
	padding-top: 18px;
	margin-top: 0;
}

.obj_article_details .authors,
.obj_article_details .item {
	margin-top: 24px;
}

.obj_article_details .main_entry > .authors {
	background: #fff;
	border: 1px solid #e5e5e5;
	padding: 18px 20px;
	margin-top: 0;
}

.obj_article_details ul.authors {
	list-style: none;
	padding: 0;
	margin: 10px 0 0;
}

.obj_article_details ul.authors > li {
	border-top: 1px solid #edf0f2;
	margin-bottom: 0;
	padding: 12px 0;
}

.obj_article_details ul.authors > li:first-child {
	border-top: 0;
	padding-top: 0;
}

.obj_article_details ul.authors > li:last-child {
	padding-bottom: 0;
}

.obj_article_details .authors .name {
	display: block;
	font-weight: 700;
	color: #222;
}

.obj_article_details .authors .affiliation,
.obj_article_details .authors .userGroup,
.obj_article_details .authors .orcid {
	display: block;
	color: #666;
	font-size: 14px;
}

.obj_article_details .label {
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
	color: #222;
	font-size: 15px;
}

.obj_article_details .abstract {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-left: 4px solid #006fb7;
	padding: 20px 22px;
	line-height: 1.65;
}

.obj_article_details .abstract .label {
	font-size: 21px;
	margin-bottom: 12px;
}

.obj_article_details .doi,
.obj_article_details .keywords,
.obj_article_details .dataAvailability {
	background: #fbfcfd;
	border: 1px solid #e5e5e5;
	padding: 16px 18px;
}

.obj_article_details .doi a {
	word-break: break-word;
}

.obj_article_details .keywords .value {
	display: inline;
	color: #555;
}

.obj_article_details .cover_image img {
	width: 100%;
	height: auto;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}

.obj_article_details .references .value {
	font-size: 14px;
	line-height: 1.55;
}

.obj_article_details .references {
	border-top: 1px solid #e5e5e5;
	padding-top: 24px;
}

.obj_article_details .references .label {
	font-size: 21px;
}

.obj_article_details .entry_details .label {
	margin-bottom: 4px;
	color: #53616a;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.obj_article_details .entry_details .value {
	font-size: 14px;
	line-height: 1.45;
}

.obj_article_details .entry_details ul {
	list-style: none;
	padding-left: 0;
	margin: 6px 0 0;
}

.obj_article_details .entry_details li {
	margin-bottom: 6px;
}

.obj_article_details .entry_details .galleys,
.obj_article_details .entry_details .item.galleys {
	background: #006fb7;
	border-color: #006fb7;
}

.obj_article_details .entry_details .galleys .label,
.obj_article_details .entry_details .item.galleys .label {
	color: #fff;
}

.obj_article_details .entry_details .galleys_links,
.obj_article_details .entry_details .supplementary_galleys_links {
	display: grid;
	gap: 8px;
	margin-top: 0;
}

.obj_article_details .entry_details .galleys_links a,
.obj_article_details .entry_details .supplementary_galleys_links a {
	width: 100%;
	justify-content: center;
	background: #fff;
	color: #006fb7;
	box-sizing: border-box;
}

.obj_article_details .entry_details .galleys_links a:hover,
.obj_article_details .entry_details .supplementary_galleys_links a:hover {
	background: #eaf4fb;
	color: #00598f;
}

.journal-announcements {
	margin-top: 24px;
}

.announcement-summary {
	border-top: 1px solid #e5e5e5;
	padding: 22px 0;
}

.announcement-summary:first-child {
	border-top: 0;
}

.announcement-summary h3,
.announcement-summary h2 {
	margin: 0 0 8px;
	font-size: 20px;
	line-height: 1.3;
}

.announcement-summary h3 a,
.announcement-summary h2 a {
	color: #222;
	text-decoration: none;
}

.announcement-summary h3 a:hover,
.announcement-summary h2 a:hover {
	color: #006fb7;
}

.announcement-summary-date,
.announcement-date {
	color: #666;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

.announcement-summary-description {
	line-height: 1.6;
}

.announcement-summary-more .btn {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	background: #006fb7;
	color: #fff;
	padding: 6px 13px;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
}

.journal-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.journal-contact-grid .address {
	grid-column: 1 / -1;
}

.journal-contact-grid h3 {
	margin: 0 0 12px;
	font-size: 18px;
}

.contact-name {
	font-weight: 700;
	color: #222;
}

.contact-title,
.contact-affiliation,
.contact-phone {
	margin-top: 6px;
	color: #555;
}

.pkp_screen_reader,
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.page:not(.journal-content) {
	width: min(980px, calc(100% - 32px));
	margin: 28px auto 60px;
	background: #fff;
	padding: 34px 38px;
	box-sizing: border-box;
}

.page:not(.journal-content) h1 {
	margin-top: 0;
	font-size: 28px;
	line-height: 1.25;
}

.journal-footer {
	background: #26343d;
	color: #fff;
}

.journal-footer__inner {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
	padding: 28px 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	gap: 24px;
	align-items: start;
}

.journal-footer a {
	color: #fff;
	text-decoration: none;
}

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

.journal-footer__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.journal-footer__identity {
	display: flex;
	align-items: center;
	gap: 16px;
}

.journal-footer__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 76px;
	min-width: 76px;
	min-height: 76px;
	background: #fff;
	padding: 8px;
	box-sizing: border-box;
}

.journal-footer__logo img {
	display: block;
	max-width: 100%;
	max-height: 60px;
	height: auto;
}

.journal-footer__issn,
.journal-footer__content,
.journal-footer__meta,
.journal-footer__bottom {
	color: rgba(255, 255, 255, .74);
	font-size: 14px;
}

.journal-footer__links {
	display: grid;
	gap: 8px;
}

.journal-footer__bottom {
	background: #1f2a31;
}

.journal-footer__inner--bottom {
	display: block;
	padding: 12px 0;
}

@media (max-width: 1050px) {
	.journal-tabs {
		justify-content: flex-start;
		overflow-x: auto;
		gap: 26px;
	}
}

@media (max-width: 900px) {
	.journal-hero h1 {
		font-size: 30px;
		letter-spacing: 1px;
	}

	.journal-layout {
		grid-template-columns: 1fr;
	}

	.journal-content {
		padding: 28px 22px;
	}

	.journal-info-card {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.cmp_form .date_range {
		grid-template-columns: 1fr;
	}

	.journal-footer__inner {
		display: block;
	}

	.journal-footer__links,
	.journal-footer__meta {
		margin-top: 18px;
	}

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

	.obj_article_details .entry_details {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
		padding: 18px;
	}

	.obj_article_details .entry_details .item {
		border-top: 0;
		padding: 0;
		margin-top: 0;
	}
}

@media (max-width: 560px) {
	.journal-search {
		grid-template-columns: minmax(0, 1fr) 76px;
	}

	.journal-search button {
		font-size: 13px;
	}

	.submit-btn {
		width: 100%;
		max-width: 280px;
	}

	.page:not(.journal-content) {
		width: calc(100% - 24px);
		padding: 24px 18px;
	}

	.journal-utility__inner {
		display: block;
		padding: 10px 0;
	}

	.journal-user-menu,
	.journal-utility ul {
		flex-wrap: wrap;
		gap: 10px;
	}

	.obj_issue_toc > .heading,
	.obj_article_details .entry_details,
	.journal-contact-grid {
		grid-template-columns: 1fr;
	}

	.article-view-toolbar {
		margin-top: 0;
	}

	.page_article .page_title,
	.obj_article_details .page_title {
		padding: 20px 18px 8px;
		font-size: 25px;
	}

	.obj_article_details .subtitle {
		padding: 0 18px 18px;
		font-size: 18px;
	}

	.obj_issue_toc > .heading .cover {
		grid-row: auto;
	}

	.obj_article_summary .cover {
		float: none;
		width: 120px;
		margin: 0 0 14px;
	}

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

	.obj_issue_summary .cover {
		grid-column: auto;
		grid-row: auto;
		width: 120px;
	}
}
