#navTable {
    display: flex;
}

#navTable tbody {
    display: flex;
}

#navTable tbody tr {
    display: flex;
}

#navTable #nav {
    width: auto;
    border: none;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#navTable #nav li {
    position: relative;
    padding: 0 6px;
}

#navTable #nav li:first-child {
    padding-left: 0;
}

#navTable #nav li:after {
    position: absolute;
    right: 0;
    top: 4px;
    content: "";
    display: block;
    height: 14px;
    width: 0;
    border-right: 1px solid var(--blue);
}

#navTable #nav li:last-child:after {
    display: none;
}

#navTable #nav li a {
    text-decoration: none;
}

.articles-items {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 4%;
    width: 860px;
    max-width: 100%;
    margin: 60px auto;
}

.article-item {
    display: flex;
    width: 100%;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .article-item {
        justify-content: center;
    }
}

.article-image img {
    width: 106px;
    height: 106px;
    object-fit: cover;
    object-position: center;
    min-width: 106px;
    border-radius: 8px;
}

.article-title {
    font-family: 'DM Sans';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-bottom: 10px;
}

.article-description {
    color: rgba(26, 25, 30, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%; 
    margin-bottom: 10px;
}

.article-action {
    display: flex;
}

.tableOM {
    display: flex;
}

.tableOM thead {
    display: none;
}

.tableOM tbody {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 5%;
}

.tableOM tbody tr {
    display: flex;
    flex-direction: column;
    width: 45%;
    border: 2px solid #E8E8E8;
    border-radius: 6px;
    padding: 5px 10px;
}

@media screen and (max-width: 768px) {
    .tableOM tbody tr {
        width: 100%;
        align-items: center;
        text-align: center;
    }
}

.tableOM tbody tr td:nth-child(1) {
    order: 2;
    color: rgba(26, 25, 30, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 160%;
    margin-bottom: 5px;
}

.tableOM tbody tr td:nth-child(2) {
    order: 1;
    font-family: 'DM Sans';
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}

.tableOM tbody tr td:nth-child(2) b {
    font-weight: 500;
}

.tableOM tbody tr td:nth-child(2) a {
    color: var(--black);
    text-decoration: none;
}

.tableOM tbody tr td:nth-child(2) a:hover {
    color: var(--blue);
}