.c961-bn {
    background: white;
    padding: 8px 8px 8px 8px;
}

/* العنوان الفوق */
.c961-bn-header {
    margin-bottom: 20px;
    text-align: right; /* فيك تعملها center إذا بدك العنوان بالنص */
}

.c961-bn-title-link {
    color: #000 !important;        /* أسود */
    text-decoration: none !important; /* بدون underline */
}

.c961-bn-title-link:hover {
    text-decoration: none;
    color: #000;  /* يبقى ثابت */
}

.c961-bn-title {
    position: relative;
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #000;
    padding-right: 30px; /* مساحة للنقطة الحمرا */
}

/* النقطة الحمرا النابضة حد العنوان */
.c961-bn-title::before {
    content: "";
    position: absolute;
    right:8px;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #e8230d;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(232, 35, 13, 0.7);
    animation: c961-bn-pulse 1s infinite;
}

@keyframes c961-bn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(232, 35, 13, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(232, 35, 13, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(232, 35, 13, 0);
    }
}

/* القائمة */
.c961-bn-list {
    margin: 0;
    padding: 0 10px;
}

/* كل خبر – المسافة بين الأخبار */
.c961-bn-item {
    padding: 18px 0;              /* الفراغ بين خط وخط */
    border-bottom: 1px solid #000;
    font-size: 19px;              /* نفس الحجم اللي حاببُه */
}

/* صف الوقت + النص + بوكس ورد الآن */
.c961-bn-row {
    display: flex;
    flex-direction: row;          /* الوقت على اليمين مع RTL */
    align-items: center;          /* يخلي الوقت والنص و"المزيد" على نفس المستوى */
    gap: 15px;
}

/* الوقت */
.c961-bn-time {
    flex: 0 0 auto;
    font-size: 15px;
    color: red;
}

/* الكولومن تبع النص + زر المزيد */
.c961-bn-content {
    flex: 1 1 auto;
    display: flex;
    align-items: center;          /* النص و "المزيد" على نفس الخط */
    gap: 8px;
}

/* النص */
.c961-bn-text {
    display: inline-block;
    vertical-align: top;
    line-height: 1.6;             /* مسافة بين أسطر الرسالة نفسها */
}

/* الروابط بدون underline */
.c961-bn-anchor,
.c961-bn-anchor:visited,
.c961-bn-anchor:hover,
.c961-bn-anchor:focus {
    text-decoration: none;
}

/* أخبار عاديّة + إعلانات → أسود */
.c961-bn-item--plain .c961-bn-text,
.c961-bn-item--plain .c961-bn-anchor,
.c961-bn-item--ad .c961-bn-text,
.c961-bn-item--ad .c961-bn-anchor {
    color: #000000;
}

/* تنبيهات → أحمر */
.c961-bn-item--alert .c961-bn-text,
.c961-bn-item--alert .c961-bn-anchor {
    color: #e60000;
}

/* الرسائل اللي فيها double emoji (ورد الآن) خلي النص تبعها Bold أكتر */
.c961-bn-item--breaking .c961-bn-text,
.c961-bn-item--breaking .c961-bn-anchor {
    font-weight: 700;
}


/* link / photo / video → أخضر */
.c961-bn-item--link  .c961-bn-text,
.c961-bn-item--link  .c961-bn-anchor,
.c961-bn-item--photo .c961-bn-text,
.c961-bn-item--photo .c961-bn-anchor,
.c961-bn-item--video .c961-bn-text,
.c961-bn-item--video .c961-bn-anchor {
    color: #008000;
}

/* زر "المزيد" داخل الخبر الطويل */
.c961-bn-more-toggle {
    border: none;
    background: transparent;
    color: #0073aa;
    font-size: 15px;
    cursor: pointer;
    padding: 0 4px;
    margin-right: 6px;
    align-self: center;
}

.c961-bn-more-toggle:hover,
.c961-bn-more-toggle:focus {
    text-decoration: underline;
}

/* زر + المزيد تحت القائمة */
.c961-bn-load-more-wrap {
    text-align: center;
    margin-top: 16px;
}

.c961-bn-load-more {
    border: 1px solid #e8230d;
    background: #e8230d;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    padding: 8px 32px;
    border-radius: 6px;
}

.c961-bn-load-more:hover,
.c961-bn-load-more:focus {
    background: #c91d0b;
    border-color: #c91d0b;
    color: #ffffff;
}

/* بوكس "ورد الآن" للرسائل ذات الـ double emoji */
.c961-bn-breaking {
    flex: 0 0 auto;
    background: #e8230d;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 3px;
    white-space: nowrap;
}
