/**
 * "הנצפים ביותר" — 3-card grid on single posts.
 *
 * Card visuals come from `.hm-vod-card.hm-vod-card--light` (vod-list.css,
 * pulled in via the registered style dependency). This file only handles
 * the section spacing and the 3-column grid layout.
 *
 * @package Hamechadesh
 */

.hm-most-viewed {
	margin-block-start: 50px; /* gap from the preceding hm-posts-grid (must-read) */
}

.hm-most-viewed__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

@media (max-width: 767px) {
	.hm-most-viewed__grid {
		grid-template-columns: 1fr;
	}
}
