/*
Theme Name: The7 Child
Theme URI: https://mariuszbrandt.pl/
Description: Child theme dla The7 (Dream-Theme) — bezpieczne miejsce do wlasnych zmian, przetrwa aktualizacje motywu rodzica.
Author: Mariusz Brandt
Template: dt-the7
Version: 1.0.3
Text Domain: the7-child
*/

/* Czytelnia/blog — siatka Loop Grid (the7-image-widget): jednolita wysokosc karty 16:9,
   kadrowanie (object-fit: cover) — bez tego przy roznych proporcjach zdjec
   zawsze albo bedzie przycinanie, albo szare puste pasy. Cover = standard kazdego bloga.
   Miedzy .the7-image-wrapper i <img> jest <a class="img-css-resize-wrapper">, rozciagniety
   na 100%x100%, inaczej height:100% na img liczyloby sie wzgledem jego naturalnej (auto) wysokosci. */
.e-loop-item .the7-image-wrapper {
	aspect-ratio: 16 / 9 !important;
	display: flex !important;
}
.e-loop-item .the7-image-wrapper > a {
	display: block !important;
	width: 100% !important;
	height: 100% !important;
}
.e-loop-item .the7-image-wrapper img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}
