/*
Theme Name: NVSeeds Child
Template: twentytwentyfive
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&display=swap');
body {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 200;
  /*background: #0b1120 !important;*/
  color: #ffffff;
}

/* FULL PAGE DARK BACKGROUND */
body {
  background: #0b1120 !important;
  color: #ffffff;
}

a {
  color: #101937;
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: #1d4ed8; /* slightly darker on hover */
}

.wp-block-post-title a {
  font-weight: 500;
  font-size: 20px;
}

/* Make hero section white text */
.wp-block-group h1,
.wp-block-group p {
  color: #ffffff;
}

/* CENTER CONTENT WIDTH */
.wp-site-blocks {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
}

/* BLOG GRID */
.wp-block-post-template {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wp-block-post-template {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* BLOG CARD */
.wp-block-post {
  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.05);
  padding: 10px;
  border-radius: 18px;
  transition: all 0.35s ease;
}

.wp-block-post:hover {
  transform: translateY(-8px);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 25px 50px rgba(0,212,255,0.1);
}

/* IMAGE */
.wp-block-post-featured-image img {
  border-radius: 14px;
  margin-bottom: 30px;
}

/* TITLE */
.wp-block-post-title a {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.wp-block-post-title a:hover {
  color: #00d4ff;
}

/* DATE */
.wp-block-post-date {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 10px;
}

/* EXCERPT */
.wp-block-post-excerpt {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
}

/* PAGINATION */
.wp-block-query-pagination {
  margin-top: 10px;
  text-align: center;
}