.blog-detail-hero{
    width:100%;
    height: 50vh;
    max-height: 700px;
    overflow: hidden;
    position:relative;
}

.hero-container{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    filter:drop-shadow(0 0 5px black);
    max-width: 1200px;
    width:100%;
    box-sizing: border-box;
    padding:10px;
}
.hero-container h1{
    color:white;
    font-size: xx-large;
}
.hero-container h3{
    color:white;
    max-width: 500px;
}

.hero-container p{
    color:var(--gray-100);
    font-weight: bold;
}
.blog-detail-hero img{
    width:100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

html.dark .blog-detail-hero img{
    opacity: 0.5;
}
html.dark .hero-container{
    filter: invert(1) drop-shadow(0 0 5px var(--gray-500));
}
.container{
    width:100%;
    box-sizing: border-box;
    padding:10px;
    min-height:100vh;
    max-width: 1200px;
    margin:0 auto;
    
}

.blog-post-prose {
    max-width:500px;
    display: block;
    margin:0 auto;

}

.blog-post-entry{
    color:var(--gray-700) !important;
    font-weight: bold;
}
.blog-post-prose h2{
   color:var(--gray-800);
}
.blog-post-prose p{
    text-align: justify;
    text-justify: auto;
    hyphens: auto;
    color:var(--gray-900);

}

code{
    background-color: var(--gray-100);
    display: block;
    border-radius: 5px;
    max-width: 100%;
    white-space:pre-wrap;
    box-sizing: border-box;
    padding:10px;
    font-weight: bold;
    color:var(--gray-900);
    box-shadow: 0 3px 0 var(--gray-300);
}
@media (width>=768px){
    .blog-post-prose{
        max-width: 700px;
        font-size: 1.1em;
        letter-spacing: -0.01em;
    }
}