/* Bronco FCU Payment Page — scoped styles */

.bronco-payment {
  --forest900: #132c29;
  --forest800: #1c3937;
  --forest600: #2e5050;
  --green800:  #3a4c1a;
  --green600:  #445b20;
  --green200:  #c8d3a9;
  --green100:  #EFF5EA;
  --tan400:    #d5dcb3;
  --tan100:    #efefe4;
  --tan50:     #f5f9f2;
  --yellow150: #cece41;
  --yellow100: #ecef67;
  --gray900:   #1a1a1a;
  --gray600:   #4e514a;

  box-sizing: border-box;
  font-family: inherit;
  color: var(--gray900);
  max-width: 900px;
}

.bronco-payment *,
.bronco-payment *::before,
.bronco-payment *::after {
  box-sizing: inherit;
}

/* Primary grid */

.bp-primary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 2rem;
}

@media (max-width: 620px) {
  .bp-primary-grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */

.bp-card {
  background: #ffffff;
  border: 1px solid var(--tan400);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.bp-card--primary {
  border-top: 3px solid var(--forest800);
}

.bp-card--secondary {
  border-top: 3px solid var(--tan400);
}

/* Badges */

.bp-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bp-badge--primary {
  background: var(--green100);
  color: var(--green800);
}

.bp-badge--secondary {
  background: var(--tan100);
  color: var(--gray600);
}

/* Card content */

.bp-card__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.3;
  color: var(--forest900);
}

.bp-card__sub {
  font-size: 14px;
  color: var(--gray600);
  margin: 0 0 1rem;
  line-height: 1.55;
}

/* Feature list */

.bp-feature-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  flex: 1;
}

.bp-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  padding: 0;
  color: var(--gray900);
}

.bp-check {
  color: var(--forest600);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.bp-feature-list a {
  color: var(--forest800);
  text-decoration: underline;
  text-decoration-color: var(--green200);
  text-underline-offset: 2px;
}

.bp-feature-list a:hover {
  color: var(--forest600);
}

/* Neutralize theme's .pre-content link styles inside the cards */
.bronco-payment .bp-card a:not(.btn),
.bronco-payment .bp-fee-note a:not(.btn) {
  color: var(--forest800);
  border-bottom: none;
  padding: 0;
  transition: color 0.4s;
}

.bronco-payment .bp-card a:not(.btn):hover,
.bronco-payment .bp-fee-note a:not(.btn):hover {
  color: var(--forest600);
}

/* Fee note */

.bp-fee-note {
  font-size: 13px;
  color: var(--gray600);
  background: var(--tan100);
  padding: 9px 12px;
  border-radius: 6px;
  line-height: 1.5;
}

/* Section label */

.bp-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray600);
  margin: 0 0 0.85rem;
}

/* Alt grid */

.bp-alt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 12px;
}

.bp-alt-card {
  background: var(--tan50);
  border: 1px solid var(--tan400);
  border-radius: 8px;
  padding: 1rem;
}

.bp-alt-icon {
  width: 30px;
  height: 30px;
  background: var(--green100);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bp-alt-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--forest800);
}

.bp-alt-card h3 {
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--forest900);
}

.bp-alt-card p {
  font-size: 12px;
  color: var(--gray600);
  line-height: 1.5;
  margin: 0;
}
