@charset "UTF-8";
/* "Loved, rated, and recognized" — Figma node 11187:3310.
   Rule, G2 band with award badges, then a five-up row of issuer cards. */
.recognitions {
  background: #ffffff;
  /* 64px to the top rule, 72px below the bottom one, per Figma. */
  padding: 64px 0 72px;
}
.recognitions__rule {
  display: block;
  height: 1px;
  background: #e7e7ea;
}
.recognitions {
  /* Figma spaces the header 40px from the grid but only 24px between the G2
     band and the issuer cards, so the gap is 24 with the header making up
     the difference. */
}
.recognitions__inner {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.recognitions__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}
.recognitions__eyebrow {
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #614efa;
}
.recognitions__title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #1a1a22;
}
.recognitions {
  /* ---- G2 band ---- */
}
.recognitions__band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 144px;
  padding: 24px 32px;
  border-radius: 20px;
  background: #f3f0ff;
}
.recognitions__band-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recognitions__rating {
  display: block;
  width: 175px;
  height: 24px;
  object-fit: contain;
  object-position: left center;
}
.recognitions__band-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: #1a1a22;
}
.recognitions__band-sub {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #23232e;
}
.recognitions__band-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}
.recognitions__band-badges img {
  display: block;
  width: 78px;
  height: 90px;
  object-fit: contain;
}
.recognitions__band-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 20px;
  border-radius: 10px;
  background: #614efa;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.recognitions__band-cta:hover {
  background: #4a3bbe;
}
.recognitions {
  /* ---- Issuer cards ---- */
}
.recognitions__grid {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.recognitions__card {
  flex: 1 1 0;
  min-width: 0;
  min-height: 194px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e7e7ea;
  border-radius: 16px;
  background: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.recognitions__card:hover {
  border-color: #a1a1aa;
  box-shadow: 0 12px 28px 0 rgba(97, 79, 250, 0.12);
}
.recognitions__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #f5f5f5;
}
.recognitions__badge img {
  display: block;
  max-width: 46px;
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.recognitions__card-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.recognitions__card-title {
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  color: #1a1a22;
}
.recognitions__card-meta {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #23232e;
}

@media screen and (max-width: 1280px) {
  .recognitions {
    padding: 40px 0;
  }
  .recognitions__inner {
    padding: 32px 0;
    gap: 24px;
  }
  .recognitions__title {
    font-size: 32px;
    line-height: 40px;
  }
  .recognitions__band {
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
  }
  .recognitions__grid {
    flex-wrap: wrap;
  }
  .recognitions__card {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 220px;
  }
}
@media screen and (max-width: 1024px) {
  .recognitions__band-badges {
    gap: 8px;
  }
  .recognitions__band-badges img {
    width: 64px;
    height: 74px;
  }
  .recognitions__card {
    flex: 1 1 calc(50% - 10px);
    min-width: 180px;
    min-height: 0;
  }
}
@media screen and (max-width: 767px) {
  .recognitions {
    padding: 32px 0;
  }
  .recognitions__inner {
    padding: 24px 0;
    gap: 24px;
  }
  .recognitions__title {
    font-size: 28px;
    line-height: 36px;
  }
  .recognitions__band {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
  }
  .recognitions__band-badges {
    flex-wrap: wrap;
  }
  .recognitions__band-cta {
    width: 100%;
  }
  .recognitions__grid {
    gap: 12px;
  }
  .recognitions__card {
    flex: 1 1 calc(50% - 6px);
    min-width: 150px;
    gap: 12px;
    padding: 16px;
  }
  .recognitions__badge {
    width: 52px;
    height: 52px;
  }
  .recognitions__badge img {
    max-width: 36px;
    max-height: 36px;
  }
  .recognitions__card-title {
    font-size: 15px;
    line-height: 20px;
  }
  .recognitions__card-meta {
    font-size: 13px;
    line-height: 17px;
  }
}
