/* Haber Detay Sayfası CSS */
:root {
    --article-text-color: #333;
    --article-bg-color: #fff;
    --article-border-color: #eee;
    --article-quote-color: #666;
    --article-quote-border: #e30613;
    --article-link-color: #e30613;
    --article-tag-bg: #f5f5f5;
    --article-tag-color: #666;
    --article-meta-color: #777;
    --article-share-bg: #f9f9f9;
    --article-comment-bg: #f9f9f9;
    --article-comment-border: #eee;
    --article-related-bg: #f9f9f9;
}

body.dark-theme {
    --article-text-color: #e0e0e0;
    --article-bg-color: #222;
    --article-border-color: #333;
    --article-quote-color: #bbb;
    --article-quote-border: #e30613;
    --article-link-color: #ff6b6b;
    --article-tag-bg: #333;
    --article-tag-color: #ccc;
    --article-meta-color: #aaa;
    --article-share-bg: #2a2a2a;
    --article-comment-bg: #2a2a2a;
    --article-comment-border: #333;
    --article-related-bg: #2a2a2a;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    background-color: var(--article-bg-color);
    border-bottom: 1px solid var(--article-border-color);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--article-meta-color);
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";
    margin: 0 8px;
    color: var(--article-meta-color);
}

.breadcrumb-item a {
    color: var(--article-meta-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--article-link-color);
}

.breadcrumb-item.active {
    color: var(--article-link-color);
}

/* Haber Detay Ana Bölüm */
.news-detail-section {
    padding: 30px 0 60px;
    background-color: var(--bg-color);
}

.news-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.news-detail-main {
    flex: 1;
    min-width: 0;
}

.news-detail-sidebar {
    width: 300px;
}

/* Haber Başlık Alanı */
.news-detail-header {
    margin-bottom: 20px;
}

.news-category-label {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 3px;
    margin-bottom: 15px;
}

.news-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--article-text-color);
    margin-bottom: 15px;
}

.news-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--article-meta-color);
    margin-bottom: 20px;
}

.news-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--article-border-color);
    justify-content: flex-start;
}

.news-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--article-text-color);
}

.author-title {
    font-size: 12px;
    color: var(--article-meta-color);
}

.news-date,
.news-views,
.news-comments {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--article-meta-color);
}

.news-date i,
.news-views i,
.news-comments i {
    font-size: 14px;
}

/* Haber İçerik Alanı */
.news-detail-content {
    background-color: var(--article-bg-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.news-featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    overflow: hidden;
    position: relative;
}

.news-featured-image img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.image-caption {
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 13px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.article-content {
    padding: 30px;
    color: var(--article-text-color);
}

.article-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: var(--article-text-color);
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--article-text-color);
}

.article-content ul,
.article-content ol {
    margin: 0 0 20px 20px;
    padding: 0;
}

.article-content li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.article-content a {
    color: var(--article-link-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.article-content a:hover {
    border-color: var(--article-link-color);
}

.article-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid var(--article-quote-border);
    background-color: var(--article-tag-bg);
    font-style: italic;
    color: var(--article-quote-color);
}

.article-content blockquote p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 5px;
}

.article-content figure {
    margin: 30px 0;
}

.article-content figcaption {
    font-size: 14px;
    color: var(--article-meta-color);
    text-align: center;
    margin-top: 10px;
}

/* Haber Etiketleri */
.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--article-border-color);
}

.news-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: var(--article-tag-bg);
    color: var(--article-tag-color);
    font-size: 13px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-tag:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Paylaşım Alanı */
.news-share {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--article-share-bg);
    border-radius: 5px;
}

.share-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--article-text-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button.telegram {
    background-color: #0088cc;
}

.share-button.linkedin {
    background-color: #0077b5;
}

.share-button.email {
    background-color: #777;
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Yazar Hakkında */
.about-author {
    margin-top: 30px;
    padding: 25px;
    background-color: var(--article-bg-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.about-author-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--article-text-color);
}

.author-card {
    display: flex;
    gap: 20px;
}

.author-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-card-avatar img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.author-card-info {
    flex: 1;
}

.author-card-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--article-text-color);
}

.author-card-title {
    font-size: 14px;
    color: var(--article-meta-color);
    margin-bottom: 10px;
}

.author-card-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--article-text-color);
    margin-bottom: 15px;
}

.author-card-social {
    display: flex;
    gap: 10px;
}

.author-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--article-tag-bg);
    color: var(--article-meta-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.author-social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Koyu tema için yazar hakkında bölümü düzenlemeleri */
body.dark-theme .about-author {
    background-color: var(--article-bg-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.dark-theme .about-author-header {
    color: var(--article-text-color);
}

body.dark-theme .author-card {
    background-color: var(--article-bg-color);
    color: var(--article-text-color);
}

body.dark-theme .author-card-name {
    color: var(--article-text-color);
}

body.dark-theme .author-card-title {
    color: var(--article-meta-color);
}

body.dark-theme .author-card-bio {
    color: var(--article-text-color);
}

body.dark-theme .author-social-link {
    background-color: #333;
    color: #aaa;
}

body.dark-theme .author-social-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Yorumlar Alanı */
.news-comments-section {
    margin-top: 30px;
    background-color: var(--article-bg-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.comments-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--article-text-color);
}

.comment-form {
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: 1px solid var(--article-border-color);
    border-radius: 5px;
    background-color: var(--article-bg-color);
    color: var(--article-text-color);
    font-size: 15px;
    resize: vertical;
    margin-bottom: 15px;
}

.comment-form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-form-inputs {
    display: flex;
    gap: 15px;
    flex: 1;
}

.form-group {
    flex: 1;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--article-border-color);
    border-radius: 5px;
    background-color: var(--article-bg-color);
    color: var(--article-text-color);
    font-size: 14px;
}

.comment-submit {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-submit:hover {
    background-color: #c00;
}

.comments-list {
    margin-top: 30px;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--article-border-color);
}

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-size: 16px;
    font-weight: 500;
    color: var(--article-text-color);
}

.comment-date {
    font-size: 14px;
    color: var(--article-meta-color);
}

.comment-content {
    font-size: 15px;
    line-height: 1.6;
    color: var(--article-text-color);
}

.comment-actions {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.comment-action {
    font-size: 14px;
    color: var(--article-meta-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.comment-action:hover {
    color: var(--primary-color);
}

.comment-replies {
    margin-left: 30px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--article-border-color);
}

/* İlgili Haberler */
.related-news {
    margin-top: 30px;
    background-color: var(--article-bg-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 25px;
}

.related-news-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--article-text-color);
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-news-item {
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.related-news-image {
    height: 150px;
    overflow: hidden;
}

.related-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-news-item:hover .related-news-image img {
    transform: scale(1.05);
}

.related-news-details {
    padding: 15px;
    background-color: var(--article-bg-color);
}

.related-news-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--article-text-color);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--article-meta-color);
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: var(--article-bg-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.widget-header {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--article-text-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Popüler Haberler Widget */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.7;
    line-height: 1;
}

.popular-post-content h4 {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
    color: var(--article-text-color);
}

.popular-post-content .post-meta {
    font-size: 12px;
    color: var(--article-meta-color);
}

/* Anket Widget */
.poll-widget {
    margin-bottom: 30px;
}

.poll-question {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--article-text-color);
}

.poll-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.poll-option {
    display: flex;
    align-items: center;
}

.poll-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: var(--article-text-color);
}

.poll-option input {
    margin-right: 10px;
}

.progress-container {
    height: 8px;
    background-color: var(--article-border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 5px;
    width: 100%;
}

.progress-bar {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 4px;
}

.percentage {
    font-size: 12px;
    color: var(--article-meta-color);
    margin-left: 5px;
}

.poll-submit {
    padding: 8px 15px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.poll-submit:hover {
    background-color: #c00;
}

/* Reklam Widget */
.ad-widget {
    text-align: center;
    margin-bottom: 30px;
}

.ad-content {
    padding: 15px;
    background-color: var(--article-tag-bg);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    position: relative;
}

.ad-content span {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 10px;
    color: var(--article-meta-color);
    text-transform: uppercase;
}

.related-news-image img,
.ad-content img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.ad-content {
    text-align: center;
    position: relative;
}

.ad-content::before {
    content: "Reklam";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: var(--article-meta-color);
}

/* Sonsuz Kaydırma (Infinite Scroll) Stilleri */
.loading-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    margin: 20px 0;
    text-align: center;
}

.loading-indicator .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #e30613;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 10px;
}

.loading-indicator p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.next-news-separator {
    position: relative;
    text-align: center;
    margin: 50px 0;
    height: 1px;
    background-color: #e5e5e5;
}

.next-news-separator span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 500;
    color: #e30613;
}

body.dark-theme .next-news-separator {
    background-color: #444;
}

body.dark-theme .next-news-separator span {
    background-color: #222;
    color: #ff6b6b;
}

body.dark-theme .loading-indicator .spinner {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: #ff6b6b;
}

body.dark-theme .loading-indicator p {
    color: #aaa;
}

/* Responsive Tasarım */
@media (max-width: 991px) {
    .news-detail-container {
        flex-direction: column;
    }

    .news-detail-sidebar {
        width: 100%;
    }

    .news-title {
        font-size: 28px;
    }

    .related-news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .news-title {
        font-size: 24px;
    }

    .news-subtitle {
        font-size: 16px;
    }

    .article-content {
        padding: 20px;
    }

    .article-content p {
        font-size: 16px;
    }

    .comment-form-footer {
        flex-direction: column;
        gap: 15px;
    }

    .comment-form-inputs {
        flex-direction: column;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .news-title {
        font-size: 22px;
    }

    .breadcrumb-list {
        font-size: 12px;
        margin-left: 12px;
    }

    .article-content {
        padding: 15px;
    }

    .article-content p {
        font-size: 15px;
    }

    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-card-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .next-news-separator {
        margin: 30px 0;
    }

    .next-news-separator span {
        font-size: 14px;
        padding: 0 15px;
    }

    .loading-indicator {
        padding: 20px 0;
    }

    .loading-indicator .spinner {
        width: 30px;
        height: 30px;
    }
}

/* Mobil Görünüm */
@media screen and (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .news-detail-container {
        padding: 10px;
    }

    .news-header {
        margin-bottom: 15px;
    }

    .news-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .news-meta {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
    }

    .news-author {
        flex-basis: 100%;
        margin-bottom: 10px;
        text-align: left;
        justify-content: flex-start;
    }

    .news-date,
    .news-views,
    .news-comments {
        font-size: 12px;
        margin-left: 0;
        display: inline-flex;
        align-items: center;
    }

    .news-date i,
    .news-views i,
    .news-comments i {
        font-size: 12px;
    }

    .news-image {
        height: 200px;
        margin: 15px 0;
    }

    .news-content {
        font-size: 16px;
        line-height: 1.6;
    }

    .news-tags {
        flex-wrap: wrap;
        gap: 5px;
    }

    .news-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .comments-section {
        padding: 15px;
    }

    .comment-form textarea {
        height: 100px;
    }

    /* Anket ve Etiket Bloklarını Gizle */
    .sidebar-widget .poll-widget,
    .sidebar-widget .news-tags {
        display: none;
    }

    /* Sidebar widget başlığını da gizle eğer içeriği gizliyse */
    .sidebar-widget:has(.poll-widget),
    .sidebar-widget:has(.news-tags) {
        display: none;
    }

    /* Reklam alanlarını mobilde daha kompakt göster */
    .ad-widget {
        margin: 15px 0;
    }

    .ad-content {
        min-height: 100px;
    }
}

/* Tablet ve Mobil Arası */
@media screen and (min-width: 769px) and (max-width: 1024px) {

    .sidebar-widget .poll-widget,
    .sidebar-widget .news-tags {
        display: block;
        /* Tablet boyutunda göster */
    }
}

/* Daha Küçük Ekranlar */
@media screen and (max-width: 480px) {
    .news-title {
        font-size: 20px;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        font-size: 14px;
    }

    .comment-item {
        padding: 10px;
    }
}

body> :not(header):not(footer) {
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 576px) {
    body> :not(header):not(footer) {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* Infinite Scroll Stilleri */
.page-load-status {
    display: none;
    padding: 20px;
    text-align: center;
    color: #777;
}

.loader-ellips {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
}

.loader-ellips__dot {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: 0.5em;
    background: #555;
    position: absolute;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
    left: 0;
}

.loader-ellips__dot:nth-child(3) {
    left: 1.5em;
}

.loader-ellips__dot:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em)
    }
}

.infinite-scroll-last,
.infinite-scroll-error {
    padding: 20px;
    color: #666;
    font-style: italic;
}

/* Yükleme animasyonu */
.loader-ellips__dot:nth-child(1) {
    animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
    animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

/* Container stil düzenlemeleri */
.infinite-container {
    margin-bottom: 40px;
}

.news-detail-content {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

/* Dark mode uyumluluğu */
[data-theme="dark"] .loader-ellips__dot {
    background: #888;
}

[data-theme="dark"] .news-detail-content {
    border-bottom-color: #444;
}

[data-theme="dark"] .infinite-scroll-last,
[data-theme="dark"] .infinite-scroll-error {
    color: #888;
}