/*
Theme Name: Twenty Twenty-Five Child
Author: Wordpress
Description: Child theme for Twenty Twenty-Five theme by Wordpress
Version: 1.0
Template: twentytwentyfive

This is the child theme for Twenty Twenty-Five theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/


/*
 * A. W. Sommers Child Theme — additional styles
 * Append to the END of your existing style.css
 * (after the required theme header block)
 */

/* Newsletter form — visual only, not functional yet */
.aws-newsletter-visual {
	display: flex;
	gap: 0;
	max-width: 360px;
	margin-top: 1rem;
}

.aws-newsletter-visual input[type="email"] {
	flex: 1;
	background: transparent;
	border: 1px solid var(--wp--preset--color--base);
	border-right: none;
	color: var(--wp--preset--color--base);
	padding: 0.75rem 1rem;
	font-size: 0.85rem;
}

.aws-newsletter-visual input[type="email"]::placeholder {
	color: var(--wp--preset--color--base);
	opacity: 0.6;
}

.aws-newsletter-visual button {
	background: var(--wp--preset--color--base);
	color: var(--wp--preset--color--contrast);
	border: none;
	padding: 0.75rem 1.25rem;
	text-transform: uppercase;
	font-size: 0.75rem;
	letter-spacing: 0.05em;
	cursor: not-allowed;
}

/* Hero / button styling — squared corners, uppercase, letter-spaced
   matching the mockup's CTA button */
.wp-block-button__link,
.wp-block-read-more {
	border-radius: 0 !important;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.8rem;
}

/* Eyebrow labels (e.g. "Latest Post", "Mixed Media Artist") */
.aws-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: var(--wp--preset--font-size--label);
}

/* H1 / Display heading override — only the hero's main name uses
   the largest scale step; theme.json's core/heading default is heading-md */
.aws-display-heading {
	font-size: var(--wp--preset--font-size--display) !important;
	line-height: 1.05 !important;
}

/* Selected Works grid — tighten title spacing under each image
   (font-size itself is governed sitewide by theme.json's core/post-title default) */
.wp-block-post-template .wp-block-post-title {
	margin-top: 0.75rem;
}

/* Underline accent under nav-style CTA links, matching mockup's
   underlined "VIEW THE WORK" treatment */
a.aws-underline-link {
	text-decoration: underline;
	text-decoration-color: var(--wp--preset--color--accent);
	text-underline-offset: 6px;
}