:root {
	--blue: #176cff;
	--line: #193048;
	--panel: rgba(2,6,11,.94);
	--muted: #93a0af;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	background: #000;
	color: #eaf2ff;
	font: 14px/1.45 Arial,sans-serif;
}

.page-background {
	position: fixed;
	inset: -3px;
	z-index: -2;
	background: #000 url('/images/bg.png') center top/auto 2000px no-repeat;
	filter: blur(3px);
}

.page-background:after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg,#000 0,transparent 30px,transparent calc(100% - 30px),#000);
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

button,input {
	font: inherit;
}

.site-shell {
	width: min(1180px,calc(100% - 40px));
	margin: auto;
	background: rgba(0,4,7,.87);
	box-shadow: 0 0 70px #000;
}

.site-header {
	min-height: 135px;
	padding: 28px 22px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.brand {
	display: inline-block;
}

.header-logo img {
	display: block;
	max-width: 100%;
	height: auto;
	transform: translate(-10px, -5px);
}

.brand span {
	font: italic 64px Georgia;
	color: #fff;
	text-shadow: 0 0 12px #1680ff;
}

.brand b {
	font: 58px Georgia;
	color: #cfe2ff;
	-webkit-text-stroke: 2px #176cff;
	text-shadow: 0 0 10px #176cff;
}

.brand small {
	display: block;
	text-transform: uppercase;
	font-size: 11px;
}

.header-tools {
	display: flex;
	align-items: center;
	gap: 18px;
}

.socials {
	display: flex;
	gap: 14px;
	font-size: 20px;
}

.search {
	display: flex;
	border: 1px solid #20344b;
	border-radius: 4px;
	background: #010509;
}

.search input {
	width: 235px;
	padding: 11px;
	border: 0;
	outline: 0;
	color: #fff;
	background: transparent;
}

.search button {
	border: 0;
	color: #3c8cff;
	background: transparent;
	font-size: 22px;
}

.main-nav {
	display: flex;
	min-height: 52px;
	border-block: 1px solid #12263a;
	background: rgba(0,3,6,.9);
}

.main-nav a {
	padding: 17px 25px;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	white-space: nowrap;
}

.main-nav a:hover,.main-nav .active {
	color: #fff;
	background: #040e1c;
	border-bottom: 2px solid var(--blue);
}

.main-nav .search {
	flex: 0 0 240px;
	align-self: center;
	height: 36px;
	margin: 0 10px 0 auto;
}

.main-nav .search input {
	width: 100%;
	min-width: 0;
	padding-block: 8px;
}

.content-grid {
	display: grid;
	grid-template-columns: minmax(0,2fr) minmax(270px,1fr);
	gap: 16px;
	padding: 18px;
}

.primary-column,.sidebar {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.panel,.top-stories,.featured,.news-hero-card {
	border: 1px solid var(--line);
	border-radius: 7px;
	background: var(--panel);
	overflow: hidden;
}

.top-stories {
	height: 500px;
	position: relative;
}

.story-stack {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.article-detail {
	overflow: hidden;
}

.article-hero {
	position: relative;
	min-height: 420px;
	background: linear-gradient(0deg,rgba(0,2,6,1) 0%,rgba(0,3,9,.9) 30%,transparent 75%),var(--story) center/cover;
}

.article-hero>div {
	position: absolute;
	inset: auto 24px 24px;
}

.article-hero h1 {
	max-width: 680px;
	margin: 12px 0 10px;
	font-size: 34px;
	line-height: 1.15;
}

.article-hero footer {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	color: var(--muted);
}

.article-body {
	padding: 28px 32px 52px;
	color: #c6d0dc;
	font-size: 15px;
	line-height: 1.75;
}

.article-body p:first-child {
	margin-top: 0;
}

.article-body p:last-child {
	margin-bottom: 0;
}

.article-body a {
	color: #65a7ff;
	text-decoration: underline;
}

.article-body blockquote {
	margin: 20px 0;
	padding-left: 18px;
	border-left: 3px solid #16447b;
	color: #aeb9c7;
}

.discourse-comments-section {
	padding-bottom: 14px;
}

#discourse-comments {
	min-height: 180px;
	padding: 0 14px;
}

#discourse-embed-frame {
	display: block;
	width: 100%;
	min-height: 800px;
	border: 0;
}

.discourse-comments-fallback {
	padding: 18px 4px;
	color: var(--muted);
}

.discourse-comments-fallback a {
	color: #65a7ff;
}

.contact-form {
	display: grid;
	gap: 18px;
	margin-top: 24px;
}

.contact-form-row {
	display: grid;
	gap: 7px;
}

.contact-form label,
.contact-verification legend {
	color: #e8f1fb;
	font-weight: 700;
}

.contact-form input,
.contact-form textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 11px 12px;
	border: 1px solid #27486e;
	border-radius: 5px;
	outline: 0;
	background: #030a13;
	color: #edf5ff;
	font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #4a95f5;
	box-shadow: 0 0 0 2px rgba(52, 127, 224, .22);
}

.contact-form textarea {
	min-height: 190px;
	resize: vertical;
}

.contact-form small {
	color: var(--muted);
}

.contact-captcha-visual {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.contact-captcha-visual img {
	display: block;
	width: 230px;
	max-width: 100%;
	height: 78px;
	border: 1px solid #35577e;
	border-radius: 5px;
	background: #dce6ef;
}

.contact-form .contact-captcha-reload {
	padding: 8px 12px;
	border-color: #315d91;
	background: #102a4a;
	font-size: 13px;
}

.contact-verification {
	display: grid;
	gap: 8px;
	margin: 2px 0 0;
	padding: 16px;
	border: 1px solid #1c3b60;
	border-radius: 5px;
	background: #071323;
}

.contact-verification legend {
	padding: 0 7px;
}

.contact-verification input {
	max-width: 120px;
}

.contact-form button {
	justify-self: start;
	padding: 10px 18px;
	border: 1px solid #347fe0;
	border-radius: 5px;
	background: #0b3874;
	color: #fff;
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
	border-color: #73b0ff;
	background: #12509f;
}

.contact-notice,
.contact-errors {
	margin: 20px 0;
	padding: 13px 15px;
	border: 1px solid #2f8f54;
	border-radius: 5px;
	background: #082418;
	color: #c7efd7;
}

.contact-errors {
	border-color: #a13f48;
	background: #2a0d12;
	color: #ffd4d8;
}

.contact-errors h2 {
	margin: 0 0 8px;
	font-size: 16px;
}

.contact-errors ul {
	margin: 0;
	padding-left: 20px;
}

.contact-website {
	position: absolute;
	left: -10000px;
}

.article-not-found {
	padding: 24px;
}

.search-summary {
	padding: 14px 18px;
}

.search-summary h1,
.search-summary p {
	margin: 0;
}

.search-summary h1 {
	font-size: 21px;
}

.search-summary p {
	margin-top: 5px;
	color: var(--muted);
}

.news-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 12px;
	border: 1px solid var(--line);
	border-radius: 7px;
	background: var(--panel);
}

.news-pagination a,
.news-pagination span {
	display: inline-flex;
	min-width: 34px;
	height: 34px;
	box-sizing: border-box;
	align-items: center;
	justify-content: center;
	padding: 0 10px;
	border: 1px solid #16447b;
	border-radius: 4px;
	color: #a9cfff;
	background: #06152c;
	text-decoration: none;
}

.news-pagination a:hover,
.news-pagination a:focus-visible {
	border-color: #4591ff;
	color: #fff;
	background: #092457;
}

.news-pagination .current {
	border-color: #4591ff;
	color: #fff;
	background: #0b3270;
	font-weight: bold;
}

.news-pagination .disabled {
	border-color: #17273a;
	color: #596575;
	background: #050c16;
	cursor: default;
}

.news-pagination .pagination-ellipsis {
	min-width: 22px;
	padding: 0;
	border-color: transparent;
	color: var(--muted);
	background: transparent;
}

.news-hero-card {
	min-height: 420px;
	position: relative;
	background: linear-gradient(0deg,rgba(0,2,6,1) 0%,rgba(0,3,9,.9) 30%,transparent 75%),var(--story) center/cover;
}

.hero-story {
	display: block;
	height: 100%;
	position: absolute;
	inset: 0;
	visibility: hidden;
	transform: translateX(100%);
	transition: transform 700ms ease-in-out;
	background: linear-gradient(0deg,rgba(0,2,6,1) 0%,rgba(0,3,9,.9) 30%,transparent 75%),var(--story) center/cover;
}

.hero-story.active {
	visibility: visible;
	transform: translateX(0);
	z-index: 2;
}

.hero-story.leaving {
	visibility: visible;
	transform: translateX(-100%);
	z-index: 1;
}

.hero-story.reverse-ready {
	visibility: visible;
	transform: translateX(-100%);
}

.hero-story.leaving-right {
	visibility: visible;
	transform: translateX(100%);
	z-index: 1;
}

.hero-story>div,.news-hero-card>div {
	position: absolute;
	inset: auto 22px 20px;
}

.hero-story h1,.hero-story h2,.news-hero-card h1,.news-hero-card h2 {
	max-width: 650px;
	margin: 12px 0 8px;
	font-size: 31px;
	line-height: 1.15;
}

.hero-story p,.news-hero-card p {
	max-width: 570px;
	color: #b4becb;
}

.hero-story footer,.news-hero-card footer,.editors footer {
	display: flex;
	gap: 22px;
	align-items: center;
	color: var(--muted);
}

.hero-story footer a,.news-hero-card footer a {
	margin-left: auto;
	padding: 9px 18px;
	border: 1px solid #16447b;
	border-radius: 4px;
	color: #4591ff;
	text-transform: uppercase;
}

.editors footer a {
	margin-left: auto;
	padding: 9px 18px;
	border: 1px solid #16447b;
	border-radius: 4px;
	color: #4591ff;
	text-transform: uppercase;
}

.dots {
	position: absolute;
	top: 20px;
	right: 22px;
	z-index: 3;
}

.dots button {
	width: 20px;
	height: 5px;
	margin-left: 5px;
	padding: 0;
	border: 0;
	border-radius: 4px;
	background: #4d5662;
}

.dots .active {
	background: #284780;
}

em {
	display: inline-block;
	padding: 4px 8px;
	border-radius: 3px;
	background: #091f49;
	color: #d8e8ff;
	font-style: normal;
	font-size: 10px;
	text-transform: uppercase;
}

.featured {
	position: relative;
	display: grid;
	grid-template-columns: 38% 62%;
	min-height: 300px;
	background: transparent;
}

.featured>div {
	position: relative;
	z-index: 2;
	padding: 24px;
}

.featured h2 {
	font-size: 25px;
	line-height: 1.2;
}

.featured p {
	color: #aeb9c7;
}

.featured::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		to right,
		rgba(2,6,11,.98) 0,
		rgba(2,6,11,.98) 38%,
		transparent 70%
	);
	pointer-events: none;
}

.featured img {
	width: 100%;
	height: 100%;
	margin-left: 0;
	object-fit: cover;
}

.button {
	display: inline-block;
	margin-top: 20px;
	padding: 9px 18px;
	border: 1px solid #16447b;
	border-radius: 4px;
	color: #4c96ff;
	text-transform: uppercase;
}

.section-head {
	min-height: 48px;
	padding: 0 14px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
}

.section-head h2 {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: .5px;
}

.section-head>a,.center {
	color: #438eff;
	text-transform: uppercase;
	font-size: 11px;
}

.card-grid {
	display: grid;
	grid-template-columns: repeat(4,1fr);
	gap: 10px;
	padding: 12px;
}

.card-grid article {
	border: 1px solid var(--line);
	border-radius: 5px;
	overflow: hidden;
}

.card-grid .card-link {
	display: block;
	height: 100%;
	padding-bottom: 14px;
}

.card-grid img {
	width: 100%;
	height: 110px;
	object-fit: cover;
}

.card-grid h3,.card-grid small,.card-grid em {
	margin-inline: 10px;
}

.card-grid em {
	margin-top: 8px;
}

.card-grid h3 {
	min-height: 72px;
	font-size: 14px;
	font-weight: normal;
}

.card-grid small,.events small,.trending small {
	color: var(--muted);
}

.tabs {
	display: flex;
	gap: 4px;
}

.tabs button {
	cursor: pointer;
	padding: 6px 10px;
	border: 0;
	color: #a4aebe;
	background: transparent;
	text-transform: uppercase;
	font-size: 10px;
}

.tabs .active {
	border-radius: 3px;
	color: #fff;
	background: #092457;
}

.tabs button:hover,
.tabs button:focus-visible {
	color: #fff;
	background: rgba(9,31,73,.35);
}

.news-list {
	padding: 8px 14px;
	transition: opacity 180ms ease, transform 180ms ease;
}

.news-list.is-swapping {
	opacity: 0;
	transform: translateX(10px);
}

.news-list article {
	border-bottom: 1px solid #132539;
}

.news-list .row-link {
	display: grid;
	grid-template-columns: 120px max-content 1fr auto;
	gap: 12px;
	align-items: center;
	min-height: 57px;
}

.news-list img {
	width: 120px;
	height: 45px;
	object-fit: cover;
	border-radius: 3px;
}

.news-list h3 {
	font-size: 13px;
	font-weight: normal;
}

.news-list time,.news-list .row-link>span {
	color: var(--muted);
}

.card-grid article:hover,
.news-list article:hover {
	background: rgba(9,31,73,.35);
}

.card-grid .card-link:focus-visible,
.news-list .row-link:focus-visible {
	outline: 2px solid #4591ff;
	outline-offset: -2px;
}

.hero-story footer a:hover,
.hero-story footer a:focus-visible,
.news-hero-card footer a:hover,
.news-hero-card footer a:focus-visible,
.featured .button:hover,
.featured .button:focus-visible,
.editors footer a:hover,
.editors footer a:focus-visible {
	background: rgba(9,31,73,.35);
}

.center {
	display: block;
	text-align: center;
	padding: 18px;
}

.events {
	padding: 4px 14px;
}

.events article {
	border-bottom: 1px solid #15263a;
}

.events .event-link {
	display: grid;
	grid-template-columns: 58px minmax(0,1fr);
	gap: 12px;
	padding: 10px 0;
	color: inherit;
	text-decoration: none;
}

.events article:last-child {
	border-bottom: 0;
}

.events article:hover,
.events article:focus-within,
.trending li:hover {
	background: rgba(9,31,73,.35);
}

.events time {
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid #18375a;
	border-radius: 4px;
	color: #3e8dff;
	text-transform: uppercase;
}

.events time strong {
	color: #fff;
	font-size: 21px;
}

.events h3,.events p {
	margin: 0;
}

.events h3 {
	font-size: 13px;
}

.events p {
	color: #a9b4c1;
}

.trending {
	counter-reset: item;
	margin: 0;
	padding: 8px 14px;
	list-style: none;
}

.trending li {
	counter-increment: item;
	display: grid;
	grid-template-columns: 22px minmax(0,1fr);
	gap: 8px;
	align-items: center;
	padding: 7px 0;
}

.trending-link {
	display: grid;
	grid-template-columns: 70px minmax(0,1fr);
	gap: 8px;
	align-items: center;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.trending li:before {
	content: counter(item);
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background: #093173;
	font-size: 11px;
}

.trending img {
	width: 70px;
	height: 50px;
	object-fit: cover;
	border-radius: 3px;
}

.trending div {
	font-size: 12px;
}

.trending small {
	display: block;
	color: var(--muted);
}

.trending-link:hover,
.trending-link:focus-visible {
	color: #fff;
}

.trending-empty:before {
	display: none;
}

.editors>img {
	width: calc(100% - 24px);
	height: 135px;
	margin: 12px;
	object-fit: cover;
}

.editors>h3 {
	padding: 0 12px;
	font-size: 14px;
	font-weight: normal;
}

.editors footer {
	padding: 0 12px 14px;
}

.site-footer {
	display: grid;
	grid-template-columns: 1.5fr repeat(4,1fr);
	gap: 35px;
	margin-top: 0;
	padding: 30px 24px;
	border-top: 1px solid var(--line);
	background: #01050a;
}

.site-footer .brand span {
	font-size: 30px;
}

.site-footer .brand b {
	font-size: 27px;
}

.site-footer h2 {
	color: #438eff;
	font-size: 11px;
	text-transform: uppercase;
}

.site-footer>div>a:not(.brand) {
	display: block;
	margin: 7px 0;
	color: #a6b0be;
}

.site-footer p {
	color: #98a5b5;
}

.footer-copyright {
	display: flex;
	align-items: flex-end;
}

.footer-copyright p {
	margin: 7px 0;
}

.site-footer .socials {
	color: #fff;
}

.sidebar .section-head h2 {
	font-size: 13px;
}

@media(max-width:900px) {
	.site-header {
		align-items: flex-start;
	}

	.header-tools {
		flex-direction: column;
		align-items: flex-end;
	}

	.main-nav {
		overflow: auto;
	}

	.main-nav a {
		padding-inline: 16px;
	}

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

	.sidebar {
		display: grid;
		grid-template-columns: repeat(2,1fr);
	}

	.sidebar .editors {
		grid-column: 1/-1;
	}

	.site-footer {
		grid-template-columns: repeat(2,1fr);
	}

}

@media(max-width:620px) {
	.site-shell {
		width: 100%;
	}

	.site-header {
		gap: 20px;
		flex-direction: column;
	}

	.brand span {
		font-size: 48px;
	}

	.brand b {
		font-size: 43px;
	}

	.header-tools {
		width: 100%;
		align-items: stretch;
	}

	.socials {
		justify-content: center;
	}

	.search input {
		width: 100%;
	}

	.search {
		flex: 1;
	}

	.content-grid {
		padding: 8px;
	}

	.top-stories {
		height: 430px;
	}

	.hero-story h1,.hero-story h2,.news-hero-card h1,.news-hero-card h2,
	.article-hero h1 {
		font-size: 24px;
	}

	.article-hero {
		min-height: 360px;
	}

	.article-body {
		padding: 22px 20px 40px;
	}

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

	.featured::after {
		display: none;
	}

	.featured img {
		width: 100%;
		height: 220px;
		margin-left: 0;
		grid-row: 1;
	}

	.card-grid {
		grid-template-columns: repeat(2,1fr);
	}

	.section-head {
		align-items: flex-start;
		gap: 8px;
		padding-block: 10px;
		flex-direction: column;
	}

	.tabs {
		max-width: 100%;
		overflow: auto;
	}

	.news-list .row-link {
		grid-template-columns: 80px 1fr auto;
	}

	.news-list img {
		width: 80px;
	}

	.news-list em {
		display: none;
	}

	.news-list h3 {
		font-size: 12px;
	}

	.news-list .row-link>span {
		display: none;
	}

	.sidebar {
		display: flex;
	}

	.site-footer {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer>div:first-child {
		grid-column: 1/-1;
	}

}

.media-video {
	position: relative;
	width: 100%;
	margin: 0 0 24px;
	padding-top: 56.25%;
	overflow: hidden;
	border-radius: 5px;
	background: #000;
}

.media-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.media-event-details {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	margin-bottom: 24px;
	padding: 14px 16px;
	border: 1px solid #18375a;
	border-radius: 5px;
	background: #06152c;
}

.media-detail-image {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 24px auto;
	border-radius: 5px;
}

.media-official-link,
.media-back-link {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	border: 1px solid #16447b;
	border-radius: 4px;
	color: #4591ff;
	background: #06152c;
	text-decoration: none !important;
	text-transform: uppercase;
}

.media-back-link {
	align-self: center;
}

.media-official-link:hover,
.media-official-link:focus-visible,
.media-back-link:hover,
.media-back-link:focus-visible {
	border-color: #4591ff;
	color: #fff;
	background: #092457;
}
.calendar-page-heading,
.calendar-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.calendar-page-heading {
	padding: 18px 20px;
	border-bottom: 1px solid var(--line);
}

.calendar-page-heading h1 {
	margin: 7px 0 0;
	font-size: 24px;
}

.calendar-page-heading>a,
.calendar-toolbar a {
	padding: 8px 12px;
	border: 1px solid #16447b;
	border-radius: 4px;
	color: #65a7ff;
	background: #06152c;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 11px;
	white-space: nowrap;
}

.calendar-page-heading>a:hover,
.calendar-page-heading>a:focus-visible,
.calendar-toolbar a:hover,
.calendar-toolbar a:focus-visible {
	border-color: #4591ff;
	color: #fff;
	background: #092457;
}

.calendar-toolbar {
	padding: 12px 14px;
	border-bottom: 1px solid var(--line);
}

.calendar-toolbar h2 {
	margin: 0;
	font-size: 18px;
	text-align: center;
}

.calendar-scroll {
	overflow-x: auto;
}

.event-calendar {
	width: 100%;
	min-width: 650px;
	border-collapse: collapse;
	table-layout: fixed;
}

.event-calendar th {
	padding: 9px 5px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	color: #91a0b2;
	font-size: 11px;
	text-transform: uppercase;
}

.event-calendar th:last-child,
.event-calendar td:last-child {
	border-right: 0;
}

.event-calendar td {
	height: 104px;
	padding: 7px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
	vertical-align: top;
	background: rgba(4,12,23,.5);
}

.event-calendar tbody tr:last-child td {
	border-bottom: 0;
}

.event-calendar .calendar-empty-day {
	background: rgba(0,3,8,.45);
}

.event-calendar time {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	margin-bottom: 5px;
	border-radius: 50%;
	color: #c8d2de;
	font-size: 12px;
	font-weight: bold;
}

.event-calendar .calendar-today {
	background: rgba(9,31,73,.28);
}

.event-calendar .calendar-today time {
	color: #fff;
	background: #1254ad;
}

.calendar-day-events {
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.trending-rank {
	position: absolute;
	top: 18px;
	right: 20px;
	z-index: 2;
	display: grid;
	place-items: center;
	min-width: 48px;
	height: 48px;
	padding: 0 8px;
	border: 1px solid #4591ff;
	border-radius: 50%;
	color: #fff;
	background: rgba(5,24,58,.92);
	box-shadow: 0 4px 16px rgba(0,0,0,.4);
	font-size: 18px;
	font-weight: bold;
}

.trending-story-card>div {
	padding-right: 60px;
}

@media(max-width:600px) {
	.trending-story-card footer {
		flex-wrap: wrap;
		gap: 9px 14px;
	}

	.trending-story-card footer a {
		width: 100%;
		box-sizing: border-box;
		margin-left: 0;
		text-align: center;
	}

	.trending-rank {
		top: 14px;
		right: 14px;
		min-width: 40px;
		height: 40px;
		font-size: 15px;
	}
}


.calendar-event {
	display: block;
	overflow: hidden;
	padding: 5px 6px;
	border-left: 3px solid #4591ff;
	border-radius: 3px;
	color: #d8e8ff;
	background: #091f49;
	font-size: 10px;
	line-height: 1.25;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}

a.calendar-event:hover,
a.calendar-event:focus-visible {
	color: #fff;
	background: #123369;
}

.calendar-no-events {
	margin: 0;
	padding: 16px;
	border-top: 1px solid var(--line);
	color: var(--muted);
	text-align: center;
}

.calendar-event {
	width: 100%;
	border-top: 0;
	border-right: 0;
	border-bottom: 0;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
}

button.calendar-event:hover,
button.calendar-event:focus-visible,
.calendar-event.is-selected {
	color: #fff;
	background: #123369;
}

.calendar-event.is-selected {
	border-left-color: #9bc4ff;
}

.calendar-event-details {
	padding: 18px 20px 20px;
	border-top: 1px solid var(--line);
	text-align: left;
}

.calendar-event-details h2,
.calendar-event-detail h3 {
	margin-top: 0;
}

.calendar-event-details h2 {
	margin-bottom: 12px;
	font-size: 20px;
}

.calendar-event-details-placeholder,
.calendar-event-detail-meta {
	color: var(--muted);
}

.calendar-event-detail h3 {
	margin-bottom: 10px;
	color: #fff;
	font-size: 18px;
}

.calendar-event-detail-meta {
	margin: 5px 0;
}

.calendar-event-description {
	margin-top: 14px;
	line-height: 1.6;
}

.calendar-event-url {
	display: inline-flex;
	margin-top: 16px;
	padding: 8px 12px;
	border: 1px solid #16447b;
	border-radius: 4px;
	color: #65a7ff;
	background: #06152c;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 11px;
}

.calendar-event-url:hover,
.calendar-event-url:focus-visible {
	border-color: #4591ff;
	color: #fff;
	background: #092457;
}

.weekday-short {
	display: none;
}

@media(max-width:700px) {
	.calendar-page-heading {
		align-items: flex-start;
	}

	.calendar-toolbar a {
		padding-inline: 9px;
	}

	.weekday-full {
		display: none;
	}

	.weekday-short {
		display: inline;
	}
}


