.artTable{
    border-collapse: collapse;
    border: 1px solid black;
    font-size: 12px;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}


.artTable tr td,
.artTable tr th{
    border: 1px solid black;
    padding: 7px;
    text-align: center;
}
.artTable tr th{
    background-color: #FEBC00;
    font-weight: 500;
}

.artTable tr td:first-child{
    text-align: left;
}
.artTable tr td:nth-child(1) {
    width: 20%
}

.artTable tr td:nth-child(2) {
    width: 40%
}
.artTable tr td:nth-child(3) {
    width: 40%
}
.artTable tr td ul{
    text-align: left;
}

/* Socials bar — like + share */
#container .content .article .article__socials {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 16px 25px;
    margin-top: 30px;
    background: #f8f8f8;
    border-radius: 8px;
    font-family: 'Circe', sans-serif;
    font-size: 13px;
    line-height: 1;
    color: #666;
}
#container .content .article .article__socials .article__like {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
}
#container .content .article .article__socials .article__like p {
    margin: 0;
    font-size: 13px;
    line-height: 1;
}
#container .content .article .article__socials .article__socials-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
    margin: 0 18px;
}
#container .content .article .article__socials .article__share {
    display: flex;
    align-items: center;
    gap: 8px;
}
#container .content .article .article__socials .article__share-label {
    font-size: 13px;
    color: #666;
}
#container .content .article .article__socials .article__share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    transition: transform 0.15s, opacity 0.15s;
}
#container .content .article .article__socials .article__share-btn:hover {
    opacity: 0.85;
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}
.article__share-vk {
    background-color: #0077FF;
}
.article__share-ok {
    background-color: #EE8208;
}

@media (max-width: 480px) {
    #container .content .article .article__socials {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 14px 15px;
    }
    #container .content .article .article__socials .article__socials-divider {
        display: none;
    }
}

/* Prev/Next article navigation */
.article__nav {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}
.article__nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    text-decoration: none;
    color: inherit;
    padding: 15px;
    border-radius: 6px;
    transition: background-color 0.2s;
}
.article__nav-item:hover {
    background-color: #f5f5f5;
    text-decoration: none;
    color: inherit;
}
.article__nav-next {
    flex-direction: row-reverse;
    text-align: right;
    margin-left: auto;
}
.article__nav-img {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}
.article__nav-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.article__nav-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}
.article__nav-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article__nav-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article__nav-item:hover .article__nav-title {
    color: #000;
}

@media (max-width: 768px) {
    .article__nav {
        flex-direction: column;
        gap: 15px;
    }
    .article__nav-next {
        flex-direction: row;
        text-align: left;
    }
    .article__nav-img {
        width: 90px;
        height: 60px;
    }
}