/*
Theme Name: Sabisquill
Theme URI: https://sabisquill.com
Author: Akanksha Singh
Author URI: https://sabisquill.com
Description: A minimal, clean, and immersive personal blog theme focused on calm reading experience.
Version: 1.1
License: GNU General Public License v2 or later
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:                #faf9f6;
  --bg-off:            #faf9f6;
  --color-white:       #faf9f6;

  --text:              #1e1e1e;
  --text-light:        #000000d9;

  --accent:            #B08F58;
  --accent-hover:      #B08F58;

  --divider:           rgba(30, 30, 30, 0.12);
  --color-border:      rgba(30, 30, 30, 0.12);

  --font-serif:  'Playfair Display', serif;
  --font-sans:   'Open Sans', sans-serif;

  --max-width:    904px;
  --content-wide: 780px;
  --header-h:     60px;

  --spacing-xs:  0.5rem;
  --spacing-sm:  1rem;
  --spacing-md:  2rem;
  --spacing-lg:  3.5rem;
  --spacing-xl:  5rem;
  --spacing-xxl: 7rem;

  --transition:   0.25s ease;
  --sq-ease:      cubic-bezier(0.22, 1, 0.36, 1);
}
section.home-section {
    background: #fafafa;
}
.read-more-link {
    color: var(--text);
}
/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
.article-content p {
    margin-bottom: 10px !important;
}
.article-content {
    font-size: 15px !important;
}
body {
  background-color: #f2eeed;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.home.wp-singular,
body.blog.wp-custom-logo,
body.wp-singular.page-template-default {
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}
a:hover { color: var(--accent); }

button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   TYPOGRAPHY
   Playfair Display for ALL headings — standard (not italic) by default
   Open Sans for body text
   Italic only for: taglines, excerpts, introductory lines, dates
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: normal;
  line-height: 1.65;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(2rem,   4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem);    }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }

p { color: var(--text); }
p:last-child { margin-bottom: 0; }

blockquote {
  border-left: 2px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-light);
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.container--wide {
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

div#page {
  max-width: 970px;
  margin: auto;
  background: white;
}
@media only screen and (max-width: 1300px) {
  div#page { max-width: 970px; }
}

.screen-reader-text,
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ============================================================
   DECORATIVE ELEMENTS — REMOVED
   ============================================================ */
.home-hero__decorative,
.sq-decorative,
.floating-deco,
.deco-diamond,
.hero-deco-images,
.exc-hero__deco,
[class*="deco-"],
[class*="-diamond"] {
  display: none !important;
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
#site-header,
.site-header,
header#masthead,
header#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 970px;
  margin: auto;
  height: var(--header-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
  transition: transform 0.35s ease, opacity 0.35s ease;
  display: flex;
  align-items: center;
}

header#site-header.is-sticky { background: #ffffffa3 !important; margin-top: 0; }

#site-header.hide,
.site-header.hide-header { transform: translateY(-100%); opacity: 0; }
.site-header.show-header  { transform: translateY(0);    opacity: 1; }

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo,
.site-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-branding { display: flex; align-items: center; gap: 0.5rem; }
.site-branding a { display: flex; align-items: center; gap: 0.4rem; text-decoration: none; }

.quill-icon,
.site-logo .quill-icon { font-size: 1rem; opacity: 0.65; }

.header-nav,
.site-navigation ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.header-nav a,
.site-navigation a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  color: var(--text);
  transition: color var(--transition);
}

.header-nav a:hover,
.header-nav a.current-menu-item,
.site-navigation a:hover,
.site-navigation .current-menu-item a { color: var(--text); }

/* ============================================================
   PAGE BODY OFFSET
   ============================================================ */
#page,
.site-main { padding-top: var(--header-h); }

.site-main { min-height: 100vh; }

/* ============================================================
   HERO
   ============================================================ */

/* Title/tagline box — now sits below the banner image, not overlapping it.
   Full styling for this lives in front-page.php's inline <style> block. */
/* Hero title — standard serif, NOT italic */
.exc-hero__title {
     font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 600;
    font-style: normal !important;
    color: #2c3e50;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    
}
/* Hero tagline — italic */
.exc-hero__excerpt {
  color: #343434;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  font-style: italic;
}

.sq-hero,
.home-hero {
  position: relative;
  width: 100%;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sq-hero__bg { position: absolute; inset: 0; z-index: 0; }

.sq-hero__img,
.home-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.08);
  animation: sq-ken-burns 16s ease-out forwards;
}

@keyframes sq-ken-burns { to { transform: scale(1); } }

.sq-hero__img--placeholder {
  background: linear-gradient(160deg, #e8e4dc 0%, #d4cfc4 100%);
  animation: none; transform: none;
}

.home-hero__overlay,
.sq-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 1;
}

.sq-hero__content,
.home-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xl);
  color: #f9f7f3;
}

.sq-hero__wordmark,
.home-hero__title,
h1.sq2-hero__wordmark {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FAF8F4;
  margin-bottom: var(--spacing-sm);
  animation: sq-rise 1.1s var(--sq-ease) both;
  animation-delay: 0.2s;
}

h1.sq2-hero__wordmark {
  font-weight: 600;
  font-style: normal;
  font-size: 34px;
  letter-spacing: -0.02em;
  text-transform: none;
  animation: fadeUp 1s ease both;
  animation-delay: 0.4s;
}
h1.sq2-hero__wordmark em { font-style: italic; color: var(--accent); }

.sq-hero__rule,
.home-hero__divider {
  width: 48px; height: 1px;
  background: rgba(255,255,255,0.6);
  margin: 1.25rem auto;
  animation: sq-widen 1s var(--sq-ease) both;
  animation-delay: 0.6s;
  transform-origin: center;
}

.sq-hero__tagline,
.home-hero__tagline {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

.sq-hero__scroll { display: inline-block; margin-top: 3.5rem; animation: sq-fade 1s var(--sq-ease) both; animation-delay: 1.3s; }
.sq-hero__scroll-line {
  display: block; width: 1px; height: 48px;
  background: rgba(0,0,0,0.5);
  margin: 0 auto;
  transform-origin: top;
  animation: sq-scroll-pulse 2s ease-in-out 1.5s infinite;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label,
.sq-section-label,
.sq2-section-label {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.sq-section-label__text,
.sq2-section-label__text {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
}

.sq-section-label__line { flex: 1; height: 1px; background: var(--divider); }

.sq2-section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.sq2-section-label__text { color: var(--accent); font-weight: 500; }

.section-label__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: var(--spacing-xl);
}
.section-label__title::before,
.section-label__title::after { content: ''; display: block; height: 1px; width: 40px; background: var(--color-border); }

/* Section label with faint lines on both sides (used in front-page) */
.section-label-with-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}
.section-label-with-lines::before,
.section-label-with-lines::after {
  content: '';
  display: block;
  height: 1px;
  width: 60px;
  background: rgba(46, 46, 46, 0.2);
}
.section-label-with-lines span {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-light);
  white-space: nowrap;
  text-transform: capitalize !important;
}

/* ============================================================
   FEATURED REFLECTIONS — LATEST POST
   ============================================================ */
.sq-featured,
.featured-reflections,
.latest-piece {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) var(--spacing-md);
  text-align: center;
}

.sq-latest__eyebrow,
.featured-latest-label,
.latest-piece__sublabel {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.sq-latest__title,
.featured-latest-title,
.latest-piece__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 600;
  font-style: normal;
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--text);
}

.sq-latest__title a {
  color: var(--text);
  background-image: linear-gradient(var(--text), var(--text));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size 0.4s var(--sq-ease);
}
.sq-latest__title a:hover { background-size: 100% 1px; }

.sq-latest__excerpt,
.featured-latest-excerpt,
.latest-piece__excerpt {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: #5a5a54;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.sq-btn-continue,
.btn-continue,
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 0.3s, border-color 0.3s;
}

.sq-btn-continue {
  color: var(--text);
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 3px;
}
.sq-btn-continue:hover { color: var(--accent); border-color: var(--accent); }
.sq-btn-continue__arrow { display: inline-block; transition: transform 0.3s var(--sq-ease); }
.sq-btn-continue:hover .sq-btn-continue__arrow { transform: translateX(5px); }

.btn-continue {
  color: white;
  background: var(--accent);
  padding: 0.85rem 1.8rem;
}
.btn-continue:hover { color: white; opacity: 0.9; }

.read-more-link {  font-style: italic; font-size: 14px; font-weight: normal; }

.sq-thin-rule,
.thin-divider {
  width: 100%; max-width: var(--max-width);
  margin: 3.5rem auto;
  height: 1px;
  background: var(--divider);
}

/* ============================================================
   RECENT WRITINGS LIST
   ============================================================ */
.sq-recent__eyebrow,
.recent-pieces__sublabel {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}

.sq-recent__list,
.recent-pieces { display: flex; flex-direction: column; gap: 0; list-style: none; }

.sq-recent__item,
.recent-piece { border-top: 1px solid var(--divider); padding: var(--spacing-md) 0; }
.sq-recent__item:last-child,
.recent-piece:last-child { border-bottom: 1px solid var(--divider); }

.sq-recent__link {
  display: block;
  padding: 1.6rem 0;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left 0.35s var(--sq-ease);
}
.sq-recent__link::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 2px; height: 40%;
  background: var(--accent);
  border-radius: 2px;
  transition: transform 0.35s var(--sq-ease);
  transform-origin: center;
}
.sq-recent__item:hover .sq-recent__link { padding-left: 1rem; }
.sq-recent__item:hover .sq-recent__link::before { transform: translateY(-50%) scaleY(1); }

.sq-recent__title,
.recent-piece__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 0.4rem;
  transition: color 0.3s;
}
.sq-recent__item:hover .sq-recent__title,
.recent-piece a:hover .recent-piece__title { color: var(--accent); }

.sq-recent__excerpt,
.recent-piece__excerpt {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sq-recent__read {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sq-recent__item:hover .sq-recent__read { opacity: 1; }

/* View All */
.sq-view-all,
.view-all-reflections,
.view-all-wrap { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   BUTTONS — consistent pill style site-wide
   ============================================================ */
.sq-btn-view-all,
a.btn-view-all,
.btn-view-all,
.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: white;
  text-decoration: none;
  border: 1px solid var(--divider);
  padding: 9px 32px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  border-radius: 30px;
  background: #C5A46D;
  position: relative;
  overflow: hidden;
      max-width: 300px;
    /* margin: auto !important; */
    width: 100%;
}
.sq-btn-view-all:hover,
a.btn-view-all:hover,
.btn-view-all:hover,
.btn-outline:hover {
     background: #B08F58 !important;
    color: white !important;
  color: var(--text);
}

/* ── Button colour comparison — swap the class on any button to preview ── */
.btn-dusty-teal        { background: #5e8b7e !important; }
.btn-antique-gold      { background: #b98d3e !important; }
.btn-muted-terracotta  { background: #c1694f !important; }
.btn-dusty-teal:hover        { background: #4d7469 !important; }
.btn-antique-gold:hover      { background: #a17832 !important; }
.btn-muted-terracotta:hover  { background: #a8543f !important; }

/* ============================================================
   ABOUT + SUBSCRIBE GRID
   ============================================================ */
.sq-lower,
.home-lower {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 6rem) var(--spacing-md);
}

.sq-lower__grid,
.home-lower__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.sq-about__photo-wrap,
.sq2-about__photo-wrap { position: relative; display: inline-block; margin-bottom: 1.4rem; }

.sq-about__photo,
.about-section__photo,
.about-section.fade-up.fade-up--delay-1 img {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  filter: grayscale(15%);
  transition: filter 0.4s;
  display: block;
}
.sq-about__photo:hover,
.about-section__photo:hover { filter: grayscale(0%); }

.sq2-about__photo-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.6;
}

.sq-about__name,
.about-section__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0.75rem;
}

.sq-about__bio,
.about-section__bio,
.about-intro {
     font-family: var(--font-sans);
    font-size: 15px;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 1.4rem;
    max-width: 400px;
}

.sq-btn-story,
.btn-read-story {
  width: 100% !important;
     padding: 9px 32px;
  background: #C5A46D !important;
  color: white !important;
  border: none !important;
  font-family: var(--font-sans) !important;
  font-size: 0.78rem !important;
  font-weight: normal !important;
  letter-spacing: 0.2em !important;
  cursor: pointer;
  border-radius: 30px;
  transition: opacity 0.2s, background 0.2s, color 0.2s !important;
  display: inline-block;
  text-align: center;
  text-decoration: none;
      max-width: 300px;
    margin: auto !important;
}
.sq-btn-story:hover,
.btn-read-story:hover {
    background: #B08F58 !important;
    color: white !important;
    opacity: 0.9;
}

section.home-lower {
  max-width: 1000px;
}

.sq-subscribe__eyebrow,
.subscribe-section__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.sq-subscribe__title,
.subscribe-section__title,
.subscribe-block .sub-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.sq-subscribe__desc,
.subscribe-section__desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.4rem;
  line-height: 1.65;
}

.subscribe-form,
.sq-subscribe-form__row { display: flex; flex-direction: column; gap: 0.75rem; }

.subscribe-form input[type="email"],
.sq-subscribe-form input[type="email"],
input.es_required_field.es_txt_email.ig_es_form_field_email {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-white);
  border: 1px solid #5a5a5438;
  border-radius: 2px;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.subscribe-form input[type="email"]::placeholder,
.sq-subscribe-form input[type="email"]::placeholder { color: var(--text-light); }
.subscribe-form input[type="email"]:focus,
.sq-subscribe-form input[type="email"]:focus { border-color: var(--accent); }

.subscribe-form button,
.sq-subscribe-form button[type="submit"] {
  width: 100%;
  padding: 0.875rem;
  background: #C5A46D;
  color: white;
  border: none;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.subscribe-form button:hover,
.sq-subscribe-form button[type="submit"]:hover {
  background: #f4f4f4;
  color: var(--text);
}

/* Email Subscribe Plugin */
.es_subscription_form label[aria-hidden="true"] { display: none !important; }
.es-field-wrap:has(.ig_es_form_field_name) { display: none !important; }

.es_subscription_form .es_submit_button {
    width: 100% !important;
    padding: 12px 32px !important;
    background: #C5A46D !important;
    color: white !important;
    border: none !important;
    font-family: var(--font-sans) !important;
    font-size: 0.78rem !important;
    font-weight: normal !important;
    letter-spacing: 0.2em !important;
    cursor: pointer;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s !important;
    max-width: 300px;
    margin: auto !important;
    display: block;
}
.es_subscription_form .es_submit_button:hover {
    background: #B08F58 !important;
    color: white !important;
  opacity: 0.9;
}
.es_subscription_message.success { color: #C5A46D !important; }
.es-field-wrap.ig-es-form-field .es-field-label { font-size: 0; line-height: 1.65; margin: 0; padding: 0; }
.es-field-wrap.ig-es-form-field .es-field-label br { display: none; }

/* ============================================================
   FOOTER — consistent across all pages
   ============================================================ */

/* homepage padding-only section (no bg image needed) */
.home-section {
  padding: 60px 0 60px;
  width: 100%;
}

/* Site footer — white/light background, clean */
footer#site-footer,
.site-footer-wrap {
  background-color: #fafafa;
  border-top: 1px solid var(--divider);
  padding: 20px 0 20px;
  width: 100%;
}

.sq-connect__inner,
.footer-inner,
.container-footer {
  max-width: 970px;
  margin: 0 auto;
  padding: 20px var(--spacing-md) 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Social icons */
.social-icons-row,
.sq-connect__social-row,
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 20px;
}

.social-icons-row a,
.footer-social a,
.sq-connect__social {
  font-family: var(--font-sans);
  font-size: 20px;
  color: var(--text-light);
  letter-spacing: 0.06em;
  transition: color var(--transition), transform 0.3s;
}
.social-icons-row a:hover,
.footer-social a:hover,
.sq-connect__social:hover { color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* Footer contact row */
.footer-nav-row {
  margin-bottom: 20px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.footer-nav-row a { color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.footer-nav-row a:hover { color: var(--accent); }
.footer-nav-row .sep { margin: 0 15px; color: #bbb; }

.footer-divider { border: 0; border-top: 1px solid var(--divider); margin: 0 0 16px; width: 100%; }

.sq-connect__link,
.footer-connect__item a,
.connect-left a {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--text-light);
  transition: color 0.3s;
}
.sq-connect__link:hover,
.footer-connect__item a:hover,
.connect-left a:hover { color: var(--accent); }

.sq-connect__sep,
.connect-bar .sep { color: var(--divider); margin: 0 8px; }

.sq-connect__copy,
.footer-copyright-row,
.footer-copyright,
.connect-right {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  opacity: 0.8;
  padding-bottom: 10px;
}
.footer-copyright-row .brand-orange { color: var(--accent); font-weight: 500; }

/* ============================================================
   REFLECTIONS ARCHIVE PAGE
   ============================================================ */
.reflections-archive-wrapper {
  background-color: #fff;
  padding: 60px 0px 60px;
  width: 100%;
  box-sizing: border-box;
}

.reflections-archive-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* Page title — standard serif, NOT italic */
.reflections-archive-main-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 600;
  font-style: normal !important;
  color: var(--text);
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

/* Underline only on archive/single pages, not homepage */
.reflections-archive-main-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 25%;
  width: 50%;
  border-bottom: 1px solid #e0dcd9;
}
/* Hide underline on homepage */
.home-section .reflections-archive-main-title::after {
  display: none;
}

/* Tagline — italic, no trailing full stop */
.reflections-archive-subtitle {
    color: var(--text) !important;
     font-family: var(--font-sans);
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    margin: 0 0 20px;
}

.reflections-list-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 25px 80px;
  list-style: none;
}

.reflection-list-item {
  text-align: left;
  border-bottom: 1px solid #ece8e5;
  padding: 44px 0;
}
.reflection-list-item:last-child { border-bottom: none; padding-bottom: 0; }

/* Article list title — standard serif */
.reflection-list-title {

  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.65;
  margin-bottom: 6px;
}
.reflection-list-title a { color:var(--text); transition: color 0.2s; }
.reflection-list-title a:hover { color: var(--accent); }

/* Publication date — understated */
.reflection-list-date {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

/* Excerpts — italic */
.reflection-list-excerpt {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Pagination */
.custom-pagination { margin: 70px 0; text-align: center; }
.custom-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; height: 44px;
  margin: 0 5px;
  background: #f4f1ea;
  color: #2f2f2f;
  text-decoration: none;
  transition: 0.3s;
  padding: 10px;
  font-family: var(--font-sans);
}
.custom-pagination .page-numbers:hover,
.custom-pagination .current { background: var(--accent); color: white; }

/* ============================================================
   ARCHIVE (WP standard)
   ============================================================ */
.archive-header {
  padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xl);
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.archive-header__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  display: block;
}

.archive-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.archive-header__desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.65;
}

.archive-divider { max-width: var(--max-width); margin: 0 auto var(--spacing-xl); height: 1px; background: var(--color-border); }

.posts-list { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--spacing-md) var(--spacing-xxl); list-style: none; }

.post-item { padding: var(--spacing-md) 0; border-bottom: 1px solid var(--color-border); }
.post-item:last-child { border-bottom: none; }

.post-item__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  font-style: normal;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}
.post-item a:hover .post-item__title { color: var(--accent); }

.post-item__excerpt {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.post-item__read-more { font-family: var(--font-sans); font-size: 0.8125rem; letter-spacing: 0.08em; color: var(--accent); }
.post-item a:hover .post-item__read-more { text-decoration: underline; }

/* ============================================================
   SINGLE ARTICLE PAGE
   ============================================================ */
.single-article-header,
.article-header {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
  text-align: center;
}

.article-section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.article-section-sub,
.article-section-desc {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
}

.article-featured-image {
  max-width: var(--content-wide);
  margin: 0 auto var(--spacing-lg);
  padding: 0 var(--spacing-md);
}
.article-featured-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

/* Article title — standard serif, NOT italic */
.article-title {
font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    font-style: normal;
    line-height: 1.65;
}

/* Publication date + reading time */
.article-meta {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.entry-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-sans);
}

.entry-content p,
.article-body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.entry-content p { margin-bottom: 1.5em; }

.entry-content h2,
.article-body h2 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; font-style: normal; margin: 2.5rem 0 1rem; }
.entry-content h3,
.article-body h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; font-style: normal; margin: 2rem 0 0.75rem; }

.article-body blockquote {
  border-left: 2px solid var(--accent);
  margin: 2em 0;
  padding-left: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-light);
}

/* Article tags */
.article-tags {
  max-width: var(--max-width);
  padding: 20px 0 2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}
.article-tags a { color: var(--text) !important; font-size: 0.75rem; letter-spacing: 0.08em; margin-right: 0.75rem; opacity: 0.7; transition: opacity var(--transition); }
.article-tags a:hover { opacity: 1; color: var(--accent); }

/* ============================================================
   COMMENTS SECTION
   ============================================================ */
.comments-section,
.comments-area {
  background: white;
  max-width: var(--max-width);
  margin: 0 auto;
}

.comments-section .container { max-width: 700px !important; margin: 0 auto !important; padding: 0 24px !important; }

.comments-section #comments > h2,
.comments-section .comments-title,
.comments-title {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  font-style: normal;
  margin-bottom: var(--spacing-lg) !important;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 18px;
}
.comments-section #comments > h2::after,
.comments-section .comments-title::after { content: ''; flex: 1; height: 1px; background: var(--divider); }

.comments-section .comment-list,
.comments-section .children,
.comment-list { list-style: none !important; padding: 0 !important; margin: 0 !important; }

.comment { padding: var(--spacing-md) 0; }

.comments-section .comment-body {
  background: #fff !important;
  border: 1px solid rgba(232,224,211,0.7) !important;
  border-radius: 3px !important;
  padding: 28px 30px 22px !important;
  position: relative !important;
  box-shadow: 0 1px 4px rgba(28,26,24,0.04), 0 6px 20px rgba(28,26,24,0.06) !important;
  transition: box-shadow 0.22s var(--sq-ease), transform 0.22s var(--sq-ease) !important;
}
.comments-section .comment-body:hover { box-shadow: 0 2px 8px rgba(28,26,24,0.07), 0 14px 36px rgba(28,26,24,0.1) !important; transform: translateY(-1px) !important; }

.comments-section .comment-body::before {
  content: '' !important;
  position: absolute !important;
  left: 0; top: 0; bottom: 0;
  width: 3px !important;
  background: var(--accent) !important;
  border-radius: 3px 0 0 3px !important;
  opacity: 0 !important;
  transition: opacity 0.2s !important;
}
.comments-section .comment-body:hover::before { opacity: 1 !important; }

.comments-section .comment-meta { display: flex !important; align-items: center !important; gap: 12px !important; margin-bottom: 14px !important; }

.comments-section .comment-author img.avatar { width: 42px !important; height: 42px !important; border-radius: 50% !important; border: 2px solid var(--divider) !important; flex-shrink: 0 !important; }

.comments-section .comment-author b,
.comments-section .comment-author .fn {
  font-family: var(--font-sans) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  font-style: normal !important;
}
.comments-section .comment-author a { text-decoration: none !important; color: inherit !important; }

.comments-section .comment-metadata { margin-left: auto !important; }
.comments-section .comment-metadata a { font-family: var(--font-sans) !important; font-size: 11px !important; font-weight: 400 !important; color: var(--text-light) !important; text-decoration: none !important; letter-spacing: 0.03em !important; }

.comments-section .comment-content p,
.comment-body p {
  font-family: var(--font-sans) !important;
  font-size: 15px !important;
  font-weight: 400 !important; /* was 300, read as too light despite dark color */
  line-height: 1.65 !important;
  color: #3a3a3a !important; /* charcoal, not #B08F58 */
  margin: 0 0 0.5em !important;
}
.comments-section .comment-content p:last-child { margin-bottom: 0 !important; }

.comments-section .reply { margin-top: 14px !important; text-align: right !important; }
.comments-section .comment-reply-link {
  display: inline-flex !important; align-items: center !important; gap: 6px !important;
  font-family: var(--font-sans) !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 0.15em !important; text-transform: uppercase !important;
  color: #fff !important; background: #C5A46D !important;
  text-decoration: none !important;
  padding: 7px 16px !important; border-radius: 30px !important;
  transition: background 0.18s, color 0.18s !important;
}
.comments-section .comment-reply-link::before { content: '\21A9' !important; font-size: 12px !important; }
.comments-section .comment-reply-link:hover { background: #B08F58 !important; color: white !important; }

.comments-section .children { margin-top: 16px !important; margin-left: 40px !important; position: relative !important; }
.comments-section .children::before { content: '' !important; position: absolute !important; left: -20px; top: 0; bottom: 24px; width: 1px !important; }
.comments-section .children .comment-body { background: #fafafa !important; }

.comments-section .bypostauthor > .comment-body { background: #fafafa !important; border-color: #fafafa !important; }
.comments-section .bypostauthor > .comment-body::before { background: var(--accent) !important; opacity: 1 !important; }
.comments-section .bypostauthor .fn::after { content: ' · Author' !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; color: var(--accent) !important; margin-left: 8px !important; font-style: normal !important; vertical-align: middle !important; }

/* Comment Form */
.comments-section #respond { padding-top: 52px !important; border-top: 1px solid var(--divider) !important; }

.comments-section #reply-title {
  font-family: var(--font-serif) !important;
  font-size: 1.8rem !important; font-weight: 600 !important;
  font-style: normal !important;
  color: var(--text) !important; margin-bottom: 24px !important; line-height: 1.65 !important;
}
.comments-section #reply-title small { display: block !important; font-family: var(--font-sans) !important; font-size: 0.7rem !important; font-weight: 400 !important; color: var(--text-light) !important; margin-top: 6px !important; }
.comments-section #reply-title small a { color: var(--accent) !important; text-decoration: none !important; }

.comments-section .comment-notes { font-family: var(--font-sans) !important; font-size: 13px !important; color: var(--text-light) !important; margin-bottom: 24px !important; }

.comments-section label {
  display: block !important;
  font-family: var(--font-sans) !important;
  font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 0.15em !important; text-transform: uppercase !important;
  color: var(--text-light) !important; margin-bottom: 7px !important;
}

.comment-form-author label span[aria-hidden="true"],
.comment-form-email label span[aria-hidden="true"] {
  color: var(--accent);
  font-size: 14px;
}

.comments-section input[type="text"],
.comments-section input[type="email"],
.comments-section input[type="url"],
.comments-section textarea,
.comment-form input,
.comment-form textarea {
  width: 100% !important;
  font-family: var(--font-sans) !important;
  font-size: 1rem !important; font-weight: 400 !important;
  color: #3a3a3a !important; background: #fff !important;
  border: 1px solid #5a5a5438 !important; border-radius: 2px !important;
  padding: 12px 15px !important; outline: none !important;
  transition: border-color 0.18s, box-shadow 0.18s !important;
  -webkit-appearance: none !important; box-shadow: none !important;
  margin-bottom: 16px !important; resize: none;
}
.comments-section input:focus,
.comments-section textarea:focus { border-color: var(--accent) !important; box-shadow: 0 0 0 3px rgba(141,170,145,0.15) !important; }
.comments-section textarea { min-height: 140px !important; resize: vertical !important; line-height: 1.65 !important; }

/* Post Comment button — consistent pill style */
.comments-section #submit,
.comments-section input[type="submit"],
.comment-submit-btn {
  font-family: var(--font-sans) !important;
  font-size: 0.78rem !important; font-weight: normal !important;
  letter-spacing: 0.2em !important;
  color: #fff !important; background: #C5A46D !important;
  border: none !important; padding: 13px 34px !important;
  border-radius: 30px !important; cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
  -webkit-appearance: none !important;
  display: block !important;
}
.comments-section #submit:hover,
.comments-section input[type="submit"]:hover,
.comment-submit-btn:hover {
  background: #f4f4f4 !important;
  color: var(--text) !important;
}

/* ============================================================
   MY STORY PAGE
   ============================================================ */
.my-story-section {
  background: #f5f5f3;
  padding-top: 80px !important;
  padding-bottom: 120px !important;
}

.my-story-image { max-width: 700px; width: 100%; height: auto; display: block; margin: 0 auto 30px; }

.story-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  font-style: normal;
  color: #444;
  margin-bottom: 60px;
  line-height: 1.1;
}

.story-content { font-family: var(--font-sans); color: var(--text); }
.story-content p { font-size: clamp(1rem, 2vw, 1.3rem); line-height: 1.65; margin-bottom: 1.6rem; }

.my-story-page .author-photo {
  display: block; width: 100px; height: 100px;
  border-radius: 50%; object-fit: cover;
  margin: var(--spacing-xl) auto var(--spacing-lg);
  border: 2px solid var(--color-border);
}

.my-story-page .page-title,
.page-template-page-my-story h1,
.page-title {
  font-family: var(--font-serif);
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  font-style: normal;
  margin-bottom: var(--spacing-xl);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.sq-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--sq-ease), transform 0.8s var(--sq-ease);
  transition-delay: var(--d, 0ms);
}
.sq-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION (Post-to-post)
   ============================================================ */
.posts-navigation,
.post-navigation {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.posts-navigation a,
.post-navigation a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
}
.posts-navigation a:hover,
.post-navigation a:hover { color: var(--text); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp  { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sq-rise { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sq-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes sq-widen { from { opacity: 0; transform: scaleX(0); } to { opacity: 1; transform: scaleX(1); } }
@keyframes sq-scroll-pulse {
  0%    { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%   { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  50.1% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100%  { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

.fade-up               { animation: fadeUp 0.65s ease both; }
.fade-up--delay-1      { animation-delay: 0.1s; }
.fade-up--delay-2      { animation-delay: 0.2s; }
.fade-up--delay-3      { animation-delay: 0.3s; }

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.wp-caption        { max-width: 100%; }
.wp-caption-text   { font-family: var(--font-sans); font-size: 0.8125rem; color: var(--text-light); font-style: italic; text-align: center; margin-top: 0.5rem; }
.aligncenter       { margin: 0 auto; }
.alignleft         { float: left; margin-right: 1.5rem; }
.alignright        { float: right; margin-left: 1.5rem; }
.gallery           { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gallery-item      { flex: 1; min-width: 200px; }

/* ============================================================
   UTILITY
   ============================================================ */
.divider { border: none; border-top: 1px solid var(--divider); margin: 64px 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
.reflections-archive-subtitle {
    padding-left: 15px;
    padding-right: 15px;
}
.recent-item-title {
    height: auto !important;
}
  .exc-hero { min-height: 235px !important; }
  .recent-list { grid-template-columns: repeat(1, 1fr) !important; }
  header#site-header { margin: 0px auto !important; }
  div#page { margin: 0px auto !important; }
  :root { --spacing-xl: 3rem; --spacing-xxl: 4.5rem; }
  .sq-lower__grid,
  .home-lower__grid { grid-template-columns: 1fr; gap: var(--spacing-xl); }
  .comment-form-name-email { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-connect { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .site-navigation ul,
  .header-nav { gap: var(--spacing-md); }
  .my-story-section { padding-top: 50px !important; padding-bottom: 70px !important; }
}

@media (max-width: 700px) {
  :root { --header-h: 52px; }
  .header-inner { padding: 0 16px; }
  .sq-hero,
  .home-hero { min-height: 320px; }
  .about-subscribe-grid { grid-template-columns: 1fr; gap: 48px; }
  .connect-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reflections-archive-wrapper { padding: 60px 15px 60px; }
  .comments-section .children { margin-left: 20px !important; }
  .comments-section .comment-body { padding: 22px 20px 18px !important; }
  .exc-hero__inner { width: 80% !important; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .site-navigation a,
  .header-nav a { font-size: 0.75rem; letter-spacing: 0.08em; }
  .sq-hero__word { font-size: 2.8rem; }
  .exc-hero__inner { width: 90% !important; }
}
@media screen and (max-width: 1200px)
{
    .site-navigation
    {
        min-height : 100px;
        padding-left : 10px;
    }
    .container-fluid
    {
        max-width : 1200px;
        
    }
     
}

.recent-item{
    display:flex;
    flex-direction:column;
    text-align:center;
}

.recent-item-title{
    margin:0 0 18px;
    line-height:1.65;
    display:flex;
    justify-content:center;
    align-items:flex-end;
    height:50px;    
}

.recent-item-date{
    margin:0 0 18px;
}

.recent-item-excerpt{
    margin:0;
    line-height:1.65;
}
.article-content {
    line-height: 1.65 !important;

}
.reflections-archive-subtitle {
    color: var(--text) !important;
}