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

body {
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	background: #f3f1ea;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	color: #000;
	padding: 160px 24px 48px;
}

.page {
	width: 100%;
	max-width: 960px;
}

.layout {
	display: grid;
	grid-template-columns: 400px 1fr;
	gap: 56px;
	align-items: start;
}

.card {
	position: relative;
	width: 100%;
	border: 3px solid #000;
	border-radius: 16px;
	padding: 160px 36px 28px;
	text-align: center;
	background: #fff;
}

.card > a.logo-link {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -48%);
	width: 210px;
	z-index: 1;
}

.logo {
	width: 210px;
	height: auto;
	display: block;
}

.card h1 {
	font-size: 1.65rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0.85rem;
	line-height: 1.2;
}

.card > p {
	font-size: 0.98rem;
	font-weight: 400;
	line-height: 1.55;
	margin-bottom: 1.75rem;
}

.cta {
	display: block;
	width: 100%;
	padding: 13px 24px;
	border: 3px solid #000;
	border-radius: 10px;
	background: #fff;
	color: #000;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
	transition: background 0.15s ease;
}

.cta:hover {
	background: #f5f5f5;
}

.cta:active {
	background: #eee;
}

.credit {
	margin-top: 1.25rem;
	text-align: center;
	font-size: 0.875rem;
	color: #000;
}

.credit a {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.posts {
	padding-top: 8px;
}

.post {
	padding: 28px 0;
}

.post + .post {
	border-top: 3px solid #000;
}

.post:first-child {
	padding-top: 0;
}

.post:last-child {
	padding-bottom: 0;
}

.post time,
.article time {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 0.55rem;
}

.post h2,
.article h2 {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.25;
	margin-bottom: 0.6rem;
}

.post h2 a {
	color: inherit;
	text-decoration: none;
}

.post h2 a:hover {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.post p,
.article p,
.article li {
	font-size: 1.1rem;
	line-height: 1.55;
}

.article .back {
	margin-bottom: 1.5rem;
}

.article .back a {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.article-body {
	margin-top: 1.25rem;
}

.article-body p + p,
.article-body p + ul,
.article-body ul + p,
.article-body p + ol,
.article-body ol + p,
.article-body p + pre,
.article-body pre + p {
	margin-top: 1rem;
}

.article-body h3 {
	font-size: 1.2rem;
	margin: 1.5rem 0 0.6rem;
}

.article-body ul,
.article-body ol {
	padding-left: 1.25rem;
}

.article-body a {
	color: inherit;
	font-weight: 700;
	text-underline-offset: 2px;
}

.article-body code {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 0.88em;
}

.article-body pre {
	padding: 1rem;
	border: 3px solid #000;
	border-radius: 10px;
	background: #fff;
	overflow-x: auto;
	margin-top: 1rem;
}

.article-body pre code {
	font-size: 0.85rem;
}

@media (max-width: 820px) {
	.layout {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
		gap: 48px;
	}
}
