* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Georgia, sans-serif;
	color: #FFFAE3;
}

@font-face {
	font-family: Avenir;
	src: url(./AvenirLTStd-Roman-C3wJAWZX.otf) format("opentype")
}

html {
	font-size: 10px;
	
}

.page h3,
.page p,
.page ul li,
.page strong,
.page em {
	color: #333 !important
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
	font-weight: 600 !important;
	font-size: inherit !important;
	font-family: Georgia !important
}

h1,
h1 * {
	font-family: Georgia;
	font-size: 7.6rem;
	font-weight: 400;
	line-height: 10.8rem;
	letter-spacing: .23px;
	text-align: left
}

h2,
h2 * {
	font-family: Georgia;
	font-size: 6.4rem;
	font-weight: 400;
	line-height: 9.1rem;
	letter-spacing: .23px;
	text-align: left
}

h3,
h3 * {
	font-family: Georgia;
	font-size: 4.8rem;
	font-weight: 400;
	line-height: 6.8rem;
	letter-spacing: .23px;
	text-align: left
}

h4,
h4 * {
	font-family: Georgia;
	font-size: 4rem;
	font-weight: 400;
	line-height: 4.5rem;
	letter-spacing: .23px;
	text-align: left
}

h5,
h5 * {
	font-family: Georgia;
	font-size: 3.6rem;
	font-weight: 400;
	line-height: 5.1rem;
	letter-spacing: .23px;
	text-align: left
}

h6,
h6 * {
	font-family: Georgia;
	font-size: 3.2rem;
	font-weight: 400;
	line-height: 4.5rem;
	letter-spacing: .23px;
	text-align: left
}

.header-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%
}

header {
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: .3s;
	width: 100%
}

#header-logo-wrapper {
	padding: 3rem 0px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center
}

#header-logo-wrapper img {
	cursor: pointer
}

#header-nav {
	width: 100%;
	list-style-type: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2.5rem 20rem;
	flex-wrap: nowrap;
	color: #fffae3;
	gap: 4.7rem;
	border-top: 2px solid rgba(255, 250, 227, .5);
	border-bottom: 2px solid rgba(255, 250, 227, .5);
	font-family: Avenir;
	z-index: 0;
	transition: .5s ease;
	opacity: 0;
	margin-top: -6.4rem
}

.show-nav {
	margin-top: 0 !important;
	opacity: 1 !important
}

.header-nav-loaded {
	margin-top: 0
}

.header-nav__item {
	cursor: pointer
}

.header-nav__item a:hover {
	opacity: .75
}

.header-nav__item a {
	font-family: Avenir;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	position: relative;
	z-index: 1;
	white-space: nowrap
}

.header-nav__item a img {
	width: 1.7rem;
	height: .9rem
}

.header-nav__item-drop {
	position: relative
}

.header-nav__item-dropdown {
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background-color: #2b4482;
	width: calc(100% + 24px);
	padding: 4.6rem 1.2rem 1.2rem;
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-15%, -12px);
	border-radius: 7px;
	width: auto
}

.header-nav__item-dropdown a:last-child {
	padding-bottom: 0
}

.header-nav__item-drop:hover .header-nav__item-dropdown {
	display: flex;
	z-index: 2
}

.header-nav__item-drop:hover a {
	z-index: 3
}

.header-nav__item-dropdown a {
	padding: 1.6rem 0;
	border-top: 1px solid #FFFAE30D;
	width: 100%;
	cursor: pointer;
	justify-content: flex-start
}

#header-search {
	width: 100vw;
	height: 100vh;
	z-index: 10;
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	background: #2b4482;
	position: absolute;
	top: 0;
	left: 0;
	padding: 10rem 29rem
}

.header-search-input-container {
	max-width: 78.5rem;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center
}

.header-search-input-container form {
	width: 100%
}

#header-search-input {
	background-color: transparent;
	padding: 2rem 2.5rem;
	border-radius: 100px;
	border: 2px solid #fffae3;
	font-family: Avenir;
	font-size: 1.6rem;
	width: 100%;
	outline: none
}

#header-search-input::placeholder {
	color: #fff
}

.header-search-input-btn {
	border: none;
	position: absolute;
	right: 2.5rem;
	background-color: transparent;
	cursor: pointer;
	height: 100%
}

#header-search-close-btn {
	position: absolute;
	top: 10rem;
	right: 29rem;
	background-color: transparent;
	border: none;
	color: #fffae3;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: .2px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
	cursor: pointer
}

#burger-menu {
	position: absolute;
	top: 0;
	left: 100%;
	width: 100vw;
	height: 100vh;
	background-color: #2b4482;
	padding: 16rem 2.4rem 2.4rem;
	overflow: scroll;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 2.4rem;
	transition: .2s
}

.burger-menu-note {
	font-size: 1.6rem;
	font-family: Avenir
}

.burger-menu-note a {
	font-family: Avenir
}

.burger-menu-nav {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	list-style-type: none
}

.burger-menu-nav__item {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative
}

.burger-dropdown-items {
	margin-left: 1.6rem;
	padding: 0;
	list-style-type: none;
	max-height: 0px;
	overflow: hidden;
	transition: max-height .2s ease-out
}

.burger-dropdown--active {
	transform: rotate(180deg)
}

.burger-menu-nav__item a {
	text-decoration: none;
	padding: 2rem 1.6rem;
	font-family: Avenir;
	font-weight: 500;
	font-size: 2rem;
	text-transform: uppercase;
	width: 100%
}

.burger-dropdown-btn {
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	transition: .2s
}

.burger-nav-item--top {
	display: flex;
	width: calc(100% - 48px);
	justify-content: space-between;
	flex-direction: column
}

.subheader {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #181925;
	color: #fffae3 !important;
	padding: 1.5rem 20rem;
	font-family: Avenir, sans-serif;
	text-transform: uppercase;
	z-index: 2;
	position: sticky;
	top: 0
}

.subheader p {
	font-family: Avenir;
	color: #fffae3 !important
}

.subheader p a {
	font-family: Avenir
}

.subheader-nav {
	display: flex
}

.subheader-nav__item {
	padding: 0px 2rem;
	border-right: 1px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	list-style-type: none;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer
}

.subheader-nav__item a {
	text-decoration: none;
	font-family: Avenir
}

.subheader-nav__item button {
	font-family: Avenir;
	border: none;
	background: none;
	color: #fffae3;
	font-size: inherit;
	padding: 0;
	text-transform: uppercase
}

.subheader-nav__item:hover {
	opacity: .75
}

.subheader-nav__item:last-child {
	border: none
}

.page-container {
	display: flex;
	flex-direction: column;
	padding: 6rem 15rem;
	background: #fffae3
}

.landing-hero {
	width: 100%;
	background-size: cover !important;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	gap: 5.5rem;
	align-items: flex-start;
	justify-content: center;
	padding: 36rem 15rem 10rem;
	background: linear-gradient(180deg, #2b4482 20%, #2b448200), #fffae3
}

.landing-hero-date {
	font-family: Avenir;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: .232px
}

.landing-hero h1 {
	font-size: 7.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px
}

.landing-buttons {
	display: flex;
	gap: 4.5rem
}

.rounded-button {
	padding: 2rem 5rem;
	text-decoration: none;
	line-height: 17px;
	font-size: 1.6rem;
	font-family: Avenir, sans-serif;
	color: #181925;
	background: #fffae3;
	border-radius: 10rem;
	border: none;
	-webkit-backdrop-filter: blur(2.5px);
	backdrop-filter: blur(2.5px);
	text-transform: uppercase;
	font-weight: 800;
	cursor: pointer;
	transition: .2s;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center
}

.rounded-button:hover {
	opacity: .85
}

.rounded-button--outline {
	background-color: transparent;
	border: 2px solid #fff;
	color: #fffae3;
	transition: .2s
}

.rounded-button--outline:hover {
	background-color: #fff;
	color: #181925
}

.rounded-button--navigation {
	border: 2px solid #181925;
	border-radius: 15rem;
	padding: 1.2rem;
	width: 5.6rem;
	height: 5.6rem
}

.rounded-button--navigation:hover {
	background-color: #181925
}

.rounded-button--navigation:hover img {
	filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(74deg) brightness(101%) contrast(102%)
}

.rounded-button--navigation img {
	width: 100%;
	height: 100%
}

.rounded-button--view {
	border: 2px solid #181925;
	border-radius: 15rem;
	color: #181925;
	height: 5.6rem;
	padding: 0px 5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: .2s
}

.rounded-button--view:hover {
	color: #fff;
	background-color: #181925
}

.rounded-button--view-mb {
	display: none
}

.issue-search__input-container {
	display: flex;
	align-items: center
}

.not-found-page-container {
	padding: 40rem 6rem 20rem;
	background: linear-gradient(180deg, #2b4482 20%, #2b448200), url(./images/Page-not-found-Image.png);
	background-size: cover;
	background-position: center;
	color: #fffae3;
	min-height: 80vh
}

.not-found-page-container h2 {
	font-size: 7.6rem;
	font-family: Georgia;
	margin-bottom: 1.6rem
}

.not-found-page-container p {
	font-size: 2.6rem;
	font-family: Avenir
}

.not-found-page-container a {
	font-size: 1.6rem;
	font-weight: 800;
	text-transform: uppercase;
	font-family: Avenir;
	border: 2px solid #FFFFFF;
	border-radius: 100px;
	padding: 1rem 3rem;
	color: #fffae3;
	margin-top: 4rem;
	display: inline-block;
	text-decoration: none
}

.navigation-reverse img {
	transform: rotate(180deg)
}

.sections-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 20rem;
	padding: 6rem 15rem 10rem;
	background-color: #fffae3
}

.section {
	width: 100%
}

.section-title-wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 5rem
}

.section-title-wrapper h2 {
	margin-bottom: 0
}

.section-title {
	color: #181925;
	font-family: Georgia;
	font-size: 7.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: .232px;
	text-transform: capitalize;
	margin-bottom: 5rem
}

.main-article {
	position: relative;
	background-size: cover;
	border-radius: 15px;
	padding: 3rem 5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	cursor: pointer;
	flex: 1.5;
	min-height: 51.2rem;
	transition: .2s;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
	text-decoration: none
}

.main-article--inside img {
	transition: .2s
}

.main-article:hover .main-article--inside img {
	transform: translate(5px)
}

.article-card--inside img {
	transition: .2s
}

.article-card:hover .article-card--inside img {
	transform: translate(5px)
}

.main-article--about {
	cursor: default
}

.main-article--about:hover {
	opacity: 1 !important
}

.main-article:hover {
	opacity: .65
}

.article-card-title {
	color: #fffae3;
	font-family: Georgia;
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px
}

.main-article .main-article--inside {
	color: #fffae3;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	padding: 5.5px 0;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem
}

.main-article h4 {
	font-family: Georgia;
	font-size: 6.5rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
    color: #fffae3 !important;
	
}

.section-articles-type {
	color: #18192599;
	text-transform: uppercase;
	font-size: 1.5em;
	font-weight: 700;
	font-family: Avenir
}

.section-articles-container {
	display: flex;
	gap: 4.8rem
}

.section-articles-list {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	flex: 1
}

.section-article {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2.3rem;
	border-top: 2px solid rgba(43, 68, 130, .5);
	padding: 2.3rem 0px;
	width: 100%
}

.section-article:hover p,
.section-article:hover h4,
.section-article:hover .section-article--read {
	color: #2b4482
}

.section-article:last-child {
	border-bottom: 2px solid rgba(43, 68, 130, .5)
}

.section-article h4 {
	color: #181925;
	font-family: Georgia;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 4.2rem;
	letter-spacing: .3px
}

.section-article .section-article--read {
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem
}

.section-article .section-article--read img {
	transition: .2s
}

.section-article:hover .section-article--read img {
	transform: translate(5px)
}

.cards-navigation {
	display: flex;
	gap: 2rem
}

.article-cards-container {
	display: flex;
	gap: 5rem;
	flex-wrap: nowrap;
	overflow: hidden
}

.article-card {
	position: relative;
	border-radius: 15px;
	width: calc(33.3% - 3.3rem);
	height: 72rem;
	display: flex;
	align-items: start;
	justify-content: flex-end;
	flex-direction: column;
	padding: 3.2rem 5rem;
	cursor: pointer;
	gap: 2.4rem;
	min-width: calc(33.3% - 3.3rem);
	transition: .2s;
	text-decoration: none
}

.article-card:hover {
	opacity: .65
}

.article-card-gradient {
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 15px;
	z-index: 1;
	background: linear-gradient(180deg, #18192500, #181925cc);
	width: 100%;
	height: 100%
}

.article-card-date {
	color: #2b4482;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	padding: 1.5rem 3rem;
	border-radius: 10rem;
	background: #fffae3cc;
	-webkit-backdrop-filter: blur(2.5px);
	backdrop-filter: blur(2.5px);
	position: absolute;
	right: 3.7rem;
	top: 2.8rem;
	text-align: center
}

.article-card-img {
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 15px;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.article-card h4 {
	color: #fffae3;
	font-family: Georgia;
	font-size: 6.5rem !important;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
	z-index: 1
}

.article-card .article-card--inside {
	color: #fffae3;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	padding: 5.5px 0;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	z-index: 1
}

.section-article-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start
}

.section-article-title {
	color: #181925;
	font-family: Georgia;
	font-size: 7.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: .232px;
	margin-bottom: 5.2rem
}

.section-article-description {
	color: #181925;
	font-family: Avenir;
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 400;
	line-height: 3.2rem;
	letter-spacing: .3px;
	margin-bottom: 2.4rem
}

.article-title {
	font-size: 3.6rem !important
}

footer {
	background: #181925;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem 2.4rem;
	gap: 3.2rem
}

.footer-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 3.2rem;
	width: 100%;
	transition: .2s;
	flex-wrap: wrap
}

.footer-nav a:hover {
	opacity: .65
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: .2s
}

.footer-logo {
	max-width: 41rem
}

.footer-text {
	font-family: Roboto;
	font-size: 1.4rem;
	line-height: 2.4rem;
	max-width: 78.8rem;
	text-align: center;
	color: #fffae3 !important
}

.page .footer-text {
	color: #fffae3 !important
}

.page .footer-copyright {
	color: #fff !important
}

.footer-copyright {
	font-family: Inter;
	opacity: .4;
	color: #fff !important;
	font-size: 10px
}

.footer-socials a:hover {
	opacity: .65
}

.footer-nav a {
	text-decoration: none;
	color: #fffae3;
	font-family: Avenir;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8rem;
	letter-spacing: .2px
}

.landing-hero--inner {
	min-height: 89rem;
	height: auto;
	padding-bottom: 11rem;
	background: linear-gradient(180deg, #2b4482 20%, #00000059), url(./images/inner-hero-img.png);
	background-position: center
}

.landing-hero--inner h1 {
	font-size: 6.4rem;
	max-width: unset
}

.inner-hero-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem
}

.fusion-column-wrapper * {
	color: #333;
	font-family: Avenir
}

.author-content p:first-child {
	margin-top: 0
}

.author-content p {
	margin-top: 1.6rem
}

.author-content img {
	object-fit: cover !important;
	width: 36.6rem !important;
	height: 37.4rem !important;
	float: left !important;
	margin-right: 5rem
}

.inner-hero-author img {
	width: 8.5rem;
	height: 8.5rem;
	border-radius: 8.5rem;
	object-fit: cover
}

.inner-hero-author p,
.inner-hero-author a {
	color: #fffae3;
	font-family: Avenir;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: .1px
}

.article-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 5rem;
	max-width: 105.4rem;
word-wrap: break-word !important;
	color: #333 !important;
	font-size: 2.2rem !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 3.5rem !important;
	letter-spacing: .3px !important;
	font-family: Avenir !important;
}
.article-container > p {
	color: #333 !important;
}

.article-container strong {
	word-wrap: break-word;
	color: #333;
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 600;
	line-height: 3.5rem;
	letter-spacing: .3px;
	font-family: Avenir
}

.article-container strong a {
	font-size: 2.2rem
}

.article-container strong em {
	font-weight: 600
}

.article-container li {
	word-wrap: break-word;
	color: #333;
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 400;
	line-height: 3.5rem;
	letter-spacing: .3px;
	font-family: Avenir
}

sup,
s {
	font-family: Avenir;
	color: #333
}

.article-container ol,
.article-container li {
	padding-left: 16px
}

.article-container blockquote {
	padding: 2.4rem 0;
	border-top: 2px solid #18192580;
	border-bottom: 2px solid #18192580
}

.article-container blockquote * {
	font-family: Georgia !important
}

.article-container blockquote p {
	font-size: 3.6rem !important;
	line-height: 5.4rem;
	font-family: Georgia;
	color: #181925 !important;
}

.article-container cite {
	font-family: Georgia;
	font-style: normal;
	font-size: 3.6rem;
	line-height: 4.8rem;
	color: #181925
}

.article-container h2,h3,h4,h5,h6 

{   
    
    color:#181925;
    font-family:Georgia;
    font-style:normal;
    font-weight:400;
    line-height:4rem;
    letter-spacing:.1px

}


.article-container h2{font-size:6.4rem;},
.article-container h3{font-size:4.8rem;},
.article-container h4{font-size:4.0rem;},
.article-container h5{font-size:3.6rem;},
.article-container h6{font-size:3.2rem;},


.article-container p {
	word-wrap: break-word !important;
	color: #333333 !important;
	font-size: 2.2rem !important;
	font-style: normal !important;
	font-weight: 400 !important;
	line-height: 3.5rem !important;
	letter-spacing: .3px !important;
	font-family: Avenir !important;
}

em {
	font-family: Avenir;
	color: #333;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 3.5rem;
	letter-spacing: .3px;
	font-style: italic !important
}

.article-container em {
	color: #333;
	font-size: 2.2rem;
	font-weight: 400;
	line-height: 3.5rem;
	letter-spacing: .3px
}

.article-container a {
	text-decoration: underline;
	font-family: Avenir;
	color: #2b4482
}

.article-container a:hover {
	opacity: .75
}

.article-container a em {
	color: #2b4482
}

.article-container img {
	max-height: 62.6rem;
	height: 100%;
	width: 100%;
	object-fit: cover;
	border-radius: 15px
}

.related-articles {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%
}

.related-article--articles {
	max-width: 105.4rem
}

.sections-wrapper--article {
	flex-direction: column;
	align-items: center;
	gap: 5.6rem
}

.related-articles--wrapper {
	display: flex;
	gap: 5rem;
	flex-wrap: wrap
}

.related-articles--wrapper .related-article {
	width: calc(50% - 2.5rem)
}

.related-articles--wrapper .related-article-image {
	height: 31.4rem
}

.related-articles-title {
	padding: 1.2rem 0;
	color: #181925;
	font-family: Avenir;
	font-size: 3.2rem;
	font-style: normal;
	font-weight: 400;
	line-height: 4.2rem;
	letter-spacing: .3px;
	border-top: 2px solid rgba(43, 68, 130, .5);
	border-bottom: 2px solid rgba(43, 68, 130, .5)
}

.editorial-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2rem
}

.editorial-text .related-article-title {
	font-size: 3.6rem !important
}

.editorial-title {
	font-size: 4.8rem !important
}

.editorial-read {
	white-space: nowrap;
	color: #181925;
	font-size: 1.6rem !important
}

.editorial-volume {
	font-size: 1.6rem !important;
	color: #181925cc;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	letter-spacing: .2px;
	text-transform: uppercase
}

.issues-article {
	padding-top: 2rem;
	border-top: 2px solid rgba(43, 68, 130, .5)
}

.related-article {
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 2rem;
	padding-bottom: 2rem;
	border-bottom: 2px solid rgba(43, 68, 130, .5)
}

.related-article:hover p,
.related-article:hover .related-article-read {
	color: #2b4482
}

.related-article-title {
	color: #181925;
	font-family: Georgia;
	font-size: 2.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 4.2rem;
	letter-spacing: .3px
}

.editorial-articles {
	width: 100%;
	gap: 7.8rem
}

.editorial-article {
	flex-direction: row;
	padding-bottom: 7.8rem
}

.related-article-read {
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem
}

.related-article-read img {
	transition: .2s
}

.read-more-arrow {
	width: 1.7rem;
	max-width: 1.7rem;
	height: .9rem;
	min-height: .9rem;
	background-size: contain;
	background-image: url(./images/read-more-arrow-dark.svg);
	transition: .2s
}

.article-item:hover .read-more-arrow {
	background-image: url(./images/read-more-arrow-hover.svg);
	transform: translate(5px)
}

.related-article:hover .read-more-arrow {
	transform: translate(5px);
	background-image: url(./images/read-more-arrow-hover.svg)
}

.related-article-image {
	width: 100%;
	height: 24.1rem;
	object-fit: cover;
	border-radius: 15px
}

.article-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 4.7rem;
	width: calc(33.3332% - 3.4rem);
	cursor: pointer
}

.article-item:hover p,
.article-item:hover h4,
.article-item:hover div,
.article-item:hover .article-read-more {
	color: #2b4482
}

.article-item__image {
	border-radius: 15px;
	height: 31.4rem;
	width: 100%;
	object-fit: cover
}

.articles-container {
	display: flex;
	gap: 5rem;
	flex-wrap: wrap
}

.articles-container-main {
	overflow: hidden
}

#articles-container--inner {
	display: flex;
	gap: 5rem;
	flex-wrap: nowrap;
	width: 100%;
	transition: .2s
}

#articles-container--inner .article-item {
	min-width: calc(33.3% - 3.3rem);
	width: calc(33.3% - 3.3rem)
}

#articles-wrapper {
	display: flex;
	gap: 5rem;
	flex-wrap: nowrap;
	width: 100%;
	transition: .2s
}

.articles-container-inside {
	margin-bottom: 5rem
}

.article-item__number {
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 112.5%;
	text-transform: uppercase;
	color: #181925cc
}

.article-item__text {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: flex-start;
	justify-content: flex-start
}

.article-item__text h4 {
	color: #181925;
	font-family: Georgia;
	font-size: 3.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 141%;
	letter-spacing: .3px
}

.article-read-more {
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 112.5%;
	letter-spacing: .2px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 1.6rem
}

.sidebar-buttons--wrapper {
	display: flex;
	gap: 5rem
}

.sidebar-buttons--wrapper .sidebar-button {
	flex: 1
}

.sidebar-button {
	text-transform: none !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	gap: 2.5rem;
	padding: 5rem 5rem 7rem;
	border-radius: 15px;
	background: #e5e1cc;
	align-self: stretch;
	cursor: pointer;
	position: relative;
	transition: .2s;
	border: none
}

.sidebar-button:hover {
	background: #e5e1cc80
}

.sidebar-button:hover .article-button-text p {
	color: #2b4482
}

.sidebar-button:hover .article-button-text img {
	filter: invert(24%) sepia(14%) saturate(4518%) hue-rotate(196deg) brightness(90%) contrast(89%)
}

.sidebar-button--article:hover .article-button-text img {
	filter: invert(24%) sepia(14%) saturate(4518%) hue-rotate(314deg) brightness(90%) contrast(89%)
}

.sidebar-button p {
	color: #181925;
	font-family: Avenir;
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
	text-align: center
}

.article-button-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 2.5rem;
	height: 100%
}

.article-button-text img {
	width: 5rem;
	height: 5rem;
	object-fit: contain
}

.article-seperator {
	width: 10rem;
	height: 2px;
	margin: 5rem auto;
	background-color: #18192580
}

.next-article-button {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	padding: 2.5rem 5rem;
	background-color: #e5e1cc;
	border-radius: 15px;
	gap: 2.5rem;
	position: relative;
	min-height: 10rem
}

.next-article-button p {
	color: #181925;
	font-family: Avenir;
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px
}

.next-article-button img {
	width: 5.3rem;
	height: 5.3rem
}

.page-hero {
	position: relative;
	padding: 36.6rem 15rem 15rem;
	background: linear-gradient(180deg, #2b4482 20%, #0000004d)
}

.page-hero h1 {
	color: #fffae3;
	font-family: Georgia;
	font-size: 7.3rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px
}

.page-hero__image {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	z-index: -1
}

.page-hero-center {
	align-items: center
}

.page-hero-center h1 {
	text-align: center
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem
}

.pagination-button {
	width: 5.4rem;
	height: 5.4rem;
	border-radius: 100px;
	background-color: transparent;
	cursor: pointer;
	border: 2px solid #181925;
	color: #181925 !important;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 112.5%;
	letter-spacing: .2px;
	text-transform: uppercase;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none
}

.pagination-button--arrow:hover {
	background-color: #181925
}

.pagination-button--arrow:hover img {
	filter: invert(84%) sepia(25%) saturate(250%) hue-rotate(323deg) brightness(111%) contrast(107%)
}

.pagination-button--arrow-reverse img {
	transform: rotate(180deg)
}

.pagination-container {
	margin: 5rem auto;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	position: relative
}

.pagination-button--arrow img {
	width: 1.8rem !important
}

.pagination-button:hover {
	background: #181925;
	color: #fffae3 !important
}

.visit-archive {
	align-self: flex-end;
	position: absolute;
	right: 0;
	bottom: 0;
	color: #2b4482;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 18px;
	letter-spacing: .2px;
	text-decoration-line: underline;
	text-transform: uppercase
}

.pagination-dots {
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 112.5%;
	letter-spacing: .2px;
	text-transform: uppercase;
	pointer-events: none
}

.pagination-button--active {
	background: #181925;
	color: #fffae3 !important
}

.article-filter-container {
	display: flex;
	gap: 2rem;
	align-self: flex-end;
	align-items: center;
	justify-content: center;
	margin-bottom: 6rem
}

.article-filter-container p {
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 112.5%;
	letter-spacing: .2px;
	text-transform: uppercase
}

.article-filter {
	position: relative;
	cursor: pointer
}

.article-filter-dropdown {
	border: none;
	padding: 2rem 5rem 2rem 2.5rem;
	border-radius: 3rem;
	background-color: transparent;
	border: 2px solid rgba(24, 25, 37, .5);
	color: red;
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none
}

.article-filter-dropdown__clicked {
	border-radius: 3rem 3rem 0 0;
	border-bottom: none;
	margin-top: -2px
}

.article-filter-dropdown__arrow {
	position: absolute;
	right: 2.5rem;
	top: 2.4rem;
	width: 1.2rem;
	height: 1.2rem;
	pointer-events: none
}

.article-filter-dropdown__list {
	color: #181925;
	height: 0px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	width: 0px;
	z-index: 2
}

.article-filter-dropdown__list-item {
	text-align: center;
	cursor: pointer;
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 112.5%;
	letter-spacing: .2px;
	text-transform: uppercase
}

.article-filter-dropdown__list-item:hover {
	background-color: #e5e1cc
}

.article-filter-dropdown__list--active {
	background-color: #fffae3;
	border: 2px solid rgba(24, 25, 37, .5);
	border-radius: 0 0 13px 13px;
	border-top: none;
	height: auto;
	position: absolute;
	padding: 0 1.2rem 1.2rem;
	top: 100%;
	left: 0;
	width: 100%;
	gap: 1.2rem
}

.article-filter-dropdown__clicked .article-filter-dropdown__list {
	height: auto
}

.page-filter-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10rem
}

.page-filter-wrapper .article-filter-container {
	margin-bottom: 0
}

.search-input-container {
	display: flex;
	align-items: center;
	position: relative
}

.search-input-container input {
	border: none;
	padding: 2rem 5rem 2rem 2.5rem;
	border-radius: 100px;
	background-color: transparent;
	border: 2px solid rgba(24, 25, 37, .5);
	color: red;
	color: #181925;
	font-family: Avenir;
	font-size: 1.8rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	width: 50rem
}

.search-input-btn {
	position: absolute;
	right: 2.5rem;
	cursor: pointer
}

.page-hero .hero-description {
	color: #fffae3 !important;
	text-align: center;
	font-family: Avenir;
	font-size: 2.6rem;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
	margin-top: 1.2rem
}

.clear-filters-btn {
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-decoration-line: underline;
	text-transform: uppercase;
	border: none;
	margin: 0;
	background-color: transparent
}

.header-nav-search-btn {
	border: none;
	background-color: transparent;
	cursor: pointer
}

.middle-content-container {
	max-width: 106.7rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 5rem
}

.middle-content-container .alignLeft {
	object-fit: cover !important;
	width: 36.6rem !important;
	height: 37.4rem !important;
	float: left !important;
	margin-right: 5rem
}

.middle-content-container p,
.middle-content-container ul,
.middle-content-container ul li {
	font-family: Avenir;
	font-size: 2.2rem;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: .3px;
	color: #333
}

.middle-content-container a {
	color: #2b4482;
	font-family: Avenir;
	word-break: break-all;
	white-space: normal
}

.middle-content-container p a {
	word-break: normal
}

.middle-content-container ol,
ul {
	padding-left: 1.6rem
}

.middle-content-container img {
	width: 100%;
	max-height: 60rem;
	object-fit: cover
}

.middle-content-container h2 {
	color: #181925;
	font-family: Georgia;
	font-size: 4.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 4rem;
	letter-spacing: .1px
}

.about-us-cards-container {
	display: flex;
	gap: 24px
}

.about-us-card {
	border-radius: 15px;
	background: #e5e1cc;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 5rem 7.2rem;
	width: 100%
}

.about-us-card button:hover {
	opacity: .8
}

.about-us-card img {
	width: 9rem;
	object-fit: contain;
	margin-bottom: 2.4rem
}

.editorial-image {
	width: 37rem !important;
	min-width: 37rem;
	height: 25rem !important;
	max-height: 25rem !important
}

.about-us-card h4 {
	color: #181925;
	text-align: center;
	font-family: Georgia;
	font-size: 4.8rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
	margin-bottom: 1.2rem
}

.about-us-card p {
	color: #181925;
	text-align: center;
	font-family: Avenir;
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
	margin-bottom: 5rem
}

.about-us-card button {
	color: #fffae3;
	text-align: center;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	border: none;
	border-radius: 100px;
	background: #181925;
	padding: 2rem 5.7rem;
	cursor: pointer
}

.hero-title-tag {
	color: #fffae3;
	text-align: center;
	font-family: Avenir;
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px
}

.editorial-author-image {
	object-fit: cover !important;
	width: 36.6rem !important;
	height: 37.4rem !important;
	float: left !important;
	margin-right: 5rem
}

#subscribe-modal-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;
	min-height: 100vh;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	display: none;
	z-index: 999999
}

#donate-modal-container {
	position: relative;
	align-items: center;
	justify-content: center;
	width: 100vw;
	min-height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999;
	overflow: scroll
}

#subscribe-modal-gradient,
#donate-modal-gradient {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #18192599
}

.subscribe-modal {
	z-index: 1;
	border-radius: 15px;
	background: #fffae3;
	padding: 4.8rem 7.2rem;
	max-width: 113rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6rem
}

.subscribe-modal-wrapper {
	z-index: 100;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center
}

.donate-modal {
	z-index: 1;
	border-radius: 15px;
	background: #fffae3;
	padding: 4.8rem 7.2rem;
	max-width: 93rem;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6rem
}

.subscribe-modal-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%
}

#subscribe-modal-close,
#donate-modal-close {
	border: none;
	background-color: transparent;
	align-self: flex-end;
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
	margin-bottom: 2.4rem;
	cursor: pointer
}

.subscribe-modal-header h2 {
	color: #181925;
	text-align: center;
	font-family: Georgia;
	font-size: 6.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
	margin-bottom: 1.2rem
}

.subscribe-modal-header p {
	color: #181925;
	text-align: center;
	font-family: Avenir;
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
	max-width: 77rem
}

.subscribe-modal-form {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	width: 100%
}

.input-error::-webkit-input-placeholder {
	color: red
}

#formMessage {
	color: red;
	font-family: Avenir;
	font-weight: 800;
	font-size: 1.6rem;
	line-height: 1.8rem;
	text-align: center
}

.subscribe-modal-names {
	display: flex;
	gap: 1.2rem
}

.subscribe-modal-form input {
	border-radius: 100px;
	border: 2px solid rgba(24, 25, 37, .5);
	flex: 1;
	padding: 2rem 2.5rem;
	background-color: transparent;
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase
}

.subscribe-modal-btn {
	padding: 2rem 9.2rem;
	border-radius: 100px;
	background: #181925;
	color: #fffae3;
	text-align: center;
	font-family: Avenir;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 800;
	line-height: 1.8rem;
	letter-spacing: .2px;
	text-transform: uppercase;
	text-decoration: none
}

.subscribe-modal-interest {
	color: #181925;
	text-align: center;
	font-family: Avenir;
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px
}

.subscribe-modal-interest a {
	color: #3c64b1;
	font-family: Avenir;
	font-size: 2.6rem;
	font-style: normal;
	font-weight: 400;
	line-height: 143%;
	letter-spacing: .232px;
	text-decoration-line: underline
}

.related-article-issues {
	display: flex;
	flex-direction: row !important;
	gap: 4.7rem !important
}

.related-article-image-issues {
	flex: 1 !important;
	height: 31rem
}

.editorial-text-issues {
	flex: 1 !important
}

.issue-search-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding-bottom: 5rem;
	margin-top: -1rem;
	gap: 3.5rem;
	flex-wrap: wrap
}

.issue-search-container {
	display: flex;
	position: relative;
	align-items: center;
	width: 100%
}

.issue-search-container form {
	width: 100%
}

.issue-search-container input {
	border: none;
	background-color: transparent;
	padding: 2rem 2.5rem;
	border-radius: 100px;
	border: 2px solid rgba(24, 25, 37, .5);
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	width: 100%
}

.issue-search__button {
	position: absolute;
	right: 2.5rem;
	width: 2rem;
	height: 2rem;
	border: none;
	background-color: transparent;
	cursor: pointer
}

.issue-search__button img {
	width: 100%;
	height: 100%
}

.result-count {
	color: #181925;
	font-family: Avenir;
	font-size: 1.6rem;
	padding-right: 2.5rem
}

.subheader-logo-anchor,
.subheader-logo {
	display: none
}

#burger-menu-btn {
	display: none;
	background-image: url(./images/burger-menu.svg);
	transition: background-image .2s ease-in-out
}

.burger-active {
	background-image: url(./images/burger-menu-x.svg) !important
}

.wp-block-separator {
	width: 100% !important;
	max-width: 100px !important;
	border: 2px solid #18192580 !important;
	margin: 34px auto !important
}

.article-filter-container--allarticles .article-filter,
#catFilterDropdown {
	min-width: 24rem
}

@media (max-width: 2560px) {
	html {
		font-size: 13.3px
	}
}

@media (max-width: 1920px) {
	html {
		font-size: 10px
	}
}

@media (max-width: 1680px) {
	html {
		font-size: 8.75px
	}
}

@media (max-width: 1467px) {
	html {
		font-size: 7.64px
	}

	.subheader {
		padding: 1.5rem 6rem
	}

	.header-nav__item a {
		font-size: 1.7rem
	}

	#header-nav {
		justify-content: space-between;
		gap: unset;
		padding: 2.5rem 6rem
	}

	.subheader-nav__item a,
	.subheader-nav__item button,
	.subheader p {
		font-size: 1.7rem
	}
}

@media (max-width: 1440px) {
	html {
		font-size: 7.5px
	}
}

@media (max-width: 1366px) {
	html {
		font-size: 7.11px
	}
}

@media (max-width: 1200px) {
	html {
		font-size: 6.25px
	}
}

@media (max-width: 1060px) {
	html {
		font-size: 5.33px
	}
}

@media (max-width: 1024px) {

	em,
	.article-container li,
	.article-container strong {
		font-size: 2rem
	}

	.related-article-image-issues {
		height: 24.1rem !important
	}

	h1,
	h1 * {
		font-size: 4.8rem;
		line-height: 6.8rem
	}

	h2,
	h2 * {
		font-size: 4rem;
		line-height: 5.7rem
	}

	h3,
	h3 * {
		font-size: 3.6rem;
		line-height: 5.1rem
	}

	h4,
	h4 * {
		font-size: 3.2rem;
		line-height: 2.8rem
	}

	h5,
	h5 * {
		font-size: 2.4rem;
		line-height: 3.4rem
	}

	h6,
	h6 * {
		font-size: 2rem;
		line-height: 2.8rem
	}

	.article-container blockquote p {
		font-size: 3.2rem !important;
		line-height: 4.8rem
	}

	.article-filter-dropdown__arrow {
		top: 37%
	}

	#articles-container--inner .article-item {
		min-width: 514px
	}

	.article-container ol {
		padding-left: 30px
	}

	.wp-block-separator {
		margin: 1rem auto
	}

	.sidebar-buttons--wrapper {
		flex-direction: column;
		gap: 1.6rem
	}

	.sidebar-buttons--wrapper .sidebar-button {
		max-width: 100%
	}

	.subscribe-modal {
		margin: auto 2.4rem
	}

	.issue-search-container {
		flex: 1
	}

	.issue-search__input-container,
	.issue-search-container input,
	.issue-search-container form,
	.header-search-input-container {
		width: 100%
	}

	#header-search {
		padding: 4.8rem 2.5rem
	}

	#header-search-close-btn {
		top: 4.8rem;
		right: 2.5rem
	}

	.related-articles--wrapper .related-article {
		width: 100%
	}

	html {
		font-size: 10px
	}

	#header {
		display: none
	}

	.landing-hero {
		padding: 20rem 2rem 10rem;
		align-items: center
	}

	.landing-hero h1 {
		text-align: center;
		font-size: 4.8rem;
		line-height: 6.8rem
	}

	.section-title {
		font-size: 4rem;
		margin-bottom: 2.4rem
	}

	.section-articles-container {
		flex-direction: column
	}

	.main-article {
		height: 47.5rem;
		min-height: 47.5rem
	}

	.sections-wrapper {
		padding: 4.8rem 2.4rem;
		gap: 10rem
	}

	.section-article {
		gap: 1.6rem
	}

	.rounded-button--navigation {
		display: none
	}

	.article-cards-container-scroll {
		flex-wrap: nowrap;
		overflow: scroll
	}

	.article-cards-container-scroll .article-card {
		width: 51.5rem;
		min-width: 51.5rem
	}

	.section-articles-container--reverse {
		flex-direction: column-reverse
	}

	.section-article-title {
		font-size: 4.8rem;
		margin-bottom: 3rem
	}

	.main-article {
		height: 51.2rem;
		min-height: 51.2rem
	}

	.articles-container {
		flex-wrap: nowrap;
		overflow: scroll
	}

	.articles-container .article-item {
		width: 50rem;
		min-width: 50rem
	}

	.section-article-description {
		font-size: 2rem
	}

	.subheader-nav,
	.subheader p {
		display: none
	}

	.subheader {
		height: 13.5rem;
		padding: 1.5rem 2.4rem;
		justify-content: center;
		position: relative
	}

	.subheader-logo-anchor {
		display: flex
	}

	.subheader-logo {
		display: flex;
		width: 41.5rem
	}

	#burger-menu-btn {
		display: flex;
		position: absolute;
		right: 2.4rem;
		width: 5.2rem;
		height: 3.4rem;
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat
	}

	.footer-logo {
		max-width: 41rem
	}

	.sections-wrapper--article {
		flex-direction: column
	}

	.landing-hero--inner {
		align-items: flex-start;
		gap: 3.5rem;
		padding: 22.6rem 1.6rem 9.1rem;
		min-height: auto;
		height: 100%
	}

	.landing-hero--inner h1 {
		text-align: start
	}

	.inner-hero-author img {
		width: 7rem;
		height: 7rem
	}

	.article-container p,
	.article-container em,
	.article-container strong a {
		font-size: 2rem
	}

	.related-articles {
		width: 100%;
		min-width: 100%
	}

	.sections-wrapper--article {
		gap: 2rem
	}

	.related-article-image {
		height: 31.4rem;
		max-height: 31.4rem
	}

	.article-seperator {
		margin: 2.4rem auto
	}

	.article-container {
		gap: 2.4rem
	}

	.related-articles-title {
		font-size: 4rem;
		padding: 1.6rem 0
	}

	.page-hero-issues {
		text-align: center
	}

	.page-container {
		padding: 2.4rem
	}

	.article-cards-container--issues {
		gap: 2.4rem
	}

	.article-cards-container--issues .article-card {
		width: calc(50% - 1.2rem)
	}

	.visit-archive {
		position: relative;
		margin: 0 auto
	}

	.pagination-container {
		flex-direction: column-reverse;
		align-items: center;
		gap: 2.4rem
	}

	.page-hero {
		padding: 28rem 2.6rem 15rem;
		height: 100%;
		display: flex;
		align-items: center;
		justify-content: center
	}

	.page-hero-issues {
		font-size: 4.8rem !important;
		white-space: nowrap
	}

	.page-hero-center {
		flex-direction: column;
		gap: 2.4rem
	}

	.search-input-container {
		flex: 1
	}

	.search-input-container input {
		width: 100%
	}

	.page-filter-wrapper {
		margin-bottom: 5rem;
		gap: 11.2rem
	}

	.articles-container-inside {
		flex-wrap: wrap
	}

	.articles-container-inside .article-item {
		width: 100%
	}

	.page-filter-wrapper--allarticles {
		flex-direction: column;
		gap: 2.4rem
	}

	.search-input-container--allarticles {
		width: 100%
	}

	.article-filter-container--allarticles {
		width: 100%;
		justify-content: space-between
	}

	.page-filter-wrapper--allarticles {
		margin-bottom: 7.2rem
	}

	.middle-content-container h2 {
		font-size: 3.6rem
	}

	.middle-content-container p {
		font-size: 2rem
	}

	.editorial-article {
		flex-direction: column
	}

	.editorial-image {
		width: 100% !important
	}

	.editorial-text .related-article-title {
		font-size: 3.2rem !important
	}

	.article-container cite {
		font-size: 3.2rem
	}

	.article-cards-container {
		gap: 2.4rem;
		flex-wrap: wrap
	}

	#subscribe-modal-container {
		overflow: scroll
	}

	.subscribe-modal-wrapper {
		overflow: scroll;
		padding: 2rem 0 7rem
	}

	.not-found-page-container {
		padding: 20rem 1.6rem 16rem
	}

	.not-found-page-container h2 {
		font-size: 4.8rem
	}

	.not-found-page-container p {
		font-size: 2rem
	}
}

@media (max-width: 768px) {

	.article-container li,
	.article-container strong {
		font-size: 1.6rem
	}

	.author-content img {
		padding: 1.6rem 0
	}

	.donate-modal {
		margin: 0 1.6rem;
		padding: 2.4rem 1.6rem
	}

	.nav-search-btn-burger span {
		font-size: 1.4rem
	}

	.subscribe-modal-btn {
		padding: 2rem
	}

	em {
		font-size: 1.6rem
	}

	.editorial-image {
		min-width: auto
	}

	h1,
	h1 * {
		font-size: 3.6rem;
		line-height: 5.1rem
	}

	h2,
	h2 * {
		font-size: 3.2rem;
		line-height: 4.5rem
	}

	h3,
	h3 * {
		font-size: 2.4rem;
		line-height: 3.4rem
	}

	h4,
	h4 * {
		font-size: 2rem;
		line-height: 2.8rem
	}

	h5,
	h5 * {
		font-size: 1.8rem;
		line-height: 2.5rem
	}

	h6,
	h6 * {
		font-size: 1.6rem;
		line-height: 2.2rem
	}

	.related-article-issues {
		flex-direction: column !important;
		gap: 2.4rem !important
	}

	.article-container blockquote p {
		font-size: 2.4rem !important;
		line-height: 3.6rem
		
	}

	.article-container p,
	.article-container em,
	.article-container strong a {
		font-size: 1.6rem !important
	}

	#articles-container--inner {
		flex-direction: column
	}

	.wp-block-separator {
		margin: 0 auto !important
	}

	.rounded-button--view-mb {
		display: flex;
		align-items: center;
		justify-content: center
	}

	.page-hero {
		padding: 20rem 2.6rem 15rem
	}

	.landing-hero {
		padding: 14rem 2rem 8rem
	}

	.landing-hero--inner {
		padding: 12rem 1.6rem 5rem
	}

	.landing-hero-date {
		font-size: 2rem
	}

	#burger-menu {
		padding: 8rem 1.6rem 4rem
	}

	.burger-menu-note {
		font-size: 1.4rem
	}

	.burger-menu-nav__item a {
		padding: 1.05rem 1.6rem;
		font-size: 1.4rem
	}

	#header-search {
		padding: 1.6rem
	}

	#header-search-close-btn {
		top: 1.6rem;
		right: 1.6rem
	}

	.article-container cite {
		font-size: 2.4rem;
		line-height: 3.6rem
	}

	.related-articles-title {
		font-size: 2.4rem
	}

	footer img {
		width: 90%
	}

	.page-hero h1 {
		font-size: 3.6rem
	}

	.subscribe-modal-form input {
		font-size: 1.4rem
	}

	.subscribe-modal {
		height: auto;
		margin: auto 1.6rem;
		gap: 2.4rem;
		padding: 24px 16px
	}

	.subscribe-modal-interest a,
	.subscribe-modal-interest,
	.subscribe-modal-header p {
		font-size: 1.6rem
	}

	.subscribe-modal-header h2 {
		font-size: 3.6rem
	}

	.subscribe-modal-names {
		flex-direction: column
	}

	.about-us-cards-container {
		flex-direction: column;
		width: 100%
	}

	#articles-wrapper {
		flex-direction: column
	}

	.article-cards-container {
		overflow: hidden
	}

	.article-cards-container--front .article-card:nth-child(n+4) {
		display: none
	}

	#articles-container--inner .article-item:nth-child(n+4) {
		display: none
	}

	.editorial-title {
		font-size: 2.4rem !important
	}

	.middle-content-container,
	.editorial-articles {
		gap: 2.4rem
	}

	.editorial-author-image {
		width: 100% !important;
		margin: 0 0 2.4rem
	}

	.middle-content-container h2 {
		font-size: 3.2rem
	}

	.middle-content-container p {
		font-size: 1.6rem
	}

	.page-filter-wrapper--allarticles {
		margin-bottom: 2.4rem
	}

	.article-filter-container--allarticles {
		flex-direction: column;
		align-items: flex-start
	}

	.article-filter-container--allarticles .article-filter,
	.search-input-container {
		width: 100%
	}

	.article-filter {
		flex: 1
	}

	.article-filter-dropdown {
		width: 100%
	}

	.page-filter-wrapper {
		gap: 2.4rem
	}

	.page-filter-wrapper .article-filter-container {
		width: 100%;
		justify-content: flex-start
	}

	.page-filter-wrapper {
		flex-direction: column
	}

	.article-card {
		padding: 2.6rem
	}

	.page-hero-issues {
		font-size: 3.6rem !important
	}

	.article-cards-container--issues .article-card {
		width: 100%
	}

	.page-hero-issues {
		font-size: 3.6rem
	}

	.subheader-logo {
		width: 21.8rem
	}

	#burger-menu-btn {
		width: 2.4rem;
		height: 1.8rem
	}

	.subheader {
		height: 7.5rem
	}

	.landing-hero h1 {
		font-size: 3.6rem
	}

	.landing-buttons {
		flex-direction: column;
		width: 100%;
		gap: 2.4rem
	}

	.sections-wrapper {
		padding: 2.4rem 1.6rem
	}

	.footer-logo {
		max-width: 31rem;
		width: 100%
	}

	.section-title-wrapper .cards-navigation {
		display: none
	}

	.section-title,
	.main-article h4 {
		font-size: 3.2rem
	}

	.main-article {
		padding: 2.4rem
	}

	.article-card {
		height: 39rem;
		min-height: 39rem
	}

	.article-cards-container-scroll {
		flex-wrap: wrap
	}

	.article-cards-container-scroll .article-card {
		width: 100%;
		min-width: 100%;
		padding: 2.7rem
	}

	.article-card h4 {
		font-size: 3.2rem !important
	}

	.article-card-date {
		padding: 1rem 2rem;
		font-size: 1.2rem
	}

	.articles-container {
		flex-wrap: wrap;
		overflow: unset
	}

	.article-item {
		width: 100% !important;
		min-width: auto !important
	}

	.article-item__text h4 {
		font-size: 3.2rem
	}

	.article-read-more {
		font-size: 1.6rem
	}

	.rounded-button {
		width: 100%
	}

	.articles-container {
		margin-bottom: 5rem
	}

	.main-article {
		height: 44rem;
		min-height: 44rem
	}

	.sidebar-button {
		width: 100%;
		min-width: 100%
	}

	.related-articles-title {
		font-size: 2.4rem;
		padding: 0
	}

	.not-found-page-container {
		padding: 20rem 1.6rem 12rem;
		display: flex;
		flex-direction: column;
		align-items: center
	}

	.not-found-page-container h2 {
		font-size: 3.6rem;
		text-align: center
	}

	.not-found-page-container p {
		font-size: 1.6rem;
		text-align: center
	}

	.not-found-page-container a {
		font-size: 1.4rem
	}
}

.articlekont {
color: black!important;
}