/*
Theme Name: SmartMag Child
Theme URI: https://theme-sphere.com/
Description: Child theme for SmartMag
Author:Sumit bisht
Author URI: https://example.com/
Template: smart-mag
Version: 1.0.0
*/

/* Add your custom CSS below */

.a-wrap-2:not(._)

 {
    margin-top: 0px;
    display: none;
}



/*new */
/* Container Layout */
.pmsc-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
}

/* 3-Column Grid for 9 or 6 Posts */
.pmsc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Card Styling */
.pmsc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pmsc-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.pmsc-content {
  padding: 18px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.pmsc-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pmsc-title {
  font-size: 18px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.pmsc-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.pmsc-excerpt {
  font-size: 14px;
  color: #555555;
  line-height: 1.5;
}

/* Centered Button */
.pmsc-btn-wrapper {
  text-align: center;
  margin-top: 35px;
  width: 100%;
}

.pmsc-loadmore-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #000000;
  color: #ffffff !important;
  text-decoration: none !important;
  border-radius: 4px;
  font-weight: 600;
}

/* Responsive adjustment for Mobile */
@media (max-width: 768px) {
  .pmsc-grid {
    grid-template-columns: 1fr;
  }
}