/* PrimeRates news-article credit-tier banner. Visual port of /us-debt/ Elementor banner. */
.pr-credit-banner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: center;
  border: 2px solid #B3E7E6;
  border-radius: 16px;
  padding: 16px 24px;
  background: #fff;
  margin: 24px 0;
  box-sizing: border-box;
}
.pr-credit-banner__title {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
  color: #1a3c5e;
  font-weight: 700;
}
.pr-credit-banner__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.pr-credit-banner__btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #C4DAD9 0%, #A7C9C8 100%);
  border: 2px solid #B3E7E6;
  border-radius: 8px;
  color: #070707;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.pr-credit-banner__btn:hover,
.pr-credit-banner__btn:focus {
  background: linear-gradient(180deg, #3EB7B5 0%, #288D8B 100%);
  color: #fff;
  border-color: #3EB7B5;
  text-decoration: none;
}
.pr-credit-banner__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #070707;
  box-shadow: inset 0 0 0 3px #fff;
  flex-shrink: 0;
}
.pr-credit-banner__btn:hover .pr-credit-banner__icon,
.pr-credit-banner__btn:focus .pr-credit-banner__icon {
  background: #fff;
  box-shadow: inset 0 0 0 3px #3EB7B5;
}
@media (max-width: 640px) {
  .pr-credit-banner { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .pr-credit-banner__btns { grid-template-columns: 1fr; }
}
