/* ==========================================================================
   Workflow Studio — showreel
   features.css
   The alternating copy/screenshot rows.
   ========================================================================== */

/* --- Alternating features -------------------------------------------------- */

.feature {
  display: grid;
  /* Weighted hard toward the media, with a tighter gutter feeding it too. Paired
     with the wider measure on #showreel, this lands the copy back at about the
     width it had before and puts all of the extra room into the media. */
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0;
}

.feature.reverse .feature-copy {
  order: 2;
}

.feature-index {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.feature-copy h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 14px 0 18px;
}

.feature-copy > p {
  color: var(--text-muted);
  font-size: 16px;
}

.feature-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text-dim);
}

.feature-list code {
  font-family: var(--mono);
  font-size: 0.86em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 4px;
  padding: 1px 5px;
}

.feature-list li::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 2px;
  background: var(--accent);
}
