/*
Theme Name: AuWoMe Theme
Theme URI: https://auwome.com
Author: Cyguin
Author URI: https://cyguin.com
Description: A custom editorial magazine theme for AuWoMe by Cyguin. Focuses on typography, whitespace, and a clean reading experience.
Version: 1.0.1
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.0
License: MIT
Text Domain: auwome
Tags: blog, news, custom-colors, custom-menu, featured-images, flexible-header, full-width-template
*/

/* 
 * 1.0 - WordPress Core Classes
 * -----------------------------------------------------------------------------
 * These are standard classes WordPress requires to handle alignment and basic styling 
 * for content inserted via the classic or block editor.
 */

/* Alignment */
.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%; /* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Clearings */
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/* Default Gutenberg Block Styles Support */
.wp-block-image {
    margin-bottom: 2rem;
}
.wp-block-image figcaption {
    color: #666;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 0.5rem;
}

.wp-block-quote {
    border-left: 4px solid hsl(214 70% 22%); /* matches primary color */
    padding-left: 1.5rem;
    margin-left: 0;
    font-style: italic;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
}
.wp-block-quote cite {
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
}

.wp-block-separator {
    border: none;
    border-bottom: 1px solid hsl(0 0% 90%); /* matches border color */
    margin: 3rem auto;
}
