.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.grid-box {
    text-align: center;
}

.grid-box img {
    max-width: 240px;
    width: 100%;
    height: 240px;
    border-radius: 50%;
    /*height: 150px;*/
    object-fit: cover;
}

.author-box img {
    max-width: 140px;
    height: 140px;
}

.grid-img-box {
    /*height: 170px;*/
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.box-new .grid-new-img {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    height: 100% !important;
    object-fit: cover;
}

.grid-year {
    grid-column-start: span 3;
    background: #f4f4f4;
}

.grid-year h2 {
    margin: 0;
    padding: 8px;
    font-weight: bold;
}

.box-new {
    text-align: left;
}

.box-new h2 a {
    color: black;
    font-size: 20px;
}

.box-new h2 a:hover {
    color: #cd6643;
}

.years {
    position: sticky;
    inset: 52px;
}

.years-container {
    display: flex;
    overflow: scroll;
    width: 100%;
    padding: 0;
    background: #f4f4f4;
}

#content .years-container li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.years-container a:link {
    color: black;
    display: block;
    font-size: 16px;
    padding: 10px;
}

.years-container a:visited {
    color: black;
}

.years-container .selected:link, .years-container .selected:visited {
    color: #a85349;
    border-bottom: 2px solid #a85349;
}

.years-container a:link:hover, .years-container a:visited:hover{
    color: #a85349;
    border-bottom: 2px solid #a85349;
}

.home-container {
    padding: 0;
}

.intro {
    font-size: 15px;
    margin-bottom: 30px;
}

.nature {
    text-align: right;
    color: #909090;
    font-weight: bold;
}

.box-new .footer {
    margin-block-start: auto;
    color: #909090;
    font-weight: bold;
    text-align: right;
    font-size: 12px;
    border-top: 1px solid #909090;
}

.box-home-new {
    display: flex;
    flex-direction: column;
}

.archive {
    text-align: right;
}

@media screen and (min-width: 768px) {
    .years {
        inset: 32px;
    }
}

@media screen and (min-width: 1200px) {
    .grid-news {
        padding-inline: 0;
    }
}