/* Tag Cloud Widget Styling - Sidebar */
.widget_tag_cloud {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
    clear: both;
    overflow: hidden;
    margin-bottom: 30px;
}

.widget_tag_cloud .widget-title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.widget_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget_tag_cloud .tagcloud > a {
    align-items: center;
    background-color: #f5f5f5;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    color: #555;
    display: inline-flex;
    font-size: 13px !important;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 6px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget_tag_cloud .tagcloud > a:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Article Tags Styling - Post Page */
.article-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}

.article-categories::before {
    content: "Tags：";
    font-weight: 600;
    color: #333;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.article-categories a {
    align-items: center;
    background-color: #f5f5f5;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    color: #555;
    display: inline-flex;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    padding: 6px 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-categories a:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Dark Mode Support */
.ripro-dark .widget_tag_cloud {
    background-color: #1a1a1a;
}

.ripro-dark .widget_tag_cloud .tagcloud > a {
    background-color: #232425;
    border: 1px solid #171616;
    color: #999;
}

.ripro-dark .widget_tag_cloud .tagcloud > a:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.ripro-dark .article-categories {
    border-top-color: #232425;
    border-bottom-color: #232425;
}

.ripro-dark .article-categories::before {
    color: #ccc;
}

.ripro-dark .article-categories a {
    background-color: #232425;
    border: 1px solid #171616;
    color: #999;
}

.ripro-dark .article-categories a:hover {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .widget_tag_cloud {
        padding: 15px;
    }

    .article-categories {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-categories::before {
        margin-bottom: 8px;
    }
}
