/*
 * Squarespace-inspired post styles.
 * All rules scoped under .sqsp-post to avoid theme conflicts.
 */

.sqsp-post {
	max-width: 740px;
	margin: 0 auto;
	padding: 40px 20px 60px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.8;
	color: #333;
	background: #fff;
}

/* ── Header ── */

.sqsp-post__header {
	text-align: center;
	margin-bottom: 3em;
}

.sqsp-post__categories {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #999;
	margin-bottom: 1em;
}

.sqsp-post__categories a {
	color: #999;
	text-decoration: none;
}

.sqsp-post__categories a:hover {
	color: #333;
}

.sqsp-post__title {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
	color: #1a1a1a;
	margin: 0 0 0.5em;
}

.sqsp-post__meta {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #999;
}

.sqsp-post__separator {
	margin: 0 0.5em;
}

/* ── Content ── */

.sqsp-post__content {
	margin-bottom: 3em;
}

.sqsp-post__content p {
	margin-bottom: 1.5em;
}

.sqsp-post__content h2 {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 2em 0 0.75em;
	line-height: 1.3;
}

.sqsp-post__content h3 {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 2em 0 0.5em;
	line-height: 1.3;
}

.sqsp-post__content img {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 1.5em 0;
	display: block;
}

.sqsp-post__content figcaption,
.sqsp-post__content .image-caption {
	font-size: 14px;
	font-style: italic;
	color: #777;
	text-align: center;
	margin-top: -1em;
	margin-bottom: 1.5em;
}

.sqsp-post__content a {
	color: #3d85c6;
	text-decoration: none;
}

.sqsp-post__content a:hover {
	text-decoration: underline;
}

.sqsp-post__content blockquote {
	border-left: 3px solid #ddd;
	margin: 1.5em 0;
	padding: 0.5em 0 0.5em 1.5em;
	font-style: italic;
	color: #555;
}

.sqsp-post__content ul,
.sqsp-post__content ol {
	margin: 1.5em 0;
	padding-left: 1.5em;
}

.sqsp-post__content li {
	margin-bottom: 0.5em;
}

.sqsp-post__content hr {
	border: none;
	border-top: 1px solid #ddd;
	margin: 2em 0;
}

/* ── Footer ── */

.sqsp-post__footer {
	border-top: 1px solid #eee;
	padding-top: 2em;
}

.sqsp-post__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 1.5em;
}

.sqsp-post__tag {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid #ddd;
	border-radius: 20px;
	font-size: 12px;
	color: #666;
	text-decoration: none;
	transition: border-color 0.2s, color 0.2s;
}

.sqsp-post__tag:hover {
	border-color: #333;
	color: #333;
}

.sqsp-post__source {
	font-size: 13px;
	color: #999;
	font-style: italic;
}

.sqsp-post__source a {
	color: #3d85c6;
	text-decoration: none;
}

.sqsp-post__source a:hover {
	text-decoration: underline;
}

/* ── Responsive ── */

@media ( max-width: 768px ) {
	.sqsp-post {
		padding: 20px 16px 40px;
		font-size: 16px;
	}

	.sqsp-post__title {
		font-size: 28px;
	}

	.sqsp-post__content h2 {
		font-size: 22px;
	}

	.sqsp-post__content h3 {
		font-size: 18px;
	}
}
