/*
 Theme Name:   Newsberry Child
 Description:  A child theme for the Newsberry parent theme.
 Template:     newsberry
 Version:      1.0.1
*/

.frontline-flex-container {
  display: flex;
  gap: 20px; /* Space between columns */
}

.frontline-flex-child {
  flex: 1; /* Makes both columns equal width */
}

/* Optional: Stack vertically on mobile screens */
@media (max-width: 600px) {
  .frontline-flex-container {
    flex-direction: column;
  }
}

