 /* Panels hold the images. They start at the very top. */
  #viewsTabs .r-tabs-panel {
    margin: 0;
    padding: 0;    /* no padding so image truly touches the top */
  }
  #viewsTabs .r-tabs-panel img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Hide the plugin’s accordion titles; we’re using a horizontal nav overlay */
  #viewsTabs .r-tabs-accordion-title { display: none !important; }

  /* ---- Overlay that sits on top of the image ---- */
  .views-overlay {
    position: relative;
    inset: 0 auto auto 0; /* top:0; left:0; */
    width: 100%;
    text-align: center;
    color: #424242;
    z-index: 5;

    /* Let clicks pass through by default, we’ll re-enable on the nav */
    pointer-events: none;
  }

  /* Heading: centered, 40px top padding & 20px bottom padding */
  .views-overlay h2 {
    padding-top: 60px;
    padding-bottom: 20px;
    margin: 0;
    /* font-size: 128px;
    font-weight: 600;
    letter-spacing: 0.35em; */
	color:#424242;
    text-transform: uppercase;
  }

  /* We’ll move the plugin’s nav UL into this container after init */
  .overlay-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    pointer-events: auto; /* make the nav clickable */
	margin-bottom:20px
  }

  /* Style the responsiveTabs nav once it lives inside .overlay-nav */
.overlay-nav .r-tabs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0; /* remove gap, we'll use border instead */
  margin-top: 0px;
}

/* Each tab */
.overlay-nav .r-tabs-nav .r-tabs-tab {
  list-style: none;
}

/* Tab links */
.overlay-nav .r-tabs-nav .r-tabs-anchor {
  display: block;
  padding: 10px 30px;
  text-decoration: none;
  color: #424242;   /* white text */
  background: transparent;
  border: none; font-weight: 400; letter-spacing:2px;
  cursor: pointer;
 -webkit-transition: all 0.2s linear; transition: all 0.2s linear;
  min-width:140px; /* Since the font becomes bold on click there comes a jerk as the fonts width increases. So a min width is given. Reduce for mobile */
  text-transform:uppercase;
}

/* Vertical divider between tabs */
.overlay-nav .r-tabs-nav .r-tabs-tab:not(:last-child) {
  border-right: 1px solid #ccc; /* divider */
}

/* Active tab styling */
.overlay-nav .r-tabs-nav .r-tabs-state-active .r-tabs-anchor {
  font-weight: 600; color:#7c5e19; -webkit-transition: all 0.2s linear; transition: all 0.2s linear;
}