/* Brands Block Styles */

.block-preview-notice {
    padding: 20px;
    background: #f0f4f8;
    border-left: 4px solid #007cba;
    margin: 10px 0;
    border-radius: 4px;
}

.block-preview-notice .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #007cba;
    vertical-align: middle;
    margin-right: 8px;
}

.brands-section {
    padding: 60px 0;
    background: #fff;
}

.brands-section.is-preview {
    background: #f5f5f5;
    padding: 20px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 100px;
}

.brand-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.brand-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.brand-card:hover img {
    filter: grayscale(0%);
}

.brand-card__name {
    font-weight: 600;
    color: #6c757d;
    font-size: 1rem;
}
