/* ReelStep Ads — 2-row stack with equal heights, matches .rs-aff-card look */
.rs-ads-wrap {
  display: grid;
  grid-template-rows: auto;
  row-gap: var(--rs-ad-gap, 20px);
}

/* Each slot has a minimum height so the cards align */
.rs-ads-wrap .ad-slot {
  min-height: var(--rs-ad-minh, 120px);
}

/* Card styling aligned with your existing classes */
.rs-ads-wrap .rs-aff-card {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;                 /* fill the slot */
  padding: 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 22px rgba(17,24,39,.06);
  text-decoration: none;
}

.rs-ads-wrap .rs-aff-logo img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.rs-ads-wrap .rs-aff-copy strong {
  display: block;
  color: #173b6c;
  margin-bottom: 4px;
}
