/**
* Theme Name: Lawnella Child
* Description: This is a child theme of Lawnella, generated by Merlin WP.
* Author: <a href="http://steelthemes.com">SteelThemes</a>
* Template: lawnella
* Version: 2.5.1
*/

/* === Overlay effetto immagine blog === */
.custom-category-template .post-thumb {
    position: relative;
    overflow: hidden;
}

.custom-category-template .post-thumb .overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transition: 0.5s ease;
}

.custom-category-template .post-thumb:hover .overlay {
    bottom: 0;
    height: 100%;
}

.custom-category-template .post-thumb .icon {
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.custom-category-template .post-thumb .icon::after {
    width: 70px;
    height: 70px;
    position: absolute;
    content: '';
    border-radius: 50px;
    border: 1px dashed #fff;
    background: none;
    transition: all 0.6s ease-in-out;
    left: -19px;
    top: -18px;
}

/* Icona foglia stile tema */
.custom-category-template .post-thumb .icon-leaf::before {
    content: "\e900"; /* usa il font del tema */
    font-family: 'lawnella-icons'; /* controllare che sia questo il font */
    font-style: normal;
    font-weight: normal;
}
/* Larghezza corretta sidebar in categoria */
.custom-category-template .sidebar {
    flex: none;
    width: 390px !important;
    max-width: none !important;
}
/* Larghezza corretta sidebar in sottocategoria */
@media (min-width: 992px) {
	body.custom-category-template :is(.sidebar, aside#secondary.widget-area.blog-sidebar.col-lg-4) {
    max-width: 390px !important;
    width: 390px !important;
    flex: none !important;
	}
}
