/* Accordion wrapper */
.mobo-acc-wrap {
  margin-top: 16px;
  border-top: 1px solid rgba(0,0,0,.12);
  padding-top: 14px;
}

/* Accordion toggle */
.mobo-acc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mobo-acc-title {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mobo-acc-icon {
  transition: transform .2s ease;
  font-size: 18px;
  line-height: 1;
}

.mobo-acc-wrap.is-open .mobo-acc-icon {
  transform: rotate(180deg);
}

/* Panel */
.mobo-acc-panel {
  margin-top: 10px;
}

/* Scroll container: height tuned so ~3 cards show before scrolling */
.mobo-scroll {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

/* Card grid: 3 columns desktop */
.mobo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 900px) {
  .mobo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .mobo-grid { grid-template-columns: 1fr; }
}

/* Cards */
.mobo-card {
  border: 2px solid rgba(0,0,0,.08);
  border-radius: 10px;
  padding: 12px;
  background: #fff;
}

.mobo-card-title {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.mobo-card-size {
  font-weight: 600;
  opacity: 0.8;
  margin-bottom: 10px;
  font-size: 13px;
}

.mobo-card-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.10);
}

/* Optional minimal template link */
.mobo-template-min {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.85;
}

/* Force NO internal scrolling anywhere in the branding accordion */
.mobo-acc-panel,
.mobo-acc-panel * {
  max-height: none !important;
  overflow: visible !important;
}