/**
 * WP Community - 圈子社区插件样式
 */

/* 基础变量 */
:root {
    --wpc-primary: #1890ff;
    --wpc-primary-hover: #40a9ff;
    --wpc-secondary: #f5f5f5;
    --wpc-text: #262626;
    --wpc-text-secondary: #595959;
    --wpc-border: #d9d9d9;
    --wpc-border-radius: 8px;
    --wpc-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --wpc-shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.12);
    --wpc-transition: all 0.3s ease;
}

/* 通用容器 */
.wpc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 按钮样式 */
.wpc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    border: 1px solid transparent;
    border-radius: var(--wpc-border-radius);
    cursor: pointer;
    transition: var(--wpc-transition);
    text-decoration: none;
    background: transparent;
}

.wpc-btn-primary {
    background: var(--wpc-primary);
    color: #fff;
    border-color: var(--wpc-primary);
}

.wpc-btn-primary:hover {
    background: var(--wpc-primary-hover);
    border-color: var(--wpc-primary-hover);
    color: #fff;
}

.wpc-btn-secondary {
    background: #fff;
    color: var(--wpc-text);
    border-color: var(--wpc-border);
}

.wpc-btn-secondary:hover {
    border-color: var(--wpc-primary);
    color: var(--wpc-primary);
}

.wpc-btn-block {
    width: 100%;
}

.wpc-btn-sm {
    padding: 4px 12px;
    font-size: 12px;
}

/* 表单样式 */
.wpc-form-group {
    margin-bottom: 20px;
}

.wpc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--wpc-text);
}

.wpc-form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--wpc-text);
    background: #fff;
    border: 1px solid var(--wpc-border);
    border-radius: var(--wpc-border-radius);
    transition: var(--wpc-transition);
}

.wpc-form-control:focus {
    outline: none;
    border-color: var(--wpc-primary);
    box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.2);
}

.wpc-form-control:disabled {
    background: var(--wpc-secondary);
    cursor: not-allowed;
}

.wpc-form-group small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--wpc-text-secondary);
}

.wpc-form-checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.wpc-form-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

/* 消息提示 */
.wpc-error,
.wpc-success,
.wpc-warning,
.wpc-info {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: var(--wpc-border-radius);
    font-size: 14px;
}

.wpc-error {
    background: #fff2f0;
    border: 1px solid #ffccc7;
    color: #cf1322;
}

.wpc-success {
    background: #f6ffed;
    border: 1px solid #b7eb8f;
    color: #389e0d;
}

.wpc-warning {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    color: #d48806;
}

.wpc-info {
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    color: #096dd9;
}

/* 认证页面 */
.wpc-auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.wpc-auth-box {
    width: 100%;
    max-width: 420px;
    padding: 40px;
    background: #fff;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
}

.wpc-auth-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: var(--wpc-text);
}

.wpc-auth-desc {
    text-align: center;
    color: var(--wpc-text-secondary);
    margin-bottom: 20px;
}

.wpc-auth-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--wpc-border);
}

.wpc-auth-links a {
    color: var(--wpc-primary);
    text-decoration: none;
}

.wpc-auth-links a:hover {
    text-decoration: underline;
}

.wpc-divider {
    margin: 0 10px;
    color: var(--wpc-border);
}

/* 用户中心 */
.wpc-user-center {
    max-width: 1000px;
    margin: 0 auto;
}

.wpc-user-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
    background: #fff;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
    margin-bottom: 30px;
}

.wpc-user-avatar-large img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.wpc-user-info {
    flex: 1;
}

.wpc-user-name {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wpc-text);
}

.wpc-user-bio {
    color: var(--wpc-text-secondary);
    margin-bottom: 20px;
}

.wpc-user-stats {
    display: flex;
    gap: 30px;
}

.wpc-stat-item {
    text-align: center;
}

.wpc-stat-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--wpc-text);
}

.wpc-stat-label {
    font-size: 14px;
    color: var(--wpc-text-secondary);
}

.wpc-user-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 标签页 */
.wpc-user-tabs {
    background: #fff;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
    overflow: hidden;
}

.wpc-tabs-header {
    display: flex;
    border-bottom: 1px solid var(--wpc-border);
}

.wpc-tab-item {
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--wpc-text-secondary);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: var(--wpc-transition);
}

.wpc-tab-item:hover,
.wpc-tab-item.active {
    color: var(--wpc-primary);
    border-bottom-color: var(--wpc-primary);
}

.wpc-tabs-content {
    padding: 24px;
}

.wpc-tab-pane {
    display: none;
}

.wpc-tab-pane.active {
    display: block;
}

/* 帖子列表 */
.wpc-post-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpc-post-item {
    padding: 20px;
    background: var(--wpc-secondary);
    border-radius: var(--wpc-border-radius);
    transition: var(--wpc-transition);
}

.wpc-post-item:hover {
    box-shadow: var(--wpc-shadow-hover);
}

.wpc-post-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.wpc-author-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.wpc-author-info {
    display: flex;
    flex-direction: column;
}

.wpc-author-name {
    font-weight: 500;
    color: var(--wpc-text);
    text-decoration: none;
}

.wpc-author-name:hover {
    color: var(--wpc-primary);
}

.wpc-post-time {
    font-size: 12px;
    color: var(--wpc-text-secondary);
}

.wpc-post-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.wpc-post-title a {
    color: var(--wpc-text);
    text-decoration: none;
}

.wpc-post-title a:hover {
    color: var(--wpc-primary);
}

.wpc-post-excerpt {
    color: var(--wpc-text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.wpc-post-images {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.wpc-post-image {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    overflow: hidden;
}

.wpc-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpc-post-image-more {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
}

.wpc-post-topics {
    margin-bottom: 12px;
}

.wpc-topic-tag {
    display: inline-block;
    padding: 4px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--wpc-primary);
    background: rgba(24, 144, 255, 0.1);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--wpc-transition);
}

.wpc-topic-tag:hover {
    background: var(--wpc-primary);
    color: #fff;
}

.wpc-post-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--wpc-text-secondary);
}

.wpc-post-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.wpc-post-meta .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* 圈子卡片 */
.wpc-circle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.wpc-circle-card {
    background: #fff;
    border-radius: var(--wpc-border-radius);
    overflow: hidden;
    box-shadow: var(--wpc-shadow);
    transition: var(--wpc-transition);
}

.wpc-circle-card:hover {
    box-shadow: var(--wpc-shadow-hover);
    transform: translateY(-2px);
}

.wpc-circle-cover {
    height: 140px;
    overflow: hidden;
}

.wpc-circle-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpc-circle-info {
    padding: 16px;
}

.wpc-circle-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.wpc-circle-name a {
    color: var(--wpc-text);
    text-decoration: none;
}

.wpc-circle-name a:hover {
    color: var(--wpc-primary);
}

.wpc-circle-desc {
    font-size: 13px;
    color: var(--wpc-text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.wpc-circle-stats {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: var(--wpc-text-secondary);
}

/* 圈子页面布局 */
.wpc-circles-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.wpc-circles-main {
    min-width: 0;
}

.wpc-circles-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpc-widget {
    background: #fff;
    padding: 20px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
}

.wpc-widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--wpc-border);
}

.wpc-topic-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* 帖子详情页 */
.wpc-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.wpc-post-header-detail {
    background: #fff;
    padding: 30px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
    margin-bottom: 20px;
}

.wpc-post-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.wpc-post-circle-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(24, 144, 255, 0.1);
    color: var(--wpc-primary);
    border-radius: 4px;
    font-size: 13px;
    text-decoration: none;
}

.wpc-post-circle-tag:hover {
    background: var(--wpc-primary);
    color: #fff;
}

.wpc-post-title-large {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.wpc-post-author-detail {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wpc-author-avatar-large img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.wpc-author-info-large {
    display: flex;
    flex-direction: column;
}

.wpc-author-name-large {
    font-size: 16px;
    font-weight: 600;
    color: var(--wpc-text);
    text-decoration: none;
}

.wpc-author-level {
    font-size: 12px;
    color: var(--wpc-text-secondary);
}

.wpc-post-content {
    background: #fff;
    padding: 30px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
    margin-bottom: 20px;
    line-height: 1.8;
}

.wpc-post-images-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.wpc-post-image-large {
    border-radius: 8px;
    overflow: hidden;
}

.wpc-post-image-large img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.wpc-post-topics-detail {
    background: #fff;
    padding: 20px 30px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
    margin-bottom: 20px;
}

.wpc-topics-label {
    font-weight: 500;
    margin-right: 8px;
}

.wpc-post-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.wpc-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--wpc-border);
    border-radius: var(--wpc-border-radius);
    cursor: pointer;
    transition: var(--wpc-transition);
}

.wpc-action-btn:hover {
    border-color: var(--wpc-primary);
    color: var(--wpc-primary);
}

.wpc-action-btn.liked {
    background: var(--wpc-primary);
    border-color: var(--wpc-primary);
    color: #fff;
}

/* 评论区 */
.wpc-comments-section {
    background: #fff;
    padding: 30px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
}

.wpc-comments-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wpc-comment-form {
    margin-bottom: 30px;
}

.wpc-comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wpc-comment-item {
    display: flex;
    gap: 16px;
}

.wpc-comment-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.wpc-comment-body {
    flex: 1;
}

.wpc-comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.wpc-comment-author {
    font-weight: 500;
    color: var(--wpc-text);
    text-decoration: none;
}

.wpc-comment-time {
    font-size: 12px;
    color: var(--wpc-text-secondary);
}

.wpc-comment-content {
    line-height: 1.6;
    margin-bottom: 8px;
}

.wpc-comment-actions {
    display: flex;
    gap: 16px;
}

.wpc-comment-actions button {
    font-size: 13px;
    color: var(--wpc-text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.wpc-comment-actions button:hover {
    color: var(--wpc-primary);
}

.wpc-comment-replies {
    margin-top: 16px;
    padding-left: 20px;
    border-left: 2px solid var(--wpc-border);
}

.wpc-reply-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.wpc-reply-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.wpc-reply-body {
    flex: 1;
}

.wpc-reply-form {
    margin-top: 12px;
}

/* 会员中心 */
.wpc-member-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
}

.wpc-member-sidebar {
    background: #fff;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
    overflow: hidden;
}

.wpc-member-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.wpc-member-menu li {
    border-bottom: 1px solid var(--wpc-border);
}

.wpc-member-menu li:last-child {
    border-bottom: none;
}

.wpc-member-menu a {
    display: block;
    padding: 16px 20px;
    color: var(--wpc-text);
    text-decoration: none;
    transition: var(--wpc-transition);
}

.wpc-member-menu a:hover,
.wpc-member-menu li.active a {
    background: rgba(24, 144, 255, 0.05);
    color: var(--wpc-primary);
}

.wpc-member-content {
    background: #fff;
    padding: 30px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
}

.wpc-avatar-preview {
    text-align: center;
    margin-bottom: 20px;
}

.wpc-avatar-preview img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* 话题页面 */
.wpc-topics-header {
    text-align: center;
    margin-bottom: 40px;
}

.wpc-topics-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.wpc-topics-header p {
    color: var(--wpc-text-secondary);
}

.wpc-hot-topics {
    background: #fff;
    padding: 30px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
    margin-bottom: 30px;
}

.wpc-hot-topics h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wpc-topic-cloud-large {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wpc-topic-tag-large {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(24, 144, 255, 0.1);
    color: var(--wpc-primary);
    border-radius: 20px;
    text-decoration: none;
    transition: var(--wpc-transition);
}

.wpc-topic-tag-large:hover {
    background: var(--wpc-primary);
    color: #fff;
}

.wpc-topic-count {
    font-size: 12px;
    opacity: 0.8;
}

.wpc-all-topics {
    background: #fff;
    padding: 30px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
}

.wpc-all-topics h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wpc-topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.wpc-topic-card {
    padding: 20px;
    background: var(--wpc-secondary);
    border-radius: var(--wpc-border-radius);
    transition: var(--wpc-transition);
}

.wpc-topic-card:hover {
    background: rgba(24, 144, 255, 0.1);
}

.wpc-topic-link {
    text-decoration: none;
    color: inherit;
}

.wpc-topic-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--wpc-primary);
}

/* 空状态 */
.wpc-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--wpc-text-secondary);
}

.wpc-empty-state p {
    margin-bottom: 16px;
}

/* 分页 */
.wpc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
}

.wpc-pagination a,
.wpc-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: var(--wpc-transition);
}

.wpc-pagination a {
    background: #fff;
    border: 1px solid var(--wpc-border);
    color: var(--wpc-text);
}

.wpc-pagination a:hover {
    border-color: var(--wpc-primary);
    color: var(--wpc-primary);
}

.wpc-pagination span.current {
    background: var(--wpc-primary);
    color: #fff;
}

.wpc-pagination span.dots {
    border: none;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .wpc-circles-layout,
    .wpc-post-layout,
    .wpc-member-layout {
        grid-template-columns: 1fr;
    }

    .wpc-user-header {
        flex-direction: column;
        text-align: center;
    }

    .wpc-user-stats {
        justify-content: center;
    }

    .wpc-circle-grid {
        grid-template-columns: 1fr;
    }

    .wpc-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wpc-post-images {
        flex-wrap: wrap;
    }

    .wpc-post-image,
    .wpc-post-image-more {
        width: calc(33.333% - 6px);
        height: 100px;
    }
}

/* 发布帖子表单 */
.wpc-post-form-container {
    background: #fff;
    padding: 24px;
    border-radius: var(--wpc-border-radius);
    box-shadow: var(--wpc-shadow);
    margin-bottom: 20px;
}

.wpc-post-form-container h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* 登录提示 */
.wpc-login-to-comment {
    text-align: center;
    padding: 30px;
    background: var(--wpc-secondary);
    border-radius: var(--wpc-border-radius);
}

.wpc-login-to-comment a {
    color: var(--wpc-primary);
    text-decoration: none;
}

/* 侧边栏作者信息 */
.wpc-author-widget {
    text-align: center;
}

.wpc-author-widget-avatar {
    margin-bottom: 16px;
}

.wpc-author-widget-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.wpc-author-widget-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.wpc-author-widget-name a {
    color: var(--wpc-text);
    text-decoration: none;
}

.wpc-author-widget-bio {
    font-size: 13px;
    color: var(--wpc-text-secondary);
    margin-bottom: 16px;
}

.wpc-author-widget-actions {
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* 相关帖子 */
.wpc-related-posts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wpc-related-post {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--wpc-border);
}

.wpc-related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wpc-related-post a {
    display: block;
    color: var(--wpc-text);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
}

.wpc-related-post a:hover {
    color: var(--wpc-primary);
}

.wpc-related-post-time {
    font-size: 12px;
    color: var(--wpc-text-secondary);
}

/* 话题列表 */
.wpc-topic-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wpc-topic-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--wpc-secondary);
    border-radius: 4px;
    color: var(--wpc-text);
    text-decoration: none;
    font-size: 14px;
    transition: var(--wpc-transition);
}

.wpc-topic-item:hover {
    background: rgba(24, 144, 255, 0.1);
    color: var(--wpc-primary);
}

/* 推荐圈子 */
.wpc-recommended-circles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wpc-recommended-circle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--wpc-border);
}

.wpc-recommended-circle:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wpc-recommended-circle a {
    color: var(--wpc-text);
    text-decoration: none;
    font-weight: 500;
}

.wpc-recommended-circle a:hover {
    color: var(--wpc-primary);
}

.wpc-recommended-circle span {
    font-size: 12px;
    color: var(--wpc-text-secondary);
}
