/* Main Container */
.site-main {
  padding: 60px 0;
  background-color: #fff;
}

.site-main .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Heading
.gsap-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #222;
} */

/* Post Grid */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* Post Card */
.gsap-post {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.gsap-post:hover {
  transform: translateY(-4px);
}

.post-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content {
  padding: 20px;
}

.post-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #004aad;
}

.post-title a {
  text-decoration: none;
  color: inherit;
}

.post-excerpt {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

.read-more {
  font-weight: 600;
  font-size: 0.9rem;
  color: #004aad;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #222;
}

/* Pagination */
.pagination {
  margin-top: 40px;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 8px;
  padding: 8px 12px;
  background: #eee;
  color: #222;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.pagination .current {
  background: #004aad;
  color: #fff;
}

.pagination .page-numbers:hover {
  background: #004aad;
  color: #fff;
}

/* No Posts */
.no-posts {
  text-align: center;
  font-size: 1rem;
  color: #666;
  padding: 40px 0;
}

.index-heading {
  max-width: 1140px;
  margin: 40px auto 20px;
  padding: 0 24px;
  text-align: center;
}

.index-title {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  color: #303260;
  margin-bottom: 8px;
}

.index-tagline {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}
@media (max-width: 768px) {
  .index-title {
    font-size: 26px;
  }
  .index-tagline {
    font-size: 14px;
  }
}

