/*
 * Toros Tile subpage system.
 * Purpose-led layouts use the active granite, gold and Avenir Next tokens.
 */

.toros-page {
	min-width: 0;
	overflow: clip;
	background: var(--toros-canvas);
	color: var(--toros-ink);
}

.toros-page h1,
.toros-page h2,
.toros-page h3,
.toros-page p,
.toros-page figure {
	margin-top: 0;
}

.toros-page h1,
.toros-page h2,
.toros-page h3 {
	text-wrap: balance;
}

.toros-page p {
	text-wrap: pretty;
}

.toros-page-hero {
	padding: clamp(26px, 3vw, 48px) 0 clamp(70px, 7vw, 112px);
	background: var(--toros-white-granite);
}

.toros-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
	min-height: min(720px, calc(100dvh - 132px));
	border: 1px solid var(--toros-line);
	background: var(--toros-black-granite);
}

.toros-page-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(48px, 7vw, 110px);
	color: var(--toros-on-granite);
}

.toros-page-kicker {
	margin-bottom: 26px;
	color: var(--toros-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.25;
	text-transform: uppercase;
}

.toros-page-hero h1 {
	max-width: 12ch;
	margin-bottom: 28px;
	font-size: clamp(42px, 5.1vw, 76px);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.toros-page-hero__lede {
	max-width: 52ch;
	margin-bottom: 0;
	color: var(--toros-on-granite-muted);
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1.65;
}

.toros-page-hero__media {
	position: relative;
	min-height: 560px;
	margin-bottom: 0;
	overflow: hidden;
	background: var(--toros-granite-2);
}

.toros-page-hero__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(16, 17, 19, 0.3), transparent 28%);
	content: "";
	pointer-events: none;
}

.toros-page-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--toros-ease);
}

.toros-page-hero:hover .toros-page-hero__media img {
	transform: scale(1.018);
}

.toros-page-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px 24px;
	margin-top: 36px;
}

.toros-page-link {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	border-bottom: 1px solid currentColor;
	color: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.toros-page-link:hover,
.toros-page-link:focus-visible {
	border-color: var(--toros-gold);
	color: var(--toros-gold-dark);
	transform: translateY(-1px);
}

.toros-page-hero .toros-page-link {
	color: var(--toros-on-granite);
}

.toros-page-hero .toros-page-link:hover,
.toros-page-hero .toros-page-link:focus-visible {
	color: var(--toros-gold);
}

.toros-page-section {
	padding: clamp(78px, 9vw, 142px) 0;
}

.toros-page-section__header {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
	align-items: end;
	gap: 40px;
	margin-bottom: clamp(44px, 6vw, 82px);
}

.toros-page-section__header h2,
.toros-page-process > .toros-shell > h2 {
	max-width: 15ch;
	margin-bottom: 0;
	font-size: clamp(36px, 4.4vw, 66px);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.toros-page-section__header p {
	max-width: 48ch;
	margin-bottom: 0;
	color: var(--toros-muted);
	font-size: 17px;
	line-height: 1.7;
}

.toros-page-statement {
	background: var(--toros-surface);
}

.toros-page-statement__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(56px, 10vw, 176px);
	align-items: start;
}

.toros-page-statement h2 {
	max-width: 13ch;
	margin-bottom: 0;
	font-size: clamp(38px, 4.6vw, 68px);
	font-weight: 600;
	letter-spacing: -0.048em;
	line-height: 1.02;
}

.toros-page-prose {
	max-width: 64ch;
	padding-top: 8px;
}

.toros-page-prose p {
	margin-bottom: 28px;
	color: var(--toros-muted);
	font-size: clamp(18px, 1.7vw, 23px);
	line-height: 1.75;
}

.toros-page-prose p:last-child {
	margin-bottom: 0;
}

.toros-page-facts {
	border-top: 1px solid var(--toros-line);
	border-bottom: 1px solid var(--toros-line);
	background: var(--toros-white-granite);
}

.toros-page-facts__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.toros-page-facts__grid > div {
	display: flex;
	min-height: 190px;
	padding: 44px clamp(24px, 4vw, 62px);
	flex-direction: column;
	justify-content: center;
	border-right: 1px solid var(--toros-line);
}

.toros-page-facts__grid > div:first-child {
	padding-left: 0;
}

.toros-page-facts__grid > div:last-child {
	padding-right: 0;
	border-right: 0;
}

.toros-page-facts strong {
	margin-bottom: 10px;
	font-size: clamp(22px, 2.3vw, 34px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.toros-page-facts span {
	color: var(--toros-muted);
	font-size: 14px;
}

.toros-page-categories {
	background: var(--toros-canvas);
}

.toros-page-categories__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: clamp(22px, 3vw, 44px);
}

.toros-page-category {
	display: grid;
	grid-column: span 6;
	grid-template-rows: minmax(340px, 50vw) auto;
	border: 1px solid var(--toros-line);
	background: var(--toros-surface);
	color: var(--toros-ink);
	text-decoration: none;
	transition: border-color 220ms ease, transform 420ms var(--toros-ease);
}

.toros-page-category:nth-child(4n + 1) {
	grid-column: span 7;
}

.toros-page-category:nth-child(4n + 2) {
	grid-column: span 5;
}

.toros-page-category figure {
	min-height: 0;
	margin-bottom: 0;
	overflow: hidden;
	background: var(--toros-surface-2);
}

.toros-page-category img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms var(--toros-ease);
}

.toros-page-category > div {
	padding: clamp(26px, 3vw, 42px);
	border-top: 1px solid var(--toros-line);
}

.toros-page-category h3 {
	margin-bottom: 12px;
	font-size: clamp(25px, 2.5vw, 38px);
	font-weight: 600;
	letter-spacing: -0.035em;
}

.toros-page-category p {
	max-width: 48ch;
	margin-bottom: 22px;
	color: var(--toros-muted);
}

.toros-page-category span {
	border-bottom: 1px solid currentColor;
	font-size: 13px;
	font-weight: 700;
}

.toros-page-category:hover,
.toros-page-category:focus-visible {
	border-color: var(--toros-gold-dark);
	transform: translateY(-5px);
}

.toros-page-category:hover img,
.toros-page-category:focus-visible img {
	transform: scale(1.035);
}

.toros-page-products {
	background: var(--toros-surface);
}

.toros-page-products__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(22px, 2.5vw, 38px);
}

.toros-page-product {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 1px solid var(--toros-line);
	background: var(--toros-canvas);
	transition: border-color 200ms ease, transform 320ms var(--toros-ease);
}

.toros-page-product:hover {
	border-color: var(--toros-gold-dark);
	transform: translateY(-4px);
}

.toros-page-product__image {
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--toros-surface-2);
}

.toros-page-product__image img,
.toros-page-product__image .woocommerce-placeholder {
	width: 100%;
	height: 100%;
	margin: 0;
	object-fit: cover;
	transition: transform 620ms var(--toros-ease);
}

.toros-page-product:hover .toros-page-product__image img {
	transform: scale(1.03);
}

.toros-page-product__body {
	display: flex;
	min-height: 190px;
	padding: 24px;
	flex: 1;
	flex-direction: column;
}

.toros-page-product h3 {
	margin-bottom: 28px;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.toros-page-product h3 a {
	text-decoration: none;
}

.toros-page-product__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 18px;
	margin-top: auto;
}

.toros-page-product__actions .toros-page-link,
.toros-page-product__actions .toros-quote-link {
	min-height: 34px;
	font-size: 12px;
	text-transform: none;
}

.toros-page-process {
	border-top: 1px solid var(--toros-line);
	background: var(--toros-white-granite);
}

.toros-page-process > .toros-shell > h2 {
	margin-bottom: clamp(50px, 7vw, 94px);
}

.toros-page-process__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	border-top: 1px solid var(--toros-line-dark);
}

.toros-page-process article {
	min-height: 260px;
	padding: 38px clamp(24px, 3.4vw, 52px) 38px 0;
	border-right: 1px solid var(--toros-line);
}

.toros-page-process article + article {
	padding-left: clamp(24px, 3.4vw, 52px);
}

.toros-page-process article:last-child {
	padding-right: 0;
	border-right: 0;
}

.toros-page-process h3 {
	max-width: 17ch;
	margin-bottom: 22px;
	font-size: clamp(24px, 2.2vw, 34px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.toros-page-process p {
	max-width: 38ch;
	margin-bottom: 0;
	color: var(--toros-muted);
	line-height: 1.75;
}

.toros-page-contact {
	border-top: 1px solid var(--toros-granite-line);
	background: var(--toros-black-granite);
	color: var(--toros-on-granite);
}

.toros-page-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
	gap: clamp(60px, 11vw, 180px);
	align-items: start;
}

.toros-page-contact h2 {
	max-width: 12ch;
	margin-bottom: 24px;
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 1;
}

.toros-page-contact p {
	max-width: 48ch;
	margin-bottom: 0;
	color: var(--toros-on-granite-muted);
	font-size: 18px;
	line-height: 1.7;
}

.toros-page-contact__details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	padding-top: 10px;
}

.toros-page-contact address {
	margin-bottom: 18px;
	color: var(--toros-on-granite);
	font-size: 22px;
	font-style: normal;
	line-height: 1.55;
}

.toros-page-contact__details > a {
	color: var(--toros-on-granite);
	font-size: 17px;
}

.toros-page-contact .toros-page-link {
	color: var(--toros-on-granite);
}

.toros-page-contact .toros-page-link:hover {
	color: var(--toros-gold);
}

.toros-page-empty {
	max-width: 920px;
	padding: clamp(42px, 6vw, 78px);
	border: 1px solid var(--toros-line);
	background: var(--toros-white-granite);
}

.toros-page-empty--wide {
	max-width: none;
}

.toros-page-empty h2,
.toros-page-empty h3 {
	max-width: 18ch;
	margin-bottom: 18px;
	font-size: clamp(30px, 4vw, 54px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.05;
}

.toros-page-empty p {
	max-width: 58ch;
	margin-bottom: 0;
	color: var(--toros-muted);
	font-size: 17px;
	line-height: 1.7;
}

.toros-page-cta {
	padding: clamp(68px, 8vw, 120px) 0;
	border-top: 1px solid var(--toros-granite-line);
	background: var(--toros-black-granite);
	color: var(--toros-on-granite);
}

.toros-page-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 48px;
	align-items: center;
}

.toros-page-cta h2 {
	max-width: 15ch;
	margin-bottom: 14px;
	font-size: clamp(34px, 4.2vw, 60px);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 1.02;
}

.toros-page-cta p {
	max-width: 54ch;
	margin-bottom: 0;
	color: var(--toros-on-granite-muted);
}

.toros-page-cta .toros-page-actions {
	justify-content: flex-end;
	margin-top: 0;
}

.toros-page-cta .toros-page-link {
	color: var(--toros-on-granite);
}

/* Editor and legal content. */
.toros-editor-page__header,
.toros-listing-hero,
.toros-project-single__header {
	padding: clamp(82px, 10vw, 154px) 0;
	background: var(--toros-black-granite);
	color: var(--toros-on-granite);
}

.toros-editor-page__header h1,
.toros-listing-hero h1,
.toros-project-single__header h1 {
	max-width: 15ch;
	margin-bottom: 0;
	font-size: clamp(46px, 6vw, 88px);
	font-weight: 600;
	letter-spacing: -0.052em;
	line-height: 0.98;
}

.toros-editor-page__content,
.toros-project-single__content {
	width: var(--toros-narrow);
	padding-top: clamp(64px, 8vw, 124px);
	padding-bottom: clamp(80px, 10vw, 150px);
	font-size: 17px;
	line-height: 1.8;
}

.toros-editor-page__content > :first-child,
.toros-project-single__content > :first-child {
	margin-top: 0;
}

.toros-editor-page__content h2,
.toros-project-single__content h2 {
	margin: 2.2em 0 0.7em;
	font-size: clamp(30px, 3.2vw, 48px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.1;
}

.toros-editor-page__content h3,
.toros-project-single__content h3 {
	margin: 2em 0 0.65em;
	font-size: 25px;
}

.toros-editor-page__content p,
.toros-editor-page__content li,
.toros-project-single__content p,
.toros-project-single__content li {
	max-width: 72ch;
}

.toros-editor-page__content a,
.toros-project-single__content a {
	color: var(--toros-accent-hover);
}

.toros-editor-page__content img,
.toros-project-single__content img {
	margin: 42px 0;
}

.toros-listing-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
	gap: 54px;
	align-items: end;
}

.toros-listing-hero h1 {
	margin-bottom: 0;
}

.toros-listing-hero__inner > p:last-child {
	max-width: 46ch;
	margin-bottom: 0;
	color: var(--toros-on-granite-muted);
	font-size: 18px;
	line-height: 1.7;
}

.toros-listing-hero .toros-page-kicker {
	grid-column: 1 / -1;
	margin-bottom: -20px;
}

/* Post and project indexes. */
.toros-post-index,
.toros-project-index {
	background: var(--toros-canvas);
}

.toros-post-index__grid,
.toros-project-index__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(34px, 5vw, 76px);
}

.toros-post-card,
.toros-project-card {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	min-width: 0;
	border-top: 1px solid var(--toros-line-dark);
	background: transparent;
}

.toros-post-card__image,
.toros-project-card__image {
	display: block;
	min-height: 320px;
	overflow: hidden;
	background: var(--toros-surface-2);
}

.toros-post-card__image img,
.toros-project-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 620ms var(--toros-ease);
}

.toros-post-card:hover img,
.toros-project-card:hover img {
	transform: scale(1.025);
}

.toros-post-card__body,
.toros-project-card__body {
	padding: 34px 0 18px clamp(26px, 4vw, 54px);
}

.toros-project-card--text-only {
	grid-template-columns: 1fr;
}

.toros-project-card--text-only .toros-project-card__body {
	padding-left: 0;
}

.toros-post-card time,
.toros-project-card__type {
	display: block;
	margin-bottom: 18px;
	color: var(--toros-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.toros-post-card h2,
.toros-project-card h2 {
	margin-bottom: 18px;
	font-size: clamp(26px, 2.8vw, 40px);
	font-weight: 600;
	letter-spacing: -0.04em;
	line-height: 1.08;
}

.toros-post-card h2 a,
.toros-project-card h2 a {
	text-decoration: none;
}

.toros-post-card__excerpt,
.toros-project-card__excerpt,
.toros-project-card__location {
	margin-bottom: 22px;
	color: var(--toros-muted);
}

.toros-post-card__excerpt p,
.toros-project-card__excerpt p {
	margin-bottom: 0;
}

.toros-page-pagination {
	margin-top: clamp(54px, 7vw, 96px);
}

.toros-page-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.toros-page-pagination .page-numbers {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--toros-line);
	background: var(--toros-surface);
	text-decoration: none;
}

.toros-page-pagination .current {
	border-color: var(--toros-accent);
	background: var(--toros-accent);
	color: #ffffff;
}

/* Single project. */
.toros-project-single__header-grid {
	display: grid;
	grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
	gap: clamp(54px, 8vw, 126px);
	align-items: center;
}

.toros-project-single__header h1 {
	max-width: 12ch;
}

.toros-project-single__intro {
	max-width: 48ch;
	margin-top: 28px;
	color: var(--toros-on-granite-muted);
	font-size: 18px;
	line-height: 1.7;
}

.toros-project-single__intro p {
	margin-bottom: 0;
}

.toros-project-single__hero {
	margin-bottom: 0;
}

.toros-project-single__hero img {
	width: 100%;
	max-height: 720px;
	object-fit: cover;
}

.toros-project-meta {
	border-bottom: 1px solid var(--toros-line);
	background: var(--toros-white-granite);
}

.toros-project-meta__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.toros-project-meta__grid > div {
	min-height: 160px;
	padding: 36px clamp(24px, 3vw, 46px);
	border-right: 1px solid var(--toros-line);
}

.toros-project-meta__grid > div:first-child {
	padding-left: 0;
}

.toros-project-meta__grid > div:last-child {
	border-right: 0;
}

.toros-project-meta span {
	display: block;
	margin-bottom: 10px;
	color: var(--toros-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.toros-project-meta strong,
.toros-project-meta p {
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.55;
}

/* WooCommerce blocks inside editor-managed pages retain the subpage rhythm. */
.toros-editor-page__content .woocommerce ul.products,
.toros-project-single__content .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 30px;
}

.toros-editor-page__content .woocommerce ul.products li.product,
.toros-project-single__content .woocommerce ul.products li.product {
	width: auto;
	margin: 0;
	border: 1px solid var(--toros-line);
	background: var(--toros-surface);
}

.toros-editor-page__content .woocommerce ul.products li.product img,
.toros-project-single__content .woocommerce ul.products li.product img {
	margin: 0;
	aspect-ratio: 4 / 5;
	object-fit: cover;
}

@media (max-width: 1180px) {
	.toros-page-hero__grid {
		grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
		min-height: 620px;
	}

	.toros-page-hero__copy {
		padding: clamp(42px, 6vw, 72px);
	}

	.toros-page-products__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.toros-post-index__grid,
	.toros-project-index__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 920px) {
	.toros-page-hero__grid,
	.toros-project-single__header-grid {
		grid-template-columns: 1fr;
	}

	.toros-page-hero__grid {
		min-height: 0;
	}

	.toros-page-hero__copy {
		min-height: 480px;
	}

	.toros-page-hero__media {
		min-height: 480px;
		aspect-ratio: 16 / 10;
	}

	.toros-page-section__header,
	.toros-page-statement__grid,
	.toros-page-contact__grid,
	.toros-listing-hero__inner,
	.toros-page-cta__inner {
		grid-template-columns: 1fr;
	}

	.toros-page-section__header {
		align-items: start;
	}

	.toros-page-statement__grid,
	.toros-page-contact__grid {
		gap: 48px;
	}

	.toros-page-categories__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.toros-page-category,
	.toros-page-category:nth-child(4n + 1),
	.toros-page-category:nth-child(4n + 2) {
		grid-column: auto;
		grid-template-rows: minmax(300px, 50vw) auto;
	}

	.toros-page-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.toros-page-cta .toros-page-actions {
		justify-content: flex-start;
	}

	.toros-project-single__hero {
		order: -1;
	}
}

@media (max-width: 720px) {
	.toros-page-hero {
		padding: 18px 0 68px;
	}

	.toros-page-hero__copy {
		min-height: 0;
		padding: 48px 28px 54px;
	}

	.toros-page-hero h1 {
		max-width: 14ch;
		font-size: clamp(39px, 12vw, 56px);
		line-height: 1;
	}

	.toros-page-hero__lede {
		font-size: 17px;
	}

	.toros-page-hero__media {
		min-height: 340px;
		aspect-ratio: 4 / 3;
	}

	.toros-page-section {
		padding: 72px 0;
	}

	.toros-page-section__header {
		gap: 22px;
		margin-bottom: 42px;
	}

	.toros-page-facts__grid,
	.toros-page-process__grid,
	.toros-project-meta__grid {
		grid-template-columns: 1fr;
	}

	.toros-page-facts__grid > div,
	.toros-page-facts__grid > div:first-child,
	.toros-page-facts__grid > div:last-child,
	.toros-page-process article,
	.toros-page-process article + article,
	.toros-page-process article:last-child,
	.toros-project-meta__grid > div,
	.toros-project-meta__grid > div:first-child {
		min-height: auto;
		padding: 30px 0;
		border-right: 0;
		border-bottom: 1px solid var(--toros-line);
	}

	.toros-page-facts__grid > div:last-child,
	.toros-page-process article:last-child,
	.toros-project-meta__grid > div:last-child {
		border-bottom: 0;
	}

	.toros-page-categories__grid,
	.toros-page-products__grid,
	.toros-post-index__grid,
	.toros-project-index__grid,
	.toros-editor-page__content .woocommerce ul.products,
	.toros-project-single__content .woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.toros-page-category {
		grid-template-rows: minmax(300px, 86vw) auto;
	}

	.toros-page-product__image {
		aspect-ratio: 1 / 1;
	}

	.toros-page-contact__grid {
		grid-template-columns: 1fr;
	}

	.toros-page-contact h2 {
		font-size: 44px;
	}

	.toros-page-actions {
		align-items: stretch;
		flex-direction: column;
		width: 100%;
	}

	.toros-page-actions .toros-button,
	.toros-page-actions .toros-page-link {
		width: 100% !important;
		justify-content: center;
	}

	.toros-post-card,
	.toros-project-card {
		grid-template-columns: 1fr;
	}

	.toros-post-card__image,
	.toros-project-card__image {
		min-height: 0;
		aspect-ratio: 4 / 3;
	}

	.toros-post-card__body,
	.toros-project-card__body {
		padding: 28px 0 12px;
	}

	.toros-listing-hero .toros-page-kicker {
		margin-bottom: -12px;
	}

	.toros-editor-page__header h1,
	.toros-listing-hero h1,
	.toros-project-single__header h1 {
		font-size: 46px;
	}

	.toros-project-single__header-grid {
		gap: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.toros-page *,
	.toros-page *::before,
	.toros-page *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.toros-page-hero:hover .toros-page-hero__media img,
	.toros-page-category:hover img,
	.toros-page-product:hover .toros-page-product__image img,
	.toros-post-card:hover img,
	.toros-project-card:hover img {
		transform: none;
	}
}
