/*
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;
}

.footer-signature {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    opacity: .82;
    transition: all .3s ease;
}

.footer-signature:hover {
    opacity: 1;
}

.footer-signature span {
    font-size: 11px;
    color: #bfbfbf;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-signature img {
    max-height: 20px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.08);
    transition: transform .3s ease;
}

.footer-signature img:hover {
    transform: scale(1.04);
}

@media (max-width: 767px) {
    .footer-copyright-text-metal {
        text-align: center;
        margin-bottom: 12px;
    }
	
    .footer-signature {
        justify-content: center;
        gap: 8px;
    }

    .footer-signature span {
        font-size: 9px;
        letter-spacing: .8px;
    }

    .footer-signature img {
        max-height: 18px;
    }

}