/* Layout strony bloga */
.adm-blog-layout #primary .site-main {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
    max-width: 1200px;
    margin: auto;
    margin-top: 2rem;
}
@media (max-width: 782px) {
    .adm-blog-layout #primary .site-main {
        grid-template-columns: 1fr !important;
    }
}

/* Siatka shortcode [ostatnie_wpisy] */
.adm-ostatnie-wpisy {
    display: grid;
    grid-template-columns: repeat(var(--kolumn, 2), 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}
@media (max-width: 782px) {
    .adm-ostatnie-wpisy {
        grid-template-columns: 1fr !important;
    }
}



/* Karta wpisu — blog i shortcode */


#masthead.site-header{
	margin-bottom:0
}


.adm-blog-layout article.hentry,
.adm-ostatnie-wpisy article.hentry {
    display: flex !important;
    align-items: stretch;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-height: 200px;
    position: relative;
    margin-bottom: 0 !important;
    padding: 0 !important;
}
.blog-wpis-inner {
    display: flex;
    width: 100%;
    align-items: stretch;
}


.blog-wpis__foto {
    flex: 0 0 200px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
}
.blog-wpis__foto img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    border-radius: 10px;
}
.blog-wpis__tresc {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding: 20px;
}
.blog-wpis__tytul {
    font-size: 16px;
    font-weight: bold;
    margin: 0 !important;
    line-height: 1.2;
}
.blog-wpis__tytul a {
    color: inherit;
    text-decoration: none;
}
.blog-wpis__zajawka {
    font-size: 14px;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.blog-wpis__wiecej {
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue-sec);
    text-decoration: none;
    text-align: right;
}
.blog-wpis__link-calosc {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}




.adm-post-thumbnail-container {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0px 0px 5px #878787;
}

.adm-post-thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}





/*  HOVER  */

.blog-wpis:hover {
    box-shadow: 3px 3px 5px rgb(25 1 175 / 5%);
}

.blog-wpis:hover .blog-wpis__wiecej{
	color: var(--blue-first);
}


.blog-wpis:hover .blog-wpis__foto img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}



