:root {
    --base-font-family: 'Inter', var(--sys-font-family), var(--zh-font-family), sans-serif;
}

button.pswp__button--share {
    display: none;
}
.article-content figure.gallery-image img {
    max-width: none;
    width: 100%;
}
html .article-list article .article-image img {
    height: auto;
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: contain;
}
.article-page .main-article .article-header .article-image img {
    max-height: none;
}

html .article-list--compact article > a {
    align-items: flex-start;
}
html .article-list--compact article .article-image {
    max-width: 33%;
    flex: 0 0 auto;
}
html .article-list--compact article .article-image img {
    width: 100%;
    height: auto;
}
.page .tagCloud-tags {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 1em;
    row-gap: 1em;  
}
.page .tagCloud-tags a {
    display: flex;
    font-size: 1.8rem;
    padding: 18px 25px;
    border-radius: var(--card-border-radius);
}
.tagCloud-title {
    font-weight: bold;
    flex: 1;
}
.tagCloud-count {
    color: var(--card-text-color-tertiary);
}

.article-page .main.main {
    max-width: 820px; 
}

@media (min-width:1288px) {
    
    .page .tagCloud-tags {
        grid-template-columns: 1fr 1fr; 
    }
}

@media (max-width: 900px) { 
    
    .article-content .gallery {
        display: block;
    }
    .article-content figure.gallery-image {
        margin-bottom: 1em;
        width: auto;
    }
}