.f-img{
    width: 800px; 
    margin: 0 auto;
    margin-bottom: 24px;
}

.f-img img{
    height: 350px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--svg-shadow);
}
.author{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.a-img{
    padding: 7px;
    box-shadow: var(--primary-shadow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    width: fit-content;
    justify-content: center;
    margin-bottom: 12px;
}
.a-img img{
    height: 35px;
    width: 35px;
    border-radius: 5px;
}
.sep{
    height: 5px;
    width: 5px;
    background-color: rgb(67, 67, 67);
}
.a-text{
    display: flex;
    gap: 20px;
    align-items: center;
}
.a-text h4, .a-text span{
    text-transform: capitalize;
    color: rgb(93, 93, 93);
    font-size: 15px;
}
.sec-header h2{
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 16px;
}
.sec-header p{
    width: 800px;
    line-height: 28px;
}
.sec-header{
    border-bottom: 3px dotted #c9c9c9;
    padding-bottom: 20px;
}
.blog-content{
    width: 800px;
}
.blog-content h3{
    font-size: 28px;
}
.blog-content ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.blog-content img{
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    box-shadow: var(--svg-shadow);
}
.blog-content p{
    line-height: 26px;
}
.wp-block-gallery{
    gap: 20px !important;
}
.wp-block-gallery img{
    max-height: 550px !important;
}
.wp-block-group__inner-container{
    margin-bottom: 62px;
    display: flex !important;
    flex-direction: column;
    gap: 24px;
}

@media (max-width: 950px) {
    .f-img{
        width: 100%;
    }
    .sec-header p{
        width: 100%;
    }
    .blog-content{
        width: 80%;
    }
}