.post-navigation {
        display: none !important;
    }


/* Muted green-blue square category boxes for Astra sidebar */
#secondary .widget_tag_cloud a,
.ast-sidebar-main .widget_tag_cloud a {
  display: inline-block;
  border: 1px solid #6b8a7a; /* dusty green-blue border */
  border-radius: 0; /* square corners */
  padding: 6px 10px;
  margin: 4px;
  text-decoration: none;
  font-size: 14px !important; /* uniform size */
  color: #333;
  background-color: #fff;
  transition: all 0.25s ease;
}

#secondary .widget_tag_cloud a:hover,
.ast-sidebar-main .widget_tag_cloud a:hover {
  background-color: #e3ede7; /* soft pastel green background */
  border-color: #6b8a7a;
  color: #000;
}

/* keep layout normal */
#secondary .widget_tag_cloud,
.ast-sidebar-main .widget_tag_cloud {
  text-align: left;
}


/* ==== Clean, Cohesive Breadcrumbs (Hunter Green, square chips) ==== */
.ast-breadcrumbs-wrapper { /* optional local vars for easy tweaks */
  --crumb: #355e49;         /* hunter green */
  --crumb-hover: #264635;   /* darker hunter */
  --crumb-bg: transparent;  /* no fill by default */
  --crumb-bg-hover: #eef4f1;/* very soft green on hover */
}

/* Base text settings */
.ast-breadcrumbs {
  font-size: 14px;
  line-height: 1.6;
  color: var(--crumb);
}

/* Words: square, even size, consistent spacing */
.ast-breadcrumbs a,
.ast-breadcrumbs .breadcrumb_last {
  display: inline-block;
  padding: 4px 8px;
  margin-right: 6px;
  border: 1px solid var(--crumb);
  border-radius: 0;                 /* square edges */
  background: var(--crumb-bg);
  color: var(--crumb);
  text-decoration: none;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
  font-weight: 500;
}

/* Hover: subtle, no underline */
.ast-breadcrumbs a:hover {
  color: var(--crumb-hover);
  border-color: var(--crumb-hover);
  background: var(--crumb-bg-hover);
  text-decoration: none;
}

/* Separators: lighter and spaced, but not boxed */
.ast-breadcrumbs span:not(.breadcrumb_last):not(a) {
  opacity: .6;
  margin: 0 6px;
  color: var(--crumb);
}

/* Tighten last crumb spacing */
.ast-breadcrumbs .breadcrumb_last { margin-right: 0; }

/* Mobile safety: prevent weird wrapping gaps */
@media (max-width: 600px) {
  .ast-breadcrumbs a,
  .ast-breadcrumbs .breadcrumb_last { padding: 4px 7px; }
  .ast-breadcrumbs { font-size: 13.5px; }
}



/* Inline meta styling next to breadcrumbs/title */
.single .entry-meta .published,
.single .entry-meta .posted-updated {
  display: inline;
  color: #355e49; /* hunter green */
  font-weight: 500;
  white-space: nowrap;
}

/* Optional: shrink slightly if you prefer */
.single .entry-meta { font-size: 14px; }



/* ===== Centered Published + Last Updated styling ===== */

/* Desktop and tablet */
.single .entry-meta,
.single .coi-both-dates-js {
  font-size: 14px;
  font-weight: 500;
  color: #355e49; /* hunter green */
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers horizontally */
  align-items: center;
  gap: 6px;
  text-align: center;
}

.single .entry-meta .published,
.single .entry-meta .posted-updated,
.single .coi-both-dates-js .published,
.single .coi-both-dates-js .posted-updated {
  white-space: nowrap;
}

.single .entry-meta .sep,
.single .coi-both-dates-js .sep {
  opacity: 0.7;
  margin: 0 4px;
}

/* ===== Mobile: stack vertically but stay centered ===== */
@media (max-width: 600px) {
  .single .entry-meta,
  .single .coi-both-dates-js {
    flex-direction: column;     /* stack vertically */
    align-items: center;        /* keep centered */
    justify-content: center;
    gap: 2px;
    text-align: center;
  }

  .single .entry-meta .sep,
  .single .coi-both-dates-js .sep {
    display: none; /* remove bullet on mobile */
  }
}


/* ===== Final: Large dark blush-pink period between Published and Last updated ===== */
.single .entry-meta,
.single .coi-both-dates-js {
  font-size: 14px;
  font-weight: 500;
  color: #355e49; /* hunter green text */
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
}

/* Add large, darker blush-pink period only between the two dates */
.single .entry-meta .published + .posted-updated::before,
.single .coi-both-dates-js .published + .posted-updated::before {
  content: ".";
  color: #d46a88; /* dark blush tone */
  font-weight: 900;
  font-size: 26px; /* large period for visual emphasis */
  margin: 0 8px;
  line-height: 0; /* subtle raised effect for modern look */
}

/* Mobile: stack vertically and remove the period */
@media (max-width: 600px) {
  .single .entry-meta,
  .single .coi-both-dates-js {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .single .entry-meta .published + .posted-updated::before,
  .single .coi-both-dates-js .published + .posted-updated::before {
    content: "";
  }
}


/* ============================
   COI Traveler – Global Footer
   ============================ */

.coi-footer {
  background: #ffffff;
  border-top: 1px solid #e3d7e0;
  padding: 2.6rem 1.4rem 2.1rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #333;
}

.coi-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* Top area: brand + link columns */
.coi-footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6rem;
  justify-content: space-between;
  align-items: flex-start;
}

/* Brand / location column */

.coi-footer-brand {
  flex: 1 1 230px;
  max-width: 340px;
}

@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

.coi-footer-brand-title {
  font-family: 'Allura', cursive;
  font-size: 2rem;
  color: #184039;
  letter-spacing: 0.5px;
}

.coi-footer-brand-sub {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

.coi-footer-location {
  font-size: 0.82rem;
  color: #7b6a55;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* Link columns */

.coi-footer-nav {
  display: flex;
  flex: 2 1 430px;
  gap: 2.5rem;
  justify-content: flex-end;
}

.coi-footer-col-title {
  font-family: inherit, Georgia, serif;
  font-size: 1.02rem;
  color: #184039;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

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

.coi-footer-list li {
  margin-bottom: 0.28rem;
}

.coi-footer-list a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #c0136b; /* your pink links */
}

.coi-footer-list a:hover {
  text-decoration: underline;
}

/* Divider + bottom row */

.coi-footer-divider {
  max-width: 1120px;
  margin: 1.9rem auto 1.1rem;
  border-top: 1px solid #e3d7e0;
}

.coi-footer-bottom {
  max-width: 1120px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #777;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Wrap existing social icons here if you want them aligned to the right */
.coi-footer-social-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ========== Responsive ========== */

@media (max-width: 820px) {
  .coi-footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .coi-footer-nav {
    justify-content: flex-start;
  }

  .coi-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .coi-footer {
    padding: 2.1rem 1.2rem 2rem;
  }

  .coi-footer-nav {
    flex-direction: column;
    gap: 1.5rem;
  }

  .coi-footer-brand,
  .coi-footer-bottom {
    text-align: left;
  }
}


/* Center the Coitraveler brand block above the columns */
.coi-footer-brand {
  text-align: center;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}





/* CONTAINER WRAPPER */
.coi-continent-extra {
  max-width: 1180px;
  margin: 3rem auto 0;
  padding: 0 1.25rem 3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-top: 1px solid #e3ebe6;
}

/* HEADINGS */
.coi-continent-heading {
  margin-bottom: 1.75rem;
}

.coi-continent-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b6a55;
  margin-bottom: 0.4rem;
}

.coi-continent-title {
  font-family: inherit, Georgia, serif;
  font-size: 1.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #184039;
  margin-bottom: 0.4rem;
}

.coi-continent-intro {
  font-size: 0.97rem;
  color: #444;
  max-width: 640px;
  line-height: 1.6;
}

/* NEW LAYOUT: CENTER EVERYTHING */
.coi-continent-layout {
  max-width: 700px;       /* centers content and narrows for readability */
  margin: 2rem auto 0;    /* centers block */
  display: block;         /* no grid */
}

/* CARD BOXES */
.coi-continent-fun,
.coi-continent-faq {
  background: #f9faf9;
  border-radius: 18px;
  border: 1px solid #e3ebe6;
  padding: 1.2rem 1.4rem 1.3rem;
  margin-bottom: 1.1rem;
}

/* CARD TITLES */
.coi-continent-fun h3,
.coi-continent-faq h3 {
  font-family: inherit, Georgia, serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #184039;
  margin-bottom: 0.8rem;
}

/* FUN FACTS LIST */
.coi-continent-fun ul {
  padding-left: 1.1rem;
  margin: 0;
}

.coi-continent-fun li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0.35rem;
}

/* FAQ ITEMS */
.coi-faq-item + .coi-faq-item {
  border-top: 1px solid #dde5e1;
  padding-top: 0.6rem;
  margin-top: 0.6rem;
}

.coi-faq-item h4 {
  font-size: 0.96rem;
  font-weight: 600;
  color: #184039;
  margin-bottom: 0.2rem;
}

.coi-faq-item p {
  font-size: 0.93rem;
  color: #505050;
  margin: 0;
}




/* Use the font-display CSS property: This property allows you to control how fonts are displayed while they are loading. */

@font-face {
    font-family: 'Inter';
    src: url('https://coitraveler.com/wp-content/astra-local-fonts/inter/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa1ZL7.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Lora';
    src: url('https://coitraveler.com/wp-content/astra-local-fonts/lora/0QIvMX1D_JOuMwr7Iw.woff2') format('woff2');
    font-display: swap;
}



/* Sidebar "What You Missed" – Recent Posts widget */
.widget_recent_entries {
  border: 1px solid #dde5e1;
  border-radius: 14px;
  background: #f9fbfb;
  padding: 1.1rem 1rem 1.2rem;
  margin-bottom: 1.8rem;
}

/* Widget title */
.widget_recent_entries .widget-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: #184039;
  margin: 0 0 0.8rem;
}

/* Remove bullets */
.widget_recent_entries ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each list item */
.widget_recent_entries ul li {
  margin: 0 0 0.65rem;
  padding-left: 1.1rem; /* space for arrow */
  position: relative;
}

/* Arrow before each item */
.widget_recent_entries ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #c83f6a; /* your COI pink */
  font-size: 0.9rem;
  line-height: 1.2;
}

/* Links */
.widget_recent_entries ul li a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #184039;
  text-decoration: none;
}

/* Hover */
.widget_recent_entries ul li a:hover {
  text-decoration: underline;
}



/* Reduce spacing ABOVE the Recent Posts widget */
.widget_recent_entries {
  margin-top: 0.6rem !important;
}

/* Optional: reduce space between all sidebar widgets */
#secondary .widget {
  margin-bottom: 1.2rem !important;
}
/* Also tighten general widget spacing */
#secondary .widget {
  margin-bottom: 0.8rem !important;
}



//* ===== Sidebar "What You Missed" – single boxed widget ===== */

/* Whole widget box */
.widget_recent_entries {
  border: 1px solid #dde5e1;
  border-radius: 12px;
  background: #f9fbfb;
  padding: 1rem 1.2rem 1.1rem;
  margin-bottom: 1.4rem;
}

/* Main title ("What You Missed") */
.widget_recent_entries .widget-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  color: #184039;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  position: relative;
}

/* Eyebrow above title */
.widget_recent_entries .widget-title::before {
  content: "Latest Posts";
  display: block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b6a55;
  margin-bottom: 0.28rem;
}



/* MAIN TITLE AT TOP */
.widget_recent_entries::before {
  content: "WHAT YOU MISSED";
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #184039;
  margin-bottom: 0.3rem;
}

/* EYEBROW SUBTITLE DIRECTLY UNDER TITLE */
.widget_recent_entries::after {
  content: "LATEST POSTS";
  display: block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b6a55;
  margin-bottom: 0.8rem;
  margin-top: -0.1rem;
}


		
		
		
/* ===== SIDEBAR: CATEGORIES TAG CLOUD – match What You Missed card ===== */

/* Put the entire Categories widget in a soft card */
.widget_tag_cloud {
  border: 1px solid #dde5e1 !important;
  border-radius: 12px !important;
  background: #f9fbfb !important;
  padding: 1rem 1.2rem 1.1rem !important;
  margin-bottom: 1.4rem !important;
}

/* Style the "Categories" title */
.widget_tag_cloud .widget-title,
.widget_tag_cloud h2 {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 0 0.7rem !important;
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-size: 1.05rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: #184039 !important;
}

/* Tighten spacing between title and the tag buttons */
.widget_tag_cloud .tagcloud {
  margin-top: 0 !important;
}




/* --- MOBILE CAROUSEL FOR DESTINATIONS --- */


@media (max-width: 640px) {

  .coi-dest-world-grid { 
    display: none; /* Hide the grid on mobile */
  }

  .coi-dest-world-carousel {
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
  }

  .coi-dest-world-track {
    display: flex;
    gap: 1rem;
  }

  .coi-dest-world-card {
    flex: 0 0 85%;        /* Big cards, peek of next card */
    scroll-snap-align: start;
    border-radius: 18px;
    display: flex;
  }

  /* optional smoother scroll */
  .coi-dest-world-carousel::-webkit-scrollbar {
    display: none;
  }
}


/* Prevent hover link color change inside destination cards */
.coi-dest-world-card * {
  color: #ffffff !important;
}

.coi-dest-world-card:hover * {
  color: #ffffff !important;
}


/* ============================================================
   COI — STAYS PAGE HERO / INTRO
   ============================================================ */
.coi-stays-hero-wrap {
  max-width: 1120px;
  margin: 1.8rem auto 2.3rem;
  padding: 1.8rem 1.6rem 2.1rem;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e0e7e4;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.coi-stays-hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b6a55;
  margin-bottom: 0.4rem;
}

.coi-stays-hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: #184039;
  margin: 0 0 0.7rem 0;
}

.coi-stays-hero-text {
  font-size: 0.97rem;
  color: #444;
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 0.75rem;
}

.coi-stays-hero-note {
  font-size: 0.86rem;
  color: #666;
  line-height: 1.6;
  max-width: 720px;
  margin-top: 0.4rem;
}

.coi-stays-hero-note span {
  font-weight: 500;
  color: #184039;
}

/* Top nav buttons (Americas, Europe, Asia, Africa) */
.coi-stays-nav {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.coi-stays-nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid #d5ddd9;
  background: #f9f9f8;
  color: #184039;
  text-decoration: none;
  transition: 0.16s ease;
}

.coi-stays-nav-btn span {
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.coi-stays-nav-btn:hover {
  border-color: #c8a350;
  background: #fbfaf7;
}

.coi-stays-nav-btn:hover span {
  border-color: rgba(24,64,57,0.4);
}

@media (max-width: 640px) {
  .coi-stays-hero-wrap {
    margin: 1.4rem auto 2rem;
    padding: 1.5rem 1.2rem 1.8rem;
  }

  .coi-stays-hero-title {
    font-size: 1.7rem;
  }

  .coi-stays-hero-text {
    font-size: 0.93rem;
  }

  .coi-stays-nav-btn {
    font-size: 0.84rem;
  }
}

/* ============================================================
   COI — SUBSECTION COUNTRY BUTTONS (UNDER EACH CONTINENT)
   ============================================================ */
.coi-stays-country-nav {
  margin: 0.9rem 0 0.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.coi-stays-country-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  border: 1px solid #d5ddd9;
  background: #f9f9f8;
  color: #184039;
  text-decoration: none;
  transition: 0.16s ease;
}

.coi-stays-country-btn span {
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}

.coi-stays-country-btn:hover {
  border-color: #c8a350;
  background: #fbfaf7;
}

.coi-stays-country-btn:hover span {
  border-color: rgba(24,64,57,0.4);
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* ============================================================
   COI — CONTINENT HEADERS
   (Green bar headings: Americas, Europe, Asia, Africa)
   ============================================================ */
.coi-continent-heading {
  background: #788978 !important;
  color: #ffffff !important;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  margin: 2rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.coi-continent-heading a {
  color: #ffffff !important;
  text-decoration: none !important;
}


/* CONTINENT HEADER (wide + gold) */
.coi-stays-section-title {
  text-align: center;
  display: block;
  width: 85%;
  max-width: 880px;
  padding: 0.75rem 1.8rem;
  margin: 2.2rem auto 1.8rem;
  background-color: #c9a95a; /* soft gold */
  color: #ffffff;
  border-radius: 999px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* COUNTRY HEADER (smaller + hunter green) */
.coi-stays-country-title {
  text-align: center;
  display: block;
  width: 70%;
  max-width: 700px;
  padding: 0.55rem 1.6rem;
  margin: 1.4rem auto 1.2rem;
  background-color: #184039; /* hunter green */
  color: #ffffff;
  border-radius: 999px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}




/* START HERE BOX */
.coi-start-here-box {
  max-width: 900px;
  margin: 2.2rem auto 3rem;
  padding: 1.8rem 1.6rem;
  background: #ffffff;
  border: 1px solid #e0e7e4;
  border-radius: 18px;
  text-align: center;
}

.coi-start-here-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  color: #184039;
  margin: 0 0 0.6rem 0;
}

.coi-start-here-text {
  font-size: 1rem;
  color: #444;
  max-width: 620px;
  margin: 0 auto 1.2rem;
  line-height: 1.7;
}

.coi-start-here-btn {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  color: #184039;
  text-decoration: none;
  border-radius: 14px;
  border: 1px solid #c8a350;
  background: #fbfaf7;
  transition: 0.2s ease;
}

.coi-start-here-btn:hover {
  background: #fff8e8;
  border-color: #b89343;
}



/* FEATURE GRID */
.coi-feature-grid {
  max-width: 1120px;
  margin: 2.5rem auto 3rem;
  padding: 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Feature Card */
.coi-feature-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e0e7e4;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.coi-feature-card:hover {
  transform: translateY(-3px);
  border-color: #c8a350;
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}

/* Image */
.coi-feature-card img {
  width: 100%;
  height: 210px; /* cleaner balance */
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Text area */
.coi-feature-text {
  padding: 1rem 1.1rem 1.25rem;
}

.coi-feature-text h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #184039;
  margin: 0 0 0.45rem 0;
}

.coi-feature-text p {
  font-size: 0.88rem;
  color: #505050;
  line-height: 1.48;
  margin: 0;
  max-width: 90%;
}

/* MOBILE CAROUSEL */
@media (max-width: 768px) {
  .coi-feature-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 1rem;
  }

  .coi-feature-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .coi-feature-card img {
    height: 190px;
  }
}



/* Center all section titles on the homepage */
.home h2,
.home h3,
.home .wp-block-heading {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Optional: reduce extra left padding some themes add */
.home .entry-content > * {
    margin-left: auto !important;
    margin-right: auto !important;
}





/* -----------------------------------------------------
   COI TYPOGRAPHY BASELINE — LIGHTER, CLEANER, FASTER
   ----------------------------------------------------- */

/* Base body font */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a1a;
}

/* Headings use Lora without heavy weights */
h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
  color: #111;
}

/* H1–H6 sizes matching Astra but optimized */
h1 { font-size: 44px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

/* Ensures no FOIT (Flash of Invisible Text) when fonts load slowly */
html {
  font-display: swap;
}

/* Prevent oversized hero paragraphs from triggering LCP delays */
.coi-hero-text,
.coi-hero p {
  font-family: "Inter", sans-serif !important;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
}

/* Standardize buttons + menus */
button,
input,
select,
textarea {
  font-family: "Inter", sans-serif;
}

/* Improve spacing */
p {
  margin-bottom: 1.2em;
}



/* Resolve minor layout shifts caused by system vs custom fonts */
* {
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* Ensure positioning context */
.coi-footer-col{
  position: relative;
  border-radius: 14px;
  padding: 26px;
}

/* GOLD L — top left */
.coi-footer-col::before{
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;

  width: 22px;
  height: 22px;

  border-top: 2px solid #c8a24a;
  border-left: 2px solid #c8a24a;

  pointer-events: none;
}

/* OPTIONAL: mirrored GOLD L — bottom right */
/* Comment this out if you want ONLY one corner */
.coi-footer-col::after{
  content: "";
  position: absolute;
  bottom: 14px;
  right: 14px;

  width: 22px;
  height: 22px;

  border-bottom: 2px solid #c8a24a;
  border-right: 2px solid #c8a24a;

  pointer-events: none;
}




/* ======================================
   COI NAV SEARCH ICON — CLEAN GOLD RING
   ====================================== */

/* Target search menu item */
header a[href*="?s="] {
  position: relative !important;
  width: 38px !important;
  height: 38px !important;

  padding: 0 !important;
  margin-right: 6px !important;

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

  border-radius: 50% !important;
  border: 2px solid #c8a350 !important; /* COI gold */

  background: transparent !important;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

/* Magnifier circle */
header a[href*="?s="]::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid #184039;  /* COI green icon */
  border-radius: 50%;
  position: absolute;
}

/* Magnifier handle */
header a[href*="?s="]::after {
  content: "";
  width: 10px;
  height: 2px;
  background: #184039;       /* COI green icon */
  position: absolute;
  transform: rotate(45deg);
  margin-left: 12px;
  margin-top: 12px;
  border-radius: 2px;
}

/* Optional subtle hover */
header a[href*="?s="]:hover {
  background: rgba(200,163,80,0.08) !important;
}
/* ======================================
   COI NAV SEARCH HOVER ANIMATION
   ====================================== */

header a[href*="?s="] {
  transition: all 0.25s ease;
  cursor: pointer;
}

/* Hover state */
header a[href*="?s="]:hover {
  transform: scale(1.08);
  background: rgba(200, 163, 80, 0.12); /* soft gold wash */
}

/* Slight icon emphasis on hover */
header a[href*="?s="]:hover::before {
  border-color: #184039;
}

header a[href*="?s="]:hover::after {
  background: #184039;
}