/* CV Builder Rapid layout — source-first responsive contract. */
#section-rapid > .rapid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 900px) {
  #section-rapid > .rapid-layout {
    display: block;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  #section-rapid > .rapid-layout > * {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  #section-rapid > .rapid-layout > * + * {
    margin-top: 14px;
  }
}
