/* V2 Hero Section - Standardized Component */
.v2-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 0;
    width: 100%;
}

/* Breadcrumb Navigation */
.v2-hero-breadcrumb {
    margin-bottom: 20px;
}

.v2-hero-breadcrumb .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 0;
}

.v2-hero-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.v2-hero-breadcrumb .breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.v2-hero-breadcrumb .breadcrumb-item a:hover {
    text-decoration: underline;
}

.v2-hero-breadcrumb .breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.v2-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Content */
.v2-hero-content {
    text-align: center;
    margin-bottom: 20px;
}

.v2-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: white;
}

.v2-hero-subtitle {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
    color: white;
}

/* Progress Bar */
.v2-hero-progress {
    max-width: 600px;
    margin: 0 auto;
}

.v2-hero-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.v2-hero-progress-text {
    font-weight: 600;
    font-size: 0.95rem;
}

.v2-hero-upgrade-link {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.v2-hero-upgrade-link:hover {
    text-decoration: underline;
}

.v2-hero-progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.v2-hero-progress-fill {
    height: 100%;
    background: #ffc107;
    transition: width 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .v2-hero-title {
        font-size: 1.8rem;
    }
    
    .v2-hero-subtitle {
        font-size: 1rem;
    }
    
    .v2-hero-progress-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
