.changelog-headline h1 {
    font-size: 2.5rem;
}

.changelog-archive-container {
    display: flex; 
    gap: 2rem; 
    padding: 6rem 0;
    align-items: flex-start;
}

.changelog-timeline {
    flex: 1;
}

.changelog-timeline-list {
    list-style: none; 
    padding: 0;
}

.changelog-entry {
    display: flex;
    width: 100%;
}
.changelog-entry.hidden {
    display: none;
}
.changelog-entry-date {
    max-width: 8em;
    width: 100%;
    flex: 0 0 8em; 

    padding-right: 4rem;
}
.changelog-entry-date span {
    display: inline-block;
    padding-top: 0.6rem;
    font-size: 1rem;
}
.changelog-entry-content {
    flex: 1 1 0;

    border-left: 1px solid #101A28; 
    padding-left: 4rem;
    padding-bottom: 6rem;

    position: relative;
    display: block;
}
.changelog-entry-content::before {
    content: '';
    display: block;
    width: 1rem;
    height: 1rem;
    border: 1px solid #101A28;
    border-radius: 1rem;
    position: absolute;
    top: 0.6rem;
    left: -0.52rem;
    background: #eff1e9;
    transition: all 0.3s linear;
}
.changelog-entry-excerpt {
    margin: 1rem 0;
    font-size: 1rem;
}
.changelog-entry-content:hover {
    border-bottom: 0 none;
}
.changelog-entry-content:hover h3 {
    text-decoration: underline;
}
.changelog-entry-content:hover::before {
    background: #13D77A;
}
.changelog-entry-content:hover::after {
    height: 0;
    display: none;
}

.changelog-filters {
    width: 300px; 
    background: #fff; 
    border: 1px solid #101A28; 
    border-radius: 1em; 
    padding: 1em;
}

.filter-group h4 {
    font-family: 'pp_moriregular', sans-serif;
    font-size: 1rem;
    margin: 0.5em 0 0.25em 0;
}

.filter-group label, .changelog-entry-tags span, .changelog-taxonomies span {
    padding: 0.25em 1em;
    border: 1px solid #101A28;
    border-radius: 1em;

    font-size: 0.9rem;
    margin: 0.25em 0.5em 0.25em 0;
    display: inline-block;
}
.filter-group label {
    cursor: pointer;
}
.filter-group label:hover {
    background-color: #eff1e9;
}
.filter-group label.checked {
    color: #fff;
    background-color: #101A28;
}
.filter-group label input {
    display: none !important;
}

.changelog-single {
    max-width: 800px; 
    margin: 2rem auto; 
}
.changelog-single, .changelog-single p {
    font-size: 18px;
}
.changelog-single p {
    margin: 1em 0;
}
.changelog-single a {
    text-decoration: underline;
}
.changelog-single a:hover {
    text-decoration: none;
}
.changelog-single a:hover::after {
    display: none;
}
.changelog-single p img {
    margin: 1em 0;
    border-radius: 1em;
}

.changelog-single h1 {
    margin: 2rem 0;
}

.changelog-single h2, .changelog-single h3, .changelog-single h4 {
    margin: 18px 0;
}

.changelog-single ul {
    margin-left: 1em;
}

.changelog-single ul li {
    margin-left: 1em;
}

.changelog-single .changelog-date {
    margin-top: 0;
}

.changelog-taxonomies {
    margin: 2rem 0;
}

a.changelog-backto {
    display: inline-block;
    position: absolute !important;
    left: 0;
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
a.changelog-backto:hover {
    border-bottom: 1px solid #101A28;
}
a.changelog-backto::after {
    display: none !important;
}

@media screen and (max-width: 1249px) {
    a.changelog-backto {
        position: relative !important;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 1024px) {
    .changelog-entry-date {
        max-width: 7em;
        flex: 0 0 7em;
        padding-right: 2rem;
    }

    .changelog-entry-content {
        padding-left: 2rem;
    }
}

@media screen and (max-width: 900px) {
    .changelog-archive-container {
        flex-direction: column;
        padding: 2rem 0;
    }

    .changelog-filters {
        order: 1;
        width: 100%;
    }

    .changelog-timeline {
        order: 2;
    }
}

@media screen and (max-width: 480px) {
    .changelog-entry {
        flex-direction: column;
        margin-bottom: 2rem;
        border-bottom: 1px solid black;
        padding-bottom: 2rem;
    }
    .changelog-entry-date {
        flex: auto;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    .changelog-entry-content::before {
        display: none;
    }
    .changelog-entry-content {
        padding-left: 0;
        border-left: 0 none;
        border-bottom: 0 none;
        padding-bottom: 0;
    }
}