/* Single Post Meta */
.single-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.single-meta__author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.single-meta__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.single-meta__author-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.single-meta__author-name {
    font-weight: 600;
    color: var(--theme-primary);
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

.single-meta__author-name:hover {
    color: var(--theme-secondary);
}

.single-meta__details {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.single-meta__sep {
    color: #d1d5db;
}

.single-meta__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.single-meta__category {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(15, 76, 129, 0.08);
    color: var(--theme-primary);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background 0.15s ease;
}

.single-meta__category:hover {
    background: rgba(15, 76, 129, 0.15);
}

@media (max-width: 768px) {
    .single-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Hide desktop category on mobile (shown above title instead) */
    .single-meta__categories {
        display: none;
    }

    .single-meta__author {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .single-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}
