/* Empire Brands Page Styles */
.eb-brands-page-wrapper {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

.eb-brands-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.eb-brands-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.eb-brands-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.eb-brands-content {
    padding: 0 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .eb-brands-page-wrapper {
        padding: 30px 0;
    }
    
    .eb-brands-header {
        margin-bottom: 40px;
    }
    
    .eb-brands-title {
        font-size: 2rem;
    }
    
    .eb-brands-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .eb-brands-page-wrapper {
        padding: 20px 0;
    }
    
    .eb-brands-title {
        font-size: 1.75rem;
    }
    
    .eb-brands-header {
        margin-bottom: 30px;
    }
}

/* Container styles for better layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Ensure proper spacing with theme compatibility */
.eb-brands-page-wrapper .container {
    width: 100%;
    box-sizing: border-box;
} 