/**
 * Brand Page Specific Styles
 *
 * Additional styles specifically for brand taxonomy pages
 */

/* Brand page header */
.brand-page-header {
    margin-bottom: 2rem;
}

/* Brand logo on taxonomy pages */
.brand-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

/* Brand description */
.brand-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Brand contact info */
.brand-contact-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-logo {
        max-width: 150px;
    }

    .brand-description {
        font-size: 1em;
    }

    .brand-contact-info {
        padding: 0.75rem;
    }
}