.minlong-news-read {
    background-color: #fff;
    padding: var(--component-gap) 0;
}

.minlong-news-read .container {
    display: flex;
    gap:100px;
}
b, strong {
    font-weight: 500!important;
    color: #333333!important;
}
.minlong-news-read-content {
    flex: 1;
}
.tab p {
    line-height: 32px!important;
}
.minlong-news-read-related {
    width: 30%;
}

.minlong-news-read-content-title {
    font-size: var(--title-size-h3);
    font-family: var(--semibold-font-family);
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-primary);
}

.minlong-news-read-content-date {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: var(--title-text-color);
}

.minlong-news-read-content-date-text,
.minlong-news-read-content-media span {
    font-size: var(--text-size);
    font-weight: 400;
    line-height: 1.5;
    margin-right: 8px;
    color: #666;
}

.minlong-news-read-content-media {
    display: flex;
    align-items: center;
    gap: 3px;
}

.minlong-news-read-content-media a {
    width: 23px;
    height: 23px;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0076B3;
}

.minlong-news-read-content-media a:nth-child(2) {
    background: #0076B3;
}

.minlong-news-read-content-media a:nth-child(3) {
    background: #000000;
}

.minlong-news-read-content-media a:nth-child(4) {
    background: #0076B3!important;
}

.minlong-news-read-content-media a:nth-child(5) {
    background: #CB2026;
}

.minlong-news-read-content-media a img {
    width: 13px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.minlong-news-read-content-content {
    padding: 22px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 30px 0;
}

.minlong-news-read-content-content p {
    min-height: 20px;
 
}

.minlong-news-read-content-btn-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.minlong-news-read-content-prev,
.minlong-news-read-content-next {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 50%;
}
.minlong-news-read-content-prev:hover .minlong-news-read-content-prev-icon i,
.minlong-news-read-content-next:hover .minlong-news-read-content-next-icon i{
    color:#fff;
}
.minlong-news-read-content-prev{
    justify-content:flex-start;
}
.minlong-news-read-content-next{
    justify-content:flex-end;
}

.minlong-news-read-content-prev-icon,
.minlong-news-read-content-next-icon {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: #dbe1e7;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.minlong-news-read-content-prev:hover .minlong-news-read-content-prev-icon,
.minlong-news-read-content-next:hover .minlong-news-read-content-next-icon {
    background: var(--color-primary);
}

.minlong-news-read-content-prev-icon i,
.minlong-news-read-content-next-icon i {
    font-size: 18px;
    color: var(--color-primary);
}

.minlong-news-read-content-prev-title,
.minlong-news-read-content-next-title {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--title-text-color);
    transition: all 0.3s ease;
}
.minlong-news-read-content-prev-title{
    justify-content:flex-start;
}
.minlong-news-read-content-next-title{
    justify-content:flex-end;
}
.minlong-news-read-content-prev-title b,
.minlong-news-read-content-next-title b {
    overflow: hidden;
    font-weight: 400;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}

.minlong-news-read-content-prev-title span,
.minlong-news-read-content-next-title span {}

.minlong-news-read-related h2 {
    font-size: var(--title-size-h3);
    font-weight: 600;
    line-height: 1.5;
    font-family: var(--semibold-font-family);
    color: var(--color-primary);
}

.minlong-news-read-related-list {
    display: flex;
    flex-direction: column;
    margin-top: var(--text-gap);
    overflow: hidden;
    gap: var(--text-gap-lg);
}

.minlong-news-read-related-item {
    padding: 0 30px;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    color: var(--title-text-color);
}

.minlong-news-read-related-item:last-child a {
    border-bottom: none;
}

.minlong-news-read-related-item a {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px 0;
}

.minlong-news-read-related-item:hover .minlong-news-read-related-item-title{
    color: var(--color-primary);
}

.minlong-news-read-related-item-date {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-primary);
}

.minlong-news-read-related-item-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;
}



@media screen and (max-width: 1200px) {
    .minlong-news-read .container{
        gap: var(--component-gap-lg);
    }

    .minlong-news-read-related-list {
    }

    .minlong-news-read-related-item a {
        padding: 20px 0;
        gap: 10px;
    }

    .minlong-news-read-related-item-title {
        font-size: 18px;
    }
}

@media screen and (max-width: 992px) {
    .minlong-news-read-content {
        width: 100%;
        padding-right: 0;
    }

    .minlong-news-read-related {
        display: none;
    }

    .minlong-news-read-content-content img {
        width: 100% !important;
        object-fit: cover !important;
    }
    .minlong-news-read-content-btn-box{
        flex-direction:column;
        gap: 15px;
    }
    .minlong-news-read-content-prev, .minlong-news-read-content-next{
        max-width:100%;
        width: 100%;
    }
    .minlong-news-read-content-prev-title,
    .minlong-news-read-content-next-title{
        font-size: 14px;
    }
}