
/* ------------------------------------------------------
   Local Fishing Guides — vanilla slider (single-row flex)
   ------------------------------------------------------ */
.bol-guides-carousel { position: relative; width: 100%; margin: 12px 0 24px; }
/* Single row, no wrap; drag/swipe */
.bol-guides-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
/* touch-action: pan-x; */
  overscroll-behavior-x: contain;
  padding-bottom: 2px;
  cursor: grab;
}
.bol-guides-track.is-dragging { cursor: grabbing; }

/* Hide native scrollbar */
.bol-guides-track::-webkit-scrollbar { display: none; }
.bol-guides-track { -ms-overflow-style: none; scrollbar-width: none; }

/* Slides per view: 1 / 3 / 5 */
.bol-guides-cell { scroll-snap-align: start; flex: 0 0 100%; max-width: 100%; }
@media (min-width: 768px){
  .bol-guides-cell { flex: 0 0 calc((100% - 2 * 16px) / 3); max-width: calc((100% - 2 * 16px) / 3); }
}
@media (min-width: 1200px){
  .bol-guides-cell { flex: 0 0 calc((100% - 4 * 16px) / 5); max-width: calc((100% - 4 * 16px) / 5); }
}

/* Ensure moved shortcode card fills the slide */
.bol-guides-cell > * { width: 100% !important; max-width: 100% !important; float: none !important; }
.bol-guides-track ul, .bol-guides-track li { list-style: none; margin: 0; padding: 0; }

/* Arrows */
.bol-guides-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #111; font-size: 22px; line-height: 40px; text-align: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}
.bol-guides-prev { left: 8px; }
.bol-guides-next { right: 8px; }
.bol-guides-nav[hidden] { display: none !important; 
}

/* Shared single layouts */
.bol-hero img{width:100%;height:auto;display:block}
.bol-header{margin:16px 0 12px}
.bol-sub{color:#555;font-size:1rem;margin:.4rem 0 1rem}
.bol-stats{display:flex;gap:12px;flex-wrap:wrap;margin:0rem 0rem;color:#333}
.bol-chips{display:flex;gap:8px;flex-wrap:wrap;margin:.5rem 0 1rem}
.bol-chip{display:inline-block;padding:4px 8px;border:1px solid #e2e2e2;border-radius:999px;font-size:.85rem;background:#fafafa}
.bol-cta-row{display:flex;gap:12px;align-items:center;justify-content:flex-start}
.bol-mini-btn{border:1px solid #ddd;border-radius:8px;padding:6px 10px;text-decoration:none;font-size:.85rem}
.bol-reviews{margin:6px 0 8px}
.bol-related{margin:2rem 0;padding:10px;}
.bol-related > h2{margin:0 0 .8rem 0;font-size:1.2rem}

/* Filters block spacing */
.bol-section.bol-filters { margin: 1rem 0 1.25rem; }

/* FAQ */
/* .bol-section.bol-faq { margin: 2rem 0; }
.bol-faq-list { display: grid; gap: 10px; }
.bol-faq-item summary { cursor: pointer; font-weight: 600; }
.bol-faq-answer { padding: 8px 0 0; }  */

/* Fix FAQ overflow on mobile */
.bol-faq .bol-section-body {
  max-width: 100%;
  overflow-x: hidden;
}

.bol-faq-item {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* .bol-faq-item summary,
.bol-faq-item .a {
  max-width: 100%;
  display: block;
} */

/* Seasonal Fishing Notes grid */
.bol-seasonal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 700px) {
  .bol-seasonal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .bol-seasonal-grid { grid-template-columns: repeat(3, 1fr); }
}
.bol-seasonal-card {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.bol-seasonal-month {
  font-weight: 700;
  margin-bottom: 6px;
}
.bol-seasonal-notes {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.45;
}

/* Seasonal Fishing Notes — responsive + no overflow */
.bol-seasonal-grid {
  display: grid;
  grid-template-columns: 1fr;                 /* mobile/tablet: single column */
  gap: 16px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .bol-seasonal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));  /* desktop: 2 wide */
  }
}

/* Make sure cards can't force the grid to expand horizontally */
.bol-seasonal-card {
  box-sizing: border-box;
  min-width: 0;
}

/* Prevent long words/URLs from pushing the card wider */
.bol-seasonal-notes {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* (Keeps your existing look) */
.bol-seasonal-card {
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.bol-seasonal-month {
  font-weight: 700;
  margin-bottom: 6px;
}
.bol-seasonal-notes {
  font-size: .95rem;
  color: #333;
  line-height: 1.45;
}

/* Hero with overlayed content */
.bol-hero { position: relative; }
.bol-hero--overlay img { width:100%; display:block; }
.bol-hero--overlay::after { content:""; position:absolute; inset:0; background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.45)); }
.bol-hero__content { position:absolute; inset:auto 0 38% 0; text-align:center; padding:0 16px; z-index:1; color:#fff; }
.bol-hero__title { margin:0 0 .3rem; font-size:clamp(1.6rem, 2.2vw + 1rem, 3rem); }
.bol-hero__tagline { margin:.25rem 0 .5rem; font-size:1rem; opacity:.95; }
.bol-hero__reviews { margin:.25rem 0 0; }

/* Breadcrumbs under hero */
.bol-breadcrumbs { margin: 10px 0 14px; }

/* Relationship fallback scroller */
.bol-rel-scroll { display:flex; gap:12px; overflow:auto; padding:2px 0 6px; scroll-snap-type:x mandatory; }
.bol-rel-card { min-width:220px; border:1px solid #e6e6e6; border-radius:12px; overflow:hidden; text-decoration:none; color:inherit; background:#fff; scroll-snap-align:start; }
.bol-rel-img img { width:100%; height:auto; display:block; aspect-ratio:4/3; object-fit:cover; }
.bol-rel-title { display:block; padding:8px 10px; font-weight:600; font-size:.95rem; }

/* FAQ */
/* .bol-section.bol-faq { margin: 2rem 0; }
.bol-faq-list { display:grid; gap:10px; }
.bol-faq-item summary { cursor:pointer; font-weight:600; }
.bol-faq-answer { padding:8px 0 0; }  */

/* Seasonal Fishing Notes — responsive + no overflow */
.bol-seasonal-grid { display: grid; grid-template-columns: 1fr; gap: 16px; width: 100%; max-width: 100%; margin: 0; padding: 0; }
@media (min-width: 1024px) { .bol-seasonal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.bol-seasonal-card { box-sizing: border-box; min-width: 0; border: 1px solid #e6e6e6; border-radius: 12px; padding: 12px; background: #fff; }
.bol-seasonal-month { font-weight: 700; margin-bottom: 6px; }
.bol-seasonal-notes { font-size: .95rem; color: #333; line-height: 1.45; overflow-wrap: anywhere; word-break: break-word; 
}

/* === BOL CTA buttons – harden sitewide === */
a.bol-btn,
a.bol-booknow-btn,
a.bol-cta-right-btn {
  display: inline-flex;
  background: #1559ed !important;
  border-color: #1559ed !important;
  color: #fff !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 25px 15px 25px;
  border-radius: 9999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none !important;
  white-space: nowrap;
}

a.bol-btn.bol-btn--primary,
a.bol-booknow-btn,
a.bol-cta-right-btn {
  background: #111;
  color: #fff !important;
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  transition: transform .08s ease, box-shadow .2s ease, opacity .2s ease;
}
a.bol-btn.bol-btn--primary:hover,
a.bol-booknow-btn:hover,
a.bol-cta-right-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

/* Make sure CTAs stick bottom-right inside cards */
.bol-card__cta { margin-top: auto; display: flex; justify-content: flex-end; 
}


/* =========================================================
   LAKES ARCHIVE CTA — unify to blue (#1559ed)
   Targets:
   1) Slider CTA button: .bol-cta-right-btn
   2) Filter card CTA button: a.bol-btn (scoped to lakes archive)
   ========================================================= */

/* Slider CTA (usually a link/button with this helper class) */
.post-type-archive-lakes .bol-cta-right-btn{
  background:#1559ed !important;
  border-color:#1559ed !important;
  color:#fff !important;
  text-decoration:none !important;
}

/* Filter card CTA buttons (ONLY on lakes archive so we don't touch booking CTAs site-wide) */
.post-type-archive-lakes a.bol-btn{
  background:#1559ed !important;
  border-color:#1559ed !important;
  color:#fff !important;
  text-decoration:none !important;
}

/* Hover: keep white text, just darken the blue a touch */
.post-type-archive-lakes .bol-cta-right-btn:hover,
.post-type-archive-lakes a.bol-btn:hover{
  background:#0f46c3 !important;
  border-color:#0f46c3 !important;
  color:#fff !important;
}

/* Single Fishing Guide — Other Local Experts (staging fix) */
section.io-section.io-other-experts .io-experts-row{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:14px !important;
  align-items:flex-start !important;
}

section.io-section.io-other-experts a.io-expert-chip{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  gap:8px !important;
  text-decoration:none !important;
}

section.io-section.io-other-experts .io-expert-avatar{
  position:relative !important;
  display:block !important;
  width:84px !important;
  height:84px !important;
  border-radius:16px !important;
  overflow:hidden !important;
}

section.io-section.io-other-experts .io-expert-avatar-img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

section.io-section.io-other-experts .io-expert-name-onimg{
  position:absolute !important;
  left:8px !important;
  right:8px !important;
  bottom:8px !important;
  font-size:12px !important;
  font-weight:800 !important;
  line-height:1.15 !important;
  color:#fff !important;
  text-shadow:0 2px 10px rgba(0,0,0,.45) !important;
}

section.io-section.io-other-experts .io-expert-cta{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:8px 14px !important;
  border-radius:999px !important;
  background:#1559ed !important;
  color:#fff !important;
  font-weight:700 !important;
  font-size:13px !important;
  line-height:1 !important;
}

/* All Guides tile */
section.io-section.io-other-experts .io-expert-avatar--all{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:84px !important;
  height:84px !important;
  border-radius:16px !important;
  background:#f2f5f7 !important;
  color:#111 !important;
  font-size:28px !important;
  font-weight:800 !important;
}

/* Guides Bio Read More Button */
.io-bio-toggle {
    margin-top: .25rem;
    background: red !important;
    border: none;
    color: #fff !important;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 10px 10px 10px !important;
    border-radius: 16px;
}

/* CLS fix: reserve space for 60x60 thumbs/badges/avatars (Guide singles) */
.io-guide-single.container img.attachment-60x60.size-60x60,
.io-guide-single.container img.size-60x60 {
  width: 60px !important;
  height: 60px !important;
  aspect-ratio: 1 / 1;
  display: block;
  flex: 0 0 60px;
  max-width: 60px;
}

/* CLS guard: reserve vertical space where small badges/thumbs render on guide singles */
.io-guide-single.container .io-guide-meta,
.io-guide-single.container .io-guide-badges,
.io-guide-single.container .io-guide-top-row {
  min-height: 60px;
  align-items: center;
}

/* CLS: reserve space for the main guide portrait image if it renders without width/height */
.io-guide-single.container img[alt*="Capt"],
.io-guide-single.container img[alt*="Captain"] {
  max-width: 100%;
  height: auto;
}

/* Guide H1 badge: prevent clipping + align nicely */
.io-guide-single.container h1.io-guide-title{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.15;     /* keeps text tight but not cramped */
  overflow: visible;      /* key: no clipping */
  padding-top: 4px;       /* tiny breathing room */
  padding-bottom: 4px;
}

.io-guide-single.container h1.io-guide-title .io-badge-img{
  display: inline-flex;
  align-items: center;
  height: 60px;           /* reserves exact badge height */
}

.io-guide-single.container h1.io-guide-title .io-badge-img img{
  width: 60px !important;
  height: 60px !important;
  display: block;
}


/* Make tripAdvisor image stay to size */
img.wp-image-238337{
  max-width: 137px;
  height: auto;
}

/* =========================================================
   GUIDE HERO SWIPER — FINAL (scoped to actual wrapper)
   Fixes: small image w/ blank right side + missing thumbs strip
   ========================================================= */

.io-guide-single.container .io-hero-wrap{
  width: 100%;
}

/* Gallery frame (creates real height so images can fill it) */
.io-guide-single.container .io-hero-gallery{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f4f6;
}

/* Ensure Swiper internals fill the frame */
.io-guide-single.container .io-hero-gallery .swiper-wrapper,
.io-guide-single.container .io-hero-gallery .swiper-slide{
  height: 100%;
}

/* Force the image to fill the slide (kills the “800px wide” issue) */
.io-guide-single.container .io-hero-gallery img,
.io-guide-single.container .io-hero-gallery .io-hero-img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Thumbs row */
.io-guide-single.container .io-hero-thumbs{
  width: 100%;
  margin-top: 10px;
}

.io-guide-single.container .swiper.io-hero-thumbs{
  height: 78px;
  overflow: hidden;
}

/* Make sure thumbs are horizontal (Swiper expects flex) */
.io-guide-single.container .io-hero-thumbs .swiper-wrapper{
  display: flex;
  align-items: center;
}

/* Each thumb is a fixed tile */
.io-guide-single.container .io-hero-thumbs .swiper-slide{
  width: 110px !important;
  flex: 0 0 110px !important;
  height: 72px;
  opacity: .85;
}

.io-guide-single.container .io-hero-thumbs .swiper-slide-thumb-active{
  opacity: 1;
}

.io-guide-single.container .io-hero-thumbs img,
.io-guide-single.container .io-hero-thumbs .io-thumb-img{
  width: 100%;
  height: 68px;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

