/*
Theme Name: Le Clos des Voûtes
Theme URI: https://leclosdesvoutes.fr
Author: Le Clos des Voûtes
Author URI: https://leclosdesvoutes.fr
Description: Thème WordPress personnalisé pour le blog du Clos des Voûtes - Salle de réception & Gîtes de groupe à Solore en Forez.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leclosdesvoutes
Tags: blog, custom-menu, featured-images, translation-ready
*/

/* ===== VARIABLES ===== */
:root {
  --green-900: #1a3c2a;
  --green-800: #234d36;
  --green-700: #2d6344;
  --green-600: #3a7d56;
  --green-500: #4a9968;
  --green-400: #6bb585;
  --green-300: #8ecda3;
  --green-200: #b5e0c4;
  --green-100: #daf0e1;
  --green-50: #f0f9f3;
  --gold-700: #8a6914;
  --gold-600: #a67c1a;
  --gold-500: #c4952a;
  --gold-400: #d4a843;
  --gold-300: #e0be6a;
  --gold-200: #ebd496;
  --gold-100: #f5e8c3;
  --gold-50: #fdf8ee;
  --foreground: #1a1a1a;
  --foreground-muted: #555555;
  --background: #ffffff;
  --background-alt: #f8f7f4;
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-logo: 'Cormorant Garamond', Georgia, serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--green-900);
}

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--green-600);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.site-main {
  flex: 1;
  padding-top: 5rem;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

@media (min-width: 640px) {
  .header-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .header-inner { padding: 0 2rem; }
}

.site-branding a {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: 0.02em;
}

.site-branding a:hover {
  color: var(--green-700);
}

/* Navigation */
.main-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-muted);
  position: relative;
  transition: color 0.3s ease;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.main-navigation a:hover {
  color: var(--green-700);
}

.main-navigation a:hover::after {
  width: 100%;
}

.main-navigation .current-menu-item a,
.main-navigation .current_page_item a {
  color: var(--green-700);
}

.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
  width: 100%;
}

.header-actions {
  display: none;
}

@media (min-width: 1024px) {
  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--green-800);
  font-weight: 500;
}

.header-phone:hover {
  color: var(--green-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-800);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-700);
  color: #fff;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--green-900);
}

.btn-gold:hover {
  background: var(--gold-400);
  color: var(--green-900);
}

/* Mobile menu toggle */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--green-800);
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #f3f4f6;
  padding: 1rem 1.5rem;
}

.mobile-nav.is-open {
  display: block;
}

@media (min-width: 1024px) {
  .mobile-nav { display: none !important; }
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav li {
  border-bottom: 1px solid #f9fafb;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--foreground-muted);
  font-weight: 500;
}

.mobile-nav a:hover {
  color: var(--green-700);
}

.mobile-nav .mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
  color: var(--green-800);
  font-weight: 500;
}

.mobile-nav .mobile-cta {
  display: block;
  margin-top: 0.75rem;
  padding: 0.75rem;
  text-align: center;
  background: var(--green-800);
  color: #fff;
  font-weight: 600;
  border-radius: 0.375rem;
}

.mobile-nav .mobile-cta:hover {
  background: var(--green-700);
  color: #fff;
}

/* ===== BLOG HERO ===== */
.blog-hero {
  background: var(--green-900);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.blog-hero .subtitle {
  color: var(--gold-400);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.blog-hero h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .blog-hero h1 { font-size: 3rem; }
}

.blog-hero .description {
  color: var(--green-200);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  margin: 1rem auto;
}

/* ===== BLOG CONTENT ===== */
.blog-content {
  padding: 3rem 0 4rem;
}

.blog-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .blog-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
  }
}

/* ===== POST CARD ===== */
.post-card {
  background: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.post-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.post-card-thumbnail {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.post-card-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.post-card:hover .post-card-thumbnail img {
  transform: scale(1.05);
}

.post-card-thumbnail .category-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green-800);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.post-card-body {
  padding: 1.5rem;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  margin-bottom: 0.75rem;
}

.post-card-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.post-card-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.post-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.post-card h2 a {
  color: var(--green-900);
}

.post-card h2 a:hover {
  color: var(--green-700);
}

.post-card-excerpt {
  font-size: 0.9375rem;
  color: var(--foreground-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green-700);
}

.read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.read-more:hover svg {
  transform: translateX(4px);
}

/* ===== SINGLE POST ===== */
.single-post-header {
  background: var(--green-900);
  color: #fff;
  padding: 4rem 0 3rem;
}

.single-post-header .category-badge {
  display: inline-block;
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.single-post-header h1 {
  font-size: 2rem;
  color: #fff;
  max-width: 800px;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .single-post-header h1 { font-size: 2.5rem; }
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--green-200);
  font-size: 0.875rem;
}

.single-post-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.single-post-meta svg {
  width: 16px;
  height: 16px;
}

.single-post-content {
  padding: 3rem 0 4rem;
}

.single-post-layout {
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .single-post-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    max-width: 100%;
  }
  .single-post-with-sidebar .single-post-layout {
    max-width: 100%;
  }
}

.post-featured-image {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.post-featured-image img {
  width: 100%;
  height: auto;
}

/* Post content typography */
.entry-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--foreground);
}

.entry-content h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
}

.entry-content h3 {
  font-size: 1.375rem;
  margin: 2rem 0 0.75rem;
}

.entry-content h4 {
  font-size: 1.125rem;
  margin: 1.5rem 0 0.5rem;
}

.entry-content p {
  margin-bottom: 1.25rem;
}

.entry-content ul, .entry-content ol {
  margin: 1rem 0 1.25rem 1.5rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content blockquote {
  border-left: 4px solid var(--gold-500);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--gold-50);
  border-radius: 0 0.5rem 0.5rem 0;
  font-style: italic;
  color: var(--foreground-muted);
}

.entry-content img {
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.entry-content a {
  color: var(--green-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  color: var(--green-600);
}

.entry-content pre {
  background: var(--green-900);
  color: var(--green-100);
  padding: 1.5rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  font-size: 0.875rem;
}

.entry-content code {
  background: var(--green-50);
  padding: 0.15rem 0.4rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
}

.entry-content pre code {
  background: none;
  padding: 0;
}

/* Post tags */
.post-tags {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.post-tags a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--green-50);
  color: var(--green-800);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 9999px;
  border: 1px solid var(--green-100);
}

.post-tags a:hover {
  background: var(--green-100);
}

/* Post navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}

.post-navigation .nav-label {
  font-size: 0.75rem;
  color: var(--foreground-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.post-navigation a {
  font-weight: 600;
  color: var(--green-900);
  font-size: 0.9375rem;
}

.post-navigation a:hover {
  color: var(--green-700);
}

.post-navigation .nav-next {
  text-align: right;
}

/* ===== SIDEBAR ===== */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.widget {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-500);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f9fafb;
}

.widget li:last-child {
  border-bottom: none;
}

.widget li a {
  color: var(--foreground-muted);
  font-size: 0.9375rem;
}

.widget li a:hover {
  color: var(--green-700);
}

/* CTA Widget */
.widget-cta {
  background: var(--green-900);
  color: #fff;
  text-align: center;
}

.widget-cta .widget-title {
  color: var(--gold-400);
  border-bottom-color: var(--green-700);
}

.widget-cta p {
  font-size: 0.9375rem;
  color: var(--green-200);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.widget-cta .btn-gold {
  width: 100%;
  padding: 0.75rem;
}

/* Search widget */
.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input[type="search"] {
  flex: 1;
  padding: 0.625rem 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
}

.search-form input[type="search"]:focus {
  border-color: var(--green-500);
}

.search-form button {
  padding: 0.625rem 1rem;
  background: var(--green-800);
  color: #fff;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
}

.search-form button:hover {
  background: var(--green-700);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #e5e7eb;
  color: var(--foreground-muted);
  transition: all 0.3s;
}

.pagination a:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  color: var(--green-700);
}

.pagination .current {
  background: var(--green-800);
  color: #fff;
  border-color: var(--green-800);
}

/* ===== COMMENTS ===== */
.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #f3f4f6;
}

.comments-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  padding: 1.5rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.comment-meta .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.comment-author {
  font-weight: 600;
  color: var(--green-900);
}

.comment-date {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
}

.comment-body p {
  font-size: 0.9375rem;
  color: var(--foreground-muted);
  line-height: 1.7;
}

.comment-reply-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-700);
}

/* Comment form */
.comment-respond {
  margin-top: 2rem;
}

.comment-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--green-900);
  margin-bottom: 0.375rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 1rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(74, 153, 104, 0.1);
}

.comment-form textarea {
  min-height: 150px;
  resize: vertical;
}

.comment-form .form-submit input {
  background: var(--green-800);
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.comment-form .form-submit input:hover {
  background: var(--green-700);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-900);
  color: #fff;
}

.footer-main {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer-brand h3 {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--green-200);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: var(--gold-500);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: var(--green-200);
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--green-200);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.footer-zone li {
  color: var(--green-200);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--green-800);
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--green-300);
}

.footer-bottom .footer-tagline {
  color: var(--green-400);
}

/* ===== 404 ===== */
.error-404 {
  text-align: center;
  padding: 6rem 0;
}

.error-404 h1 {
  font-size: 6rem;
  color: var(--green-200);
  margin-bottom: 1rem;
}

.error-404 h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-404 p {
  color: var(--foreground-muted);
  margin-bottom: 2rem;
}

/* ===== ARCHIVE HEADER ===== */
.archive-header {
  background: var(--green-900);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.archive-header .subtitle {
  color: var(--gold-400);
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.archive-header h1 {
  font-size: 2rem;
  color: #fff;
}

@media (min-width: 768px) {
  .archive-header h1 { font-size: 2.5rem; }
}

.archive-header .archive-description {
  color: var(--green-200);
  max-width: 600px;
  margin: 0.5rem auto 0;
}

/* ===== SEARCH RESULTS ===== */
.search-header {
  background: var(--green-900);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.search-header h1 {
  font-size: 2rem;
  color: #fff;
}

.search-header h1 span {
  color: var(--gold-400);
}

/* ===== SCREEN READER TEXT ===== */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ===== ALIGNMENTS ===== */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  font-size: 0.8125rem;
  color: var(--foreground-muted);
  text-align: center;
  padding-top: 0.5rem;
}
