/* Earn Page Styles */

:root {
  --earn-bg-white: #FFFFFF;
  --earn-bg-light: #F8FAFC;
  --earn-bg-dark: #000628;
  --earn-text-title: #222222;
  --earn-text-body: #64748B;
  --earn-text-light: #BEC7D5;
  --earn-primary: #2C52F5;
  --earn-primary-hover: #2445d4;
  --earn-green: #10B981;
}

/* ============================================
   HERO SECTION
   ============================================ */
.rand-earn__hero {
  background-color: var(--earn-bg-dark);
  padding: 50px 16px 100px;
  padding-top: 116px;
}

@media (min-width: 992px) {
  .rand-earn__hero {
    padding: 50px 60px 100px;
    padding-top: 116px;
  }
}

.rand-earn__hero-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 992px) {
  .rand-earn__hero-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}

.rand-earn__hero-title-column {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .rand-earn__hero-title-column {
    flex: none;
    width: 100%;
    text-align: center;
  }
}

.rand-earn__hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 992px) {
  .rand-earn__hero-title {
    font-size: 50px;
    line-height: 64px;
    text-align: right;
  }
}

.rand-earn__hero-image {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
}

.rand-earn__hero-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 6, 40, 0.00) 50%, #000628 95%);
  pointer-events: none;
}


/* Mobile: Use display:contents to flatten hero-content children into flex container */
@media (max-width: 991px) {
  .rand-earn__hero-content {
    display: contents;
  }

  .rand-earn__hero-badge {
    order: 1;
  }

  .rand-earn__hero-title-column {
    order: 2;
  }

  .rand-earn__hero-subtitle {
    order: 3;
  }

  .rand-earn__hero-image {
    order: 4;
  }

  .rand-earn__hero-cta {
    display: none;
  }

  .rand-earn__hero-title {
    text-align: center;
  }
}

.rand-earn__hero-image img {
  max-width: 319px;
  height: auto;
  max-height: 652px;
}

@media (max-width: 991px) {
  .rand-earn__hero-image img {
    max-width: 280px;
  }
}

.rand-earn__hero-content {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (max-width: 991px) {
  .rand-earn__hero-content {
    display: contents;
  }
}

.rand-earn__hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 4px;
}

@media (max-width: 991px) {
  .rand-earn__hero-badge {
    width: 100%;
    justify-content: center;
  }
}

.rand-earn__hero-badge-icon {
  width: 37px;
  height: 24px;
  flex-shrink: 0;
}

.rand-earn__hero-badge-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

.rand-earn__hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #BEC7D5;
  margin: 0;
}

@media (max-width: 991px) {
  .rand-earn__hero-subtitle {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 992px) {
  .rand-earn__hero-subtitle {
    font-size: 20px;
  }
}

.rand-earn__hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 52px;
  padding: 8px 20px;
  background-color: var(--earn-primary);
  color: #ffffff;
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.rand-earn__hero-cta:hover {
  background-color: var(--earn-primary-hover);
  color: #ffffff;
}

@media (max-width: 991px) {
  .rand-earn__hero-cta {
    display: none;
  }
}

.rand-earn__hero-disclaimer {
  max-width: 1320px;
  margin: 0 auto;
  padding-top: 32px;
  text-align: left;
}

@media (min-width: 992px) {
  .rand-earn__hero-disclaimer {
    text-align: center;
  }
}

.rand-earn__hero-disclaimer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #BEC7D5;
  margin: 0;
}

.rand-earn__hero-disclaimer strong {
  color: #ffffff;
}

.rand-earn__hero-disclaimer a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.rand-earn__calculator {
  background-color: var(--earn-bg-white);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-earn__calculator {
    padding: 100px 60px;
  }
}

.rand-earn__calculator-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-earn__calculator-container {
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
  }
}

.rand-earn__calculator-content {
  flex: 1;
}

.rand-earn__calculator-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--earn-text-title);
  margin: 0 0 16px;
}

@media (min-width: 992px) {
  .rand-earn__calculator-title {
    font-size: 50px;
  }
}

.rand-earn__calculator-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--earn-text-body);
  margin: 0 0 32px;
}

.rand-earn__calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rand-earn__calculator-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rand-earn__calculator-label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--earn-text-title);
}

.rand-earn__calculator-input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  overflow: hidden;
}

.rand-earn__calculator-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--earn-text-title);
  text-align: center;
  outline: none;
}

.rand-earn__calculator-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F3F4F6;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--earn-text-title);
  transition: background-color 0.2s ease;
}

.rand-earn__calculator-btn:hover {
  background-color: #E5E7EB;
}

.rand-earn__calculator-result {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  background-color: var(--earn-bg-light);
  border-radius: 16px;
}

.rand-earn__calculator-result-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
  color: var(--earn-text-title);
  margin: 0 0 8px;
}

@media (min-width: 992px) {
  .rand-earn__calculator-result-amount {
    font-size: 64px;
  }
}

.rand-earn__calculator-result-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--earn-text-body);
  margin: 0;
}

/* ============================================
   APY SECTION
   ============================================ */
.rand-earn__apy {
  background-color: var(--earn-bg-white);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-earn__apy {
    padding: 100px 60px;
  }
}

.rand-earn__apy-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-earn__apy-container {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

.rand-earn__apy-image {
  flex: 1;
  order: 2;
}

@media (min-width: 992px) {
  .rand-earn__apy-image {
    order: 1;
  }
}

.rand-earn__apy-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Placeholder for APY chart image */
.rand-earn__apy-image--placeholder {
  width: 100%;
  min-height: 300px;
  background-color: #f5f6fe;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .rand-earn__apy-image--placeholder {
    min-height: 400px;
  }
}

.rand-earn__apy-content {
  flex: 1;
  order: 1;
}

@media (min-width: 992px) {
  .rand-earn__apy-content {
    order: 2;
  }
}

.rand-earn__apy-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--earn-text-title);
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .rand-earn__apy-title {
    font-size: 50px;
  }
}

.rand-earn__apy-title span {
  color: var(--earn-primary);
}

.rand-earn__apy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rand-earn__apy-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--earn-text-body);
}

@media (min-width: 992px) {
  .rand-earn__apy-item {
    font-size: 18px;
  }
}

.rand-earn__apy-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--earn-green);
}

.rand-earn__apy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  height: 52px;
  padding: 8px 24px;
  background-color: var(--earn-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.rand-earn__apy-cta:hover {
  background-color: var(--earn-primary-hover);
  color: #ffffff;
}

/* ============================================
   COLLATERAL SECTION
   ============================================ */
.rand-earn__collateral {
  background-color: var(--earn-bg-white);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-earn__collateral {
    padding: 100px 60px;
  }
}

.rand-earn__collateral-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-earn__collateral-container {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

.rand-earn__collateral-content {
  flex: 1;
}

.rand-earn__collateral-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--earn-text-title);
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .rand-earn__collateral-title {
    font-size: 50px;
  }
}

.rand-earn__collateral-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--earn-text-body);
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .rand-earn__collateral-description {
    font-size: 20px;
  }
}

.rand-earn__collateral-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--earn-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rand-earn__collateral-cta:hover {
  color: var(--earn-primary-hover);
}

.rand-earn__collateral-cta svg {
  width: 20px;
  height: 20px;
}

.rand-earn__collateral-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.rand-earn__collateral-card {
  background-color: var(--earn-bg-dark);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-width: 140px;
}

@media (min-width: 992px) {
  .rand-earn__collateral-card {
    min-width: 180px;
    padding: 32px;
  }
}

.rand-earn__collateral-card-icon {
  width: 48px;
  height: 48px;
}

.rand-earn__collateral-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rand-earn__collateral-card-value {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 992px) {
  .rand-earn__collateral-card-value {
    font-size: 32px;
  }
}

/* ============================================
   SECURITY SECTION
   ============================================ */
.rand-earn__security {
  background-color: var(--earn-bg-dark);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-earn__security {
    padding: 100px 60px;
  }
}

.rand-earn__security-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-earn__security-container {
    flex-direction: row;
    align-items: center;
    gap: 80px;
  }
}

.rand-earn__security-content {
  flex: 1;
}

.rand-earn__security-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0 0 24px;
}

@media (min-width: 992px) {
  .rand-earn__security-title {
    font-size: 50px;
  }
}

.rand-earn__security-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rand-earn__security-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--earn-text-light);
}

@media (min-width: 992px) {
  .rand-earn__security-item {
    font-size: 18px;
  }
}

.rand-earn__security-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--earn-green);
}

.rand-earn__security-graphic {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.rand-earn__security-logos {
  display: flex;
  align-items: center;
  gap: 32px;
}

.rand-earn__security-logo {
  height: 40px;
}

@media (min-width: 992px) {
  .rand-earn__security-logo {
    height: 50px;
  }
}

.rand-earn__security-logo img {
  height: 100%;
  width: auto;
  filter: brightness(0) invert(1);
}

.rand-earn__security-map {
  width: 100%;
  max-width: 500px;
}

.rand-earn__security-map img {
  width: 100%;
  height: auto;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.rand-earn__reviews {
  background-color: var(--earn-bg-white);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-earn__reviews {
    padding: 100px 60px;
  }
}

.rand-earn__reviews-container {
  max-width: 1320px;
  margin: 0 auto;
}

.rand-earn__reviews-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--earn-text-title);
  margin: 0 0 40px;
  text-align: center;
}

@media (min-width: 992px) {
  .rand-earn__reviews-title {
    font-size: 50px;
    margin-bottom: 60px;
  }
}

.rand-earn__reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .rand-earn__reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .rand-earn__reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rand-earn__review-card {
  background-color: var(--earn-bg-light);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rand-earn__review-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--earn-text-body);
  margin: 0;
  flex: 1;
}

.rand-earn__review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rand-earn__review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--earn-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.rand-earn__review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback initial for reviews without avatar */
.rand-earn__review-avatar--initial {
  background-color: var(--earn-primary);
}

.rand-earn__review-info {
  display: flex;
  flex-direction: column;
}

.rand-earn__review-name {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--earn-text-title);
  margin: 0;
}

.rand-earn__review-date {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: var(--earn-text-body);
  margin: 0;
}

.rand-earn__review-stars {
  display: flex;
  gap: 4px;
}

.rand-earn__review-star {
  width: 16px;
  height: 16px;
  color: #FFC107;
}

/* ============================================
   CTA SECTION
   ============================================ */
.rand-earn__cta {
  background-color: var(--earn-bg-light);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-earn__cta {
    padding: 100px 60px;
  }
}

.rand-earn__cta-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 992px) {
  .rand-earn__cta-container {
    flex-direction: row;
    gap: 60px;
  }
}

.rand-earn__cta-image {
  flex: 0 0 auto;
}

.rand-earn__cta-image img {
  max-width: 300px;
  height: auto;
}

@media (min-width: 992px) {
  .rand-earn__cta-image img {
    max-width: 400px;
  }
}

.rand-earn__cta-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

@media (min-width: 992px) {
  .rand-earn__cta-content {
    align-items: flex-start;
    text-align: left;
  }
}

.rand-earn__cta-icon {
  width: 64px;
  height: 64px;
}

.rand-earn__cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rand-earn__cta-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--earn-text-title);
  margin: 0;
}

@media (min-width: 992px) {
  .rand-earn__cta-title {
    font-size: 50px;
  }
}

.rand-earn__cta-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--earn-text-body);
  margin: 0;
}

.rand-earn__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 8px 24px;
  background-color: var(--earn-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.rand-earn__cta-button:hover {
  background-color: var(--earn-primary-hover);
  color: #ffffff;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.rand-earn__faq {
  background-color: var(--earn-bg-white);
  padding: 60px 16px;
}

@media (min-width: 992px) {
  .rand-earn__faq {
    padding: 100px 60px;
  }
}

.rand-earn__faq-container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .rand-earn__faq-container {
    flex-direction: row;
    gap: 80px;
  }
}

.rand-earn__faq-header {
  flex: 0 0 auto;
}

@media (min-width: 992px) {
  .rand-earn__faq-header {
    flex: 0 0 300px;
  }
}

.rand-earn__faq-title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--earn-text-title);
  margin: 0 0 16px;
}

@media (min-width: 992px) {
  .rand-earn__faq-title {
    font-size: 40px;
  }
}

.rand-earn__faq-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 8px 20px;
  background-color: var(--earn-primary);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

.rand-earn__faq-link:hover {
  background-color: var(--earn-primary-hover);
  color: #ffffff;
}

.rand-earn__faq-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rand-earn__faq-item {
  border-bottom: 1px solid #E5E7EB;
}

.rand-earn__faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--earn-text-title);
  text-align: left;
}

@media (min-width: 992px) {
  .rand-earn__faq-question {
    font-size: 18px;
  }
}

.rand-earn__faq-question:hover {
  color: var(--earn-primary);
}

.rand-earn__faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.rand-earn__faq-item.active .rand-earn__faq-icon {
  transform: rotate(180deg);
}

.rand-earn__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.rand-earn__faq-item.active .rand-earn__faq-answer {
  max-height: 500px;
}

.rand-earn__faq-answer-text {
  padding-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--earn-text-body);
  margin: 0;
}
