/*
Theme Name: GeneratePress Child - News Grid
Theme URI: https://generatepress.com
Description: Custom child theme for GeneratePress with news/magazine layout.
Author: ChatGPT
Template: generatepress
Version: 1.0
*/

body {
  background-color: #fff;
}

.home .inside-article {
  width: 100%;
  float: left;
  margin: 0 0 20px;
  padding: 0;
  border-bottom: 1px solid #eee;
}

.generate-columns .inside-article {
  border: none;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.grid-5 .post {
  border: 1px solid #eee;
  padding: 10px;
  background: #fafafa;
  text-align: center;
}

.grid-5 .post img {
  max-width: 100%;
  height: auto;
}

.grid-5 .post-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}