/* Page-specific head <style> from live /blogs + /blog-categories/[category].
   Transcribed verbatim from the captured Webflow page-head inline styles.
   Loaded via <link rel="stylesheet" precedence="page"> on the blog list and
   category routes. */

/* --- /blogs head <style> block (blog list) --- */
.rv-button-with-icon:not(.yellow) .rv-button-arrow-icon svg {
  width: 28px;
  height: 28px;
}
.rv-button-with-icon:not(.yellow):hover .rv-button-arrow-icon {
  transform: translateX(8px);
}
.rv-button-with-icon:not(.yellow) .rv-button-arrow-icon svg path {
  transition: fill 0.2s ease;
}
.rv-button-with-icon:not(.yellow):hover .rv-button-arrow-icon svg path {
  fill: #ffffff;
}

.rv-blog-list-hero-list-item {
  opacity: 0.5;
}
.rv-blog-list-hero-list-item.active {
  opacity: 1;
}
.rv-blog-list-hero-list-item.active .rv-blog-list-hero-list-item-image-wrap {
  border-color: #00afaa;
}

/*
.rv-blog-list-categories-list .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  margin-top: 7px;
  pointer-events: none;
}
.rv-blog-list-categories-list .owl-nav .owl-prev,
.rv-blog-list-categories-list .owl-nav .owl-next {
  width: 45px;
  height: 45px;
  margin: 0;
  background-color: #ffffff !important;
  border: 1px solid #cacdd5 !important;
  border-radius: 50%;
  font-size: 26px !important;
  pointer-events: auto;
}
.rv-blog-list-categories-list .owl-nav .owl-prev.disabled,
.rv-blog-list-categories-list .owl-nav .owl-next.disabled {
  display: none;
}
.rv-blog-list-categories-list .owl-nav .owl-prev {
  margin-right: auto;
  transform: translateX(-20px);
}
.rv-blog-list-categories-list .owl-nav .owl-next {
  margin-left: auto;
  transform: translateX(20px);
}
.rv-blog-list-categories-list .owl-nav .owl-prev:hover,
.rv-blog-list-categories-list .owl-nav .owl-next:hover {
  background-color: #fafafa !important;
  color: inherit;
}
*/

.rv-blog-post-item .rv-blog-post-item-image-wrapper {
  overflow: hidden;
}
.rv-blog-post-item:hover .rv-blog-post-item-image-wrapper {
  border-color: #4cc7c3;
}
.rv-blog-post-item:hover .rv-blog-post-item-image {
  transform: scale(1.2);
}
.rv-blog-post-item:hover .rv-blog-post-item-title {
  color: #4a748B;
}

.rv-tab-pagination .rv-pagination-link {
  display: inline-block;
  color: #10405a;
  padding: 0 18px;
  margin: 0 4px;
  text-align: center;
  text-decoration: none;
  width: 50px;
}
.rv-pagination-link.current {
  color: #00afaa;
}
.w-pagination-next.inactive,
.w-pagination-previous.inactive {
  display: inline-block;
  color: #d7d7d7;
  background-color: #f1f1f1;
}
.w-pagination-next.inactive .w-pagination-next-icon,
.w-pagination-previous.inactive .w-pagination-previous-icon {
  color: #d7d7d7;
}

@media (max-width: 478px) {
  .rv-tab-pagination .rv-pagination-link {
    margin: 0 3px;
    padding: 0 9px;
  }
}

/* --- /blog-categories/<slug> head <style> block (category page extras) ---
   Scoped under .rv-blog-categories-section so the chip-list hide + chevron
   rules only affect the category page, never the /blogs list page (whose
   "Browse by Topic" chips must stay visible) — both routes share this file. */
.rv-blog-categories-section .rv-heading-chevron.blog-categories-list.show .rv-heading-chevron-icon {
  transform: rotate(90deg);
}
.rv-blog-categories-section .rv-blog-categories-list-wrapper {
  display: none;
}

.rv-blog-list-category-item-link.w--current {
  background-color: #00afaa;
  color: #fff;
}

/* --- "Browse by Topic" CategorySlider (React owl-compatible slider) ---
   The chip list is a single horizontal sliding row (mirrors the live owl
   `autoWidth, margin:12, items:7` config). We win on specificity by scoping
   under the list class; no !important so we never fight the layout links. */
.rv-blog-list-categories-list.owl-carousel,
.rv-blog-categories-list.owl-carousel {
  position: relative;
  display: block;
}
.rv-blog-list-categories-list.owl-carousel .owl-stage-outer,
.rv-blog-categories-list.owl-carousel .owl-stage-outer {
  /* hide the native scrollbar while keeping scrollability */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rv-blog-list-categories-list.owl-carousel .owl-stage-outer::-webkit-scrollbar,
.rv-blog-categories-list.owl-carousel .owl-stage-outer::-webkit-scrollbar {
  display: none;
}
.rv-blog-list-categories-list.owl-carousel .owl-stage,
.rv-blog-categories-list.owl-carousel .owl-stage {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
}
.rv-blog-list-categories-list.owl-carousel .owl-item,
.rv-blog-categories-list.owl-carousel .owl-item {
  flex: 0 0 auto;
  width: auto;
}
/* prev/next arrows — adapted from the live (commented-out) owl-nav rules */
.rv-blog-list-categories-list.owl-carousel .owl-nav,
.rv-blog-categories-list.owl-carousel .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  margin-top: 7px;
  pointer-events: none;
}
.rv-blog-list-categories-list.owl-carousel .owl-nav .owl-prev,
.rv-blog-list-categories-list.owl-carousel .owl-nav .owl-next,
.rv-blog-categories-list.owl-carousel .owl-nav .owl-prev,
.rv-blog-categories-list.owl-carousel .owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #cacdd5;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  color: inherit;
  cursor: pointer;
  pointer-events: auto;
}
.rv-blog-list-categories-list.owl-carousel .owl-nav .owl-prev.disabled,
.rv-blog-list-categories-list.owl-carousel .owl-nav .owl-next.disabled,
.rv-blog-categories-list.owl-carousel .owl-nav .owl-prev.disabled,
.rv-blog-categories-list.owl-carousel .owl-nav .owl-next.disabled {
  display: none;
}
.rv-blog-list-categories-list.owl-carousel .owl-nav .owl-prev,
.rv-blog-categories-list.owl-carousel .owl-nav .owl-prev {
  margin-right: auto;
  transform: translateX(-20px);
}
.rv-blog-list-categories-list.owl-carousel .owl-nav .owl-next,
.rv-blog-categories-list.owl-carousel .owl-nav .owl-next {
  margin-left: auto;
  transform: translateX(20px);
}
.rv-blog-list-categories-list.owl-carousel .owl-nav .owl-prev:hover,
.rv-blog-list-categories-list.owl-carousel .owl-nav .owl-next:hover,
.rv-blog-categories-list.owl-carousel .owl-nav .owl-prev:hover,
.rv-blog-categories-list.owl-carousel .owl-nav .owl-next:hover {
  background-color: #fafafa;
  color: inherit;
}
