.ric-ba {
  padding: 70px 24px;
  background: #eef1f4;
}

.ric-ba__inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.ric-ba__title {
  margin: 0 0 40px;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.12;
  color: var(--ric-ba-title, #e11d2e);
}

.ric-ba__subtitle {
  margin: 0 0 40px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(0,0,0,.68);
}

.ric-ba__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  margin: 0 auto 60px;
}

.ric-ba__card {
  border-radius: 2px;
  padding: 26px 18px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(0,0,0,.35);
}

.ric-ba__card.is-odd {
  background: var(--ric-ba-odd-bg, #d60010);
  color: var(--ric-ba-odd-text, #fff);
  border-color: rgba(0,0,0,.25);
}

.ric-ba__card.is-even {
  background: var(--ric-ba-even-bg, #eef1f4);
  color: var(--ric-ba-even-text, #1b1b1b);
  border-color: rgba(0,0,0,.35);
}

.ric-ba__icon {
  font-size: var(--ric-ba-icon-size, 44px);
  width: var(--ric-ba-icon-size, 44px);
  height: var(--ric-ba-icon-size, 44px);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ric-ba__icon--fa {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif;
  font-weight: 900;
}

.ric-ba__cardText {
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  white-space: pre-wrap;
  display: block;
  width: 100%;
  text-align: center;
}

.ric-ba__cardText strong {
  font-weight: 700;
}

.ric-ba__ctaText {
  margin: 0 0 18px;
  font-size: 20px;
  color: rgba(0,0,0,.72);
}

.ric-ba__btnWrap {
  display: flex;
  justify-content: center;
}

.ric-ba__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 460px;
  padding: 14px 22px;
  border-radius: 8px;
  background: #0b0b0b;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .ric-ba__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ric-ba__btn {
    min-width: 320px;
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .ric-ba__grid {
    grid-template-columns: 1fr;
  }
}
