/**
 * Single post template (single.html) — not designed in the source
 * artifact (which only ever shows post cards, never a full article
 * page), so this layout and the body copy for each seed post are
 * originally authored to fill that gap, not pulled from the design.
 * Reuses the site's existing type system rather than inventing a new
 * one.
 */

/*
 * Children reset to margin:0: this is a wp:group block ("flow" layout
 * in the editor) rendered as a flex row via the rules below — core's
 * block-gap global styles still add margin-block-start to every child
 * after the first, which pushes it out of the row (same root cause as
 * the shared .chennai-world-eyebrow fix in patterns.css).
 */
.chennai-world-single-meta {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: 1rem;
	color: var(--wp--preset--color--accent-gold);
	font-size: var(--wp--preset--font-size--small);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.chennai-world-single-meta > *,
.chennai-world-single-byline > *,
.chennai-world-single-cta > * {
	margin: 0;
}

.chennai-world-single-meta .wp-block-post-terms,
.chennai-world-single-meta .wp-block-chennai-world-read-time {
	color: var(--wp--preset--color--accent-gold);
}

.chennai-world-single-meta a {
	color: inherit;
	text-decoration: none;
}

.chennai-world-single-title {
	margin: 0 0 1rem;
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--xxx-large);
	font-weight: 300;
	line-height: 0.94;
	letter-spacing: -0.03em;
	color: var(--wp--preset--color--text-primary);
}

.chennai-world-single-byline {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin-bottom: var(--wp--preset--spacing--40);
	color: var(--wp--preset--color--text-secondary);
	font-size: var(--wp--preset--font-size--medium);
}

.chennai-world-single-photo {
	margin: 0 0 var(--wp--preset--spacing--40);
	border-radius: 1.25rem;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.35) 0 30px 80px 0;
}

.chennai-world-single-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.chennai-world-single-content {
	color: var(--wp--preset--color--text-secondary);
	font-size: var(--wp--preset--font-size--large);
	line-height: 1.7;
}

.chennai-world-single-content p {
	margin: 0 0 1.5rem;
}

.chennai-world-single-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--wp--preset--spacing--30);
	margin-top: var(--wp--preset--spacing--50);
	padding: var(--wp--preset--spacing--30) var(--wp--preset--spacing--40);
	border-radius: 1rem;
	background-color: var(--wp--preset--color--background-secondary);
}

.chennai-world-single-cta p {
	margin: 0;
	color: var(--wp--preset--color--text-secondary);
}

@media (max-width: 560px) {

	.chennai-world-single-cta {
		flex-direction: column;
		align-items: flex-start;
	}
}
