
/* === GRID LAYOUT === */
.mag-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 15px;
}

/* === SECTION TITLE STYLE (Left Column Style) === */
.mag-grid-4-title {
  font-weight: 400;
  font-size: 12px;
  width: 92px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  background-color: #000;
  color: #fff;
  padding: 4px 7px;
  margin-bottom: 12px;
}

/* === CARD STYLE (Left Column Style) === */
.mag-card {
  background: #F8F7F5;
  border: 1px solid #eee;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mag-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.mag-card img {
  width: 100%;
  height: auto;
  display: block;
}

.mag-card .story-meta {
  padding: 10px;
}
.mag-card .excerpt {
  font-family:'Montserrat',sans-serif;
  font-size: 12px;
  color: #DC341A;
  margin: 8px 0 4px;
  line-height: 1.3;
}
.mag-card h3 {
  font-size: 24px;
  font-family:'Source serif 4',sans-serif;
  margin: 5px 0;
  line-height: 1.3;
}
.mag-card h3 a {
  color: #111;
  text-decoration: none;
}
.mag-card .author {
  font-size: 0.75rem;
  color: #666;
}

/* === RESPONSIVE GRID === */
@media(max-width: 1200px){
  .mag-grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 900px){
  .mag-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 600px){
  .mag-grid-4 { grid-template-columns: 1fr; }
}


.icymi-meta {
  margin-top: 6px;
  font-size: 12px;
  color: #777;
  display: flex;
  gap: 8px;
   margin-left: 12px;
    margin-bottom: 12px;
}

.icymi-meta span::after {
  content: "•";
  margin-left: 8px;
}

.icymi-meta span:last-child::after {
  content: "";
}
