.box-reading {
    display: flex;
    flex-direction: column;
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 0;
}

.card-top-read {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.title-read {
    font-size: 32px;
    font-family: var(--fonttext-montserrat);
    text-align: center;
    line-height: 1.52em;
    font-weight: 700;
    color: var(--five-color);
}

.author-and-category {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 13px;
    font-family: var(--fonttext-poppins);
    line-height: 1.52em;
    letter-spacing: .1px;
}

.author-and-category .author-info {
    color: var(--fourth-color);
    font-weight: 500;
}

.author-and-category .category-info {
    color: var(--fourth-color);
    font-weight: 500;
}

.time-post-info {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fonttext-poppins);
    letter-spacing: .1px;
    line-height: 1.52em;
    color: rgb(128, 128, 128, 0.9);
    font-size: 13px;
}

.content-blogs {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 5rem;
    padding: 0 5px;
}

.banner-image {
    display: flex;
    max-width: 95%;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 600px;
    margin: 0 auto;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-blogs p {
    font-size: 16px;
    font-family: var(--fonttext-poppins);
    color: var(--five-color);
    line-height: 26px;
    margin: 0 auto;
    margin-bottom: 20px;
    max-width: 95%;
    width: 100%;
}

.content-blogs h1, 
.content-blogs h2,
.content-blogs h3, 
.content-blogs h4,
.content-blogs h5,
.content-blogs h6 {
    font-family: var(--fonttext-open-sans);
    color: var(--five-color);
    line-height: 1.52em;
    letter-spacing: .1px;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 11px;
    max-width: 95%;
    width: 100%;
}

.content-blogs > img {
    display: flex;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 1rem;
    max-width: 95%;
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .content-blogs {
        padding: 0;
    }

    .title-read {
        font-size: 28px;
    }

    .banner-image {
        max-width: 100%;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
}
}

@media (max-width: 600px) {
    .title-read {
        font-size: 22px;
    }
}