.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    transition: opacity 0.2s ease;
}

.popular-post-item:hover {
	opacity: 0.8;
}

.popular-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-thumb {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
}

.popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.popular-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.popular-content h4 {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
}

.popular-content .popular-date {
    font-size: 13px;
    color: #6b7280;
}

/* Category List Widget Styles */
.xy-category-list-wrapper {
    background-color: #ffffff;
    border: 1px solid #f9fafb;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.xy-category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.xy-category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.xy-category-item a:hover {
    opacity: 0.8;
}

.xy-category-name {
    color: #1a7b3b;
    font-size: 15px;
    font-weight: 500;
}

.xy-category-count {
    color: #4b5563;
    font-size: 15px;
}
