/*
Theme Name: Custom Block Theme
Author: Your Name
Version: 1.0
Text Domain: custom-block-theme
*/


.blog-grid {
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.blog-card img {
  width: 100%;
  object-fit: cover;
}

.blog-card h2,
.blog-card .wp-block-post-date,
.blog-card .wp-block-post-excerpt {
  padding: 0 20px;
}

.blog-card h2 {
  font-size: 24px;
  line-height: 1.3;
}

.blog-card h2 a {
  text-decoration: none;
}


.blog-meta{
    color:#fff;
    font-size:16px;
    font-weight:500;
}

.blog-meta a{
    color:#fff;
    text-decoration:none;
}

.wp-block-post-featured-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
}

.wp-block-post-content{
    max-width:900px;
    margin:50px auto 0;
    line-height:1.9;
    font-size:18px;
}

.wp-block-post-content img{
    max-width:100%;
    height:auto;
    border-radius:16px;
}

.wp-block-post-content h2,
.wp-block-post-content h3,
.wp-block-post-content h4{
    margin-top:40px;
    margin-bottom:20px;
}