@media (hover) {
    .article-item a:hover {
        text-decoration: none;
        opacity: 0.7;
    }
    a.card-link-indicator[href]:hover .textcolor {
        text-decoration: none;
    }
}
#header-navigation {
  & a[href*="#list0"] {
    pointer-events: none;
    color: #999999;
  }
}
.anchor-item {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding-block: 1rem;
    border-top: 1px solid var(--tos-gray-40);
    & .triangle {
        display: inline-block;
        width: 21px;
        height: 12px;
        background: var(--tos-blue);
        clip-path: polygon(0 0, 100% 0%, 50% 100%);
    }
}
#main table {
    border-collapse: collapse;

    & tr:not(:last-of-type) {
        border-bottom: 2px solid white;
    }
    & th {
        background-color: var(--tos-gray-40);
        border: none;
    }
    & td {
        background-color: var(--tos-gray-25);
        border: none;
    }
}
.article-item {
    & .claassification-item a {
        display: flex;
        flex-direction: column;
    }
    & .flex-row {
        display: flex;
        flex-direction: row;

        &.flex-vertical-center {
            align-items: center;
        }
    }
    & .article-item-textarea {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        
        &:has(.anchor-item) {
            padding-block-end: 0;
        }
    }

}

@media (min-width: 769px) {
    .article-item-title {
        margin-bottom: 0;
    }
}