/*
Theme Name: Dream River Counseling
Theme URI: https://dreamrivercounseling.com
Author: Dream River Counseling
Description: A warm, professional therapy practice theme with nature-inspired aesthetics.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: dream-river
*/

:root {
  --stone: #2c2825;
  --sage: #4a6355;
  --sage-light: #5d7a6b;
  --sage-muted: #8fa99a;
  --sand: #e8ddd3;
  --sand-light: #f4efe9;
  --sand-pale: #faf8f5;
  --cream: #fffdf9;
  --warm: #c4956a;
  --warm-light: #d4aa82;
  --river: #5b8a9a;
  --river-deep: #3d6b7a;
  --text: #3a3632;
  --text-light: #6b6560;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(255, 253, 249, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(44, 40, 37, 0.06);
  padding: 0.9rem 3rem;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

nav.scrolled .logo { color: var(--sage); }

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,253,249,0.85);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}

nav.scrolled .nav-links a { color: var(--text-light); }
.nav-links a:hover { color: var(--warm-light); }
nav.scrolled .nav-links a:hover { color: var(--sage); }

.nav-cta {
  background: rgba(255,253,249,0.15) !important;
  border: 1px solid rgba(255,253,249,0.3);
  padding: 0.6rem 1.4rem !important;
  border-radius: 4px;
  transition: all 0.3s !important;
}

.nav-cta:hover { background: rgba(255,253,249,0.25) !important; }

nav.scrolled .nav-cta {
  background: var(--sage) !important;
  border-color: var(--sage);
  color: var(--cream) !important;
}

nav.scrolled .nav-cta:hover { background: var(--sage-light) !important; }

.mobile-toggle { display: none; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(165deg, #2c3830 0%, #3d5245 30%, #4a6355 60%, #3d6b7a 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 149, 106, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(91, 138, 154, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 90%, rgba(44, 40, 37, 0.3) 0%, transparent 50%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.river-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  overflow: hidden;
}

.river-line svg {
  position: absolute;
  bottom: -2px;
  width: 100%;
  height: 120px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-light);
  margin-bottom: 2rem;
  font-weight: 500;
  animation: fadeUp 1.2s ease-out 0.2s both;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeUp 1.2s ease-out 0.3s both;
}

.hero h1 em { font-style: italic; color: var(--warm-light); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(244, 239, 233, 0.75);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: fadeUp 1.2s ease-out 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease-out 0.7s both;
}

/* BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--warm);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--warm-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(196, 149, 106, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,253,249,0.3);
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: rgba(255,253,249,0.1);
  border-color: rgba(255,253,249,0.5);
}

.btn-light {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--cream);
  color: var(--sage);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn-light:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* TRUST BAR */
.trust-bar {
  background: var(--sand-light);
  padding: 2rem 3rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(196, 149, 106, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 400;
}

.trust-icon {
  width: 18px;
  height: 18px;
  color: var(--sage);
  flex-shrink: 0;
}

/* SECTIONS */
section { padding: 6rem 3rem; }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--stone);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.015em;
}

.section-heading em { font-style: italic; color: var(--sage); }

/* INTRO / ABOUT */
.intro { background: var(--cream); }

.intro-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 3rem;
  align-items: center;
}

.intro-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(44, 40, 37, 0.12);
  flex-shrink: 0;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.intro-content { display: flex; flex-direction: column; gap: 1rem; }
.intro-content .section-heading { margin-bottom: 0.5rem; }

.intro-quote {
  position: relative;
  padding: 2rem 2.5rem;
  background: var(--sand-light);
  border-radius: 8px;
  border-left: 3px solid var(--warm);
}

.intro-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.intro-quote cite {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.intro-text {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.75;
}

.intro-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s;
  margin-top: 0.5rem;
}

.intro-link:hover { gap: 0.8rem; }

/* SERVICES */
.services { background: var(--sand-pale); }

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.services-header p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 149, 106, 0.1);
  transition: all 0.4s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 40, 37, 0.08);
  border-color: rgba(196, 149, 106, 0.2);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--sand-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--sage);
  transition: all 0.4s;
}

.service-card:hover .service-icon {
  background: var(--sage);
  color: var(--cream);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--stone);
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* APPROACH */
.approach {
  background: var(--sage);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.approach .section-label { color: var(--warm-light); }
.approach .section-heading { color: var(--cream); }
.approach .section-heading em { color: var(--warm-light); }

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.approach-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(244, 239, 233, 0.8);
  margin-bottom: 1.5rem;
}

.modalities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}

.modality-tag {
  padding: 0.5rem 1rem;
  background: rgba(255,253,249,0.1);
  border: 1px solid rgba(255,253,249,0.15);
  border-radius: 40px;
  font-size: 0.82rem;
  color: rgba(244, 239, 233, 0.85);
  letter-spacing: 0.02em;
}

/* WHAT TO EXPECT */
.expect { background: var(--cream); }

.expect-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.expect-header p { color: var(--text-light); line-height: 1.7; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step { text-align: center; padding: 2rem 1.5rem; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--stone);
}

.step p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-light);
}

/* DETAILS */
.details { background: var(--sand-light); }

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.details-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid rgba(196, 149, 106, 0.08);
}

.details-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.insurance-list {
  list-style: none;
  columns: 2;
  gap: 1rem;
}

.insurance-list li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  break-inside: avoid;
}

.insurance-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

.location-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.location-info h4:first-child { margin-top: 0; }

.location-info p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-light);
}

.location-info a { color: var(--sage); text-decoration: none; }
.location-info a:hover { text-decoration: underline; }

/* BOOK PROMO */
.book-promo { background: var(--cream); }

.book-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--sand-light);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(196,149,106,0.1);
}

.book-cover {
  width: 100%;
  aspect-ratio: 2/3;
  background: var(--sand);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  overflow: hidden;
  box-shadow: 4px 4px 20px rgba(44,40,37,0.15);
}

.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--stone);
  margin-bottom: 0.8rem;
}

.book-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sage);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s;
}

.book-link:hover { gap: 0.8rem; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(165deg, #2c3830, #4a6355);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }

.cta-section .section-heading {
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 1rem;
}

.cta-section .section-heading em { color: var(--warm-light); }

.cta-sub {
  color: rgba(244,239,233,0.7);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--stone);
  color: rgba(244,239,233,0.6);
  padding: 4rem 3rem 2rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: var(--cream);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.88rem; line-height: 1.7; }

footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1rem;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }

footer ul a {
  color: rgba(244,239,233,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

footer ul a:hover { color: var(--warm-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(165deg, #2c3830, #4a6355);
  padding: 10rem 3rem 5rem;
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.page-hero h1 em { font-style: italic; color: var(--warm-light); }

.page-hero p {
  color: rgba(244, 239, 233, 0.75);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* CONTENT SECTIONS */
.content-section { padding: 5rem 3rem; }
.content-section.alt { background: var(--sand-light); }

.content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.content-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.content-inner h2 em { font-style: italic; color: var(--sage); }

.content-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.content-inner ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.content-inner li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--cream);
  z-index: 200;
  transition: right 0.4s ease;
  padding: 5rem 2rem 2rem;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}

.mobile-menu.active { right: 0; }

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--stone);
}

.mobile-menu ul { list-style: none; }

.mobile-menu li { margin-bottom: 1.5rem; }

.mobile-menu a {
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu a:hover { color: var(--sage); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  section { padding: 4rem 1.5rem; }
  
  .nav-links { display: none; }
  .mobile-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--cream);
    transition: color 0.4s;
  }
  nav.scrolled .mobile-toggle { color: var(--stone); }
  
  .intro-grid { grid-template-columns: 1fr; text-align: center; }
  .intro-photo { margin: 0 auto; }
  .intro-link { justify-content: center; }
  
  .approach-grid, .details-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { gap: 1.5rem; padding: 1.5rem; }
  .book-grid { grid-template-columns: 1fr; }
  .book-cover { max-width: 180px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .trust-bar { flex-direction: column; align-items: center; gap: 0.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .insurance-list { columns: 1; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
}

/* WordPress Classes */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.875rem; color: var(--text-light); }
