:root {
	color-scheme: dark;
	font-family: "EB Garamond", serif;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	height: 100%;
	overflow: hidden;
}

body {
	background: #000000;
	color: #ffffff;
}

.main-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 500px minmax(0, 1fr);
	gap: 0;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	height: 100svh;
	padding: 0;
	align-items: stretch;
}

.column {
	overflow: hidden;
	background: #000000;
	box-shadow: none;
	backdrop-filter: none;
}

.image-column img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 85% 50%;
}

.center-column {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	width: 500px;
	max-width: 100%;
	justify-self: center;
	padding: 28px;
	background: #000000;
}

.center-image {
	width: 100%;
	max-width: 220px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 0;
	margin-bottom: 18px;
}

.text-line {
	margin: 0;
	line-height: 1.35;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-size: 15px;
}

.follow-btn {
	display: inline-block;
	text-decoration: none;
	color: #909090;
	margin-top: 18px;
	padding: 12px 30px;
	border: 1px solid #909090;
	border-radius: 10px;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.follow-btn:hover {
	color: #000000;
	border-color: #ffffff;
	background-color: #ffffff;
}

@media (max-width: 768px) {
	.main-grid {
		grid-template-columns: 1fr;
	}

	.image-column {
		display: none;
	}

	.center-column {
		width: 100%;
		margin: 0 auto;
	}
	.text-line {
		padding: 0 50px;
	}
}