/**
 * Child Theme Variables
 */
:root {
	--color-dark-gray: #6f6b6a;
	--color-white: #fff;
	--border-color: #c00;
	--link-color: #c00;
	--fa-circle-plus: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23cc0000%22%20d%3D%22M256%20512A256%20256%200%201%200%20256%200a256%20256%200%201%200%200%20512zM232%20344l0-64-64%200c-13.3%200-24-10.7-24-24s10.7-24%2024-24l64%200%200-64c0-13.3%2010.7-24%2024-24s24%2010.7%2024%2024l0%2064%2064%200c13.3%200%2024%2010.7%2024%2024s-10.7%2024-24%2024l-64%200%200%2064c0%2013.3-10.7%2024-24%2024s-24-10.7-24-24z%22%2F%3E%3C%2Fsvg%3E);
	--fa-angles-right: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23d13a03%22%20d%3D%22M470.6%20278.6c12.5-12.5%2012.5-32.8%200-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3L402.7%20256%20265.4%20393.4c-12.5%2012.5-12.5%2032.8%200%2045.3s32.8%2012.5%2045.3%200l160-160zm-352%20160l160-160c12.5-12.5%2012.5-32.8%200-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3L210.7%20256%2073.4%20393.4c-12.5%2012.5-12.5%2032.8%200%2045.3s32.8%2012.5%2045.3%200z%22%2F%3E%3C%2Fsvg%3E);
	--left-w: 240px;
	--right-w: 340px;
	--collapsed-w: 50px;
}

/**
 * Configure local font.
 */
/* oswald-regular - latin */
@font-face {
	font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: Oswald;
	font-style: normal;
	font-weight: 400;
	src: url(../fonts/oswald-v56-latin-regular.woff2) format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/**
 * Change in the <header>
 */
#header .nav-container .nav {
	font-family: Oswald, sans-serif;
	display: flex !important;
	justify-content: flex-end;
	text-transform: uppercase;
	color: var(--color-white);
}
@media (min-width: 720px) {
	#header .nav-container .nav {
		padding-right: 55px;
	}
}

#header .hu-pad {
	padding: 15px 0;
}

#nav-header .container .nav {
	display: flex !important;
	justify-content: center;
}
#nav-header .container .nav > li {
	position: relative;
}
#nav-header .container .nav > li:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 2px;
	height: 1em;
	background-color: #c00;
	position: absolute;
	top: calc(50% - 0.5em);
	right: 0;
}
#nav-header .container .nav > li a {
	font-size: 1.2rem;
	color: #656364;
	text-transform: uppercase;
	font-family: Oswald, sans-serif;
}
#nav-header .container .nav > li.current-menu-item a {
	color: rgb(147.585, 145.415, 146.5);
}
#nav-header .container .nav > li .sub-menu li a {
	text-transform: none;
	font-size: 1.1em;
}

/**
 * Style changes on the Sidebars (Layout changes are further down).
 */
.sidebar .widget {
	padding: 0;
}
.sidebar .widget > :not(h2) {
	padding: 0.5rem;
}
.sidebar h2 {
	background-color: var(--color-dark-gray);
	color: var(--color-white);
	font-family: Oswald, sans-serif;
	padding: 1em;
	text-align: center;
	text-transform: uppercase;
	font-size: 1.1rem;
	font-weight: 400;
	border-left: 5px solid var(--border-color);
	position: relative;
}
.sidebar h2::after {
	content: "";
	background-image: auto;
	background-repeat: no-repeat no-repeat;
	background-position: center center;
	background-size: contain;
	display: block;
	width: 1.5em;
	height: 1.5em;
	position: absolute;
	top: calc(50% - 0.75em);
	right: 0.5em;
}
.sidebar.s1 h2::after {
	background-image: var(--fa-circle-plus);
}
.sidebar.s2 h2::after {
	background-image: var(--fa-angles-right);
}

/**
 * Changes in the footer.
 */
footer {
	padding-bottom: 2rem;
}

#footer-full-width-widget {
	background: #fff;
	border-top: 4px solid var(--border-color);
	inset: auto 0 0 0;
	max-height: 250px;
	padding-top: 2rem;
	position: fixed;
	transition: all 1s ease-in;
	z-index: 100;
	overflow: hidden;
}
#footer-full-width-widget label::after {
	content: "Close [X]";
	position: absolute;
	top: 0.5rem;
	right: 1rem;
	cursor: pointer;
	font-weight: 700;
	font-size: 1.2em;
}
#footer-full-width-widget input[type="checkbox"] {
	display: none;
}

#footer-full-width-widget:has(input:checked) {
	max-height: 2rem;
	opacity: 0.7;
	padding: 0;
}
#footer-full-width-widget:has(input:checked) label::after {
	content: "Show [^]";
}

/**
 * Front-page changes
 */
.page-title h2 {
	font-family: Oswald, sans-serif;
	font-size: 1.3rem;
}

.home-widgets {
	display: inline-grid;
	grid-gap: 1rem;
}
.home-widgets.two-col {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.home-widgets * > h2 {
	font-family: Oswald, sans-serif;
	text-transform: uppercase;
	font-size: 1.2rem;
	background: #eee;
	padding: 1rem;
	border-left: 4px solid var(--border-color);
	position: relative;
}
.home-widgets * > h2::after {
	content: "";
	display: block;
	width: 1.2em;
	height: 1.2em;
	position: absolute;
	top: calc(50% - 0.6em);
	right: 0.5rem;
	background: var(--fa-circle-plus);
}
.home-widgets * > h2 a::after {
	background: transparent var(--fa-angles-right) no-repeat;
	content: "";
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-left: 0.2em;
}
.home-widgets :not(h2) a {
	font-weight: 600;
}
.home-widgets li {
	margin: 0.7rem 0 1rem 0;
}
.home-widgets li a {
	color: var(--link-color);
	text-transform: uppercase;
}

/**
 * Layout Changes: Resizing Sidebars if the customizer is configured to have the content in the middle.
 */
@media (min-width: 1200px) {
	.col-3cm .container-inner > .main::before {
		padding-left: var(--left-w);
	}
	.col-3cm .container-inner > .main::after {
		padding-right: var(--right-w);
	}
	.col-3cm .container-inner .main-inner {
		padding-left: var(--left-w);
		padding-right: var(--right-w);
	}
	.col-3cm .container-inner .sidebar.s1 {
		width: var(--left-w);
		margin-left: calc(-1 * var(--left-w));
	}
	.col-3cm .container-inner .sidebar.s2 {
		margin-right: calc(-1 * var(--right-w));
		width: var(--right-w);
	}
}

/*
 * Styling the /issue page
 */
.issue-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5em;
	padding: 1rem;
}
.issue-list a {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
	padding: 0.5em;
}
.issue-list a:hover {
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}
.issue-list img {
	height: 300px;
	width: 276px;
	object-fit: contain;
}

.past-issue .nav-next,
.past-issue .nav-right {
	font-weight: 700;
}

/**
 * Misc changes and small fixes.
 */
/* Make the font int the /entertainment-events/ flushed to the left. */
.entry p {
	text-align: left;
}

/* Increase the size of the internal pages titles */
.page-title h1 {
	font-family: Oswald, sans-serif;
	font-size: 1.3rem;
}
