/*
Theme Name: Astra Child
Author: 
Description: Your description goes here
Version: 1.0
Template: astra

This is the child theme for Astra theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
/* Custom post grid shortcode css */
.custom-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 20px 0;
  font-family: 'inter';
}

.post-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.post-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.post-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.post-content h3 {
  color: #324A68;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0px;
}

.post-content p {
  color: #6c757d;
  font-size: 15px;
  flex-grow: 1;
}

.read-more {
  color: #FF5A00;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
}

.read-more span {
  margin-left: 8px;
  font-size: 16px;
}

.view-all-wrapper {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  background-color: #FF5A00;
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-family: 'Merriweather';
}
.read-more svg {
    margin-left: 10px;
}
.custom-post-grid-container .pagination-wrapper {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}
.custom-post-grid-container .pagination-wrapper span.page-numbers.current {
    background-color: #fb5b11;
    color: #FFF;
}
.custom-post-grid-container .pagination-wrapper .page-numbers {
    padding: 5px 10px;
    border-radius: 5px;
	color: #fb5b11;
    font-family: 'Merriweather';
}
