.cad-sports-sidebar {
    width: 100%;
}

.cad-sidebar-widget {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    border: 1px solid #f1f5f9;
}

.cad-sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}


.cad-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #ef4444; 
}

.cad-sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cad-sidebar-post {
    display: flex;
    gap: 14px;
    align-items: flex-start; 
    padding-bottom: 16px;
    border-bottom: 1px solid #f8fafc;
}

.cad-sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cad-sidebar-post-img-link {
    flex-shrink: 0;
    display: block;
    width: 85px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
}

.cad-sidebar-post-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cad-sidebar-post-img-link:hover img {
    transform: scale(1.05);
}

.cad-sidebar-content {
    flex-grow: 1;
}

.cad-sidebar-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.cad-sidebar-content h4 a {
    text-decoration: none;
    color: #1e293b;
    transition: color 0.2s ease;
}

.cad-sidebar-content h4 a:hover {
    color: #f59e0b;
}

.cad-sidebar-content span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* =========================================================
   WIDGET 3: SOCIAL SHARE & FOLLOW STYLES
========================================================= */
.cad-sidebar-social-share {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.cad-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cad-share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    color: #ffffff;
}

.cad-whatsapp { background-color: #25d366; }
.cad-twitter { background-color: #000000; }
.cad-telegram { background-color: #2497d4; }

.cad-sidebar-social-follow {
    border-top: 1px dashed #e2e8f0;
    padding-top: 15px;
}

.cad-follow-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
}

.cad-follow-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cad-follow-item {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.cad-f-wa {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}
.cad-f-wa:hover { background: #dcfce7; }

.cad-f-tg {
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd;
}
.cad-f-tg:hover { background: #e0f2fe; }


/* =========================================================
   WIDGET 5: ADVERTISEMENT SLOT STYLES
========================================================= */
.cad-ads-widget {
    background: #f8fafc !important; 
    border: 1px dashed #cbd5e1 !important;
    text-align: center;
    padding: 15px !important;
}

.cad-ad-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 10px;
}

.cad-ad-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    max-width: 300px;
    margin: 0 auto;
}

.cad-ad-wrapper a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); 
    transition: transform 0.2s ease;
}

.cad-ad-wrapper a:hover {
    transform: scale(1.02);
}

.cad-ad-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
}