.bmc-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0;
}
.bmc-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}
.bmc-main {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bmc-color);
  color: #fff;
}
.bmc-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 12px;
  min-height: 66px;
}
.bmc-logo img {
  max-width: 120px;
  max-height: 46px;
  object-fit: contain;
}
.bmc-logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.bmc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 4px;
}
.bmc-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}
.bmc-desc {
  font-size: 13px;
  opacity: 0.88;
  line-height: 1.4;
}
.bmc-cta {
  text-align: center;
  min-width: 130px;
}
.bmc-amount {
  font-size: 34px;
  font-weight: 900;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 10px;
}
.bmc-btn {
  display: block;
  background: #FFD700;
  color: #111 !important;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 18px;
  border-radius: 4px;
  text-decoration: none !important;
  transition: background 0.2s;
}
.bmc-btn:hover {
  background: #f5c800;
}
.bmc-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  background: var(--bmc-footer);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.bmc-footer:hover {
  opacity: 0.85;
}
.bmc-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s;
}
.bmc-footer[aria-expanded="true"] .bmc-arrow {
  transform: rotate(180deg);
}
.bmc-details {
  background: rgba(0,0,0,0.75);
  padding: 14px 28px;
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  line-height: 1.7;
}
.bmc-details ul {
  padding-left: 18px;
  margin: 0;
}
.bmc-details li {
  margin-bottom: 3px;
}
@media (max-width: 620px) {
  .bmc-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
  }
  .bmc-logo {
    justify-content: center;
  }
  .bmc-cta {
    min-width: unset;
  }
}
