.article-container {
    min-width: 100dvw;
    min-height: 100dvh;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(6.6rem);
    z-index: 1;
}

/* If you want content on top of the blurred background */
.article-container > * {
    position: relative;
    z-index: 2;
}

.article-container article .article-navigation {
    position: absolute;
    top: 2.14rem;
    left: 6.6%;
    z-index: 3;
    width: fit-content;
    height: fit-content;
    animation: navIn 1.66s ease-out;
}

.article-container article .article-navigation:hover {
    border-bottom: 1px solid white;
}

@keyframes navIn {
    from {
        opacity: 0;
        transform: translateY(200%);
    }
    41% {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-container article .article-navigation a{
    width: fit-content;
    height: fit-content;
    text-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    font-weight: bold;
}

.article-container article img{
    object-fit: cover;
    width: 89%;
    height: auto;
    max-height: 26dvh;
    margin: 4.1rem 5.5% 0 5.5%;
    border-radius: 14px;
    animation: imageIn 0.89s ease-in;
}

@keyframes imageIn {
    from {
        width: 100%;
        height: 100dvh;
        max-height: none;
        margin: 0;
        border-radius: 0;
    }
    99% {
        width: 89%;
        height: 266px;
        max-height: none;
    }
    to {
        width: 89%;
        max-height: 26dvh;
        margin: 2.6rem 5.5% 0 5.5%;
        border-radius: 1.4rem;
    }
}

.article-container article header {
    width: 89%;
    max-width: 1441px;
    margin: 1rem auto;
    text-align: center;
    color: white;
    font-weight: bold;
    animation: headerIn 1.66s ease-out;
}

.article-container article header h1{
    font-size: 2.22rem;
    font-weight: bold;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-container article header p{
    font-size: 1.14rem;
    font-weight: 500;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: headerIn 1.66s ease-out;
}

@keyframes headerIn {
    from {
        opacity: 0;
        transform: translateY(-200%);
    }
    41% {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-container article .article-content {
    width: 89%;
    max-width: 1441px;
    margin: 0.41rem auto;
    font-size: 1.26rem;
    line-height: 1.26;
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
    animation: textIn 1.89s ease-in-out;
}

@keyframes textIn {
    from {
        opacity: 0;
        line-height: 26;
    }
    41% {
        opacity: 0;
        line-height: 26;
    }
    to {
        opacity: 1;
        line-height: 1.26;
    }
}

@media (max-width: 768px) {
    .article-container article header h1 {
        font-size: 2rem;
    }

    .article-container article header p {
        font-size: 1.14rem;
    }

    .article-container article .article-content {
        font-size: 1.2rem;
    }
}