@import url("https://use.typekit.net/ezj5wow.css");
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

* {
    outline: none;
    box-sizing: border-box;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
	font-family: 'JetBrains Mono', monospace !important;
}

html {
	scrollbar-width: none;
	background-color: #000;
	scroll-behavior: smooth;
}

body {
	background-color: #000;
	color: #fff;
	font-family: 'JetBrains Mono', monospace !important;
	margin: 0;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	font-weight: 300 !important;
	scrollbar-width: none;
}

.container {
	display: flex;
	flex-grow: 1; 
	gap: 2rem; 
	padding-top: 3.2rem;
}

header {
	font-size: 0.9rem;
	font-weight: 600;
	position: fixed;
	z-index: 2;
	width: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(to bottom, #000, #00000000);
}

.header-wrap{
	padding: 2.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.left-column {
	flex: 1; 
	display: flex;
	flex-direction: column;
	gap: 2rem; 
	padding-right: 20px; 
	max-width: 400px; 
}

.header-section > p {
	color: #ffffff9a;
	font-family: 'new-spirit', serif !important;
	font-size: 1.1em !important;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 300 !important;
	font-size: .9em !important;
}

h4 {
	margin-bottom: .9rem;
	color: #ffffff80;
}

.header-section {
	border: solid;
	border-width: 1px 0;
	border-color: #ffffff40;
	padding: 2.5em 0;
}

.logo_icon {
	height: 1.5rem;
	width: 1.5rem;
	margin-bottom: 1rem;
	margin-left: .1rem;
}

h2 {
	font-size: 1.5em !important;
	margin: 0;
	margin-bottom: 1rem;
	font-weight: 500 !important;
}

.left-column section p {
	font-size: .9rem;
	line-height: 1.6;
	margin: 0;
}

.link {
	transition: all .3s ease;
}

.link:hover {
	font-style: italic;
	font-weight: 500;
	text-decoration: underline;
	cursor: pointer;
	letter-spacing: .2rem;
	transition: all .3s ease;
}

.left-column hr {
	border: none;
	border-top: 1px solid #ffffff40; 
	margin: 1px 0;
	width: 100%; 
}

.poster {
	width: 100%;
	background: url('./img/starry_space.webp') bottom center no-repeat;
	background-size: cover, contain;
	background-color: #000;
	min-height: 400px;
	height: 100%;
	border: solid 1px #ffffff40;
	transition: all .3s ease;
}

.poster.minimize {
	height: 400px;
	transition: all .3s ease;
	margin-bottom: 2rem;
}

.article {
	display: flex;
	align-items: flex-start;
}

.title {
	width: 100%;
	text-align: right;
	display: flex;
	flex-direction: column;
	flex: 1;
	position: sticky;
	top: 2rem;
	z-index: 3;
}

.title > h2 {
	margin-bottom: 1rem;
	font-family: 'mencken-std-narrow', serif !important;
	font-size: 3em !important;
	font-weight: 500 !important;
}

.title > h4 {
	margin-bottom: 3rem;
}

.content {
	border: solid;
	border-width: 0 0 0 1px;
	width: 100%;
	border-color: #ffffff40;
	margin-left: 2rem;
	padding: 0 2rem;
	flex: 1.61803398;
}

.content * {
	font-size: .9rem;
	line-height: 1.6;
}

.content h2:first-child {
	margin-top: 1rem;
}

.content h2 {
	color: #ffffff80;
	font-size: .9em !important;
	font-weight: 400 !important;
	margin-top: 3rem;
	text-transform: uppercase;
}

.right-column {
	flex: 1.61803398;
	width: 100%;
}

.circle {
	width: 13px;
	height: 13px;
	background-color: #fff;
	border-radius: 50%;
}

@media (max-width: 1300px) {
	.article {
		display: block;
	}

	.title {
		position: relative;
		top: 0;
		z-index: 0;
	}

	.title, .content {
		border: none;
		text-align: left;
		padding: 0;
	}

	.content {
		margin: 0;
	}
}

@media (max-width: 768px) {
	.container {
		flex-direction: column; 
	}
	.left-column {
		 max-width: 100%;
		 padding-right: 0;
	}
	.right-column {
		flex: 1; 
		min-height: 300px; 
		background-size: cover, contain; 
	}
	.left-column hr {
		width: 100%;
	}

	.link:hover {
		font-style: normal;
		font-weight: 300;
		text-decoration: underline;
		cursor: pointer;
		letter-spacing: normal;
		transition: none;
	}
}