
#chartBox {
    width: 100%;
    margin: 0 auto;
}

#chartBox canvas {
    margin: 0 auto;
    width: 100%;
}

#chartBox .chartLabels {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
    gap: 1.5rem;
}

#chartBox .chartLabels .radioButton input {
    display: none;
}

#chartBox .chartLabels .radioButton label {
    display: block;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    font-size: small;
}

#chartBox .chartLabels .radioButton input:checked + label {
    background-color: #ccc;
}

#chartBox .chartLabels .radioButton label:active {
    background-color: #ccc;
}

#download {
    text-align: right;
}

#download button {
    padding: 0.25rem .5rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

#years ul {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-evenly;
    list-style: none;
    padding: 0;
    margin: 0;
}

#years ul li {}

.newspaper {
    margin-top: 3rem;
}
.newspaper_title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.featured {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid transparent;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
}

.featured li {
    position: relative;
    z-index: 2;
    padding: 1rem;
    background-color: #fff;
}

.featured li:first-child {
    grid-row: span 2;
    border-right: 1px solid #DADCE0;
}

.featured li:nth-child(2) {
    grid-column: span 2;
}

.featured li:nth-child(3) {
    grid-column: 2;
    border-right: 1px solid #DADCE0;
}

.featured li:nth-child(3),
.featured li:nth-child(4) {
    border-top: 1px solid #DADCE0;
}

.featured li .thumbnail {}

.featured li .thumbnail img {
    width: 100%;
    object-fit: cover;
    max-height: 10rem;
}

.featured li .content {}

.featured li h3 {
    margin: 0.5rem 0;
}

.featured li h3 div {
    font-size: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: inline-block;
    margin-right: 0.5rem;
    border: 1px solid #ccc;
}

.featured li .content p {
    margin: 0.2rem 0;
}

.featured li .content p,
.featured li .content span {
    font-size: small;
}

.featured li .content p:first-child {
    font-size: 1rem;
}

@media screen and (max-width: 768px) {
    .featured {
        grid-template-columns: 1fr 1fr;
    }

    .featured li:first-child {
        grid-row: auto;
    }

    .featured li:nth-child(2) {
        grid-column: auto;

    }

    .featured li:nth-child(1) img,
    .featured li:nth-child(2) img {
        display: none;
    }

    .featured li:nth-child(3) {
        grid-column: auto;
    }

    .featured li:nth-child(3):before,
    .featured li:nth-child(4):before {
        content: none;
        position: relative;
        top: 0;
        left: 0;
        right: unset;
        border: none;
        user-select: none;
        pointer-events: none;
    }
}

@media screen and (max-width: 600px) {
    .banner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .featured {
        grid-template-columns: 1fr;
    }

    .featured li:nth-child(1) {
        border-bottom: 1px solid #DADCE0;
    }
}