.currency-card {
  background: #fff;
  color: #4B5C70;
  padding: 0 28px;
}
.currency-card__header {
  padding-bottom: 20px;
}
.currency-card__title {
  font-family: 'PF Beau Sans Pro';
  font-size: 28px;
  font-weight: 700;
}
.currency-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}
.currency-table th {
  text-align: left;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}
.currency-table td {
  padding: 16px 0;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
  font-size: 16px;
}
.currency-pair {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.currency-pair .text-gray {
  color: #A1AFBF;
}
.currency-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F6F8FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  flex-shrink: 0;
}
.currency-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.rate-number {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.currency-table td:nth-child(1),
.currency-table td:nth-child(2) {
  width: 190px;
}
.currency-table td:nth-child(2),
.currency-table td:nth-child(3) {
  font-weight: 700;
}
.currency-footer {
  padding-top: 20px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.currency-footer__disclaimer {
  font-size: 16px;
  line-height: 1.5;
  padding-left: 6px;
}
