.article-grid {
    padding-left: 8rem;
    padding-right: 8rem;
}

@media (max-width:1200px){
    .article-grid {
        padding-left: 0;
        padding-right: 0;
    }
}

.article-main-title {
    font-size: 21pt;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.article-sub-title {
    font-size: 16pt;
    font-weight: normal;
    color: #cfcfcf;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.article-page {
    font-size: 21pt;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background-color: transparent;
    color: white;
}

@media (max-width:1000px){
    .article-main-title {
        font-size: 16pt;
    }

    .article-sub-title {
        font-size: 14pt;
    }

    .article-page {
        font-size: 16pt;
    }
}



.article-page.article-page-selected {
    background-color: rgb(124,202,229);
}

.article-page-chevron-left, .article-page-chevron-right {
    font-size: 21pt;
    font-weight: bold;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background-color: transparent;
    color: white;
}

.article-page:not(.article-page-selected):not(.article-page-static):hover, .article-page-chevron-left:hover, .article-page-chevron-right:hover {
    background-color: rgba(124,202,229, 0.5);
    cursor: pointer;
}

@media (max-width:1000px){
    .article-page-chevron-left, .article-page-chevron-right, .article-page {
        width: 48px;
        height: 48px;
        border-radius: 24px;
    }
}

.article-link {
    text-decoration: none;
}

.article-link > [node='thumbnail'] {
    height: auto;
    width: 100%;

    max-height: 400px;

    aspect-ratio: 1 / 1;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.article-empty {
    color: white;
    font-size: 24pt;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
}