/* ── Templates de Banners ── */

.logo-grid-item.h-100 {
    display: flex;
    flex-direction: column;
}
.banner-preview {
    flex: 1;
    min-height: 120px;
    padding: 0;
    background: var(--ds-surface-alt);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-preview img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    display: block;
}

.banner-meta {
    padding: 0.75rem 1rem;
    border-top: 1px solid var(--ds-line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.banner-meta .banner-name {
    font-family: var(--ds-font-display);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ds-dark);
    line-height: 1.3;
}
.banner-meta .banner-location {
    font-size: 0.72rem;
    color: var(--ds-muted);
    margin-top: 0.1rem;
}
.banner-meta .banner-dimensions {
    font-family: var(--ds-font-mono);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ds-dark);
    background: var(--ds-gray-200);
    border: 1px solid var(--ds-line);
    padding: 0.3rem 0.65rem;
    border-radius: 6px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.banner-meta .btn-download-banner {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ds-slate);
    border: 1px solid var(--ds-line);
    background: transparent;
    font-size: 0.9rem;
    transition: all var(--ds-transition);
    cursor: pointer;
    text-decoration: none;
}
.banner-meta .btn-download-banner:hover {
    background: var(--ds-primary);
    border-color: var(--ds-primary);
    color: #fff;
}
