/* DailyPost Recommends — MGID-style native card grid.
   Desktop: 3-up. Tablet/mobile: 2-up card grid (image top, headline below),
   matching the "You may like" widget look. */

.dp-more-stories{margin:32px 0;clear:both}
.dp-ms-heading{font-size:18px;font-weight:700;margin:0 0 16px;padding-bottom:8px;border-bottom:1px solid #e3e3e3;color:#222}

.dp-ms-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}

.dp-ms-item{display:flex;flex-direction:column;text-decoration:none;color:inherit}
.dp-ms-thumb{display:block;width:100%;aspect-ratio:4/3;overflow:hidden;background:#f0f0f0;border-radius:8px}
.dp-ms-thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .25s ease}
.dp-ms-item:hover .dp-ms-thumb img{transform:scale(1.05)}

.dp-ms-body{padding-top:8px}
.dp-ms-title{
  display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;
  font-size:15px;line-height:1.35;font-weight:600;color:#1a1a1a
}
.dp-ms-item:hover .dp-ms-title{color:#0a5ca8}

.dp-ms-tag{display:inline-block;font-size:10px;font-weight:700;text-transform:uppercase;letter-spacing:.04em;color:#9a9a9a;margin-bottom:4px}
.dp-ms-item--partner .dp-ms-title{color:#222}

/* Tablet + phones: MGID-style 2-column card grid (image on top, headline below). */
@media(max-width:768px){
  .dp-ms-grid{grid-template-columns:repeat(2,1fr);gap:14px 12px}
  .dp-ms-title{font-size:14px;-webkit-line-clamp:3}
  .dp-ms-heading{font-size:16px}
}

/* Very small phones: keep 2-up (MGID stays 2-wide), just tighten spacing. */
@media(max-width:380px){
  .dp-ms-grid{gap:12px 10px}
  .dp-ms-title{font-size:13px}
}
