/* ============================================
   home_block_10 — PAGOS (wide table 7 rows + tag column)
   ============================================ */

.home_block_10 {
  background: var(--bg-surface);
  padding: 10rem var(--main-padding);
  position: relative;
}

.home_block_10_inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.home_block_10_heading {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 900px;
}

.home_block_10_table > table > thead > tr > th:nth-child(3),
.home_block_10_table > table > tbody > tr > td:nth-child(3) {
  width: 12rem;
  text-align: center;
}

.home_block_10_tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home_block_10_tag--bank {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.home_block_10_tag--card {
  background: rgba(20, 184, 166, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.home_block_10_tag--cash {
  background: rgba(250, 204, 21, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(250, 204, 21, 0.3);
}

.home_block_10_tag--ewallet {
  background: var(--accent-soft);
  color: var(--accent-bright);
  border: 1px solid var(--accent-border);
}

.home_block_10_tag--crypto {
  background: rgba(20, 184, 166, 0.12);
  color: var(--accent-2);
  border: 1px solid rgba(20, 184, 166, 0.3);
}

.home_block_10_note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2.6rem 3rem;
  background: var(--bg-elevated);
  border: 1px solid var(--accent-line-soft);
  border-radius: var(--radius);
  flex-wrap: wrap;
}

.home_block_10_note > p {
  flex: 1 1 60%;
  max-width: 800px;
}

.home_block_10_note > .primary_button {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  .home_block_10 {
    padding: 14rem var(--main-padding);
  }

  .home_block_10_table > table > thead > tr > th:nth-child(3),
  .home_block_10_table > table > tbody > tr > td:nth-child(3) {
    width: auto;
  }

  .home_block_10_tag {
    font-size: 1.6rem;
    padding: 0.6rem 1.2rem;
  }

  .home_block_10_note {
    flex-direction: column;
    align-items: stretch;
    gap: 2.4rem;
    padding: 4rem 3rem;
  }

  .home_block_10_note > .primary_button {
    width: 90%;
    align-self: center;
  }
}
