.mv_archive {
    position: relative;
    top: 48px;
    background-image: url(../img/archive-mv.jpeg);
    background-size: cover;
    background-position: center;
    height: 400px;
    /* background-color: #142d1e; */
}
.mv_archive::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #142d1e;
    opacity: 0.5; 
    z-index: 1;
}

.mv_archive_title {
    display: block;
    width: fit-content;
    font-size: 3.5rem;
    font-weight: 600;
    color: #f0f0f0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    top: 50%;
    left: 50%;
    
    
    transform: translate(-50%, -50%);
    z-index: 2;
}

.single_wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
    margin: 100px auto 200px auto;
    max-width: 1280px;
    padding: 0 20px;
}

.category_wrapper {
    margin-top: 1rem;
}

.category.single {
    font-size: 1rem;
    padding: 5px 10px;
    background-color: #142d1e;
    color: #f0f0f0;
    border-radius: 25px;
}


.content_block.single {
    width: 65%;
}

.content_inner {
    max-width: 1020px;
    margin: 0 auto;
}

.category.single {
    margin-right: 1.25rem;
}

.single_thumbnail {
    width: 100%;
}

.category_wrapper.single {
    display: flex;
    margin-bottom: 32px;
    width: 100%;
}




.content_inner > h1, 
.content_inner > h2, 
.content_inner > h3, 
.content_inner > h4 {
    font-weight: 600;
}

.content_inner > h1 {
    font-size: 3.5rem;

}
.content_inner > h2 {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border: 1px solid #E8E8E8;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    margin: 40px 0;
}

.content_inner > h3 {
    font-size: 1.25rem;
    padding: 0.5rem 2rem;
    border-bottom: 1px solid #000;
    position: relative;
    display: flex;
    margin: 30px 0;
    align-items: center;
}

.content_inner > h3::before {
    content: "";
    display: block;
    top: 5px;
    left: 0;
    width: 5px;
    height: 32px;
    margin-right: 1rem;
    background-color: #203E6E;
}

@media screen and (max-width: 992px) {
    
    
}
@media screen and (max-width: 768px) {
   .single_wrapper {
    flex-direction: column-reverse;
    }
.content_block.single {
    width: 65%;
    margin: 0 auto;
    } 
    
}
@media screen and (max-width: 576px) {
    
    
}