/* ==========================================================================
   SMCF — 1 San Miguel campaign page stylesheet.
   Additive stylesheet for /1sanmiguel.php only, linked after /style.css.
   Does not modify style.css or any file owned by other in-progress
   conversion work.
   ========================================================================== */

.smcf-split {
  display: flex;
  align-items: center;
  gap: 48px;
}

.smcf-split--reverse {
  flex-direction: row-reverse;
}

.smcf-split__media {
  flex: 0 0 40%;
}

.smcf-split__media img {
  border-radius: 6px;
}

.smcf-split__content {
  flex: 1;
}

.smcf-split__content .smcf-rule {
  margin-left: 0;
}

@media (max-width: 800px) {
  .smcf-split,
  .smcf-split--reverse {
    flex-direction: column;
  }

  .smcf-split__media {
    flex-basis: auto;
    width: 100%;
  }
}

/* ---- Responsive video embed (16:9) ---------------------------------------- */
.smcf-video-wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-top: 56.25%;
  margin: 0 auto 16px;
}

.smcf-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.smcf-video-caption {
  text-align: center;
  font-family: var(--smcf-font-accent);
  font-size: 0.85rem;
  color: var(--smcf-charcoal);
  margin-bottom: 32px;
}

/* ---- Lyrics accordion (native <details>/<summary>, no JS needed) --------- */
.smcf-accordion {
  max-width: 700px;
  margin: 0 auto;
}

.smcf-accordion details {
  border: 1px solid var(--smcf-gray-light);
  border-radius: 4px;
  background: var(--smcf-white);
}

.smcf-accordion summary {
  padding: 16px 20px;
  font-family: var(--smcf-font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--smcf-charcoal);
  cursor: pointer;
  list-style: none;
}

.smcf-accordion summary::-webkit-details-marker {
  display: none;
}

.smcf-accordion .smcf-accordion-body {
  padding: 0 20px 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}
