<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.container{
    margin-top: 0;
}
.featured-hero{
    margin-top: 10vh;
    font-size: 0;
    width: 100%;
    position: relative;
}
.featured-hero .title{
    position: absolute;
    width: 100%;
    text-align: center;
    padding: 1rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 1;
}
.featured-hero .featured-img img{
    width: 100%;
    max-width: unset;
    aspect-ratio: 5/1;
    object-fit: cover;
}
.featured-hero .featured-img::after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 52, 54,0.6);
    z-index: 0;
}
.post img{
    max-width: 100%;
}
.post .featured-img{
    display: flex;
    justify-content: center;
    overflow: auto;
}
.post .header{
    text-align: center;
    display: flex;
    justify-content: center;
}
.post .header .title{
    font-size: 3.5rem;
    font-weight: bold;
}
.post .header .author{
    font-size: 2rem;
}
.post .header .author .text-muted{
    font-weight: lighter;
    font-style: italic;
    color: #535353;
}
.post .header .date{
    font-size: 2rem;
    font-weight: lighter;
    font-style: italic;
    color: #535353;
}
.post .header .inner{
    padding: 1rem 2rem;
    border-bottom: var(--nav-border-height, 0px) solid var(--nav-border-color);
}
.post .body{
    font-size: 2rem;
}



@media (max-width: 1200px) {
    .featured-hero .title h1{
        font-size: 3rem;
    }
}
@media (max-width: 1024px) {

}

@media (max-width: 768px) {
    .post .header .title{
        display: none;
    }
    .featured-hero .title h1{
        font-size: 2rem;
    }
    .featured-hero .featured-img img{
        aspect-ratio: 2/1;
    }
}
</pre></body></html>