.table-tr {
    display: flex;
    gap: 20px;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}
.header.articles {
    height: 300px;
    background: url(../images/header-articles.jpg) no-repeat center center;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.header.articles h1 {
    font-size: 52px;
    line-height: 62px;
    color: #fff;
    text-align: center;
    margin: -10px 0 0 0;
}
.header.articles .data-viewed {
    position: absolute;
    bottom: 50px;
    left: 0;
    color: #fff;
    font-weight: 600;
    width: 100%;
}
.data-viewed {
    display: flex;
    border-bottom: 1px solid #c6c6c6;
    padding-bottom: 6px;
    margin-bottom: 20px;
    gap: 20px;
}
.data-viewed .viewed {
    display: flex;
    align-items: center;
    gap: 8px;
}
.data-viewed .viewed svg {
    width: 20px;
    height: 20px;
}
.article-nav__holder {
    width: 100%;
    max-width: 400px;
    margin: 10px 0 30px;
    padding: 20px 40px;
    background: #f5f5f8;
    border-radius: 12px;
    line-height: 2;
}
.article-nav__title {
    font-size: 18px;
    font-weight: 500;
}
.article-nav {
    margin: 10px 0 10px 15px;
}
.article-nav a {
    text-decoration: none;
    border-bottom: 1px dotted #212121;
    transition: all .25s;
}
.article-nav a:hover {
    border-bottom-color: transparent;
}
.articles-item {
    margin-bottom: 40px;
    border-bottom: 1px solid #ccc;
    width: 100%;
    height: auto;
    padding-bottom: 40px;
}
.articles-item__head {
    display: flex;
    border-bottom: 1px solid var(--secondary-color);
    margin: 0 0 15px 0;
    line-height: 22px;
}
.articles-item .date {
    padding: 0px 15px;
    margin: 5px 10px 10px 0px;
    border-right: 1px solid var(--secondary-color);
    text-align: center;
    color: var(--primary-color);
    font-size: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
}
.articles-item .date .month {
    opacity: 0.7;
    font-size: 16px;
}
.articles-item .author {
    padding: 10px 0;
    font-size: 14px;
    line-height: 18px;
}
.articles-item .author a {
    font-size: inherit;
    color: #00547a;
}
.articles-item .announce {
    margin: 5px 0 10px;
}
.articles-item .read-more {
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid var(--primary-color);
}
.articles-item .read-more:hover {
    border-bottom-color: transparent;
}
.accept-instruction {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.accept-instruction__item {
	padding: 0 7px;
}
.accept-instruction__item img {
	width: 100%;
}
.order-articles {
    width: 660px;
    height: auto;
    padding: 30px 30px 40px;
    background: #fff;
    overflow: hidden;
    position: relative;
    margin: 100px auto;
    box-shadow: 0px 0px 5px 3px #ededed;
}
.full-articles blockquote {
    padding: 30px;
    background: #f5f5f8;
    border-radius: 8px;
    margin: 30px 0;
}
@media (max-width: 767px) {
    .order-articles {width: 300px;}
}

.more-articles{
    margin-bottom: 50px;
}
.more-articles p {
    font-weight:bold;
}
.more-articles ul {
    margin-left: 0px;
}
.more-articles ul li {
    list-style: none;
    font-style: normal;
    margin: 5px 0;
}
