/* 75% / 25% two-column layout */
.layout--two-column-64-33__container {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
}

.layout--two-column-64-33__left,
.layout--two-column-64-33__right {
  min-width: 0; /* allow flex items to shrink and text to wrap */
}

/* Left column: 75% */
.layout--two-column-64-33__left {
  flex: 0 0 75%;
  max-width: 75%;
}

/* Right column: 25% */
.layout--two-column-64-33__right {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Reverse the order of the columns */
.layout--two-column-33-64__container {
  flex-direction: row-reverse;
}

/* Responsive: stack on narrow screens */
@media (max-width: 768px) {
  .layout--two-column-64-33__container {
    flex-direction: column;
  }
  .layout--two-column-64-33__left,
  .layout--two-column-64-33__right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* We don't want a border on slideshows */
.ept-container .ept-slideshow-wrapper {
  border: none;
  /*margin-top: 7rem;*/
}

.ept-container .field--name-field-ept-tab-text p,
.ept-container .field--name-field-ept-tab-text ul li {
  color: gold;
}

.ept-container .ui-widget-content a {
  color: palegoldenrod;
}

.ept-tabs-minimalist_tabs .ui-tabs-nav .ui-state-active a {
  color: gold;
}
