/* Таблицы в статьях блога */
.news-detail table,
.blog-detail table,
.detail-text table,
.article-content table {
    width: 100%;
    margin: 28px 0 32px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #dce8ec;
    border-radius: 14px;
    background: #ffffff;
    color: #2f3348;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 8px 24px rgba(47, 51, 72, 0.06);
}

/* Ячейки */
.news-detail table th,
.news-detail table td,
.blog-detail table th,
.blog-detail table td,
.detail-text table th,
.detail-text table td,
.article-content table th,
.article-content table td {
    padding: 14px 18px;
    border-right: 1px solid #dce8ec;
    border-bottom: 1px solid #dce8ec;
    text-align: left;
    vertical-align: top;
}

/* Последняя колонка */
.news-detail table th:last-child,
.news-detail table td:last-child,
.blog-detail table th:last-child,
.blog-detail table td:last-child,
.detail-text table th:last-child,
.detail-text table td:last-child,
.article-content table th:last-child,
.article-content table td:last-child {
    border-right: 0;
}

/* Последняя строка */
.news-detail table tr:last-child td,
.blog-detail table tr:last-child td,
.detail-text table tr:last-child td,
.article-content table tr:last-child td {
    border-bottom: 0;
}

/* Заголовки таблицы */
.news-detail table th,
.blog-detail table th,
.detail-text table th,
.article-content table th {
    background: #00b6db;
    color: #ffffff;
    font-weight: 700;
}

/* Чередование строк */
.news-detail table tbody tr:nth-child(even),
.blog-detail table tbody tr:nth-child(even),
.detail-text table tbody tr:nth-child(even),
.article-content table tbody tr:nth-child(even) {
    background: #f5fbfd;
}

/* Подсветка строки */
.news-detail table tbody tr:hover,
.blog-detail table tbody tr:hover,
.detail-text table tbody tr:hover,
.article-content table tbody tr:hover {
    background: #eaf8fb;
}

/* Ссылки внутри таблиц */
.news-detail table a,
.blog-detail table a,
.detail-text table a,
.article-content table a {
    color: #009cbd;
    font-weight: 600;
    text-decoration: none;
}

.news-detail table a:hover,
.blog-detail table a:hover,
.detail-text table a:hover,
.article-content table a:hover {
    color: #007f9a;
    text-decoration: underline;
}

/* Подпись таблицы */
.news-detail table caption,
.blog-detail table caption,
.detail-text table caption,
.article-content table caption {
    padding: 0 0 12px;
    color: #2f3348;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}