
/*
 Theme Name: GP Child - Clean Grid
 Template: generatepress
 Version: 1.0.1
*/

:root {
  --gpchild-max-width: 1200px;
  --gpchild-card-radius: 10px;
  --gpchild-card-gap: 24px;
  --gpchild-muted: #6b7280;
}

/* Typography */
body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.7;
  font-size: 17px;
}

/* Constrain content width */
.site-content .content-area {
  max-width: var(--gpchild-max-width);
  margin-inline: auto;
  padding-inline: 16px;
}

/* GRID on archives + blog index (homepage when showing posts) */
.archive .site-main,
.blog .site-main,
.home.blog .site-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gpchild-card-gap);
}
@media (min-width: 700px) {
  .archive .site-main,
  .blog .site-main,
  .home.blog .site-main { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .archive .site-main,
  .blog .site-main,
  .home.blog .site-main { grid-template-columns: repeat(3, 1fr); }
}

/* Article card */
.archive .site-main article,
.blog .site-main article,
.home.blog .site-main article {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--gpchild-card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.03);
  transition: box-shadow .2s ease, transform .02s ease;
}
.archive .site-main article:hover,
.blog .site-main article:hover,
.home.blog .site-main article:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  transform: translateY(-1px);
}

/* Featured image aspect ratio */
.gpchild-card-thumb {
  display:block;
  position: relative;
  width: 100%;
  padding-top: 56%;
  overflow: hidden;
  background: #f6f7f8;
}
.gpchild-card-thumb img {
  position: absolute;
  top:0; left:0; width:100%; height:100%; object-fit: cover;
}

/* Card content */
.gpchild-card-body { padding: 14px 16px 18px; }
.gpchild-card-cat {
  display:inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing:.04em;
  color: var(--gpchild-muted);
  margin-bottom: 6px;
}
.gpchild-card-title { margin: 0 0 6px 0; font-size: 20px; line-height: 1.35; }
.gpchild-card-title a { text-decoration: none; }
.gpchild-card-title a:hover { text-decoration: underline; }

/* Inline related link */
.gpchild-inline-related {
  border-left: 3px solid currentColor;
  padding: 10px 12px;
  margin: 20px 0;
  background: rgba(0,0,0,.03);
  font-weight: 600;
}

/* Related posts list (titles only) */
.gpchild-related-list { margin-top: 36px; padding-top: 14px; border-top: 1px solid rgba(0,0,0,.08); }
.gpchild-related-list h3 { margin: 0 0 12px 0; font-size: 18px; }
.gpchild-related-list ul { list-style:none; padding-left:0; margin:0; display:grid; grid-template-columns:1fr; gap:10px; }
.gpchild-related-list li a { display:block; padding:10px 12px; border:1px solid rgba(0,0,0,.08); border-radius:8px; text-decoration:none; }
.gpchild-related-list li a:hover { background:#fafafa; }

/* Single post niceties */
.single .entry-content p { margin: 0 0 1em 0; }
.single .entry-title { line-height: 1.15; }
