/* About Us — a plain centred text page: heading, image, centred body copy.

   No Figma for this page; values are read off the reference screenshot and
   reconciled with the theme's language (Oswald uppercase headings, red accent
   rule). Re-measure when the interior-page Figma lands. */

.tt-about {
	padding: 80px 20px 100px;
	text-align: center;
}

/* Every section heading on this page carries the same centred red rule, so it
   is drawn here rather than as markup — a new section just needs the class. */
.tt-about__heading {
	margin: 0;
	font-family: var(--wp--preset--font-family--oswald, "Oswald", sans-serif) !important;
	font-weight: 600 !important;
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--wp--preset--color--ink, #141412) !important;
}

.tt-about__heading::after {
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	margin: 20px auto 0;
	background: var(--wp--preset--color--red, #cf2026);
}

h1.tt-about__heading {
	font-size: 52px;
}

h2.tt-about__heading {
	font-size: 36px;
}

.tt-about__image {
	margin: 56px auto 0;
}

.tt-about__image img {
	display: block;
	width: 100%;
	max-width: 680px;
	height: auto;
}

/* ---- Body ---------------------------------------------------------------- */
/* Centred prose, so the measure is kept tight — long centred lines are hard to
   track back to the start of the next one. */
.tt-about__body {
	max-width: 680px;
	margin: 72px auto 0;
}

.tt-about__body p {
	margin: 0 0 24px;
	font-family: var(--wp--preset--font-family--barlow, "Barlow", sans-serif);
	font-size: 16px;
	/* Matches the article body — long-form copy, looser than the site's 1.6. */
	line-height: 1.75;
	color: var(--wp--preset--color--ink, #141412);
}

.tt-about__body p:last-child {
	margin-bottom: 0;
}

/* First paragraph clears the heading's rule. */
.tt-about__body .tt-about__heading + p {
	margin-top: 32px;
}

.tt-about__body a {
	color: var(--wp--preset--color--red, #cf2026) !important;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s ease;
}

.tt-about__body a:hover {
	color: var(--wp--preset--color--ink, #141412) !important;
}

/* ---- Mobile (≤767px) ----------------------------------------------------- */
@media (max-width: 767px) {
	.tt-about {
		padding: 48px 20px 64px;
	}

	h1.tt-about__heading {
		font-size: 36px;
	}

	h2.tt-about__heading {
		font-size: 28px;
	}

	.tt-about__image {
		margin-top: 40px;
	}

	.tt-about__body {
		margin-top: 48px;
	}
}
