/*
 Theme Name: GeneratePress Child
 Theme URI: https://website.com
 Description: Child theme for GeneratePress
 Author: Tumhara Naam
 Author URI: https://website.com
 Template: generatepress
 Version: 1.0
*/

/* Child theme ke custom CSS yahan add karna */
/* Blog grid cards - ProAdvisors tweaks */
/* Blog Section Styling */
/* 🔹 Blog Section Wrapper */
/* 🔹 Blog Section Wrapper */
/* Blog Section */
/* Blog Section */
.proadvisors-blog-section {
  padding: 60px 0;
  background: #fafafa;
}

.blog-main-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}

.blog-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 40px;
}

/* Blog Card */
.proadvisors-post-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.proadvisors-post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

/* Thumbnail */
.post-thumb {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.proadvisors-post-card:hover .post-thumb {
  transform: scale(1.05);
}

/* Card Body */
.post-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.post-card-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-card-title a:hover {
  color: #3fa535;
}

/* Meta */
.post-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 14px;
}

.post-meta .sep {
  margin: 0 6px;
}

/* Excerpt */
.post-excerpt {
  flex-grow: 1;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Read More Button */
.post-readmore {
  display: inline-block;
  align-self: flex-start;
  background: #3fa535;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.post-readmore:hover {
  background: #2c7d28;
}

/* Pagination */
.navigation.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.navigation.pagination .page-numbers {
  padding: 8px 14px;
  border-radius: 6px;
  background: #f1f1f1;
  color: #333;
  font-weight: 500;
}

.navigation.pagination .page-numbers.current {
  background: #3fa535;
  color: #fff;
}

.navigation.pagination .page-numbers:hover {
  background: #2c7d28;
  color: #fff;
}
