/* Change link text colour */
.tabs-content-one__nav-link {
  color: #6a7331 !important;
}

/* Change hover/active state if needed */
.tabs-content-one__nav-link:hover,
.tabs-content-one__nav-link.active {
  color: #556026 !important; /* darker shade for hover/active */
}

/* If the background was using #e36754 */
.tabs-content-one__nav-link {
  background-color: #6a7331 !important;
}

/* Background hover/active */
.tabs-content-one__nav-link:hover,
.tabs-content-one__nav-link.active {
  background-color: #bdb433 !important;
}


/* Container setup */
.tabs-content-one__image {
  position: relative;
  display: inline-block;
}

/* Overlay behind image */
.tabs-content-one__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #bdb433; /* overlay colour */
  opacity: 1; /* adjust strength */
  z-index: 1; /* behind image */
}

/* Image above overlay */
.tabs-content-one__image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2; /* above overlay */
}