@charset "UTF-8";
/* Default Kadence spacing variables, useful to match specific spacing in designs. Override as needed. */
/* WP 6.8 Override, may be fixed in Core or Kadence later */
.wp-block-button__link {
  width: auto;
}

/* Helper classes from Bootstrap */
.overflow-auto {
  overflow: auto;
}

.position-relative {
  position: relative;
}

.z-99 {
  z-index: 99;
}

.p-0 {
  padding: 0 !important;
}

.text-center {
  text-align: center;
}

.text-wrap-balance {
  text-wrap: balance;
}

.d-none {
  display: none !important;
}

@media (min-width: 1025px) {
  .d-lg-block {
    display: block !important;
  }
}
.sr-only {
  position: absolute !important;
  height: 1px !important;
  width: 1px !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
}

/* Hiding reCaptcha Badge (we are showing text instead) https://developers.google.com/recaptcha/docs/faq#id-like-to-hide-the-recaptcha-badge.-what-is-allowed */
.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-v3-text {
  font-size: 14px !important;
  padding-top: 8px !important;
  width: 100% !important;
  margin-bottom: 16px !important;
}

/* Acessibility: Reduce animations to almost 0. Leaving .01ms for JS libraries that use the end of animation for events */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Disabling AOS animations on mobile for performance */
@media (max-width: 767px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .animate__animated {
    animation-name: none !important;
    -webkit-animation-name: none !important;
  }
}
/* Hide Google Translate "Powered by" branding */
.goog-te-gadget {
  font-size: 0 !important;
}

.goog-te-gadget select {
  font-size: 14px !important;
}

.goog-te-gadget > span,
.goog-te-gadget > a {
  display: none !important;
}

/* Related Items Block */
.arc-related-items {
  padding: 24px 24px 32px 24px;
  background: #f2f2f2;
  border-radius: 16px;
}

.arc-related-items .menu {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.arc-related-items__title {
  font-size: 24px;
  margin-top: 0;
}

.arc-related-items .menu a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  text-decoration-color: #007ac9;
}

/* Images with Links Grid block (arc/images-with-links) ───────────────────── */
/* Outer two-column grid */
.arc-image-links-grid {
  display: grid;
  grid-template-columns: 58.5% 41.5%;
  gap: 20px;
  margin-bottom: 20px;
}
.arc-image-links-grid__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767px) {
  .arc-image-links-grid {
    grid-template-columns: 1fr;
  }
}

/* Image article card */
.arc-ilg-article {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  flex: 1;
  display: flex;
  flex-direction: column;
  /* Black overlay — transparent by default, 0.3 opacity on hover */
}
.arc-ilg-article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.4s;
  z-index: 3;
  pointer-events: none;
}
.arc-ilg-article {
  /* Full-coverage link overlay */
}
.arc-ilg-article__link {
  position: absolute;
  inset: 0;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.4s;
  font-size: 0;
  text-decoration: none;
  /* Circular arrow button */
}
.arc-ilg-article__link span {
  width: 46px;
  height: 46px;
  position: absolute;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  border: 3px solid white;
}
.arc-ilg-article {
  /* Image container grows to fill available column height */
}
.arc-ilg-article__image {
  display: flex;
  flex: 1;
}
.arc-ilg-article__image-inner {
  flex: 1;
  min-height: 267px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.arc-ilg-article {
  /* Content overlay — hidden until hover, sits above black overlay */
}
.arc-ilg-article__content {
  position: absolute;
  inset: 0;
  padding: 20px;
  z-index: 4;
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.arc-ilg-article {
  /* White badge label */
}
.arc-ilg-article__meta {
  margin-bottom: 8px;
}
.arc-ilg-article__meta span {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 5px 8px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-family: var(--global-body-font-family, sans-serif);
  line-height: 1.14;
}
.arc-ilg-article__text {
  color: #fff;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  font-size: 1rem;
}
.arc-ilg-article {
  /* Desktop hover: black overlay + reveal content (excluded on mobile widths) */
}
@media (hover: hover) and (min-width: 768px) {
  .arc-ilg-article:hover::before {
    background: rgba(0, 0, 0, 0.3);
  }
  .arc-ilg-article:hover .arc-ilg-article__link {
    opacity: 1;
  }
  .arc-ilg-article:hover .arc-ilg-article__content {
    opacity: 1;
  }
}
.arc-ilg-article {
  /* Mobile: persistent gradient overlay + always-visible content */
}
@media (max-width: 767px) {
  .arc-ilg-article::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .arc-ilg-article__link {
    opacity: 1;
  }
  .arc-ilg-article__content {
    opacity: 1;
  }
  .arc-ilg-article__image-inner {
    min-height: 220px;
  }
}

/* Mirrored layout — large image on right */
.arc-image-links-grid--mirrored {
  grid-template-columns: 41.5% 58.5%;
}
.arc-image-links-grid--mirrored .arc-image-links-grid__large {
  order: 2;
}
.arc-image-links-grid--mirrored .arc-image-links-grid__right {
  order: 1;
}
@media (max-width: 767px) {
  .arc-image-links-grid--mirrored {
    grid-template-columns: 1fr;
  }
  .arc-image-links-grid--mirrored .arc-image-links-grid__large {
    order: 1;
  }
  .arc-image-links-grid--mirrored .arc-image-links-grid__right {
    order: 2;
  }
}

/* Large image gets a taller minimum height */
.arc-image-links-grid__large .arc-ilg-article__image-inner {
  min-height: 450px;
}

/* Text box (fact card) */
.arc-ilg-fact {
  color: #fff; /* background set via inline style from color picker; default: #693a77 */
  padding: 27px 20px 27px 30px;
  border-radius: 2px;
}
.arc-ilg-fact__meta {
  margin-bottom: 18px;
}
.arc-ilg-fact__meta span {
  display: inline-block;
  background: #fff;
  /* color set via inline style to match box background */
  padding: 5px 8px;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-family: var(--global-body-font-family, sans-serif);
  line-height: 1.14;
}
.arc-ilg-fact__content {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
}
.arc-ilg-fact__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .arc-ilg-fact {
    padding: 20px;
  }
}

/* Mobile styles for Kadence table (adv) */
@media (max-width: 767px) {
  /* Remove right spacing to help visually show they can scroll to see the entire table. */
  .arc-kadence-table-adv {
    margin-right: -24px;
  }
  .arc-kadence-table-adv table {
    min-width: 600px;
    overflow-x: scroll;
    margin-right: 24px;
  }
}
/* Breadcrumbs block (arc/breadcrumbs) ──────────────────────────────────── */
.arc-breadcrumbs {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.arc-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.arc-breadcrumbs__item {
  display: flex;
  align-items: center;
}
.arc-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: #999;
}

.arc-breadcrumbs__link {
  color: inherit;
  text-decoration: none;
}
.arc-breadcrumbs__link:hover {
  color: #007ac9;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

.arc-breadcrumbs__current {
  color: #333;
}
