/* =========================================================================
   SOLET — Subestaciones CFE (aterrizaje para contratistas)
   Rejilla de entregables y preguntas frecuentes
   ========================================================================= */

.cfe-deliver .card__num { margin-top: 0.4rem; }

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

/* ============ PREGUNTAS FRECUENTES ============ */

.faq { border-top: 1px solid var(--hairline); }
.faq__item { border-bottom: 1px solid var(--hairline); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.15rem 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--step-0);
  color: var(--text-hi);
  cursor: pointer;
  list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent-ink); }
.faq__icon {
  position: relative;
  flex: none;
  width: 22px;
  height: 22px;
  border: 1px solid var(--hairline-strong);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
  transition: transform var(--dur) var(--ease-out);
}
.faq__icon::before { width: 10px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 10px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); }
.faq__a {
  padding: 0 0 1.3rem;
  max-width: 68ch;
  color: var(--text-mid);
}
