/*
Theme Name: Travelista
Theme URI: https://www.linkedin.com/in/sainipabla/
Author: Harminder Singh Saini
Author URI: https://www.linkedin.com/in/sainipabla/
Description: A clean, modern travel & lifestyle blog theme with a featured post grid, sidebar widgets, and Instagram footer feed. Fully responsive for mobile, tablet and desktop.
Version: 1.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: travelista
*/

/* ===================================================== */
/* IMPORT GOOGLE FONTS: NOTO SERIF DISPLAY & FIGTREE     */
/* ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;700&family=Noto+Serif+Display:wght@300;400;700&display=swap');

/* ==========================================================================
   1. ROOT / DESIGN TOKENS
   ========================================================================== */
:root{
  --color-bg: #ffffff;
  --color-text: #1c3a4d;        /* navy - matches logo script */
  --color-muted: #8a8a8a;
  --color-accent: #c9836b;      /* terracotta - matches "PARENTING" */
  --color-accent-dark: #a86c4e;
  --color-olive: #7c8c5e;       /* olive green - matches "LIFESTYLE" */
  --color-border: #ececec;
  --color-surface: #faf8f6;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', Helvetica, Arial, sans-serif;

  --container-max: 1200px;
  --gap: 30px;
  --radius: 4px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body{
  margin:0;
  background:var(--color-bg);
  color:var(--color-text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:var(--color-text); text-decoration:none; }
a:hover{ color:var(--color-accent); }
ul{ list-style:none; margin:0; padding:0; }

h1,h2,h3,h4,h5,h6{
  font-family:var(--font-heading);
  font-weight:600;
  line-height:1.25;
  margin:0 0 .5em;
}

.container{
  max-width:var(--container-max);
  margin:0 auto;
  padding:0 20px;
}

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

.btn{
  display:inline-block;
  padding:12px 28px;
  border:1px solid var(--color-text);
  background:transparent;
  font-size:.75rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  cursor:pointer;
  transition:.25s;
}
.btn:hover{ background:var(--color-text); color:#fff; }

/* ==========================================================================
   2. SITE HEADER — single row: logo left, nav center, icons+search right
   ========================================================================== */
.site-header{
    padding:22px 0;
    border-bottom:1px solid var(--color-border);
}

body.home .site-header{
    padding-bottom:0;
    border-bottom:none;
}
.site-header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.site-branding{ flex:0 0 auto; }
.site-branding .site-title{
  font-size:2.4rem;
  letter-spacing:.02em;
  margin:0;
  font-family:var(--font-heading);
  font-style:italic;
}
.site-branding .site-title a{ color:var(--color-text); }
.site-branding .site-description{
  margin:2px 0 0;
  font-size:.7rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--color-muted);
}
.site-logo{ text-align:left; }
.site-logo img{
  max-height:70px;
  width:auto;
}

.header-actions{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:18px;
}
.header-actions .social-icons{ display:flex; gap:16px; }
.header-actions .social-icons a{
  color:var(--color-text);
  font-size:.75rem;
  letter-spacing:.05em;
}
.header-actions .social-icons a:hover{ color:var(--color-accent); }
.header-search-toggle{
  font-size:1rem;color:var(--color-text);
}
.header-search-toggle:hover{ color:var(--color-accent); }

.menu-toggle{
  background:none;border:0;cursor:pointer;font-size:1.3rem;color:var(--color-text);
  display:none;
}

.menu-close{
  display:none;
}

/* Primary nav — sits in the middle of the header row on desktop */
.primary-nav{ flex:1 1 auto; }
.primary-nav > ul{
  display:flex;
  gap:34px;
  justify-content:center;
  align-items:center;
}
.primary-nav ul li{ position:relative; }
.primary-nav > ul > li > a{
    font-size:.78rem;
    letter-spacing:.14em;
    text-transform:uppercase;
    padding:6px 0;
    display:block;
    white-space:nowrap;

    color:#1c3a4d;
    transition:color .3s ease;
}

.primary-nav > ul > li > a:hover,
.primary-nav > ul > li:hover > a,
.primary-nav > ul > li.current-menu-item > a,
.primary-nav > ul > li.current_page_item > a,
.primary-nav > ul > li.current-menu-ancestor > a{
    color:#86A8AD !important;
}
.primary-nav li.menu-item-has-children > a::after{
  content:"›";
  display:inline-block;
  transform:rotate(90deg);
  margin-left:6px;
  font-size:.9em;
}
.primary-nav ul ul{
  position:absolute;
  top:100%; left:50%;
  transform:translate(-50%,6px);
  min-width:220px;
  background:#fff;
  border:1px solid var(--color-border);
  box-shadow:0 10px 25px rgba(0,0,0,.06);
  padding:10px 0;
  opacity:0; visibility:hidden;
  transition:.2s;
  z-index:50;
  text-align:left;
}
.primary-nav ul ul ul{ top:0; left:100%; transform:none; }
.primary-nav li:hover > ul{ opacity:1; visibility:visible; transform:translate(-50%,0); }
.primary-nav ul ul li a{
    display:block;
    padding:16px 24px;
    white-space:nowrap;

    background:#ffffff;
    color:#1c3a4d;

    transition:all .3s ease;
}

/* Green background on hover */
.primary-nav ul ul li a:hover,
.primary-nav ul ul li:hover > a{
    background:#D9E4E4 !important;
    ccolor:#1c3a4d !important;
}

/* ==========================================================================
   3. HERO SLIDER (full-width, one slide at a time, matches reference design)
   ========================================================================== */
.hero-slider{
  position:relative;
  width:100%;
  aspect-ratio:16/9;
  max-height:760px;
  overflow:hidden;
  background:var(--color-surface);
}
.hero-slider-track{
  position:relative;
  width:100%;
  height:100%;
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .6s ease;
  z-index:1;
}
.hero-slide.is-active{
  opacity:1;
  visibility:visible;
  z-index:2;
}
.hero-slide-bg{
  position:absolute;inset:0;
  width:100%;height:100%;
}
.hero-slide-bg img{
  width:100%;height:100%;object-fit:cover;
}
.hero-slide-content{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:min(720px, 80%);
  text-align:center;
  padding:60px 50px;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(1px);
}
.hero-cat{
  display:block;
  font-size:.78rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--color-olive, var(--color-accent));
  margin-bottom:18px;
}
.hero-slide-content h2 {
    font-size: 2.4rem;
    line-height: 1.25;
    margin-bottom: 26px;
    color: var(--color-text) !important;
}

.hero-slide-content h2,
.hero-slide-content h2 a,
.hero-slide-content h2 span,
.hero-slide-content h2 strong {
    transition: color 0.3s ease !important;
}

/* Change the complete hero title when hovered */
.hero-slide-content h2:hover,
.hero-slide-content h2:hover a,
.hero-slide-content h2:hover span,
.hero-slide-content h2:hover strong,
.hero-slide-content h2 a:hover,
.hero-slide-content h2 a:hover span {
    color: #D9AC90 !important;
}
.hero-btn{
  border-color:var(--color-muted);
  color:var(--color-text);
  background:transparent;
}
.hero-btn:hover{ background:var(--color-text); color:#fff; border-color:var(--color-text); }

/* ===================================================== */
/* HERO SLIDER ARROWS                                    */
/* ===================================================== */

.hero-slider button.hero-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:50px !important;
    height:50px !important;
    padding:0 !important;

    display:flex !important;
    align-items:center;
    justify-content:center;

    background:#ffffff !important;
    border:0 !important;

    color:#333333 !important;
    font-size:2rem;
    line-height:1;
    font-weight:400 !important;

    cursor:pointer;
    z-index:5;

    text-shadow:none;
    opacity:1 !important;
    transition:none !important;
}

/* Keep them white on hover */
.hero-slider button.hero-arrow:hover,
.hero-slider button.hero-arrow:focus,
.hero-slider button.hero-arrow:active{
    background:#ffffff !important;
    border-color:#ffffff !important;
    color:#333333 !important;
    opacity:1 !important;
}

/* Icon fonts */
.hero-slider button.hero-arrow i,
.hero-slider button.hero-arrow span,
.hero-slider button.hero-arrow::before,
.hero-slider button.hero-arrow::after{
    color:#333333 !important;
}

/* SVG arrows */
.hero-slider button.hero-arrow svg,
.hero-slider button.hero-arrow svg path,
.hero-slider button.hero-arrow svg polyline{
    fill:none !important;
    stroke:#333333 !important;
    color:#333333 !important;
}

/* Positioning */
.hero-arrow-prev{
    left:10px;
}

.hero-arrow-next{
    right:10px;
}
.hero-arrow-prev{ left:10px; }
.hero-arrow-next{ right:10px; }

.hero-dots{
  position:absolute;
  bottom:20px; left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:5;
}
.hero-dots button{
  width:8px;height:8px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,.55);
  cursor:pointer;
  padding:0;
}
.hero-dots button.is-active{ background:#fff; }

/* ==========================================================================
   4. MAIN LAYOUT: content + sidebar
   ========================================================================== */
.site-content-wrap{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:60px;
  padding:60px 0;
  align-items:start;
}

/* Blog grid layout */
.post-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:var(--gap);
}
.post-card{ }
.post-card .thumb{
  position:relative;
  aspect-ratio:4/5;
  overflow:hidden;
  margin-bottom:16px;
  background:var(--color-surface);
}
.post-card .thumb img{
  width:100%;height:100%;object-fit:cover;
  transition:transform .5s ease;
}
.post-card:hover .thumb img{ transform:scale(1.06); }
.post-card .cat-label{
  font-size:.68rem;letter-spacing:.15em;text-transform:uppercase;
  color:var(--color-accent-dark);margin-bottom:8px;display:block;
}
.post-card h2{ font-size:1.3rem; margin-bottom:8px; }
.post-card .excerpt{ color:var(--color-muted); font-size:.92rem; margin-bottom:8px; }
.post-card .read-more{
  font-size:.7rem;letter-spacing:.15em;text-transform:uppercase;
  border-bottom:1px solid var(--color-text);padding-bottom:2px;
}

/* List layout variant */
.post-list .post-card{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:30px;
  margin-bottom:40px;
  padding-bottom:40px;
  border-bottom:1px solid var(--color-border);
}
.post-list .post-card .thumb{ aspect-ratio:1/1; margin-bottom:0; }

.pagination-more{ text-align:center; margin-top:50px; }

/* ==========================================================================
   5. SIDEBAR
   ========================================================================== */
.widget{ margin-bottom:50px; }
.widget-title{
  font-size:.75rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  margin-bottom:20px;
  padding-bottom:12px;
  border-bottom:1px solid var(--color-border);
}
.widget-about img{ border-radius:50%; margin-bottom:16px; width:220px;height:220px;object-fit:cover; margin:0px auto; }
h4.widget-title { margin-top: 16px;  }
.widget-about p{ color:var(--color-muted); font-size:.92rem; }

.widget-categories li{
    border: 1px solid var(--color-border);
    margin-bottom: 8px;
    padding-left: 20px;
}
.widget-categories li a{
  display:flex;justify-content:space-between;
  padding:12px 0;font-size:.85rem;letter-spacing:.05em;text-transform:uppercase;
}

.widget-search form{ display:flex; }
.widget-search input[type="search"]{
  flex:1;padding:12px;border:1px solid var(--color-border);
  font-family:var(--font-body);
}
.widget-search button{
  padding:0 16px;border:1px solid var(--color-text);background:var(--color-text);color:#fff;cursor:pointer;
}

.favorite-item{
  display:grid;grid-template-columns:80px 1fr;gap:16px;margin-bottom:20px;align-items:center;
}
.favorite-item .thumb{ aspect-ratio:1/1; overflow:hidden; }
.favorite-item .thumb img{ width:100%;height:100%;object-fit:cover; }
.favorite-item h3{ font-size:.92rem; margin:0; }

/* ==========================================================================
   6. FOOTER
   ========================================================================== */
.site-footer{ background:var(--color-surface); }
.footer-subscribe{
  text-align:center;padding:70px 0;border-bottom:1px solid var(--color-border);
}
.footer-subscribe h4{
  font-size:.75rem;letter-spacing:.2em;text-transform:uppercase;color:var(--color-muted);margin-bottom:10px;
}
.footer-subscribe h2{ font-size:2rem;margin-bottom:24px; }
.subscribe-form{ display:flex; max-width:420px; margin:0 auto; }
.subscribe-form input{
  flex:1;padding:14px 16px;border:1px solid var(--color-border);border-right:0;font-family:var(--font-body);
}
.subscribe-form button{
  padding:0 24px;background:var(--color-text);color:#fff;border:0;
  text-transform:uppercase;font-size:.72rem;letter-spacing:.15em;cursor:pointer;
}

.footer-explore{ padding:30px 0 0px; text-align:center; }
.footer-explore ul{
  display:flex;justify-content:center;gap:30px;flex-wrap:wrap;margin-bottom:30px;
}
.footer-explore ul li a{
  font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;
}
.footer-handle{ text-align:center;font-size:.85rem;margin-bottom:30px; }
.footer-handle strong{ display:block; font-family:var(--font-heading); font-size:1.1rem; }

.instagram-grid{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:2px;
}
.instagram-grid a{ display:block; aspect-ratio:1/1; overflow:hidden; }
.instagram-grid img{ width:100%;height:100%;object-fit:cover;transition:transform .4s; }
.instagram-grid a:hover img{ transform:scale(1.08); }

.footer-bottom{
  text-align:center;padding:24px 0;font-size:.78rem;color:var(--color-muted); border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   7. SINGLE POST / PAGE
   ========================================================================== */
.single-post-header{ text-align:center; max-width:760px; margin:0 auto 40px; padding-top:50px; }
.single-post-header .cat-label{
  font-size:.7rem;letter-spacing:.18em;text-transform:uppercase;color:var(--color-accent-dark);
}
.single-post-header h1{ font-size:2.4rem; margin:12px 0; }
.single-post-header .meta{ color:var(--color-muted); font-size:.85rem; }
.single-featured-image{ margin-bottom:40px; aspect-ratio:16/9; overflow:hidden; }
.single-featured-image img{ width:100%;height:100%;object-fit:cover; }
.entry-content{  margin:0 auto; font-size:1.05rem; }
.entry-content p{ margin-bottom:1.4em; }
.entry-content h2,.entry-content h3{ margin-top:1.6em; }
.entry-content blockquote{
  border-left:3px solid var(--color-accent);
  margin:2em 0;padding:.5em 0 .5em 24px;
  font-family:var(--font-heading);font-style:italic;font-size:1.2rem;
}

/* ==========================================================================
   8. RESPONSIVE — TABLET (iPad)
   ========================================================================== */
@media (max-width: 1024px){
  .hero-slider{ aspect-ratio:4/5; max-height:640px; }
  .hero-slide-content{ padding:40px 30px; }
  .hero-slide-content h2{ font-size:1.9rem; }
  .site-content-wrap{ grid-template-columns:1fr; gap:50px; }
  .post-grid{ grid-template-columns:repeat(2,1fr); }
  .instagram-grid{ grid-template-columns:repeat(6,1fr); }
  .primary-nav > ul{ gap:22px; }
}

/* ==========================================================================
   9. RESPONSIVE — MOBILE
   ========================================================================== */
@media (max-width: 700px){
  .site-header-row{ flex-wrap:wrap; }
  .site-branding{ margin:0 auto; text-align:center; order:1; flex:1 1 auto; }
  .site-logo{ text-align:center; }
  .site-logo img{ margin:0 auto; max-height:60px; }
  .menu-toggle{ display:block; order:0; }
  .header-actions{ order:2; }
  .header-actions .social-icons{ display:none; }

  .primary-nav{
    display:none;
    position:fixed;inset:0;
    background:#fff;
    padding:70px 24px 24px;
    overflow-y:auto;
    z-index:200;
    flex:none;
  }
  .primary-nav.is-open{ display:block; }
  .primary-nav > ul{ flex-direction:column; gap:0; align-items:flex-start; }
  .primary-nav > ul > li{ border-bottom:1px solid var(--color-border); width:100%; }
  .primary-nav > ul > li > a{ padding:16px 0; }
  .primary-nav ul ul{
    position:static; opacity:1;visibility:visible;transform:none;
    box-shadow:none;border:0;padding-left:14px;display:none;text-align:left;
  }
  .primary-nav li.submenu-open > ul{ display:block; }

  .menu-close{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute; top:20px; right:20px;
    width:36px; height:36px;
    background:var(--color-surface);
    border:1px solid var(--color-border);
    border-radius:50%;
    font-size:1.3rem;
    line-height:1;
    color:var(--color-text);
    cursor:pointer;
    z-index:210;
  }
  .menu-close:hover{ background:var(--color-text); color:#fff; }

  .hero-slider{ aspect-ratio:3/4; max-height:560px; }
  .hero-slide-content{ width:88%; padding:28px 20px; }
  .hero-slide-content h2{ font-size:1.4rem; margin-bottom:16px; }
  .hero-cat{ font-size:.66rem; margin-bottom:10px; }
  .hero-arrow{ font-size:2rem; padding:8px 10px; }

  .post-grid{ grid-template-columns:1fr; }
  .post-list .post-card{ grid-template-columns:1fr; }

  .instagram-grid{ grid-template-columns:repeat(4,1fr); }

  .footer-explore ul{ gap:16px 22px; }
  .subscribe-form{ flex-direction:column; }
  .subscribe-form input{ border-right:1px solid var(--color-border); margin-bottom:10px; }

  .single-post-header h1{ font-size:1.7rem; }
}


/* ==========================================================================
   COMMENTS / LEAVE A COMMENT FORM STYLING
   ========================================================================== */
.comments-area{
  max-width:760px;
  margin:0 auto;
  padding-top:50px;
  border-top:1px solid var(--color-border);
}

.comments-area .widget-title,
.comments-area > h3{
  font-size:1.6rem;
  font-family:var(--font-heading);
  text-transform:none;
  letter-spacing:0;
  border-bottom:0;
  padding-bottom:0;
  margin-bottom:24px;
}

.comment-list{ margin-bottom:40px; }
.comment-list li{
  padding:24px 0;
  border-bottom:1px solid var(--color-border);
}
.comment-list .comment-author{ font-weight:600; margin-bottom:4px; }
.comment-list .comment-metadata{ font-size:.8rem; color:var(--color-muted); margin-bottom:10px; }
.comment-list .comment-metadata a{ color:var(--color-muted); }

.comment-respond{
  background:var(--color-surface);
  border:1px solid var(--color-border);
  padding:40px;
  border-radius:var(--radius);
}
.comment-respond .comment-reply-title{
  font-size:1.4rem;
  margin-bottom:16px;
}
.comment-respond .logged-in-as{
  font-size:.85rem;
  color:var(--color-muted);
  margin-bottom:24px;
}
.comment-respond .logged-in-as a{ color:var(--color-accent-dark); text-decoration:underline; }

.comment-form label{
  display:block;
  font-size:.75rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--color-text);
  margin-bottom:8px;
}

.comment-form p{ margin-bottom:22px; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--color-border);
  background:#fff;
  font-family:var(--font-body);
  font-size:.95rem;
  color:var(--color-text);
  border-radius:var(--radius);
  transition:border-color .2s;
}
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus{
  outline:none;
  border-color:var(--color-accent);
}
.comment-form textarea{
  min-height:160px;
  resize:vertical;
}

.comment-form .comment-form-cookies-consent{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:.85rem;
  color:var(--color-muted);
}
.comment-form .comment-form-cookies-consent label{
  display:inline;
  text-transform:none;
  letter-spacing:0;
  font-size:.85rem;
  margin:0;
}

.comment-form .form-submit{ margin-bottom:0; }
.comment-form input#submit{
  display:inline-block;
  padding:13px 32px;
  border:1px solid var(--color-text);
  background:var(--color-text);
  color:#fff;
  font-size:.72rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  cursor:pointer;
  border-radius:var(--radius);
  transition:.25s;
}
.comment-form input#submit:hover{
  background:#fff;
  color:var(--color-text);
}

@media (max-width:700px){
  .comment-respond{ padding:26px 20px; }
}



/* ==========================================================================
   CONTACT PAGE FORM STYLING
   ========================================================================== */

/* Page wrapper spacing */
.page-template-contact .entry-content,
.contact .entry-content{
  max-width:640px;
}

form.wpcf7-form {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 40px;
    border-radius: var(--radius);
}
/* Generic form fields (covers most plugins' default markup) */
form label,
.wpforms-field-label,
.wpcf7-form label{
  display:block;
  font-size:.75rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--color-text);
  margin-bottom:8px;
}

form input[type="text"],
form input[type="email"],
form input[type="url"],
form input[type="tel"],
form textarea,
form select,
.wpforms-field input,
.wpforms-field textarea,
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--color-border);
  background:#fff;
  font-family:var(--font-body);
  font-size:.95rem;
  color:var(--color-text);
  border-radius:var(--radius);
  transition:border-color .2s;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus,
form select:focus,
.wpforms-field input:focus,
.wpforms-field textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus{
  outline:none;
  border-color:var(--color-accent);
}

form textarea,
.wpforms-field textarea,
.wpcf7-form textarea{
  min-height:180px;
  resize:vertical;
}

/* Submit button — matches the theme's dark uppercase button style */
form input[type="submit"],
form button[type="submit"],
.wpforms-submit,
.wpcf7-submit{
  display:inline-block;
  padding:14px 36px;
  border:1px solid var(--color-text);
  background:var(--color-text);
  color:#fff;
  font-size:.72rem;
  letter-spacing:.15em;
  text-transform:uppercase;
  cursor:pointer;
  border-radius:var(--radius);
  transition:.25s;
}
form input[type="submit"]:hover,
form button[type="submit"]:hover,
.wpforms-submit:hover,
.wpcf7-submit:hover{
  background:#fff;
  color:var(--color-text);
}

/* Success / error messages (WPForms + CF7) */
.wpforms-confirmation-container,
.wpcf7-response-output{
  border-radius:var(--radius);
  padding:16px 20px;
  font-size:.9rem;
  margin-top:20px;
}
.wpcf7-mail-sent-ok,
.wpforms-confirmation-container{
  border:1px solid var(--color-olive, var(--color-accent));
  color:var(--color-text);
  background:var(--color-surface);
}
.wpcf7-validation-errors,
.wpcf7-mail-sent-ng{
  border:1px solid #c0392b;
  color:#c0392b;
  background:#fdf2f1;
}

@media (max-width:700px){
  form input[type="submit"],
  form button[type="submit"],
  .wpforms-submit,
  .wpcf7-submit{
    width:100%;
  }
}


.search-form input#s {
    width: 68%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    background: #fff;
    font-family: var(--font-body);
    font-size: .95rem;
    color: var(--color-text);
    border-radius: var(--radius);
    transition: border-color .2s;
}

.widget-categories li:hover {
    background-color: #c9836b;
}
.widget-categories li:hover a {
    color: #fff;
}
/* Transform the Read More text into a solid button */
.post-grid .read-more, 
.post-grid .more-link,
.post-grid a.read-more-link {
    background-color: #86A8AD !important; /* CHANGED TO GREEN */
    color: #ffffff !important; 
    padding: 10px 24px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-decoration: none; 
    border: none; 
    display: inline-block; 
    transition: background-color 0.3s ease;
    margin-top: 15px; 
}

/* Hover effect for the Read More button */
.post-grid .read-more:hover, 
.post-grid .more-link:hover,
.post-grid a.read-more-link:hover {
    background-color: #D9AC90 !important; /* CHANGED TO TERRACOTTA */
    color: #ffffff !important;
    text-decoration: none;
}

/* ===================================================== */
/* APPLY FIGTREE FONT TO BODY TEXT                       */
/* ===================================================== */
body, p, li, a {
    font-family: 'Figtree', sans-serif !important;
    font-weight: 400 !important;
}
/* ===================================================== */
/* FORCE ALL HEADINGS & SUBHEADINGS TO NOTO SERIF 300    */
/* ===================================================== */

/* 1. Standard headings and common WordPress/Kadence classes */
h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title,
.widget-title,
.wp-block-heading,
.kadence-advanced-heading {
    font-family: 'Noto Serif Display', serif !important;
    font-weight: 300 !important;
}

/* 2. Target links inside headings so they don't change font/weight */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
.entry-title a,
.site-title a {
    font-family: 'Noto Serif Display', serif !important;
    font-weight: 300 !important;
}

/* 3. Force any bold formatting inside headings to stay 300 weight */
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong,
h1 b, h2 b, h3 b, h4 b, h5 b, h6 b {
    font-weight: 300 !important;
}
/* Remove top gap on single post left column to align perfectly with the sidebar */
.site-content-wrap .entry-content,
.single-post-header,
.single-post-header ul,
.single-post-header .post-categories,
.single-post-header p {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Optional: If the featured image feels too close to the title after this, 
   you can add a little space below the title */
.single-post-header h1 {
    margin-top: 10px !important; 
}
/* ===================================================== */
/* BLOG GRID: ALIGNED, COMPACT BUTTONS (NO STRETCHING)   */
/* ===================================================== */

/* 1. Ensure the thumbnail image wrapper is visible */
article.post-card .thumb {
    display: block !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
}

/* 2. Turn the post card into a Flexbox column */
article.post-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    background: transparent !important;
    transition: none !important;
    transform: none !important;
}

/* 3. DISABLE IMAGE HOVER EFFECT */
article.post-card .thumb img,
article.post-card:hover .thumb img,
article.post-card img {
    transition: none !important;
    transform: none !important;
}

/* 4. Disable card movement or shadows on hover */
article.post-card:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* 5. Space out the title */
article.post-card h2 {
    margin-bottom: 15px !important;
}

/* 6. COMPACT BUTTONS (Fixed stretching & aligned to bottom) */
article.post-card .read-more {
    margin-top: auto !important; 
    display: inline-block !important;
    width: auto !important;            
    align-self: flex-start !important; 
    background-color: #86A8AD !important; /* CHANGED TO GREEN */
    color: #ffffff !important;
    padding: 12px 28px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    text-align: center !important;
    transition: background-color 0.3s ease !important;
}

article.post-card .read-more:hover {
    background-color: #D9AC90 !important; /* ADDED TERRACOTTA HOVER */
    color: #ffffff !important; 
}
/* ===================================================== */
/* COMPLETE THREE-COLUMN FOOTER CSS                       */
/* ===================================================== */

.site-footer {
    background-color: #fbfbf9 !important;
    padding: 70px 0 30px !important;
    color: #4a4a4a !important;
}

/* Main footer layout */
.footer-inner-wrap {
    display: grid !important;
    grid-template-columns: 180px minmax(400px, 1fr) 180px !important;
    align-items: start !important;
    column-gap: 70px !important;

    width: 100% !important;
    max-width: 1200px !important;

    margin: 0 auto 50px !important;
    padding: 0 20px !important;

    box-sizing: border-box !important;
}

/* Reset all footer columns */
.footer-col {
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    align-self: start !important;
}

/* Left column */
.footer-categories {
    width: 180px !important;
    text-align: left !important;
    justify-self: start !important;
}

/* Middle newsletter column */
.footer-subscribe-col {
    width: 100% !important;
    text-align: center !important;
    justify-self: center !important;
}

/* Right column */
.footer-explore {
    width: 180px !important;
    text-align: left !important;
    justify-self: end !important;

    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Standard footer headings */
.footer-col h3 {
    display: block !important;
    width: 100% !important;

    margin: 0 0 18px !important;
    padding: 0 !important;

    font-family: "Figtree", sans-serif !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 500 !important;

    text-transform: uppercase !important;
    letter-spacing: 2px !important;

    color: #222222 !important;
    text-align: left !important;
}

/* Ensure left and right headings match */
.footer-categories > h3,
.footer-explore > h3 {
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    padding: 0 !important;
    text-align: left !important;
}

/* Newsletter script heading */
.footer-col h3.script-title {
    width: 100% !important;

    margin: 0 0 25px !important;
    padding: 0 !important;

    font-family: "Noto Serif Display", serif !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    font-weight: 300 !important;
    font-style: italic !important;

    text-transform: none !important;
    letter-spacing: normal !important;

    color: #222222 !important;
    text-align: center !important;
}

/* ===================================================== */
/* FOOTER MENU RESET                                      */
/* ===================================================== */

.footer-categories ul,
.footer-explore ul,
.footer-categories .footer-menu-list,
.footer-explore .footer-menu-list {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    gap: 8px !important;

    list-style: none !important;
    text-align: left !important;
}

/* Menu items */
.footer-categories ul > li,
.footer-explore ul > li,
.footer-categories .footer-menu-list > li,
.footer-explore .footer-menu-list > li {
    display: block !important;
    position: static !important;

    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    line-height: normal !important;

    text-align: left !important;
}

/* Menu links */
.footer-categories ul > li > a,
.footer-explore ul > li > a,
.footer-categories .footer-menu-list > li > a,
.footer-explore .footer-menu-list > li > a {
    display: inline-block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;

    color: #555555 !important;
    text-decoration: none !important;

    font-family: "Figtree", sans-serif !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;

    text-transform: none !important;
    letter-spacing: normal !important;
    text-align: left !important;

    transition: color 0.3s ease !important;
}

/* Link hover */
.footer-categories ul > li > a:hover,
.footer-explore ul > li > a:hover,
.footer-categories .footer-menu-list > li > a:hover,
.footer-explore .footer-menu-list > li > a:hover {
    color: #1b364d !important;
}

/* ===================================================== */
/* NEWSLETTER FORM                                        */
/* ===================================================== */

.subscribe-form {
    display: flex !important;
    flex-direction: column !important;

    gap: 15px !important;

    width: 100% !important;
    max-width: 400px !important;

    margin: 0 auto !important;
    padding: 0 !important;
}

/* Input row */
.subscribe-inputs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

    gap: 10px !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Input fields */
.subscribe-form input[type="text"],
.subscribe-form input[type="email"] {
    display: block !important;

    width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 12px 15px !important;

    box-sizing: border-box !important;

    background-color: #ffffff !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 0 !important;

    color: #333333 !important;

    font-family: "Figtree", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;

    outline: none !important;
    box-shadow: none !important;
}

/* Input focus */
.subscribe-form input[type="text"]:focus,
.subscribe-form input[type="email"]:focus {
    border-color: #1b364d !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Subscribe button */
.subscribe-form button[type="submit"] {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 12px 20px !important;
    box-sizing: border-box !important;
    background-color: #86A8AD !important; /* CHANGED TO GREEN */
    border: 0 !important;
    border-radius: 0 !important;
    color: #ffffff !important;
    font-family: "Figtree", sans-serif !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
}

/* Button hover */
.subscribe-form button[type="submit"]:hover {
    background-color: #D9AC90 !important; /* CHANGED TO TERRACOTTA */
    opacity: 1 !important; 
}
/* ===================================================== */
/* FOOTER BOTTOM                                          */
/* ===================================================== */

.footer-bottom {
    width: 100% !important;
    max-width: 1200px !important;

    margin: 0 auto !important;
    padding: 25px 20px 0 !important;

    box-sizing: border-box !important;

    border-top: 1px solid #eeeeee !important;

    color: #777777 !important;

    font-family: "Figtree", sans-serif !important;
    font-size: 13px !important;
    line-height: 1.5 !important;

    text-align: center !important;
}

/* ===================================================== */
/* TABLET                                                 */
/* ===================================================== */

@media screen and (max-width: 900px) {
    .footer-inner-wrap {
        grid-template-columns: 150px minmax(300px, 1fr) 150px !important;
        column-gap: 35px !important;
    }

    .footer-categories,
    .footer-explore {
        width: 150px !important;
    }

    .footer-col h3.script-title {
        font-size: 28px !important;
    }

    .subscribe-inputs {
        grid-template-columns: 1fr !important;
    }
}

/* ===================================================== */
/* MOBILE                                                 */
/* ===================================================== */

@media screen and (max-width: 700px) {
    .site-footer {
        padding: 50px 0 25px !important;
    }

    .footer-inner-wrap {
        display: grid !important;
        grid-template-columns: 1fr !important;

        row-gap: 40px !important;

        margin-bottom: 40px !important;
        padding: 0 20px !important;
    }

    .footer-col,
    .footer-categories,
    .footer-explore,
    .footer-subscribe-col {
        width: 100% !important;
        justify-self: stretch !important;
        text-align: center !important;
    }

    .footer-subscribe-col {
        order: -1 !important;
    }

    .footer-col h3,
    .footer-categories > h3,
    .footer-explore > h3,
    .footer-col h3.script-title {
        text-align: center !important;
    }

    .footer-categories ul,
    .footer-explore ul,
    .footer-categories .footer-menu-list,
    .footer-explore .footer-menu-list {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-categories ul > li,
    .footer-explore ul > li,
    .footer-categories .footer-menu-list > li,
    .footer-explore .footer-menu-list > li {
        text-align: center !important;
    }

    .footer-categories ul > li > a,
    .footer-explore ul > li > a,
    .footer-categories .footer-menu-list > li > a,
    .footer-explore .footer-menu-list > li > a {
        text-align: center !important;
    }

    .subscribe-inputs {
        grid-template-columns: 1fr !important;
    }
}
/* ===================================================== */
/* SIDEBAR CATEGORIES WIDGET STYLING                     */
/* ===================================================== */

/* 1. Main Container (Off-White Background) */
.sidebar .widget-categories {
    background-color: #F8F8F6!important; /* Updated to warm off-white */
    padding: 40px 30px !important;
    border: none !important; 
}

/* 2. Widget Title ("CATEGORIES") */
.sidebar .widget-categories .widget-title {
    text-align: center !important;
    font-family: 'Figtree', sans-serif !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 30px !important;
    border-bottom: none !important; 
    padding-bottom: 0 !important;
    color: #222222 !important;
}

/* 3. List Structure (Spacing and alignment) */
.sidebar .widget-categories ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important; 
}

/* 4. Remove default list item borders */
.sidebar .widget-categories ul li {
    border: none !important; 
    padding: 0 !important;
    margin: 0 !important;
}

/* 5. Category Buttons - Normal State (White, Thinner, 13px Font) */
.sidebar .widget-categories ul li a {
    display: block !important;
    background-color: #ffffff !important;
    color: #333333 !important;
    text-align: center !important;
    padding: 10px 20px !important; /* Adjust the 10px if you want them even thinner */
    text-decoration: none !important;
    font-family: 'Noto Serif Display', serif !important;
    font-size: 13px !important; 
    transition: all 0.3s ease !important; 
    border: none !important;
}

/* 6. Category Buttons - Hover State (Dark Blue) */
.sidebar .widget-categories ul li a:hover {
    background-color: #1b364d !important;
    color: #ffffff !important;
}

/* 7. Hide post counts (Optional, if your widget displays them) */
.sidebar .widget-categories ul li .count {
    display: none !important;
}
/* ===================================================== */
/* READER FAVORITES WIDGET STYLING - ULTRA TIGHT SPACING */
/* ===================================================== */

/* 1. Widget Title ("READER FAVORITES") */
.widget-favorites .widget-title {
    text-align: center !important;
    font-family: 'Figtree', sans-serif !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    margin-bottom: 25px !important;
    border-bottom: none !important;
    color: #222222 !important;
}

/* 2. Individual Post Item Container (Flexbox) */
.widget-favorites .favorite-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background-color: #F8F8F6 !important; 
    margin-bottom: 15px !important;
    padding: 0 !important; 
    border: none !important;
    overflow: hidden !important; 
}

/* 3. Image Link Wrapper Fix */
.widget-favorites .favorite-item a:has(img) {
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
    line-height: 0 !important; 
    flex-shrink: 0 !important; 
}

/* 4. Post Thumbnail Image */
.widget-favorites .favorite-item img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover !important; 
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important; 
    display: block !important;
}

/* 5. Post Title Text Styling */
.widget-favorites .favorite-item a:not(:has(img)),
.widget-favorites .favorite-item h3,
.widget-favorites .favorite-item h4 {
    text-align: left !important;
    margin: 0 !important;
    padding: 10px 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;

    font-family: 'Noto Serif Display', serif !important;
    font-size: 19px !important;
    line-height: 25px !important;
    font-weight: 400 !important;

    color: #555555 !important;
    text-decoration: none !important;

    flex: 1 !important;
    display: block !important;
    box-shadow: none !important;

    transition: color .3s ease !important;
}

/* Hover */
.widget-favorites .favorite-item a:not(:has(img)):hover,
.widget-favorites .favorite-item h3:hover,
.widget-favorites .favorite-item h4:hover {
    color: #86A8AD !important;
}

/* 6. Post Title Hover State */
.widget-favorites .favorite-item a:hover {
    color: #1c3a4d !important; 
}

/* 7. Hide meta/dates (if applicable) */
.widget-favorites .favorite-item .post-date,
.widget-favorites .favorite-item .entry-meta {
    display: none !important;
}
/* Add solid brand blue top border to the header */
.site-header {
    border-top: 8px solid #D9AC90 !important; 
}
/* ===================================================== */
/* ABOUT WIDGET STYLING - OVERRIDE BACKGROUND            */
/* ===================================================== */

.widget.widget-about {
    background-color: #F8F8F6 !important; 
    padding: 40px 30px !important; /* Ensures it has the same spacing as your Categories widget */
    border: none !important;
}
/* ===================================================== */
/* ALL BUTTONS: BACKGROUND, TEXT, & HOVER STYLING        */
/* ===================================================== */

/* Main Button Styling (Background, Text Color, & Weight) */
button, 
input[type="button"], 
input[type="reset"], 
input[type="submit"], 
.button, 
.btn,
.more-link,
.read-more,
a.read-more,
.post-read-more,
.newsletter-form input[type="submit"],
.mc4wp-form input[type="submit"],
.footer-widget input[type="submit"],
.footer-widget button,
.widget input[type="submit"] {
    background-color: #86A8AD !important;
    border-color: #86A8AD !important;
    color: #ffffff !important;         /* Forces text to white */
    font-weight: 500 !important;       /* Sets font weight to 500 */
    transition: background-color 0.3s ease !important;
}

/* Button Hover Styling */
button:hover, 
input[type="button"]:hover, 
input[type="reset"]:hover, 
input[type="submit"]:hover, 
.button:hover, 
.btn:hover,
.more-link:hover,
.read-more:hover,
a.read-more:hover,
.post-read-more:hover,
.newsletter-form input[type="submit"]:hover,
.mc4wp-form input[type="submit"]:hover,
.footer-widget input[type="submit"]:hover,
.footer-widget button:hover,
.widget input[type="submit"]:hover {
    background-color: #D9AC90 !important;
    border-color: #D9AC90 !important;
    color: #ffffff !important;         /* Keeps text white on hover */
}

/* ===================================================== */
/* CATEGORY LABELS (HERO, POST GRID, & SINGLE POSTS)     */
/* ===================================================== */

/* Make all category labels the custom brand green and weight 500 */
.hero-cat,
.hero-cat a,
.post-card .cat-label,
.post-card .cat-label a,
.single-post-header .cat-label,
.single-post-header .cat-label a {
    color: #86A8AD !important;
    font-weight: 500 !important;
    transition: color 0.3s ease !important;
}

/* Make all category labels terracotta on hover */
.hero-cat a:hover,
.post-card .cat-label a:hover,
.single-post-header .cat-label a:hover {
    color: #D9AC90 !important;
}
/* ===================================================== */
/* POST GRID TITLES: SIZE, LINE HEIGHT & HOVER COLOR     */
/* ===================================================== */

/* Set font size and line height for grid titles */
.post-card h2,
.post-card h2 a {
    font-size: 32px !important;
    line-height: 42px !important;
    transition: color 0.3s ease !important;
}

/* Change title color to terracotta on hover */
.post-card h2 a:hover {
    color: #D9AC90 !important;
}
/* ===================================================== */
/* PARAGRAPH TEXT: POST GRID EXCERPTS & SINGLE POSTS     */
/* ===================================================== */

/* Update font size, line height, and color for improved readability */
.post-card p,
.single-post .entry-content p,
.single .entry-content p {
    font-size: 17px !important;
    line-height: 32px !important;
    color: #333333 !important; 
}
/* ===================================================== */
/* HERO SECTION TITLE: SIZE & LINE HEIGHT                */
/* ===================================================== */
/* Update font size, line height, and weight for the main hero title */
.hero-slide-content h2,
.hero-slide-content h2 a {
    font-weight: 300 !important;
    font-size: 40px !important; 
    line-height: 52px !important;
}

/* ===================================================== */
/* CATEGORY & BLOG ARCHIVE HEADER FULL WIDTH             */
/* ===================================================== */

body.archive .single-post-header,
body.category .single-post-header,
body.blog .single-post-header {
    background-color: #F8F8F6 !important; 
    padding: 80px 20px !important;
    text-align: center !important;
    margin-bottom: 0px !important;
    border: none !important;
    
    /* The Full-Width Breakout Fix */
    width: 100vw !important;
    max-width: 100vw !important; 
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Typography Overrides */
body.archive .single-post-header h1,
body.category .single-post-header h1,
body.blog .single-post-header h1 {
    font-family: 'Noto Serif Display', serif !important;
    font-weight: 400 !important;
    color: #333333 !important;
    text-transform: capitalize !important;
    margin: 0 !important;
}
/* ===================================================== */
/* SIDEBAR CATEGORIES: WHITE BY DEFAULT, GREEN ON HOVER  */
/* ===================================================== */

/* 1. Normal state for all category buttons (White background) */
.sidebar .widget-categories ul li a {
    background-color: #ffffff !important;
    color: #333333 !important;
}

/* 2. Hover state for ALL category buttons (Turns Green) */
.sidebar .widget-categories ul li a:hover,
.sidebar .widget-categories ul li.current-cat > a:hover,
.sidebar .widget-categories ul li.current-category-parent > a:hover,
.sidebar .widget-categories ul li.current-menu-item > a:hover {
    background-color: #86A8AD !important;
    color: #ffffff !important;
}
/* Force bullets inside post content and pasted Google Docs lists */
.entry-content ul,
.entry-content ol,
.wp-block-list {
    list-style: disc !important;
    margin-left: 2.5em !important;
    padding-left: 0 !important;
    display: block !important;
}

.entry-content ul li,
.entry-content ol li,
.wp-block-list li {
    display: list-item !important;
    list-style-type: disc !important;
    margin-bottom: 0.5em !important;
}
/* ===================================================== */
/* FAQ SECTION TYPOGRAPHY OVERRIDES                      */
/* ===================================================== */

/* FAQ Questions: Force Noto Serif Display & Weight 300 */
.rank-math-question, 
.rank-math-question strong,
.rank-math-question * ,
details summary,
details summary strong,
.wp-block-details summary,
.wp-block-details summary *,
.faq-question,
.faq-question strong {
    font-family: 'Noto Serif Display', serif !important;
    font-weight: 300 !important;
}

/* FAQ Answers: Force Figtree & Weight 300 */
.rank-math-answer, 
.rank-math-answer p,
.rank-math-answer *,
details p,
.wp-block-details .wp-block-group,
.wp-block-details .wp-block-group p,
.wp-block-details .wp-block-group *,
.faq-answer,
.faq-answer p {
    font-family: 'Figtree', sans-serif !important;
    font-weight: 300 !important;
}/* ===================================================== */
/* FAQ SECTION BACKGROUND COLOR                          */
/* ===================================================== */

.rank-math-list-item,
details,
.wp-block-details,
.faq-item {
    background-color: #FAF8F6 !important;
}