
.hero-rates {
  display: grid;
  grid-template-columns: 540px 420px;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  margin: 24px 0;
}
.insync-banner {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 280px;
  max-width: 540px;
  color: #fff;
  display: flex;
  align-items: stretch;
  background-color: #6b2fa0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.insync-banner__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.insync-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.0); 
  z-index: 1;
}

.insync-banner__inner {
  position: relative;
  z-index: 2;
  width: 48%;
  padding: 28px 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.h2 {
  font-size: 30px;
  line-height: 1.1;
  margin: 0 0 8px;
  font-weight: 700;
}

.insync-banner__title.h2 {
  font-size: 32px;
  margin-bottom: 4px;
}

.insync-banner__text {
  font-size: 11px;
  line-height: 1.7;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.95);
}

.insync-banner__link {
  display: inline-block;
  margin: 4px 0 0;
  font-weight: 600;
  color: #fff;
  text-decoration: underline;
  font-size: 11px;
}

.insync-banner__icon-links {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.insync-banner__icon-links a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.95;
  transition: opacity 0.18s;
}

.insync-banner__icon-links a:hover {
  opacity: 1;
}

.insync-banner__qr-wrapper {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.insync-banner__qr-code {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.insync-banner__qr-text {
  font-size: 11px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.rates-card {
  background: #f4f4f4;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(12, 14, 20, 0.04);
  padding: 18px;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
  max-width: 420px;
}

.rates-card__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rates-card__title {
  margin: 0;
  font-size: 20px;
}

.muted {
  color: #d9534f;
  margin-left: 6px;
  font-weight: 700;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.rates-table th {
  text-align: left;
  font-weight: 600;
  padding-bottom: 10px;
  color: #666;
  font-size: 13px;
}

.rates-table td {
  padding: 8px 0;
  color: #111;
}

.rates-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  font-size: 12px;
  color: #777;
}

.rates-card__all {
  color: #d42c2c;
  text-decoration: none;
  font-weight: 600;
}

.currency-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-cell span {
  display: inline-block;
  font-weight: 600;
  font-size: 15px;
  color: #111;
}

.currency-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .hero-rates {
    display: block;
  }

  .insync-banner {
    max-width: 100%;
    min-height: 260px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  .insync-banner__inner {
    width: 100%;
    padding: 20px;
  }

  .insync-banner__title.h2 {
    font-size: 26px;
  }

  .h2 {
    font-size: 28px;
  }

  .insync-banner__qr-code {
    width: 60px;
    height: 60px;
  }

  .rates-card {
    padding: 14px;
    border-radius: 12px;
    max-width: 100%;
    width: 100%;
  }
}