/* ==========================================================================
   Cenematic home-c — "Create Videos in Any Format & Layout" section
   Centered heading, then a split: format illustration left, copy right.
   ========================================================================== */

.format {
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
  background: var(--bg);
  color: var(--ink);
}

/* Faint warm aurora */
.format::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(45% 50% at 85% 0%, rgba(255, 138, 0, 0.05), transparent 70%),
    radial-gradient(45% 50% at 15% 100%, rgba(255, 193, 7, 0.04), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.format__inner { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; }

.format__heading {
  margin: 0 auto 48px;
  max-width: 920px;
  text-align: center;
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.format__heading-accent {
  background: linear-gradient(105deg, #ffc107, #ff8a00, #ff3d00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.format__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.format__media { margin: 0; }
.format__media img { display: block; width: 100%; height: auto; border-radius: 18px; }

/* Q&A: punchy questions answered with a tilted green DONE stamp */
.format__qa { list-style: none; margin-bottom: 26px; }
.format__qa li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin-bottom: 14px;
  font-size: clamp(16px, 1.65vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.format__done {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px 6px;
  border-radius: 8px;
  background: linear-gradient(135deg, #16a34a, #0c7a35);
  color: #fff;
  font-size: 0.72em;
  font-weight: 900;
  letter-spacing: 0.1em;
  transform: rotate(-2deg);
  box-shadow: 0 3px 8px -6px rgba(22, 163, 74, 0.4);
}
.format__done::before { content: "✓"; font-size: 1.05em; }

.format__text p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
  color: var(--ink);
}
.format__text p + p { margin-top: 20px; }
.format__text strong { font-weight: 800; color: #ea580c; }

/* Aspect ratios pop in burnt orange */
.format__ratio { font-weight: 800; color: #c2410c; }

@media (max-width: 880px) {
  .format { padding: 56px 22px; }
  .format__heading { margin-bottom: 32px; }
  .format__grid { grid-template-columns: 1fr; gap: 36px; }
}
