
.mag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.mag-card {
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  font-family: Georgia, serif;
}

.mag-card h4 {
  margin: 0;
  padding: 10px 12px;
  font-size: 18px;
  font-weight: 500;
  color: #d32f2f;
  border-bottom: 1px solid #e5e5e5;
}

.mag-slider {
  overflow: hidden;
}

.mag-track {
  display: flex;
  transition: transform .45s ease;
}

.mag-slide {
  flex: 0 0 100%;
}

.mag-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.mag-title {
  padding: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.mag-title a {
  color: #000;
  text-decoration: none;
}

.mag-title a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .mag-grid { grid-template-columns: 1fr; }
}
