.archive-content-box {
    margin: 20px auto;
    width: 85%;
    max-width: 85%;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(1.5px) saturate(180%);
    -webkit-backdrop-filter: blur(1.5px) saturate(180%);
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.archive-content-box h1 {
    text-align: center;
    font-size: 1.1rem;
}

.archive-content-box :is(h2, h3, h4) {
    margin-bottom: 15px;
    color: #333;
    font-size: 1rem;
}

.archive-content-box p {
    font-size: 0.8rem;
    line-height: 1.9;
    font-variation-settings: "wght" 400;
}

@media (max-width:900px) {
    .archive-content-box {
        width: 95%;
        max-width: 95%;
    }
}