/*
Theme Name: Newscrunch Child
Theme URI: https://spicethemes.com/newscrunch
Description: Child theme for Newscrunch - przechowuje customizacje CSS niezależne od aktualizacji motywu
Author: Leszek
Template: newscrunch
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* ==========================================================================
   Customizacje CSS - przeniesione z motywu głównego
   ========================================================================== */

/* ------------------------------------------------------------------
   Grid post height - stała wysokość nagłówka dla widoku siatki
   ------------------------------------------------------------------ */
.spnc-category-page .spnc-grid-catpost .spnc-entry-header {
	border-bottom: 1px solid #d7d7d7;
	height: 230px;
}

/* ------------------------------------------------------------------
   List view - usunięcie paddingu prawego (domyślnie 10px / 20px)
   ------------------------------------------------------------------ */
.spnc-post-list-view-section .spnc-post .spnc-post-content {
	flex: 1;
	align-self: center;
	padding-right: 0px;
}

.spnc-post-list-view-section .spnc-post .spnc-post-content .spnc-entry-content {
	padding-right: 0px;
}

/* ------------------------------------------------------------------
   Post Image Hover Effect 3 - Powiększenie i obrót (na img, nie kontenerze)
   Backupuje Custom CSS (post 416) na wypadek problemów z dziedziczeniem.
   ------------------------------------------------------------------ */
.i_effect3 {
    overflow: hidden;
    transition: none;
}

.i_effect3:hover {
    transform: none;
}

.i_effect3 img {
    transition: transform 0.4s ease-in-out;
    will-change: transform;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.i_effect3:hover img {
    transform: scale(1.15) rotate(5deg);
}
