/* ===============================
   DTP PAYOUTS — FINAL CLEAN
   =============================== */

.dtp-payouts {
  margin: 64px 0;
}

.dtp-payouts-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TITLE ===== */
.dtp-payouts h2 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
  color: #111827;
}

/* ===== TABS ===== */
.dtp-payouts-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.dtp-payouts-tab {
  flex: 1;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6e2f1;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.dtp-payouts-tab--active {
  border-color: #1e88e5;
  color: #1e88e5;
}

/* ===== CARDS GRID ===== */
.dtp-payouts-cards {
  display: none;
  gap: 20px;
}

.dtp-payouts-cards--active {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

/* ===== CARD ===== */
.dtp-payouts-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
}

.dtp-payouts-card h3 {
  font-size: 24px;
  margin-bottom: 4px;
}

.dtp-payouts-sub {
  color: #7a8aa0;
  margin-bottom: 12px;
}

.dtp-payouts-card ul {
  padding-left: 18px;
}

.dtp-payouts-card li {
  margin-bottom: 6px;
}

/* ===== WIDE CARD (DESKTOP) ===== */
.dtp-payouts-card--wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.dtp-payouts-left,
.dtp-payouts-right {
  flex: 1;
  max-width: 520px;
}

.dtp-payouts-right ul {
  margin: 0;
  padding-left: 18px;
}

/* ===== NOTE ===== */
.dtp-payouts-note {
  grid-column: 1 / -1;
  margin: 10px 0 6px;
  color: #6b7c93;
  font-size: 13px;
  line-height: 1.4;
}

/* ===== CTA ===== */
.dtp-payouts-cta {
  margin-top: 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.dtp-payouts-btn {
  background: #1e88e5;
  color: #fff;
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}

.dtp-payouts-btn:hover {
  background: #156fc0;
}

.dtp-payouts-btn:active {
  transform: scale(0.97);
}

.dtp-payouts-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.35);
}

/* ===== MOBILE ===== */
@media (max-width: 560px) {

  .dtp-payouts h2 {
    font-size: 26px;
  }

  .dtp-payouts-cards--active {
    grid-template-columns: 1fr;
  }

  .dtp-payouts-card--wide {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .dtp-payouts-left,
  .dtp-payouts-right {
    max-width: 100%;
  }

  .dtp-payouts-cta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ===== HOVER (DESKTOP ONLY) ===== */
@media (hover: hover) and (pointer: fine) {
  .dtp-payouts-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .dtp-payouts-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  }
}
