/* Wrapper spacing */
.brx-simple-repeater {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Card */
.brx-simple-repeater .brx-sr__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #121212;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #343434;
}

/* Hover highlight like screenshot */
.brx-simple-repeater .brx-sr__item:hover {
  border-color: #1BEDB6;
}

/* Optional: "active" state (if you add class via CSS or anchor targeting) */
.brx-simple-repeater .brx-sr__item.is-active,
.brx-simple-repeater .brx-sr__item:target {
    border-color: #1BEDB6;
}

/* Left column */
.brx-simple-repeater .brx-sr__left {
  min-width: 0;
  flex: 1;
}

/* Title */
.brx-simple-repeater .brx-sr__title {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 10px 0;
}

/* Rich text meta: small, muted, allow multi-line */
.brx-simple-repeater .brx-sr__meta {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
}

.brx-simple-repeater .brx-sr__meta p { margin: 0; }
.brx-simple-repeater .brx-sr__meta p + p { margin-top: 6px; }
.brx-simple-repeater .brx-sr__meta strong { color: rgba(255,255,255,0.85); }

/* Right column */
.brx-simple-repeater .brx-sr__cta-wrap {
  flex: 0 0 auto;
}

.brx-simple-repeater .brx-sr__cta {
    border-color: #1BA27F;
}

.brx-simple-repeater .brx-sr__cta:hover {
   background: #1BEDB6;
   color: #000 !important;

}

.brx-simple-repeater .brx-sr__cta.arrow:hover:after
{
    content: url('../../assets/images/arrow-right-black.svg');
}

@media only screen and (max-width: 767px) {
  .brx-simple-repeater .brx-sr__item {
    flex-direction: column;
    align-items: stretch;
  }
  .brx-simple-repeater .brx-sr__cta {
    width: 100%;
  }

  .brx-simple-repeater .brx-sr__item {
    padding: 20px;
  }

  .brx-simple-repeater .brx-sr__title {
    font-size: 22px;
  }
}