/**
 * Post Hero - Modern Minimal Design
 * Coloring Pages Post Header
 *
 * @package Zen Coloring Generator
 */

.zen-post-hero {
    background: #fff8f0;
    padding: 24px 0 28px;
    position: relative;
    overflow: hidden;
}

/* Left accent bar */
.zen-post-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #ffa733, #ff6b35);
}

/* Decorative corner glow */
.zen-post-hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 167, 51, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.zen-post-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Breadcrumbs */
.zen-post-hero .zen-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 16px;
}

.zen-post-hero .zen-breadcrumbs a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.zen-post-hero .zen-breadcrumbs a:hover {
    color: #ffa733;
}

.zen-post-hero .zen-breadcrumbs span {
    color: #d1d5db;
}

/* Last breadcrumb (current page) - orange */
.zen-post-hero .zen-breadcrumbs .breadcrumb_last {
    color: #ffa733;
    font-weight: 600;
}

/* Title */
.zen-post-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #1f2937;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
}

/* Meta container */
.zen-post-hero-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

/* Author block */
.zen-post-hero-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.zen-post-hero-author:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.zen-post-hero-author img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.zen-post-hero-author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.zen-post-hero-author-label {
    font-size: 0.6rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.zen-post-hero-author-name {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.zen-post-hero-author-name:hover {
    color: #ffa733;
}

.zen-post-hero-author-name .verified-badge {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Date block */
.zen-post-hero-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.zen-post-hero-date svg {
    width: 16px;
    height: 16px;
    fill: #d1d5db;
}

/* Responsive */
@media (max-width: 768px) {
    .zen-post-hero {
        padding: 14px 0 16px;
    }

    .zen-post-hero::before {
        width: 4px;
    }

    .zen-post-hero-inner {
        padding: 0 16px 0 20px;
    }

    .zen-post-hero .zen-breadcrumbs {
        padding: 4px 10px;
        font-size: 0.7rem;
        margin-bottom: 10px;
        flex-wrap: wrap;
        line-height: 1.4;
    }

    .zen-post-hero h1 {
        font-size: 1.9rem;
        margin-bottom: 12px;
        line-height: 1.15;
    }

    .zen-post-hero-meta {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .zen-post-hero-author {
        padding: 5px 10px 5px 6px;
        gap: 6px;
    }

    .zen-post-hero-author img {
        width: 24px;
        height: 24px;
    }

    .zen-post-hero-author-label {
        font-size: 0.55rem;
    }

    .zen-post-hero-author-name {
        font-size: 0.75rem;
        gap: 3px;
    }

    .zen-post-hero-author-name .verified-badge {
        width: 12px;
        height: 12px;
    }

    .zen-post-hero-date {
        font-size: 0.75rem;
        gap: 5px;
    }

    .zen-post-hero-date svg {
        width: 14px;
        height: 14px;
    }
}
