/*
 * Purple Giraffe - Tag Page Styles
 * Page-specific styles only — common.css + blog.css handle cards, pagination, grid
 */

.pg-tag-header {
    padding: var(--pg-spacing-xl) 0 var(--pg-spacing-lg);
    text-align: center;
}

.pg-tag-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--pg-border-radius-lg);
    margin-bottom: var(--pg-spacing-md);
}

.pg-tag-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pg-black);
    margin: 0 0 var(--pg-spacing-xs) 0;
}

.pg-tag-description {
    font-size: 1.05rem;
    color: var(--pg-dark-gray);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .pg-tag-name {
        font-size: 1.5rem;
    }

    .pg-tag-image {
        max-height: 200px;
    }
}
