/* ========================================
   TAGS SECTION - Generic Reusable
   ======================================== */

.tags-section {
    padding: 1.5rem 2rem;
    background: #F8FAFC;
    border-top: 1px solid #e2e8f0;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.tags-label {
    font-weight: 600;
    color: #718096;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.tag-item {
    background: #4CAF50;
    color: #FFFFFF;
    padding: 0.4rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.tag-item:hover {
    background: #336699;
    transform: translateY(-1px);
    color: #FFFFFF;
    text-decoration: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .tags-section {
        padding: 1rem;
    }
}
