.article-intro {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0 4rem;
    text-align: justify;
}

.article-meta {
    padding: 0 4rem;
}

.article-author-image {
    width: 2.75rem;
    height: 2.75rem;
}
.article-author-image img {
    max-width: 100%;
    max-height: 100%;
}

.recommended-article {
    padding: 0 4rem;
}

.article-body {
    font-size: 18px;
    padding: 0 4rem;
    text-align: justify;
}

.enlarge-on-click {
    position: relative;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;
}

.enlarge-on-click picture {
    position: relative;
    display: block;
    height: auto;
}

.enlarge-on-click picture::before {
    position: absolute;
    content: '';
    speak: never;
    inset: 0 0 0 0;
    background-color: rgba(0, 0, 0, 0.75);
    display: block;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

.enlarge-on-click picture::after {
    position: absolute;
    content: '';
    speak: never;
    inset: calc(50% - 1.5rem) calc(50% - 1.5rem);
    -webkit-mask: url('/assets/images/magnifying-glass-plus.svg') no-repeat center;
    mask: url('/assets/images/magnifying-glass-plus.svg') no-repeat center;
    background-color: #fff;
    width: 3rem;
    height: 3rem;
    display: block;
    transition: all 0.2s ease-in-out;
    opacity: 0;
}

.enlarge-on-click picture:hover::before,
.enlarge-on-click picture:hover::after,
.enlarge-on-click picture:focus-within::before,
.enlarge-on-click picture:focus-within::after {
    opacity: 1;
}

.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    opacity: 0;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.5s ease-in-out;
}

.image-overlay img {
    position: absolute;
    max-width: none;
    max-height: none;
    transition: all 0.5s ease-in-out;
}

.article-block h2,
.article-block h3,
.article-block h4,
.article-block h5,
.article-block h6 {
    color: #222;
    font-size: 1.25rem;
}