/* Design tweaks layered on top of style.css + cls-fixes.css.
   Loaded last from base.html. */

/* ---- Search row — sits directly under the dark header (no gap), full-width
   lighter blue. Search box fills available space; UTC clock right-aligned
   with a small gap between them. Header sets margin-bottom to 0 to remove
   the gap. ---- */
header {
  margin-bottom: 0 !important;
  border-bottom: 1px solid #6c757d;  /* 1px grey divider between dark + lighter blue */
}

.search-row {
  background: #0d528c;              /* lighter than header #033352 */
  padding: 10px 0;
  width: 100%;
  margin: 0;                         /* flush against header */
}
.search-row .container {
  gap: 16px;                         /* gap between search box and clock */
}
.search-row .search-row-form {
  flex: 1 1 auto;                    /* grow to fill remaining width */
  min-width: 0;
}
.search-row .top-search-input {
  border-radius: 8px 0 0 8px;
  border: 0;
  width: 100%;
}
.search-row .submit-search-button {
  border-radius: 0 8px 8px 0;
  background: #00A2A9;
  border: 0;
  padding: 10px 20px;
}

.utc-clock {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;                    /* never get squeezed */
  padding: 6px 0;
}
.utc-clock:hover { color: #69E4E8; text-decoration: underline; }

@media (max-width: 600px) {
  .search-row .container { flex-direction: column; align-items: stretch !important; gap: 8px; }
  .search-row .search-row-form { width: 100%; }
  .utc-clock { align-self: flex-start; }
}

/* ---- Global link styling: no underline by default, underline only on hover ---- */
main a, footer a, nav a, header a, aside a, .calendars a, .gallery-months a {
  text-decoration: none;
}
main a:hover, footer a:hover, nav a:hover, header a:hover, aside a:hover,
.calendars a:hover, .gallery-months a:hover {
  text-decoration: underline;
}
/* Keep the in-content article links underlined (post body — readers expect it) */
.single-content a, .page-content a { text-decoration: underline; }

/* ---- Page H1: large but readable, bold ---- */
.site-h1, main h1 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .site-h1, main h1 { font-size: 36px; }
}

/* ---- H2 normalization across all sections — same size everywhere, bold, smaller than H1 ---- */
main h2,
main .calendars h2,
main .gallery-months h2,
main .national-calendars h2,
main .section-band-h {
  font-size: 20px !important;
  font-weight: 800 !important;
  line-height: 1.3;
  margin-top: 0;
}
@media (min-width: 768px) {
  main h2,
  main .calendars h2,
  main .gallery-months h2,
  main .national-calendars h2,
  main .section-band-h {
    font-size: 26px !important;
  }
}

/* H3 inside .calendars / .gallery-months: keep distinct but slightly smaller */
main .calendars h3,
main .gallery-months h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Section band — a divider-style heading we use for "Today is..." */
.section-band-h {
  border-top: 2px solid #00A2A9;
  padding-top: 12px;
  margin-top: 18px;
}

/* 1px grey HR between source sections — width matches the container, not 100% page */
.calendars.list-cards + .calendars.list-cards > .container {
  border-top: 1px solid #e0e0e0;
  padding-top: 18px;
}

/* Holidays-index country grid */
.country-grid .country-link {
  background: #fff;
  color: #033352;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: background .15s ease, border-color .15s ease;
}
.country-grid .country-link:hover {
  background: #e2f6f7;
  border-color: #00A2A9 !important;
}
.country-grid .country-link .flag {
  font-size: 18px;
  margin-right: 6px;
  vertical-align: -2px;
}

/* Source attribution links — keep inline with the icon */
.src-link {
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
}
.src-link:hover { color: #00A2A9; }
.src-link .ext-link-icon { margin-left: 3px; color: #00A2A9; }

/* Light-green border button — used for "About Today" / "About Tomorrow" CTAs */
.btn-light-green {
  background: #f4fbfb;
  color: #00606e;
  border: 1.5px solid #5BB9C0;
  border-radius: 6px;
  padding: 10px 22px;
  font-weight: 600;
  text-decoration: none;
}
.btn-light-green:hover {
  background: #e2f6f7;
  color: #033352;
  border-color: #00A2A9;
}

/* Month-strip month label (now a span, not an h2) — keep the visual weight */
.months-title-direction .month-strip-label {
  font-size: 22px;
  font-weight: 800;
  display: inline-block;
  margin: 0;
}

/* === Single-event right-side calendar widget — fix grid alignment === */
.right-side-column {
  align-self: flex-start;
  position: sticky;
  top: 1rem;
}

.card.calendar .cal-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin: 8px 0;
}
.card.calendar .cal-table th {
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 4px 0;
  text-transform: uppercase;
}
.card.calendar .cal-table td {
  text-align: center;
  padding: 2px 0;
  height: 34px;
}
.card.calendar .cal-table td a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}
.card.calendar .cal-table td a:hover { background: rgba(255,255,255,0.15); }
.card.calendar .cal-table td a.current-date {
  background: #FFB57B;
  color: #033352;
  font-weight: 800;
}
.card.calendar .cal-table td a.current-single {
  background: #00A2A9;
  color: #fff;
  font-weight: 700;
}

/* === Top nav layout: Today on left, FAQ on right, rest distributed === */
#menu-top-menu.nav {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  gap: 0;
  width: 100%;
  list-style: none;
  padding-left: 0;
}
@media (min-width: 1025px) {
  header .logo { margin-right: 20px; }
}
header .nav.nav-row { width: auto; flex: 1 1 auto; min-width: 0; }
header #menu-top-menu.nav { flex-wrap: nowrap; white-space: nowrap; }
@media (max-width: 1024px) {
  header .nav.nav-row { display: none !important; }
}

/* === FAQ pages === */
.faq-index .faq-cats { background: #f4f6f8; border-radius: 8px; padding: 14px 18px; }
.faq-index .faq-cats .list-inline-item { margin-right: 6px; margin-bottom: 6px; }
.faq-index .faq-cat-link { display: inline-block; padding: 6px 12px; background: #fff;
  border: 1px solid #d8dee5; border-radius: 999px; text-decoration: none; font-size: 14px;
  color: #033352; }
.faq-index .faq-cat-link:hover { background: #033352; color: #fff; border-color: #033352; }
.faq-index .faq-cat-count { color: #6b7785; font-size: 12px; margin-left: 2px; }
.faq-index .faq-group { margin-top: 32px; }
.faq-index .faq-group-title { font-size: 22px; margin: 0 0 12px; padding-bottom: 6px;
  border-bottom: 2px solid #00A2A9; color: #033352; }
.faq-index .faq-list { list-style: none; padding-left: 0; margin: 0; columns: 2; column-gap: 32px; }
@media (max-width: 768px) { .faq-index .faq-list { columns: 1; } }
.faq-index .faq-list-item { break-inside: avoid; margin-bottom: 6px; }
.faq-index .faq-list-q { display: block; padding: 8px 10px; border-radius: 6px;
  text-decoration: none; color: #033352; line-height: 1.35; }
.faq-index .faq-list-q:hover { background: #f4f6f8; }

.faq-single .faq-meta { margin-bottom: 8px; }
.faq-single .faq-cat-badge { display: inline-block; padding: 4px 10px; background: #00A2A9;
  color: #fff; border-radius: 999px; font-size: 12px; text-decoration: none; }
.faq-single .faq-cat-badge:hover { background: #033352; color: #fff; }
.faq-single .faq-question { font-size: 32px; line-height: 1.2; margin: 8px 0 18px;
  color: #033352; }
.faq-single .faq-answer { font-size: 17px; line-height: 1.65; max-width: 760px; }
.faq-single .faq-answer a { color: #00A2A9; }
.faq-single .faq-related { margin-top: 40px; padding-top: 20px; border-top: 1px solid #e3e7ec;
  max-width: 760px; }
.faq-single .faq-related h2 { font-size: 20px; color: #033352; margin: 0 0 12px; }
.faq-single .faq-related ul { list-style: none; padding-left: 0; }
.faq-single .faq-related li { margin-bottom: 6px; }
.faq-single .faq-related li a { color: #033352; text-decoration: none; }
.faq-single .faq-related li a:hover { text-decoration: underline; color: #00A2A9; }
.faq-single .faq-back-link { margin-top: 14px; font-size: 14px; }
.faq-single .faq-back-link a { color: #6b7785; text-decoration: none; }
.faq-single .faq-back-link a:hover { color: #033352; }

/* === Single-event social share row — official brand colors === */
.single-page ul.social-icons {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-left: 0; list-style: none; margin: 18px 0;
  align-items: center;
}
.single-page ul.social-icons li a,
.single-page ul.social-icons li button {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  text-decoration: none;
  transition: filter .15s ease;
}
.single-page ul.social-icons li a:hover,
.single-page ul.social-icons li button:hover { filter: brightness(1.1); }
.single-page ul.social-icons li a svg,
.single-page ul.social-icons li button svg { width: 18px; height: 18px; }
/* Official brand colors */
.single-page ul.social-icons li a[title*="Facebook"]  { background: #1877F2; }
.single-page ul.social-icons li a[title*="X"]         { background: #000000; }
.single-page ul.social-icons li a[title*="LinkedIn"]  { background: #0A66C2; }
.single-page ul.social-icons li a[title*="Reddit"]    { background: #FF4500; }
.single-page ul.social-icons li a[title*="WhatsApp"]  { background: #25D366; }
.single-page ul.social-icons li a[title*="Pinterest"] { background: #BD081C; }
.single-page ul.social-icons li a[title*="Email"]     { background: #6c757d; }
.single-page ul.social-icons li .copy-link-btn        { background: #033352; cursor: pointer; }
.single-page ul.social-icons .copy-feedback {
  color: #00A2A9; font-size: 13px; margin-left: 6px;
  opacity: 0; transition: opacity .2s;
}
.single-page ul.social-icons .copy-feedback.show { opacity: 1; }

/* === Light-blue divider after prev/next + grey HR before "Also Happens" === */
hr.divider-blue {
  border: 0;
  border-top: 3px solid #5BB9C0;
  margin: 24px 0 18px 0;
  opacity: 1;
}
hr.divider-grey {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin: 28px 0 18px 0;
  opacity: 1;
}

/* === Related Holidays cards — image on top, full title below === */
.related-events .related-card {
  display: flex; flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}
.related-events .related-card-img {
  display: block;
  aspect-ratio: 293/159;
  overflow: hidden;
  border-radius: 12px;
}
.related-events .related-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.related-events .related-card-title {
  display: block;
  color: #033352;
  font-weight: 600;
  font-size: 15px;
  margin-top: 8px;
  text-decoration: none;
  line-height: 1.3;
}
.related-events .related-card-title:hover { color: #00A2A9; text-decoration: underline; }

/* "Also Happens" section: h2 not linked, h3-style sub-section titles in same_date sections */
.also-happens > h2 { margin-bottom: 14px; }
.also-happens .calendars.list-cards h2 { font-size: 18px !important; font-weight: 700; margin: 14px 0 8px 0; }

/* ---- Hero carousel — text overlay on image ---- */
#myCarousel .carousel-item {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
.carousel-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
}
.carousel-caption-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
#myCarousel .carousel-item > a {
  position: relative;
  z-index: 2;
  display: flex;
  height: 360px;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  padding: 0 40px 28px 40px;
}
#myCarousel .carousel-item > a:hover { color: #69E4E8; }
#myCarousel .carousel-caption {
  position: static !important;
  padding: 0;
  text-align: left;
  color: #fff;
  max-width: 720px;
}
#myCarousel .carousel-caption h6 {
  color: #fff; font-size: 16px; font-weight: 500; margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
#myCarousel .carousel-caption h2 {
  color: #fff !important;
  font-size: 36px !important;
  font-weight: 800 !important;
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
}
#myCarousel .carousel-caption p {
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
@media (max-width: 600px) {
  #myCarousel .carousel-caption h2 { font-size: 24px !important; }
}

/* ---- Today's Holidays sidebar — h2 MUST be white (sits on dark blue card) ---- */
.todays-holiday .card-header h2,
.todays-holiday h2 {
  color: #ffffff !important;
}

/* ---- Today's Holidays sidebar (right of hero) — circle thumbnails ---- */
.todays-holiday ul li img.thumb-circle {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  object-fit: cover;
  margin-right: 10px;
  vertical-align: middle;
}
.todays-holiday ul li {
  display: flex;
  align-items: center;
  padding: 6px 0;
}
.todays-holiday ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.todays-holiday ul li a:hover { color: #69E4E8; }

/* ---- Dual-pane sections (Today | Tomorrow side by side) ---- */
.dual-pane .col-md-6 .calendars-pane {
  background: rgba(13, 82, 140, 0.04);
  border: 1px solid rgba(13, 82, 140, 0.12);
  border-radius: 10px;
  padding: 18px;
  height: 100%;
}
.dual-pane .calendars-pane h3 { margin-top: 0; }

/* "One per line" lists inside dual-pane source sections */
.dual-pane .pane-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.dual-pane .pane-list li {
  padding: 4px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}
.dual-pane .pane-list li:last-child { border-bottom: 0; }

/* External-link icon */
.ext-link-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-left: 4px;
  color: #00A2A9;
}

/* ---- Big month calendar (on /today/ /tomorrow/) ---- */
.big-month-calendar { }
.big-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px; gap: 10px;
}
.big-cal-title { flex: 1; text-align: center; margin: 0; }
.big-cal-title-link {
  color: inherit; text-decoration: none; border-bottom: 2px dotted transparent;
}
.big-cal-title-link:hover { border-bottom-color: #00A2A9; color: #00A2A9; }
.big-cal-nav {
  color: #033352; text-decoration: none; font-weight: 600;
  padding: 6px 12px; border-radius: 6px;
}
.big-cal-nav:hover { background: #00A2A9; color: white; }
.big-cal-table {
  width: 100%; border-collapse: collapse; background: white;
  table-layout: fixed;
}
.big-cal-table th {
  background: #033352; color: white; padding: 8px 0; font-weight: 700;
  font-size: 13px; text-align: center;
}
.big-cal-cell {
  border: 1px solid #e0e0e0;
  min-height: 150px;
  height: auto;
  vertical-align: top;
  padding: 0;
}
.big-month-calendar { font-size: 14px; }
.big-cal-table th { font-size: 14px; padding: 12px 0; }
.big-cal-day-num { font-size: 18px; padding: 6px 8px 0 8px; display: block; }
.big-cal-cell.today .big-cal-day-num { font-size: 24px; }
.big-cal-cell.empty { background: #fafafa; }
.big-cal-cell.weekend { background: #fffdf0; }
.big-cal-cell.today {
  background: #00A2A9 !important; color: white;
  box-shadow: inset 0 0 0 3px #033352;
}
.big-cal-day-link {
  display: block; padding: 8px; color: inherit; text-decoration: none;
  height: 100%;
}
.big-cal-day-link:hover { background: rgba(0, 162, 169, 0.15); color: #033352; }
.big-cal-cell.today .big-cal-day-link:hover { background: rgba(0,0,0,0.1); color: white; }
.big-cal-day-num { font-size: 16px; font-weight: 700; display: block; }
.big-cal-cell.today .big-cal-day-num { font-size: 22px; }

/* Day-cell events list — compact, truncated, scrollable on hover overflow */
.big-cal-day-events {
  list-style: none;
  padding: 4px 8px 6px 8px;
  margin: 0;
  max-height: 130px;
  overflow: hidden;
  font-size: 11.5px;
  line-height: 1.3;
}
.big-cal-day-events li { padding: 1px 0; }
.big-cal-day-events .bc-ev {
  display: block; text-decoration: none;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.big-cal-day-events .bc-ev-fun { color: #00606e; }
.big-cal-day-events .bc-ev-holiday { color: #b30000; font-weight: 600; }
.big-cal-day-events .bc-ev:hover { text-decoration: underline; }
.big-cal-day-events .bc-more a { color: #666; font-style: italic; }
.big-cal-cell.today .big-cal-day-events .bc-ev,
.big-cal-cell.today .big-cal-day-events .bc-more a { color: white !important; }
.big-cal-footer { text-align: center; margin-top: 12px; }
.big-cal-footer .btn { margin: 0 6px; }
@media (max-width: 600px) {
  .big-cal-cell { height: 50px; }
}

/* Month event carousels (Holidays in {Month}, Upcoming) */
.month-events-carousel { position: relative; padding-top: 4px; }
.month-events-carousel.owl-carousel .item {
  padding: 0 6px;
}
/* Card: just an image — no teal date row below it */
.month-events-carousel.owl-carousel .item .card {
  background: transparent !important;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}
.month-events-carousel.owl-carousel .item .card-image {
  height: 159px;
  background: #eee;
  overflow: hidden;
  border-radius: 12px;
}
.month-events-carousel.owl-carousel .item .card-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.month-events-carousel.owl-carousel .item .card-body { display: none !important; }
.month-events-carousel.owl-carousel .item .card-content {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 4px;
}
/* ===== Unified arrows — Year-at-a-Glance + month-events carousels =====
   Position teal arrow buttons centered ON the image row, half-outside the carousel. */

.gallery-months .owl-carousel,
.gallery-months .month-events-carousel.owl-carousel {
  position: relative;
}

/* Make sure the image-row height anchors the arrows. Override owl theme nav
   margin so it doesn't push layout below. */
.gallery-months .owl-carousel .owl-nav {
  position: static;
  margin: 0 !important;
  pointer-events: none;
}

/* Buttons themselves are absolutely positioned relative to .owl-carousel.
   Year-at-Glance images are 100px → middle 50px.
   Month-events images are 159px → middle 80px. */
.gallery-months .owl-carousel .owl-nav button.owl-prev,
.gallery-months .owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50px;
  transform: translateY(-50%);
  background: #5BB9C0 !important;
  color: #fff !important;
  border: 0;
  border-radius: 4px;
  width: 42px; height: 56px;
  display: flex !important; align-items: center; justify-content: center;
  pointer-events: auto;
  opacity: 0.95;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.gallery-months .owl-carousel .owl-nav button.owl-prev { margin-left: 0; }
.gallery-months .owl-carousel .owl-nav button.owl-next { margin-right: 0; }
/* Arrows flush with the left/right edge of the carousel track */
.gallery-months .owl-carousel .owl-nav button.owl-prev { left: 0; }
.gallery-months .owl-carousel .owl-nav button.owl-next { right: 0; }
/* Month-events: vertically center on the 159px image (~80px from top) */
.gallery-months .month-events-carousel.owl-carousel .owl-nav button.owl-prev,
.gallery-months .month-events-carousel.owl-carousel .owl-nav button.owl-next {
  top: 80px;
}
.gallery-months .month-events-carousel.owl-carousel .owl-nav button.owl-prev { left: 0; }
.gallery-months .month-events-carousel.owl-carousel .owl-nav button.owl-next { right: 0; }
.gallery-months .owl-carousel .owl-nav button:hover { background: #00A2A9 !important; }
.gallery-months .owl-carousel .owl-nav button span { display: none !important; }
.gallery-months .owl-carousel .owl-nav button.owl-prev::before {
  content: "‹"; font-size: 28px; line-height: 1; color: #fff;
}
.gallery-months .owl-carousel .owl-nav button.owl-next::before {
  content: "›"; font-size: 28px; line-height: 1; color: #fff;
}
.gallery-months .owl-carousel .owl-nav button.disabled { opacity: 0.35; }

/* Heading typography consistent across Year/Holidays-in/Upcoming carousels */
.gallery-months h2, .gallery-months h3 {
  font-family: inherit;
  font-weight: 800;
}

/* ===== Mobile hamburger button ===== */
.mobile-nav-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #fff;
  line-height: 0;
}
@media (max-width: 1024px) {
  .mobile-nav-button { display: flex; align-items: center; }
}

/* Animate the three lines into an X when .is-open is added */
.mobile-nav-button .ham-icon { transition: transform .2s; }
.mobile-nav-button.is-open .ham-mid { opacity: 0; }
.mobile-nav-button.is-open .ham-top {
  transform-origin: center;
  transform: translateY(6px) rotate(45deg);
}
.mobile-nav-button.is-open .ham-bot {
  transform-origin: center;
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-nav-button .ham-top,
.mobile-nav-button .ham-mid,
.mobile-nav-button .ham-bot {
  transition: transform .2s, opacity .15s;
  transform-origin: center;
}

/* ===== Mobile drawer ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0,0,0,.45);
}
.mobile-menu.open { display: block; }
body.menu-open { overflow: hidden; }

.mobile-menu > .container {
  position: absolute;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100%;
  background: #033352;
  padding: 0;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0,0,0,.35);
  animation: slideInLeft .22s ease;
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav-close-button {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  padding: 4px;
  line-height: 0;
}
.nav-close-button:hover { color: #fff; }
.mobile-menu #menu-top-menu-1 {
  list-style: none;
  padding: 12px 0;
  margin: 0;
}
.mobile-menu #menu-top-menu-1 .menu-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-menu #menu-top-menu-1 .menu-item a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}
.mobile-menu #menu-top-menu-1 .menu-item a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* ===== General mobile responsiveness ===== */
@media (max-width: 767px) {
  .top-banners .row { flex-direction: column !important; }
  .top-banners .carousel-post,
  .top-banners .todays-holiday { height: auto !important; max-height: none !important; width: 100% !important; }
  #myCarousel, #myCarousel .carousel-inner, #myCarousel .carousel-item {
    height: 240px !important; min-height: 240px !important; max-height: 240px !important;
  }
  #myCarousel .carousel-item > a { height: 240px; padding: 0 16px 18px; }
  .single-page .row { flex-direction: column; }
  .right-side-column { width: 100% !important; max-width: 100%; padding-left: 0; }
  .single-left-post { width: 100% !important; }
  .calendar-table { font-size: 13px; }
  .calendar-table th, .calendar-table td { padding: 4px 6px; }
  .calendar-table-img-container { display: none; }
}

/* ---- Anchor scroll offset — keeps #anchored headings clear of the sticky
   search row when navigated via fragment links. ---- */
.row-date-day,
.archive-anchor,
.holidays-month-day,
.calendars[id],
.bm-cell[id] {
  scroll-margin-top: 90px;
}
