:root {
	--primary: #f99301;
	--primary-40: #c77601;
	--secondary-50: #093b74;
	--secondary-40: #072f5d;
	--secondary-99: #e6ebf1;
	--neutral-10: #1c1b1f;
	--neutral-20: #313033;
	--neutral-90: #e6e1e5;
	--neutral-99: #fffbfe;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	border: 0 solid;
}

html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: #fff;
	color: var(--neutral-20);
	font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input {
	font: inherit;
}

button {
	cursor: pointer;
}

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

img,
svg {
	display: block;
	vertical-align: middle;
}

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

.container-content {
	margin-left: auto;
	margin-right: auto;
	max-width: 1366px;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 640px) {
	.container-content {
		padding-left: 5rem;
		padding-right: 5rem;
	}
}

.screen-reader-text,
.skip-link {
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

.skip-link:focus {
	background: #fff;
	clip: auto;
	color: var(--neutral-20);
	height: auto;
	left: 16px;
	padding: 10px 14px;
	top: 16px;
	width: auto;
	z-index: 10001;
}

.cn1-header {
	background: var(--secondary-50);
	color: #fff;
	position: relative;
	z-index: 1000;
}

.cn1-header__wrap {
	background: var(--secondary-50);
}

.cn1-header__top {
	background: var(--secondary-99);
}

.cn1-header__top-inner {
	align-items: center;
	background: var(--secondary-99);
	display: flex;
	flex: 1;
	flex-direction: row;
	height: fit-content;
	justify-content: space-between;
}

.cn1-header__date {
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.cn1-header__date span {
	color: var(--neutral-20);
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
}

.cn1-header__social {
	align-items: center;
	color: var(--secondary-40);
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
	margin-left: 1rem;
	margin-right: 1rem;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
	width: fit-content;
}

.cn1-header__social a {
	color: inherit;
}

.cn1-header__brand-row {
	border-bottom: 1px solid var(--secondary-40);
	display: flex;
	flex-direction: row;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.cn1-header__brand-inner {
	align-items: center;
	display: flex;
	flex: 1;
	gap: 1rem;
	height: 72px;
	justify-content: space-between;
	position: relative;
}

.cn1-icon-button {
	align-items: center;
	border-radius: 0.5rem;
	color: #fff;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	padding: 0.5rem;
	text-transform: uppercase;
	transition: background-color 0.15s ease;
}

.cn1-icon-button:hover {
	background: rgba(0, 0, 0, 0.2);
}

.cn1-header__logo {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.cn1-header__logo img {
	height: 86px;
	object-fit: contain;
	width: 128px;
}

.cn1-header__search {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: flex-end;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1.5rem;
}

.cn1-header__search form {
	align-items: center;
	background: var(--secondary-50);
	display: flex;
	height: 100%;
	justify-content: flex-end;
	position: relative;
	width: 24rem;
}

.cn1-header__search label {
	align-items: center;
	display: flex;
}

.cn1-header__search input {
	background: var(--secondary-50);
	border-radius: 0.5rem;
	color: #fff;
	height: 3rem;
	outline: none;
	padding-left: 1rem;
	width: 0;
	opacity: 0;
	transition: opacity 0.2s ease, width 0.2s ease;
}

.cn1-header__search form.is-open input,
.cn1-header__search form:focus-within input {
	opacity: 1;
	width: 208px;
}

.cn1-header__search input::placeholder {
	color: var(--neutral-90);
}

.cn1-header__search button {
	align-items: center;
	background: var(--secondary-50);
	color: #fff;
	display: flex;
	gap: 0.5rem;
	height: 100%;
	position: relative;
	z-index: 40;
}

.cn1-header__nav {
	border-bottom: 1px solid var(--neutral-90);
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.cn1-primary-menu {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	overflow-x: auto;
	padding: 0;
	scrollbar-width: none;
}

.cn1-primary-menu::-webkit-scrollbar {
	display: none;
}

.cn1-primary-menu li {
	flex: 0 0 auto;
	width: max-content;
}

.cn1-primary-menu a {
	color: #fff;
	display: block;
	font-size: 16px;
	line-height: 24px;
	white-space: nowrap;
}

.cn1-primary-menu a:hover {
	color: var(--primary);
}

.cn1-drawer {
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 0.2s ease;
	z-index: 10000;
}

.menu-open .cn1-drawer {
	opacity: 1;
	pointer-events: auto;
}

.cn1-drawer__panel {
	background: var(--secondary-50);
	color: #fff;
	height: 100%;
	left: 0;
	max-width: 360px;
	overflow-y: auto;
	padding: 24px;
	position: absolute;
	top: 0;
	transform: translateX(-100%);
	transition: transform 0.2s ease;
	width: min(86vw, 360px);
	z-index: 2;
}

.menu-open .cn1-drawer__panel {
	transform: translateX(0);
}

.cn1-drawer__overlay {
	background: rgba(0, 0, 0, 0.45);
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.cn1-drawer__head {
	align-items: center;
	border-bottom: 1px solid var(--secondary-40);
	display: flex;
	justify-content: space-between;
	margin-bottom: 18px;
	padding-bottom: 18px;
}

.cn1-drawer__head img {
	height: 64px;
	object-fit: contain;
	width: 95px;
}

.cn1-drawer__close {
	color: #fff;
	font-size: 34px;
	line-height: 1;
}

.cn1-drawer__menu {
	display: grid;
	gap: 12px;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.cn1-drawer__menu a,
.cn1-drawer__section a {
	color: #fff;
	display: block;
}

.cn1-drawer__section {
	border-top: 1px solid var(--secondary-40);
	display: grid;
	gap: 10px;
	padding: 18px 0 0;
}

.cn1-drawer__section + .cn1-drawer__section {
	margin-top: 18px;
}

.cn1-drawer__section strong {
	color: var(--primary);
	font-size: 14px;
	text-transform: uppercase;
}

.site-main {
	min-height: 52vh;
}

.content-shell {
	padding-bottom: 56px;
	padding-top: 40px;
}

.content-shell--narrow {
	max-width: 860px;
}

.entry-header,
.archive-header {
	border-bottom: 1px solid var(--neutral-90);
	margin-bottom: 28px;
	padding-bottom: 18px;
}

.entry-header h1,
.archive-header h1 {
	color: var(--secondary-50);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.12;
	margin: 0;
}

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

.entry-content a {
	color: var(--secondary-50);
	font-weight: 600;
}

.entry-content a:hover {
	color: var(--primary);
}

.post-list {
	display: grid;
	gap: 22px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.post-card {
	background: #fff;
	border: 1px solid var(--neutral-90);
}

.post-card h2 {
	color: var(--neutral-20);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	padding: 16px;
}

.cn1-footer {
	color: var(--neutral-99);
}

.cn1-footer__main {
	background: var(--neutral-20);
}

.cn1-footer__grid {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding-bottom: 3rem;
	padding-top: 3rem;
}

.cn1-footer__about {
	flex: 3;
}

.cn1-footer__logo {
	border-bottom: 1px solid var(--primary);
	height: 70px;
	margin-bottom: 1.5rem;
	object-fit: contain;
	padding-bottom: 1.5rem;
	width: 168px;
}

.cn1-footer__about p {
	color: var(--neutral-99);
	margin: 1.5rem 0 0;
}

.cn1-footer h2 {
	border-bottom: 1px solid var(--primary);
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	margin: 0;
	padding-bottom: 0.5rem;
}

.cn1-footer__links {
	color: var(--neutral-99);
	flex: 1;
}

.cn1-footer__link-columns {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 1rem;
}

.cn1-footer__link-columns > div {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.cn1-footer__divider {
	border-right: 1px solid var(--primary);
	height: 10rem;
	opacity: 0.6;
	width: 0;
}

.cn1-footer a:hover {
	color: var(--primary);
}

.cn1-footer__side {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.cn1-footer__social-list {
	align-items: center;
	color: var(--neutral-10);
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.cn1-footer__social-list a {
	align-items: center;
	background: var(--primary);
	border-radius: 9999px;
	display: inline-flex;
	height: 32px;
	justify-content: center;
	width: 32px;
}

.cn1-footer__social-icon {
	height: 16px;
	width: 16px;
}

.cn1-footer__contact-list {
	display: grid;
	gap: 0.5rem;
	margin-top: 1rem;
}

.cn1-footer__contact-list p {
	align-items: flex-start;
	display: flex;
	gap: 0.5rem;
	margin: 0;
}

.cn1-footer__contact-list svg {
	color: var(--primary);
	flex: 0 0 auto;
	margin-top: 0.25rem;
}

.cn1-footer__bottom {
	background: var(--neutral-10);
}

.cn1-footer__bottom-inner {
	align-items: center;
	color: var(--neutral-99);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	justify-content: center;
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.cn1-footer__bottom p {
	margin: 0;
}

@media (min-width: 1024px) {
	.cn1-footer__grid {
		flex-direction: row;
		justify-content: space-evenly;
		padding-top: 5rem;
	}

	.cn1-footer__about {
		max-width: 400px;
	}

	.cn1-footer__side {
		max-width: 260px;
	}

	.cn1-footer__bottom-inner {
		flex-direction: row;
		gap: 12rem;
		justify-content: space-between;
	}
}

@media (min-width: 1280px) {
	.cn1-footer__bottom-inner {
		gap: 424px;
	}
}

@media (min-width: 640px) {
	.cn1-header__search {
		right: 5rem;
	}
}

@media (max-width: 720px) {
	.container-content {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.cn1-header__top-inner {
		align-items: flex-start;
		flex-direction: column;
		padding-bottom: 0.5rem;
		padding-top: 0.5rem;
	}

	.cn1-header__social {
		margin-left: 0;
		margin-right: 0;
		padding-bottom: 0;
	}

	.cn1-header__brand-row {
		padding-bottom: 1rem;
		padding-top: 1rem;
	}

	.cn1-header__brand-inner {
		height: 64px;
	}

	.cn1-header__logo img {
		height: 64px;
		width: 95px;
	}

	.cn1-header__search form {
		width: auto;
	}

	.cn1-header__search form.is-open input,
	.cn1-header__search form:focus-within input {
		width: 130px;
	}

	.cn1-header__nav {
		padding-bottom: 1rem;
		padding-top: 1rem;
	}

	.cn1-primary-menu {
		gap: 1rem;
	}

	.cn1-footer__link-columns {
		gap: 2rem;
		justify-content: flex-start;
	}

	.cn1-footer__divider {
		display: none;
	}
}

