/*
Theme Name: Donors
Author: Greg
Author URI: https://youtu.be/dQw4w9WgXcQ
Description: VittoriaVita Donors Custom Theme
Version: 1.0.2
Text Domain: vv-donors
Tags: custom-background, custom-logo, custom-menu, featured-images, translation-ready
*/

@font-face {
	font-family: Comfortaa;
	font-weight: 700;
	font-display: fallback;
	src: url("/comfortaa-bold.woff2") format("woff2");
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	box-sizing: border-box;
	touch-action: manipulation;
	background-color: #fafafa;
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}

body,
button,
input,
select {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", ui-sans-serif, sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

body {
	margin: 0 0 35px;
}

h1,
h2,
h3 {
	font-weight: 700;
	color: #243570;
}

h1 {
	font-family: Comfortaa, cursive;
	font-size: 30px;
	line-height: 1.2;
}
h2 {
	font-family: Comfortaa, cursive;
	font-size: 28px;
	line-height: 1.2;
}
h3 {
	font-size: 20px;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}

a {
	color: #243570;
	text-decoration: none;
	touch-action: manipulation;
}
a:hover {
	text-decoration: underline;
}

button,
select,
input[type="submit"] {
	border: none;
	cursor: pointer;
	user-select: none;
	touch-action: manipulation;
}

a:focus-visible,
button:focus-visible {
	outline: dotted thin;
}

/* Container */
.container {
	max-width: 1170px;
	min-width: 320px;
	padding: 0 15px;
	margin: 0 auto;
}

/* Navigation */
#site-navigation {
	position: sticky;
	top: 0;
	margin: 0 0 30px;
	background: #fff;
	box-shadow: 0 1.6px 3.6px 0 rgb(0 0 0 / 13%), 0 0.3px 0.9px 0 rgb(0 0 0 / 11%);
	z-index: 1;
}
#site-navigation > .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}

#site-logo {
	width: 193px;
	height: 42px;
	background: url("./images/logo-mobile.svg") no-repeat;
}
#site-logo:hover {
	opacity: 0.9;
}
#site-logo:active {
	transform: translateY(1px);
}

/* Hamburger menu button */
#hamburger {
	padding: 5px;
	margin-right: -5px;
	background: none;
	overflow: visible;
}
#hamburger:hover {
	opacity: 0.9;
}

.hamburger-box {
	position: relative;
	display: block;
	width: 30px;
	height: 23px;
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1.5px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: #243570;
	border-radius: 3px;
	transition: transform 0.15s ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger-inner::after {
	bottom: -10px;
}

.hamburger-squeeze .hamburger-inner {
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger-squeeze .hamburger-inner::before {
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger-squeeze .hamburger-inner::after {
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger-squeeze.is-active .hamburger-inner {
	transform: rotateZ(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger-squeeze.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger-squeeze.is-active .hamburger-inner::after {
	bottom: 0;
	transform: rotateZ(-90deg);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Select a donor banner */
#select-banner {
	position: relative;
	padding: 30px 20px 45px;
	margin: 0 0 60px;
	border: 1px solid #243570;
	border-radius: 15px;
	text-align: justify;
	-webkit-hyphens: auto;
	hyphens: auto;
}
#filter-trigger {
	position: absolute;
	bottom: -17px;
	left: 50%;
	padding: 7px 30px 6px 55px;
	background: #243570;
	border-radius: 36px;
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
	white-space: nowrap;
	transform: translateX(-50%);
}
#filter-trigger:hover {
	background-color: #3a497e;
	transition: background-color 0.1s;
}
#filter-trigger::before {
	content: url("./images/select.svg");
	position: absolute;
	top: 8px;
	left: 30px;
}
#filter-trigger-sticky {
	position: fixed;
	left: 15px;
	bottom: 15px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: url("./images/select.svg") center / 19px no-repeat #243570;
	opacity: 0.9;
	transition: opacity 0.1s;
}
#filter-trigger-sticky:hover {
	opacity: 1;
}

/* Front page H1 heading */
.heading-center {
	margin-bottom: 30px;
	text-align: center;
}
.heading-center::after {
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	margin: 10px auto 0;
	background: #ff7691;
	border-radius: 2px;
}

/* Donors list grid on front page */
#donors-list {
	display: grid;
	row-gap: 20px;
}
#donors-list .category-donors {
	contain: content;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 15px;
	padding: 15px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 1.6px 3.6px 0 rgb(0 0 0 / 13%), 0 0.3px 0.9px 0 rgb(0 0 0 / 11%);
	transition: box-shadow 0.1s linear;
}
#donors-list .category-donors:hover,
#donors-list .category-donors:focus-within {
	box-shadow: 0 6.4px 14.4px 0 rgb(0 0 0 / 13%), 0 1.2px 3.6px 0 rgb(0 0 0 / 11%);
}
#donors-list .category-donors a.img-wrapper {
	position: relative;
	display: block;
	height: 100%;
}
#donors-list .category-donors img {
	position: absolute;
	height: 100%;
	object-fit: cover;
	border-radius: 9px;
	image-rendering: -webkit-optimize-contrast;
	transition: filter 0.1s linear;
}
#donors-list .category-donors:hover img,
#donors-list .category-donors:focus-within img {
	filter: brightness(1.05);
}
#donors-list .donor-id {
	font-family: inherit;
	margin-bottom: 15px;
	font-size: 24px;
	line-height: 1;
}
#donors-list .post-meta {
	margin-bottom: 15px;
	list-style: none;
}
#donors-list .post-meta li {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	line-height: 22px;
	color: #333;
}
#donors-list .post-meta li:nth-child(2n) {
	background-color: #f4f5f9;
}
#donors-list .post-meta li .post-meta-value {
	font-weight: 700;
	color: #243570;
}
#donors-list .more-details {
	display: inline-block;
	padding: 5px 15px;
	font-size: 14px;
	text-transform: uppercase;
	white-space: nowrap;
	background: #ff7691;
	border-radius: 30px;
	color: #fff;
	transition: opacity 0.1s;
}
#donors-list .more-details:hover {
	text-decoration: none;
	opacity: 0.9;
}

/* Pagination */
#pagination {
	display: flex;
	justify-content: center;
	column-gap: 10px;
	margin-top: 60px;
}
#pagination .page-numbers {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 18px;
	font-weight: 300;
	line-height: 36px;
	text-align: center;
	user-select: none;
	color: #000;
}
#pagination .page-numbers:hover {
	background: #ebedf4;
	text-decoration: none;
}
#pagination .page-numbers.current {
	background: #ebedf4;
	font-weight: 400;
}
#pagination .page-numbers.prev,
#pagination .page-numbers.next {
	background: url("./images/chevron-right.svg") 15px 12px no-repeat #243570;
	font-size: 0;
}
#pagination .page-numbers.prev {
	transform: scaleX(-1);
}
#pagination .page-numbers.prev:hover,
#pagination .page-numbers.next:hover {
	opacity: 0.9;
}

/* SINGLE DONOR PAGE */

/* Donor header block */
#entry-header {
	margin-bottom: 45px;
}
#entry-header .img-wrapper {
	position: relative;
	margin-bottom: 20px;
	border-radius: 15px;
	overflow: hidden;
}
#entry-header .img-wrapper img {
	width: 100%;
	aspect-ratio: 4/5;
	object-fit: cover;
	image-rendering: -webkit-optimize-contrast;
}
#entry-header .img-wrapper h1 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ff7691e3;
	font-size: 24px;
	text-align: center;
	line-height: 50px;
	color: #fff;
}

/* Block that contain information about donor */
.info-block {
	margin-bottom: 60px;
}
.heading-left {
	margin-bottom: 30px;
	text-align: left;
}
.heading-left::after {
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	margin: 10px 0 0;
	background: #ff7691;
	border-radius: 2px;
}
.info-block .hidden-content {
	contain: strict;
	position: relative;
	height: 0;
	padding-bottom: 100px;
	overflow: hidden;
	transition: height 0.64s ease-in-out;
}
.info-block .hidden-content section:not(:last-of-type) {
	margin-bottom: 30px;
}
.info-block h3 {
	margin-bottom: 10px;
}
.info-block .post-meta {
	list-style: none;
}
.info-block .post-meta li {
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	line-height: 30px;
	color: #333;
}
.info-block .post-meta li:nth-child(2n) {
	border-radius: 30px;
	background-color: #eff0f6;
}
.info-block .post-meta li .post-meta-value {
	font-weight: 700;
	color: #243570;
}
.info-block dl dt {
	color: #333;
}
.info-block dl dd {
	padding-bottom: 10px;
	border-bottom: 1px dashed #ccc;
	margin-bottom: 15px;
	font-weight: 600;
	color: #243570;
}
.info-block dl dd:last-of-type {
	margin-bottom: 0;
}

/* Private donor's photo gallery */
#gallery-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
}
#gallery-grid img {
	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border-radius: 5px;
	image-rendering: -webkit-optimize-contrast;
}

/* Zoom-in overlay */
.donor-image-link {
	position: relative;
	display: block;
}
.donor-image-link::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 5px;
	background: url("./images/zoom-in.svg") center no-repeat #0000004d;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.1s linear;
}
.donor-image-link.icon-large::before {
	background-size: 72px;
}
.donor-image-link:hover:before {
	opacity: 1;
}

/* Spoiler */
.read-more-layer {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100px;
	background-image: linear-gradient(to bottom, #fafafa80 30%, #fafafa);
}
.read-more-layer .read-more {
	position: relative;
	width: 50px;
	height: 50px;
	background: #ff7691;
	border-radius: 50%;
}
.read-more-layer .read-more::before {
	content: url("./images/chevron-accordion.svg");
	position: absolute;
	top: 22px;
	left: 19px;
	line-height: 0;
	transition: transform 0.4s;
}
.read-more-layer .read-more.is-open::before {
	transform: scaleY(-1);
}

/* Navigation between donors */
#prev-next-post {
	display: flex;
	justify-content: space-between;
	padding: 15px;
	border-radius: 15px;
	background-color: #eff0f6;
	list-style: none;
}
#prev-next-post .nav-link {
	display: inline-flex;
	align-items: center;
	column-gap: 7px;
	font-weight: 600;
}
#prev-next-post .nav-link.next::before {
	content: url("./images/chevron-left.svg");
	transform: scaleX(-1);
}
#prev-next-post .nav-link.prev::after {
	content: url("./images/chevron-left.svg");
}
#prev-next-post .nav-link img {
	width: 60px;
	border-radius: 50%;
	image-rendering: -webkit-optimize-contrast;
}

/* The filter */
#filter fieldset {
	margin-bottom: 30px;
	border: none;
	color: #243570;
}
#filter legend {
	width: 100%;
	padding-bottom: 3px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
	font-weight: 700;
}

#filter .parameter-flex,
#filter .parameter-flex label {
	display: flex;
	align-items: center;
	column-gap: 10px;
}
#filter .parameter-flex input {
	-moz-appearance: textfield;
	width: 100%;
	max-width: 90px;
	height: 35px;
	padding: 0 13px;
	border: 1px solid #ccc;
	border-radius: 35px;
	background: transparent;
	text-align: center;
	color: #243570;
	outline-color: #ff7691;
}
#filter .parameter-flex input::placeholder {
	font-weight: 300;
}
#filter .parameter-flex input::-webkit-inner-spin-button,
#filter .parameter-flex input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

#filter .double-slider {
	position: relative;
	height: 15px;
	margin-top: 25px;
}
#filter .double-slider-track {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	margin: auto 1px;
	border-radius: 2px;
	background-color: #ff7691;
}
#filter .double-slider input {
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	width: 100%;
	background: transparent;
	pointer-events: none;
}
#filter .double-slider input::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #ff7691;
	pointer-events: auto;
	cursor: pointer;
}
#filter .double-slider input::-moz-range-thumb {
	-moz-appearance: none;
	width: 15px;
	height: 15px;
	border: none;
	border-radius: 50%;
	background: #ff7691;
	pointer-events: auto;
	cursor: pointer;
}

#filter .blood-grid {
	display: grid;
	grid-template-columns: 50px 50px 50px 50px;
	gap: 20px;
}
#filter .blood-grid label {
	position: relative;
	font-weight: 700;
	line-height: 50px;
	text-align: center;
	user-select: none;
	cursor: pointer;
}
#filter .blood-grid input {
	-webkit-appearance: none;
	appearance: none;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #eff0f6;
	transition: background-color 0.1s;
}
#filter .blood-grid span {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	transition: color 0.1s;
}
#filter .blood-grid input:checked {
	background-color: #ff7691;
}
#filter .blood-grid input:checked + span {
	color: #fff;
}

#filter .color-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	row-gap: 15px;
}
#filter .color-grid label {
	display: flex;
	align-items: center;
	column-gap: 10px;
	width: max-content;
}
#filter .color-grid label input {
	-webkit-appearance: none;
	appearance: none;
	width: 30px;
	height: 30px;
	border: 3px solid #e8eaf2;
	border-radius: 50%;
	cursor: pointer;
	transition: border-color 0.1s, background-color 0.1s;
}
#filter .color-grid label span {
	color: #243570;
	transition: color 0.1s;
}
#filter .color-grid label:hover input {
	background-color: #e8eaf2;
}
#filter .color-grid label input:checked {
	border-color: #ff7691;
	background-color: #ff7691;
}
#filter .color-grid label input:checked::before {
	content: url("./images/checkmark.svg");
	margin-left: 5px;
	vertical-align: middle;
}
#filter .color-grid label input:checked + span {
	color: #ff7691;
}

#filter input[type="submit"] {
	display: block;
	padding: 8px 60px 5px;
	margin: 0 auto;
	background: #ff7691;
	border-radius: 50px;
	font-size: 15px;
	text-transform: uppercase;
	color: #fff;
	transition: opacity 0.1s;
}
#filter input[type="submit"]:hover {
	opacity: 0.9;
}

/* Scroll to top button */
#button-up {
	position: fixed;
	right: 15px;
	bottom: 10px;
	background: none;
}
#button-up::before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	background: url("./images/chevron-up.svg") 0 8px no-repeat;
	opacity: 0.9;
	transition: opacity 0.1s, transform 0.1s;
}
#button-up:hover::before {
	opacity: 1;
	transform: translateY(-5px);
}

/* Mobile menu */
#menu-mobile-wrapper {
	contain: strict;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
#menu-mobile-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 50%);
	opacity: 0;
	transition: opacity 0.256s ease-out;
}
#menu-mobile-container {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 90px 15px 30px;
	background: #fff;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.256s ease-out;
}

#langswitcher {
	position: relative;
	width: 50%;
	margin: 0 0 35px auto;
}
#langswitcher::after {
	content: url("./images/chevron-down.svg");
	position: absolute;
	top: 6px;
	right: 12px;
	pointer-events: none;
}
#langswitcher select {
	appearance: none;
	display: block;
	width: 100%;
	padding: 6px 30px 6px 37px;
	border: 1px solid #ccc;
	border-radius: 35px;
	background: none;
	font-size: 14px;
	color: #666;
	outline: none;
}
#langswitcher select:hover,
#langswitcher select:focus {
	border-color: #bbb;
	color: #333;
}
#langswitcher img {
	position: absolute;
	top: 7px;
	left: 8px;
	pointer-events: none;
}

#menu-mobile {
	display: grid;
	margin: 0;
	row-gap: 15px;
	list-style: none;
}
#menu-mobile a {
	display: block;
	padding: 10px 30px;
	font-size: 20px;
	text-transform: uppercase;
	background-color: #f4f5f9;
	border-radius: 50px;
	transition: background-color 0.1s, color 0.1s;
}
#menu-mobile a:hover {
	background-color: #243570;
	color: #fff;
	text-decoration: none;
}

.qtranxs-available-languages-message {
	margin-bottom: 15px;
	color: #333;
}

/* Styles for Mobile */
@media screen and (max-width: 1023px) {
	/* The filter */
	#filter-aside {
		contain: strict;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		overflow-y: auto;
		z-index: 1;
	}
	#filter-close {
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgb(0 0 0 / 50%);
		opacity: 0;
		transition: opacity 0.256s ease-out;
	}
	#filter {
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		padding: 0 20px 35px;
		border-radius: 15px 15px 0 0;
		background: #fff;
		transform: translateY(100vh);
		transition: transform 0.256s ease-out;
	}
	#filter-close-swipe {
		height: 35px;
		padding-top: 10px;
	}
	#filter-close-swipe::before {
		content: "";
		display: block;
		width: 40px;
		height: 4px;
		border-radius: 4px;
		background: #ccc;
		margin: 0 auto;
	}
}

/* Styles for Tablet */
@media screen and (min-width: 768px) {
	/* Donors list grid on front page */
	#donors-list {
		grid-template-columns: 1fr 1fr;
		gap: 15px;
	}

	/* Private donor's photo gallery */
	#gallery-grid {
		grid-template-columns: 1fr 1fr 1fr;
	}
	#gallery-grid img {
		aspect-ratio: 4/3;
	}
}

/* Styles for Desktop */
@media screen and (min-width: 1024px) {
	h1 {
		font-size: 40px;
	}
	h2 {
		font-size: 30px;
	}

	/* Header contact information */
	#site-header {
		display: block;
		background: #fff;
	}

	#site-header > .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 100px;
	}

	.header-contact {
		position: relative;
		padding-left: 40px;
	}

	.header-contact::before {
		position: absolute;
		top: 2px;
		left: 0;
		width: 30px;
		height: 30px;
	}

	#header-phone::before {
		content: url("./images/header-phone.svg");
	}
	#header-email::before {
		content: url("./images/header-email.svg");
	}
	#header-schedule::before {
		content: url("./images/header-schedule.svg");
	}

	.header-contact-title {
		color: #666;
	}

	.header-contact-value {
		font-weight: 700;
		color: #243570;
	}

	/* Header langswitcher */
	#header-lang {
		position: relative;
	}

	#header-lang-button {
		position: relative;
		width: 100px;
		height: 40px;
		background: none;
		border: 1px solid #ccc;
		border-radius: 20px;
		font-size: 15px;
		text-transform: uppercase;
		color: #243570;
		z-index: 3;
	}
	#header-lang-button::after {
		content: url("./images/chevron-down.svg");
		position: absolute;
		top: 8px;
		right: 12px;
	}
	#header-lang-button img {
		position: absolute;
		top: 7px;
		left: 7px;
	}

	#header-lang-chooser {
		position: absolute;
		top: 50px;
		left: 0;
		right: 0;
		display: none;
		padding: 12px 0;
		list-style: none;
		background: #fff;
		border-radius: 15px;
		box-shadow: 0 1px 0 1px rgb(0 0 0 / 10%), 0 2px 6px 0 rgb(0 0 0 / 20%);
		animation: fade-in 0.2s ease-out;
		z-index: 2;
	}
	#header-lang-chooser::before {
		content: "";
		position: absolute;
		top: -10px;
		left: 0;
		right: 0;
		height: 10px;
	}
	#header-lang-chooser .active {
		display: none;
	}
	#header-lang-chooser a {
		display: block;
		padding: 7px 0;
		background: 8px 7px no-repeat;
		text-transform: uppercase;
		text-align: center;
		color: #666;
		transition: background-color 0.1s, color 0.1s;
	}
	#header-lang-chooser .language-chooser-item-en a {
		background-image: url("./images/flags/en_US.svg");
	}
	#header-lang-chooser .language-chooser-item-de a {
		background-image: url("./images/flags/de_DE.svg");
	}
	#header-lang-chooser .language-chooser-item-es a {
		background-image: url("./images/flags/es_ES.svg");
	}
	#header-lang-chooser .language-chooser-item-fr a {
		background-image: url("./images/flags/fr_FR.svg");
	}
	#header-lang-chooser .language-chooser-item-it a {
		background-image: url("./images/flags/it_IT.svg");
	}
	#header-lang-chooser a:hover {
		background-color: #f4f5f9;
		color: #243570;
		text-decoration: none;
	}

	#header-lang-chooser:hover,
	#header-lang:focus-within #header-lang-chooser,
	#header-lang-button:hover + #header-lang-chooser {
		display: block;
	}

	/* Navigation */
	#site-navigation {
		margin: 0 0 60px;
		background: #243570;
		box-shadow: none;
	}
	#site-navigation > .container {
		height: 70px;
	}

	#site-logo {
		background-image: url("./images/logo-desktop.svg");
	}

	#menu-header {
		display: flex;
		margin: 0;
		list-style: none;
	}
	#menu-header a {
		display: block;
		padding: 6px 30px 5px;
		font-size: 18px;
		text-transform: uppercase;
		border-radius: 38px;
		color: #fff;
		transition: background-color 0.1s, color 0.1s;
	}
	#menu-header a:hover {
		background-color: #fff;
		color: #243570;
		text-decoration: none;
	}

	/* Hamburger menu button */
	#hamburger {
		display: none;
	}

	/* Select a donor banner */
	#select-banner {
		position: static;
		padding: 30px 20px;
	}
	#filter-trigger {
		display: none;
	}

	/* Front page H1 heading */
	.heading-center {
		margin-bottom: 45px;
	}

	/* Desktop two columns */
	#home-page-grid {
		display: grid;
		grid-template-columns: 315px 1fr;
		column-gap: 60px;
	}

	/* Home page filter */
	#home-page-grid #filter-aside {
		display: block;
	}
	#filter-aside h2 {
		display: block;
		margin-bottom: 30px;
		border-radius: 50px;
		background-color: #eff0f6;
		font-size: 24px;
		line-height: 50px;
		text-align: center;
	}
	#filter-close {
		display: none;
	}
	#filter-trigger-sticky {
		display: none !important;
	}

	#single-post-grid {
		display: grid;
		grid-template-columns: 345px 1fr;
		column-gap: 120px;
	}
	#entry-header {
		position: sticky;
		top: 85px;
		margin-bottom: 60px;
	}

	/* Hide spoiler for Desktop */
	.info-block .hidden-content {
		contain: content;
		position: static;
		height: auto !important;
		padding-bottom: 0;
		overflow: visible;
		transition: none;
	}
	.read-more-layer {
		display: none;
	}
	.info-block dl dd:last-of-type {
		padding-bottom: 0;
		border-bottom: none;
	}

	/* CSS animations */
	@keyframes fade-in {
		from {
			opacity: 0;
			transform: translateY(-10px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
}
