/* Sidebar Blocks Styling - Phase 5 Migration */

/* Featured Columnist Widget */
.sidebar-featured-columnist .featured-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sidebar-featured-columnist .featured-card:hover {
    transform: translateY(-3px);
}

.sidebar-featured-columnist .post-thumb img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.sidebar-featured-columnist .post-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px;
}

.sidebar-featured-columnist .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-featured-columnist .post-title a:hover {
    color: #FF5100;
}

.sidebar-featured-columnist .post-meta {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.sidebar-featured-columnist .post-meta img {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.sidebar-featured-columnist .post-meta a {
    color: inherit;
    text-decoration: none;
}

.sidebar-featured-columnist .post-meta a:hover {
    text-decoration: underline;
}

/* Latest Posts List Widget */
.sidebar-latest-posts-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 5px 0;
}

.sidebar-post-item {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

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

.sidebar-post-item .post-thumb {
    width: 100px;
    flex-shrink: 0;
}

.sidebar-post-item .post-thumb img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.sidebar-post-item .post-content {
    flex: 1;
}

.sidebar-post-item .post-title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 5px;
}

.sidebar-post-item .post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-post-item .post-title a:hover {
    color: #FF5100;
}

.sidebar-post-item .post-meta {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sidebar-post-item .post-meta img {
    width: 12px;
    height: 12px;
    opacity: 0.6;
}
