/*
Theme Name: CBKT HTML WP
Theme URI: https://cbkt.org.br/
Author: Joarez Franco / ChatGPT
Description: Tema WordPress convertido a partir do site HTML da CBKT, com notícias e eventos gerenciáveis pelo painel.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: cbkt-html-wp
*/

/* Ajustes CBKT: cards de notícias/eventos sem alongar imagens */
.cbkt-card-image,
.post-item .post-featured-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 18px 18px 0 0;
    background: #111;
}

.cbkt-card-image a,
.post-item .post-featured-image a,
.cbkt-card-image figure,
.post-item .post-featured-image figure {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
}

.cbkt-card-image img,
.post-item .post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
