/*
Theme Name: Clearhearted
Theme URI: https://theclearhearted.com
Description: Child theme of Twenty Twenty-Five for Clearhearted, an editorially researched relationship publication for women. Warm ivory palette, Fraunces display face, Karla text face, self-hosted fonts, mobile-first.
Author: Clearhearted Editorial
Template: twentytwentyfive
Version: 1.1.0
Requires at least: 6.7
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: clearhearted
*/

/* ---------------------------------------------------------
   Everything token-based lives in theme.json.
   This file covers only what theme.json cannot express.
   --------------------------------------------------------- */

/* Accessible focus ring — visible on keyboard, quiet on mouse */
:where(a, button, input, textarea, select, summary):focus-visible {
	outline: 2px solid var(--wp--preset--color--brand);
	outline-offset: 3px;
	border-radius: 2px;
}

/* Skip link needs to be reachable, not decorative */
.skip-link:focus {
	background: var(--wp--preset--color--base);
	color: var(--wp--preset--color--brand);
	padding: 0.75rem 1.25rem;
}

/* Article measure: long-form reading is the whole product here.
   Cap the line length so mobile and desktop both stay comfortable. */
.entry-content > p,
.entry-content > ul,
.entry-content > ol {
	max-width: 38rem;
}

/* Signature element: a hairline rose rule that opens every H2.
   It marks section starts without adding a decorative graphic,
   and it reads as a quiet editorial device rather than an ornament. */
.entry-content h2::before {
	content: "";
	display: block;
	width: 2.5rem;
	height: 2px;
	margin-bottom: 0.75rem;
	background: var(--wp--preset--color--accent);
}

/* Pull quotes: indented rule, no quotation-mark graphic */
.wp-block-quote {
	border-left: 2px solid var(--wp--preset--color--accent);
	padding-left: 1.25rem;
	font-style: normal;
}

.wp-block-quote p {
	font-family: var(--wp--preset--font-family--display);
	font-size: var(--wp--preset--font-size--large);
	line-height: 1.35;
	color: var(--wp--preset--color--brand);
}

/* Images: explicit ratio box prevents layout shift before load,
   which matters for Core Web Vitals and for ad stability later. */
.wp-block-image img {
	height: auto;
	max-width: 100%;
}

/* Tables stay readable on narrow screens */
.wp-block-table {
	overflow-x: auto;
}

.wp-block-table td,
.wp-block-table th {
	border-color: color-mix(in srgb, var(--wp--preset--color--contrast) 15%, transparent);
	padding: 0.6rem 0.8rem;
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
