/*
Theme Name: Astra Child
description: Astra child theme for Purva Vashi
Template: astra
Version: 1.0.0
Text Domain: astra-child
*/
/* Footer social links */
.site-footer-primary-section-1 .wp-social-link {
    background: #fff;
    border-radius: 50%;
    padding: 5px;
}
.post-type-archive-news .site-footer-primary-section-1 .wp-social-link,  .single-news .site-footer-primary-section-1 .wp-social-link {
	color: #2a2a2a;
}
.listing-page-awsm_job_openings .site-footer-primary-section-1 .wp-social-link, .single-awsm_job_openings .site-footer-primary-section-1 .wp-social-link {
	color: #2a2a2a;
}

/* ===== News Archive Responsive 3-Column Grid ===== */

.pv-news-archive {
  padding: 60px 15px;
  width: 100%;
}

.pv-news-archive .pv-page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 40px;
}

.pv-news-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.pv-news-grid > div {
  padding-left: 15px;
  padding-right: 15px;
}

.pv-news-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0px !important;
}

.pv-news-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.pv-news-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pv-news-card-body {
  flex: 1;
  padding: 20px;
}

.pv-news-title {
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 5px;
}

.pv-news-title a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pv-news-title a:hover {
  color: var(--ast-global-color-1, #0073e6);
}

.pv-news-excerpt {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== Responsive Bootstrap-like Columns ===== */

/* Small devices (mobile) */
@media (max-width: 575.98px) {
  .pv-col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Medium devices (tablets) */
@media (min-width: 576px) and (max-width: 991.98px) {
  .pv-col-md-6 { flex: 0 0 50%; max-width: 50%; }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
  .pv-col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
}

/* Pagination styling */
.pv-pagination {
  text-align: center;
}

.pv-pagination a,
.pv-pagination span {
  display: inline-block;
  margin: 0 5px;
  padding: 8px 14px;
  background: #f7f7f7;
  color: #333;
  border-radius: 5px;
  text-decoration: none;
}

.pv-pagination a:hover {
  background: var(--ast-global-color-1, #0073e6);
  color: #fff;
}


/* ---------------------------------------------- */

/* ===== Single News Styles ===== */
.pv-single-news {
  margin: 60px auto;
  padding: 0 20px;
}

.pv-news-cover-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
}

.pv-news-header {
  text-align: center;
  margin-bottom: 30px;
}

.pv-news-header .pv-news-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.pv-news-body {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
}

.pv-news-body p {
  margin-bottom: 1.2em;
}

.pv-news-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  margin-top: 40px;
  padding-top: 20px;
}

.pv-news-navigation a {
  font-weight: 500;
  color: var(--ast-global-color-1, #0073e6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.pv-news-navigation a:hover {
  color: #005bb5;
}

