/* Sidebar Enhancements: Stay Connected & Popular News */
.stay-connected-panel {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(30, 40, 90, 0.07);
    padding: 1.3rem 1.1rem 1.1rem 1.1rem;
    margin-bottom: 2rem;
}

.stay-connected-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: #1a2233;
}

.stay-connected-btns {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.stay-connected-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 0.8rem;
    padding: 0.7rem 1.1rem;
    color: #fff;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 1px 4px rgba(30, 40, 90, 0.07);
}

.stay-connected-btn:hover {
    box-shadow: 0 4px 16px rgba(30, 40, 90, 0.13);
    transform: translateY(-2px) scale(1.02);
}

.stay-facebook {
    background: #1877f2;
}

.stay-twitter {
    background: #1da1f2;
}

.stay-youtube {
    background: #ff0000;
}

.stay-instagram {
    background: linear-gradient(90deg, #fd1d1d, #fcb045, #833ab4);
}

.stay-newsletter {
    background: #1e5bff;
}

.stay-connected-icon {
    font-size: 1.3rem;
    margin-right: 0.7rem;
}

.stay-connected-count {
    font-size: 1.08rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 0.7rem;
    padding: 0.2rem 0.7rem;
    margin-left: 0.7rem;
}

.popular-news-widget {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(30, 40, 90, 0.07);
    padding: 1.3rem 1.1rem 1.1rem 1.1rem;
}

.popular-news-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    color: #1a2233;
}

.popular-news-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.popular-news-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    position: relative;
}

.popular-news-thumb {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    background: #e9ecef;
    border: 2px solid #f0f0f0;
}

.popular-news-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.popular-news-category {
    font-size: 0.93rem;
    font-weight: 600;
    color: #1e5bff;
    margin-bottom: 0.1rem;
}

.popular-news-title-text {
    font-size: 1.07rem;
    font-weight: 600;
    color: #222;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.popular-news-date {
    font-size: 0.97rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.popular-news-badge {
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    background: #1e5bff;
    color: #fff;
    font-size: 1.02rem;
    font-weight: 700;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(30, 40, 90, 0.13);
}