
/* 
 Theme Name:     Design Base
 Template:       Divi
 Version:        1.0 
*/ 

/* blocos pagina receitas e plantas */
.bloco-item {
    text-align: center;
    margin-bottom: 20px;
    border: 0px solid #ccc;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.bloco-item:hover {
    background: #f9f9f9;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.bloco-thumb {
    margin-bottom: 10px;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px 20px 0px 0px;
    overflow: hidden;
}

/* make sure species thumb centers the image and keeps the aspect ratio */
.bloco-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px 20px 0px 0px;
    transform: scale(1.00);
    transition: transform 0.3s ease-in-out;
}

/* zoom in a bit the image on hover */
.bloco-thumb img:hover {
    transform: scale(1.15);
    transition: transform 0.3s ease-in-out;
}

.bloco-thumb img.noTransform {
    transform: none;
}

.bloco-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.bloco-grid .small {
    font-size: 0.8em;
}

/* blocos pagina receitas e plantas */