.hero-cover {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: flex-end;
    color: #fff;
    min-height: 60vh;
    padding: 2rem 0;
    display: flex;
    justify-content: flex-start;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.breadcrumb-item.current {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 1rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 2rem 0;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: contain;
    font-weight: 600;
    font-size: 0.875rem;
    color: #fff;
}

.author-name {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.meta-separator {
    color: rgba(255, 255, 255, 0.6);
}

.category {
    color: rgba(255, 255, 255, 0.9);
}

.date {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-cover {
        padding: 1.5rem;
        min-height: 50vh;
        justify-content: center;
    }

    .hero-content {
        margin: 0;
    }

    .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-meta {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .author-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-cover {
        padding: 20px;
    }

    .breadcrumb {
        font-size: 0.7rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .meta-separator {
        display: none;
    }
}
