.mara-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
}

.mara-showcase__copy h2 {
  max-width: 760px;
}
.mara-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.mara-showcase__card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: clamp(30px, 5vw, 54px);
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background: #082857;
  box-shadow: 0 24px 60px rgba(8, 40, 87, 0.18);
}

.mara-showcase__card::after {
  position: absolute;
  right: -42px;
  bottom: -70px;
  color: rgba(255, 255, 255, 0.045);
  content: "M";
  font-size: 240px;
  font-weight: 900;
  line-height: 1;
}

.mara-showcase__card > * {
  position: relative;
  z-index: 1;
}
.mara-showcase__badge {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 18px;
  color: #082857;
  background: #d8a447;
  font-size: 1.4rem;
  font-weight: 900;
}
.mara-showcase__card strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.mara-showcase__card > span {
  color: #94ddd5;
}
.mara-showcase__bubble {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .mara-showcase {
    grid-template-columns: 1fr;
  }
}
