@font-face {
    font-family: 'NotoSans-Regular';
    src: url('./fonts/Noto_Sans/NotoSans-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'UTM-AvoBold';
    src: url('./fonts/UTMAvo/UTM_AvoBold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Merriweather-Bold';
    src: url('./fonts/Merriweather-Bold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Merriweather-Regular';
    src: url('./fonts/Merriweather-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('./fonts/Inter/Inter-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter-Bold';
    src: url('./fonts/Inter/Inter-Bold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter-Thin';
    src: url('./fonts/Inter/Inter-Thin.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'NotoSerif-Bold';
    src: url('./fonts/NotoSerif-Bold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'NotoSerif-Regular';
    src: url('./fonts/NotoSerif-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'NotoSans-Regular';
    src: url('./fonts/Noto_Sans/NotoSans-Regular.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'NotoSans-Thin';
    src: url('./fonts/Noto_Sans/NotoSans-Thin.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'NotoSans-Bold';
    src: url('./fonts/Noto_Sans/NotoSans-Bold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Nova-Thin';
    src: url('./fonts/mark/MarkSimonsonProximaNovaThin.otf');
    font-weight: 400;
}

@font-face {
    font-family: 'PlayfairDisplay-Bold';
    src: url('./fonts/PlayfairDisplay-Bold.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'PlayfairDisplay-Regular';
    src: url('./fonts/PlayfairDisplay-VariableFont_wght.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'PlayfairDisplay-Italic';
    src: url('./fonts/PlayfairDisplay-Italic-VariableFont_wght.ttf');
    font-weight: 400;
}

@font-face {
    font-family: 'Steelfish';
    src: url('./fonts/steelfish_rg.ttf');
    font-weight: 400;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter-Regular', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    min-width: 1200px;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
}

.clearfix:after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    clear: both;
}

.container {
    width: 1180px;
    margin: 0 auto;
}

.fw {
    width: 100%;
}

.d-flex {
    display: flex;
}

.space-between {
    display: flex;
    justify-content: space-between;
}

.text-alight-center {
    text-align: center;
}

.justify-content-center {
    display: flex;
    justify-content: center;
}

img,
svg {
    vertical-align: middle;
}

img {
    max-width: 100%;
}

.alight-item-center {
    display: flex;
    align-items: center;
}

.pt-5 {
    padding-top: 5px;
}

.pt-12 {
    padding-top: 12px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.b {
    font-family: 'Inter-Bold', sans-serif;
}

.article-image {
    position: relative;
    display: block;
    overflow: hidden;
    transition: opacity 0.3s ease;
    margin-bottom: 15px;
}

.article-image::before {
    padding-top: 66.66%;
    content: '';
    display: block;
    background: url(../images/no-ava.png) center center no-repeat;
    background-size: contain;
}

.article-image:hover {
    opacity: .85;
}

.article-image img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.article-link {
    font-family: 'Inter-Bold', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color:  #080c27;
}

.article-link:hover,
.item-options-link:hover {
    color: #8f1f1b;
}

.article-date {
    font-size: 12px;
    color: black;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
}

.article-meta {
    margin-top: 5px;
}

.date-::before {
    content: "-";
    color: black;
    font-weight: 400;
    padding-right: 2px;
    font-family: 'Inter-Regular', sans-serif;
    margin-left: 4px;
}

.article-desc {
    margin-top: 5px;
    font-family: 'Inter-Regular', sans-serif;
    font-size: 16px;
    color: #080c27;
    font-weight: 400;
    line-height: 1.6;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.article-cat {
    text-transform: uppercase;
    font-family: 'Inter-Regular', sans-serif;
    color: #ed1a25;
    line-height: 1.4;
    font-size: 11px;
    font-weight: 400;
}

/* .article-content {
    display: flex;
    flex-direction: column;
} */

.cat-title {
    align-items: baseline;
}

.cat-link {
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: black;
    text-transform: uppercase;
}

.bd {
    position: relative;
}

.cat-link.bd::after {
    content: '';
    background: #ed1c24;
    width: 33px;
    height: 3px;
    position: absolute;
    bottom: -13px;
    left: 0;
}

.item-options-link {
    font-size: 14px;
    font-weight: 400;
    font-family:  'Inter-Regular', sans-serif;
    margin-left: 30px;
}

.auto-nav-more {
    position: relative;
    margin-top: 5px;
    padding-left: 20px !important;
}

.auto-nav-more:hover .auto-nav-more-list {
    opacity: 1;
    visibility: visible;
}

.auto-nav-more-list {
    position: absolute;
    right: 0;
    top: 20px;
    opacity: 1;
    visibility: hidden;
    transition: 0.2s;
    text-align: right;
    padding: 0;
    list-style: none;
    background: #faf2e1;
    border-radius: 4px;
    z-index: 2;
    position: absolute;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.auto-nav-more-list .item-options-link {
    margin-left: 0;
    padding: 10px;
}

.auto-nav-more-list .item-options {
    padding-left:0
}

.auto-nav-more-list .item-options{
    border-bottom: 1px solid #cc9933;
    padding: 10px 10px;
}

.auto-nav-more-list .item-options:last-child {
    border-bottom: 0;
}

.auto-nav-more-list .item-options-link {
    display: flex;
    justify-content: flex-start;
    white-space: nowrap;
}

.i-dropdown {
    background: url(../images/i-drop.png) left no-repeat;
    background-size: 15px 9px;
    width: 15px;
    height: 8px;
    cursor: pointer;
    display: block;
    transform: translateY(-3px);
}

/* header */

.header-top {
    margin-top: 5px;
}

.header-date {
    background: url(../images/calendar.png) left 1px no-repeat;
    background-size: 15px 16px;
    padding-left: 20px;
    display: inline-block;
    font-family: 'NotoSans-Regular', sans-serif;
    color: #aaaaaa;
    margin-right: 25px;
    font-size: 13px;
}

.header-phone {
    background: url(../images/phone.png) left 2px no-repeat;
    background-size: 16px 15px;
    padding-left: 20px;
    display: inline-block;
    font-family: 'NotoSans-Regular', sans-serif;
    color: #aaaaaa;
    font-size: 13px;
}

.header-email {
    background: url(../images/letter.png) left 3px no-repeat;
    background-size: 18px 13px;
    padding-left: 25px;
    display: inline-block;
    font-family: 'NotoSans-Regular', sans-serif;
    color: #aaaaaa;
    font-size: 13px;
    margin-right: 25px;
}

#frmSearch {
    height: 30px;
    width: 180px;
    border: 1px solid #e6e6e6;
    border-radius: 35px;
    display: flex;
    align-items: center;
}

#frmSearch input {
    outline: none;
    border: 0;
    padding: 0 10px;
    background: transparent;
    width: 150px;
}

#frmSearch button {
    cursor: pointer;
    outline: none;
    border: 0;
    background: none;
}

#frmSearch input::placeholder {
    color: #666666;
    font-size: 12px;
    font-family: 'Inter-Regular', sans-serif;
    text-transform: uppercase;
}


.header-socical a img{
    transform: translateY(-2px);
    margin-right: 5px;
}

.header-logo {
    margin-top: 5px;
    padding-top: 10px;
    border-top: 1px solid #ebebeb;
    margin-bottom: 15px;
}

.header-nav {
    height: 44px;
    background: #b22d27;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
}

.header-nav {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 999;
}

.header-nav.fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 1;
    /* Hiá»ƒn thá»‹ láº¡i khi cuá»™n xuá»‘ng */
    transform: translateY(0);
    /* Trá»Ÿ vá» vá»‹ trÃ­ bÃ¬nh thÆ°á»ng */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-item {
    background: url(../images/home.png) left 0px no-repeat;
    background-size: 14px 12px;
    width: 14px;
    height: 12px;
    cursor: pointer;
    margin-right: 10px;
    display: inline-block;
}

.dropdown .menu-item {
    width: 50px;
    height: 50px;
    color: #fff;
    background: #d79e1b;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-item {
    position: relative;
    display: block;
}

.nav-item {
    position: relative;
    text-decoration: none;
    color: #333;
}


.nav-item:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    content: '';
    background: #8f1f1b;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.nav-item:hover:after {
    opacity: 1;
    visibility: visible;
    height: 100%;
}

.nav-item:hover:after {
    animation: hover-fill 0.5s forwards;
}

.header-search-mb.active {
    opacity: 1;
    visibility: visible;
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}

.header-search-mb-wrapper {
    position: absolute;
    top: 50px;
    left: 0px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    background: white;
    z-index: 9999;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: flex;
    align-items: center;
}

.header-search-mb-wrapper.active {
    opacity: 1;
    visibility: visible;
}

.main-menu-special {
    position: absolute;
    top: 44px;
    left: 0px;
    width: 100%;
    background: white;
    z-index: 9999;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    display: flex;
    align-items: center;
    display: none;
}

.main-menu-special.active {
    opacity: 1;
    visibility: visible;
}

.header-search-mb {
    display: flex;
    justify-content: end;
    padding: 20px 0;
}

.navigation {
    margin-top: 30px;
}

.main-menu-item {
    margin-bottom: 20px;
    flex: 0 0 auto;
    width: 25%;
    gap: 5px;
    display: flex;
    flex-direction: column;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    margin-top: calc(var(--bs-gutter-y)* -1);
    margin-right: calc(var(--bs-gutter-x)* -.5);
    margin-left: calc(var(--bs-gutter-x)* -.5);
    width: 100%;
    flex-wrap: wrap;
}

.navigation-link {
    font-family: 'Inter-Bold', sans-serif;
    font-size: 16px;
    color: black;
    text-transform: uppercase;
}

.link-subrow-cat {
    margin-bottom: 6px;
}

.link-subrow-cat a {
    font-size: 14px;
    color: #999;
}

.header-nav .nav-item {
    transition: all .2s ease-in-out;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-item a {
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 10px;
    color: white;
    position: relative;
    z-index: 1;
}

.nav-item.home {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px 0;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item.home:hover {
    background: #fff;
}

.icon-dot {
    background: url(../images/dot.png) center no-repeat;
    background-size: 15px 7px;
    width: 15px;
    height: 7px;
    display: inline-block;
    cursor: pointer;
}

.icon-close {
    background: url(../images/close.png) center no-repeat;
    background-size: 12px 12px;
    width: 10px;
    height: 10px;
    background-size: contain;
    display: block;
    cursor: pointer;
}

.nav {
    position: relative;
    height: 100%;
}

.nav ul {
    height: 100%;
}

.icon-right {
    position: absolute;
    right: 0;
    height: 100%;
}

.sub-menu {
    background: #ebebeb;
    position: absolute;
    left: 0;
    top: 44px;
    z-index: 2;
    display: none;
}

.nav-item:hover>.sub-menu {
    display: block;
}

.nav-item.active {
    background-color: #8f1f1b;
}

.nav-item .nav-item-link {
    padding: 0 5px;
}

.header-menu-list-lv2 a {
    font-size: 14px;
    color: #999;
    font-family: 'Inter-Bold', sans-serif;
    text-transform: none;
}

.sub-menu li a {
    padding: 12px 20px;
    line-height: 1.4;
    color: #8f1f1b;
    display: flex;
    width: 250px;
}

.sub-menu li {
    background: #dbdbdb;
    border-top: 1px solid #ebebeb;
    z-index: 2;
}

.sub-menu li:hover {
    background: #ebebeb;
}

.header-attention {
    background-color: #fbf4f4;
    padding: 20px;
}

.header-flash-tit {
    display: inline-block;
    background-size: 15px 20px;
    padding-left: 30px;
    background: url(../images/ico-flash.png) left 0px no-repeat;
    text-transform: uppercase;
    font-family: 'Inter-Bold', sans-serif;
    margin-right: 15px;
    font-size: 12px;
    color:  #ee3940;
}

.header-flash {
    width: 85%;
    position: relative;
}

.header-flash .cat-content {
    padding-right: 30px;
}

.header-flash .article-link {
    font-family: 'Inter-Regular', sans-serif;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
    font-size: 14px;
    position: relative;
}

.header-flash .article-link::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0px;
    width: 1px;
    height: 20px;
    background-color: #ee3940;
}

.header-flash button {
    display: none !important;
}

.header-flash .agency-next {
    position: absolute;
    right: 0px;
    top: 0;
    border: 1px solid #ebebeb;
}

.box-coverage .box-left,
.box-section .box-left {
    width: calc(100% - 300px);
}

.box-coverage .box-right,
.box-section .box-right {
    width: 300px;
    margin-left: 35px;
}

.box-coverage .box-left .article:nth-child(n+2) .article-desc {
    display: none;
}

.box-coverage .box-left .article:nth-child(-n+3) {
    width: 520px;
    float: right;
}

.box-coverage .box-left .cat-content {
    display: block;
}

.box-coverage .box-left .article:nth-child(2),
.box-coverage .box-left .article:nth-child(3) {
    width: 298px;
    margin-right: 35px;
}


.box-coverage .box-left .article:nth-child(2) .article-meta,
.box-coverage .box-left .article:nth-child(3) .article-meta {
    order: -1;
    margin-top: 0;
    margin-bottom: 5px;
}

.box-coverage .box-left .article:nth-child(2) .article-link,
.box-coverage .box-left .article:nth-child(3) .article-link {
    font-size: 16px;
}


.box-coverage .box-left .article:first-child .article-link {
    font-size: 26px;
}

.box-coverage .box-left .article:first-child .article-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-coverage .box-left .article-date,
.box-coverage .date-::before {
    color: black;
}

.box-coverage .box-left .article:nth-child(3) {
    margin-top: 30px;
}

.box-coverage .box-left .article-content {
    display: flex;
    flex-direction: column;
}

.box-coverage .box-right .article {
    border-top: 1px solid #ebebeb;
    margin-top: 15px;
    padding-top: 15px;
}

.box-coverage .box-right .article:first-child .article-link {
    font-size: 16px;
}

.box-coverage .box-right .article:first-child .article-meta {
    margin-bottom: 5px;
}

.box-coverage .box-right .article:nth-child(n+2) .article-image {
display: none;
}

.box-coverage .box-right .article:nth-child(n+2) .article-link {
    font-family: 'Inter-Regular', sans-serif;
}

.box-coverage .box-right .article:nth-child(n+2) .article-meta {
    display: none;
}

.box-coverage .box-right .article:first-child {
    border-top: 0px solid #ebebeb;
    margin-top: 0px;
    padding-top: 0px;
}

.box-coverage .box-right .article:nth-child(n+2) .article-title {
    position: relative;
    padding-left: 20px;
}

.box-coverage .box-right .article:nth-child(n+2) .article-title::before{
    content: "";
    position: absolute;
    z-index: 3;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #ed1c24;
}

.box-attention {
    background-color: #b12d26;
    background-image: linear-gradient(to bottom, rgba(177, 45, 38, 0) 30%, rgba(134, 34, 29, 0.9) 100%), 
                      url(../images/back-red.png);
    padding: 30px 30px 45px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* @media screen and (max-width: 1300px) {

    .box-attention,
    .box-video {
        margin: 0px;
    }

} */

.box-attention .article-link, .box-attention .article-desc, .box-attention .article-cat {
    color: white;
}

.chuyen-sau {
    font-size: 36px;
    color: white;
    text-transform: uppercase;
    display: inline-flex; /* Để hỗ trợ flexbox nhưng vẫn giữ inline */
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 20px; /* Khoảng cách giữa chữ và đường kẻ */
}

.chuyen-sau .thin {
    font-family: 'Inter-Thin',sans-serif;
    font-weight: 400;
}

.chuyen-sau .bold {
    font-family: 'Inter-Bold',sans-serif;
    font-weight: 400;
}

.chuyen-sau::before {
    content: "";
    display: block;
    width: 80px; /* Độ dài đường kẻ */
    height: 1px; /* Độ dày */
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}

.chuyen-sau::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}

.box-attention-left {
    width:calc(100% - 330px) ;
}

.box-attention-right {
    width: 300px;
    margin-left: 30px;
}

.box-attention-right .article-desc ,.box-attention-right .article-meta {
    display: none;
}

.box-attention-left .article {
    width: calc(34.5% - 30px); 
    float: left; 
    margin-right: 30px; 
}

.box-attention-left .article:nth-child(n+2) {
    margin-top: 30px;
}

.box-attention-left .article:nth-child(n+2) .article-desc{
    display: none;
}

.box-attention-left .article:last-child {
    margin-right: 0;
}

.box-attention-left .article:first-of-type {
    width: 100%;
    float: none; 
}

.box-attention-left .article:first-of-type .article-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-attention-left .article:first-of-type {
    display: grid;
    grid-template-columns: auto 555px;
}

.box-attention-left .article:first-of-type .article-image {
    margin-bottom: 0px;
    order: 2
}

.box-attention-left .article:first-of-type .article-content {
    order: -1;
    background: linear-gradient(118deg, #D97169 0%, #A3221F 100%);
    padding: 20px 30px;
    box-shadow: 0px 15px 40px rgba(0, 0, 0, 0.4);
}

.box-attention-left .article:first-of-type .article-link {
    font-size: 22px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-attention.box .box-attention-left .article:first-of-type .article-link {
    -webkit-line-clamp: 8;
}

.box-attention-left .article:nth-child(n+2) .article-meta {
    display: none;
}

.box-attention-right .article:nth-child(n+2) {
    padding-top: 30px;
    border-top: 1px solid #c17f7f;
    margin-top: 25px;
}

.box-attention .text {
    font-size: 45px;
    position: absolute;
    bottom: 0px;
    text-align: center;
    color: #ffffff;
    opacity: 0.05;
    font-family: 'Inter-Thin', sans-serif;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    letter-spacing: 10px;
}    

/* 
@media screen and (max-width: 1757px) {

    .box-attention .text{
        font-size: 70px;
    }

}

@media screen and (max-width: 1550px) {

    .box-attention .text{
        font-size: 60px;
    }

}

@media screen and (max-width: 1350px) {
    .box-attention .text{
        font-size: 50px;
    }

} */

/* .box-list {
    border-right: 1px solid #ebebeb;
} */

.box-list .article-image {
    width: 330px;
    float: left;
    margin-bottom: 0px;
    margin-right: 30px;
}

/* .box-list .article-content {
    float: right;
} */

.box-list .article {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #ebebeb;
}

.box-list .article:first-child {
    margin-top: 0px;
    padding-top: 0px;
    border: 0px solid #ebebeb;
}

.box-list .article-link {
    font-size: 20px;
}

.box-read-most {
    background-color: #ffefe5;
    padding: 20px 30px 20px;
}

.box-read-most .cat-link {
    background: url(../images/i-star.png) no-repeat right center;
    padding-right: 40px;
    display: inline-block;
    white-space: nowrap; 
}
.box-read-most .article .article-link {
    font-size: 14px;
}

.box-read-most .article:nth-child(n+2) .article-link {
    font-family: 'Inter-Regular', sans-serif;
}

.box-read-most .article {
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid #ebe3de;
}

.box-read-most .article:first-child {
    margin-top: 12px;
    border-top: 1px solid #ed1c24;
}

.box-read-most .cat-content {
    counter-reset: section;
}

.box-read-most .article-title {
    position: relative;
    z-index: 2;
}

.box-read-most .article-link {
    position: relative;
    z-index: 2;
}

.box-read-most .article-title::after {
    position: absolute;
    counter-increment: section;
    content: counter(section) ".";
    font-size: 70px;
    font-weight: 400;
    font-family: 'PlayfairDisplay-Italic',sans-serif;
    color: #f3d9d9;
    bottom: -20px;
    right: 0;
    z-index: 1;
}

.border-top {
    border-top: 1px solid #ebebeb;
    padding-top: 10px;
}

.bt {
    position: relative;
}

.bt::before {
    content: '';
    background: #ed1c24;
    width: 125px;
    height: 1px;
    position: absolute;
    top: -15px;
    left: 0;
}

.box-block .box-attention-left .article:first-of-type .article-content{
    background-color: #f6f6f6 !important;
    background: none;
    box-shadow: none;
}

.box-block-right {
    width: 300px;
    margin-left: 30px;
}

.box-block-right .article:nth-child(n+2) .article-image {
    display: none;
}

.box-block-right .article:nth-child(n+2) {
    border-top: 1px solid #ebebeb;
    margin-top: 15px;
    padding-top: 15px;
}

.box-block-right .article:nth-child(n+2) .article-link {
    font-family: 'Inter-Regular', sans-serif;
}

.box-block-2 .box-left .article:first-child {
    width: 553px;
    float: left;
    margin-right: 30px;
}

.box-block-2 .box-left .article:first-child .article-link {
    font-size: 22px;
}

.box-block-2 .box-left {
    width: calc(100% - 330px);
}

.box-block-2 .box-left .article:nth-child(n+2) {
    float: right;
    width: 260px;
}

.box-block-2 .box-left .article:nth-child(n+2) .article-meta,
.box-block-2 .box-left .article:nth-child(n+2) .article-desc {
    display: none;
}

.box-block-2 .box-left .article:nth-child(n+3) {
    border-top: 1px solid #ebebeb;
    margin-top: 15px;
    padding-top: 15px;
}

.box-block-2 .box-left .article:nth-child(n+2) .article-image {
    width: 88px;
    float: left;
    margin-right: 20px;
}

.box-block-2 .box-left .article:nth-child(n+2) .article-title {
    margin-top: -5px;
}

.box-block-2 .box-right {
    width: 300px;
    margin-left: 30px;
}

.box-block-2 .box-right .article:nth-child(n+2) .article-image {
    display: none;
}

.box-multimedia {
    background-color: #17529b;
    background-image:  url(../images/back-blue.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 20px 30px 30px;
}

.box-multimedia .cat-link{
    color: white;
    font-size: 44px;
}

.box-multimedia .article {
    position: relative;
}

.box-multimedia .article:nth-child(1) .article-cat,
.box-multimedia .article:nth-child(2) .article-cat  {
    position: absolute;
    right: 15px;
    top: 320px;
    z-index: 2;
    color: black;
    font-size: 14px;
    background: #ffffff;
    height: 20px;
    line-height: 20px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 400;
    width: 95px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 0px 10px;
}

.box-multimedia .article:nth-child(n+3) .article-cat {
    position: absolute;
    left: 15px;
    top: 150px;
    z-index: 2;
}

.box-multimedia .article-cat img {
    margin-bottom: 0px;
}

.box-multimedia .cat-title {
    position: relative;
    padding-left: 20px;
}

.box-multimedia .cat-title::before{
    content: "";
    position: absolute;
    z-index: 3;
    top: 19px;

    left: 0;
    width: 9px;
    height: 9px;
    background: #ed1c24;
}

.box-multimedia .cat-link::after {
    content: '';
    background: white;
    width: 145px;
    height: 2px;
    position: absolute;
    bottom: 0px;
    left: 0;
}

.box-multimedia .cat-link .thin {
    font-family: 'Inter-Thin', sans-serif;
    font-weight: 400;
    text-transform: none;
}

.box-multimedia .cat-link .bold {
    font-weight: 400;
    color: #ed1c24;
}

.box-multimedia .item-options-link {
    color: white;
    font-weight: 400;
    margin-left: 25px;
}

.box-multimedia .item-options:nth-child(n+2) .item-options-link{
    border-left: 1px solid white;
    margin-left: 10px;
    padding-left: 10px;
}

.youtube {
    transform: translateY(10px);
}

.youtube img {
    margin-bottom: 3px;
}

.box-multimedia .cat-content {
    display: flex;
    flex-wrap: wrap;
}

.box-multimedia .cat-content .article .article-link {
    color: white;
}

.box-multimedia .cat-content .article:nth-child(1),
.box-multimedia .cat-content .article:nth-child(2) {
    margin-bottom: 30px; 
}

.box-multimedia .cat-content .article:nth-child(1),
.box-multimedia .cat-content .article:nth-child(2) {
    width: calc((100% - 30px) / 2);
}

.box-multimedia .cat-content .article:nth-child(1) .article-link,
.box-multimedia .cat-content .article:nth-child(2) .article-link{
    font-size: 22px;
}

.box-multimedia .cat-content .article:nth-child(1) {
    margin-right:30px
}

.box-multimedia .cat-content .article:nth-child(n+3) {
    width: calc((100% - 90px) / 4);
    margin-right: 30px; 
}

.box-multimedia .cat-content .article:last-child {
    margin-right: 0; 
}

.box-multimedia .article .article-title
 {
    order: 1;
}

.box-multimedia .article-cat svg {
    transform: translateY(-1px);
}

.box-mega {
    background-color: #ffefdf;
    background-image: url(../images/back-yellow.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 20px 30px;
    border-radius: 3px;
    border: 1px solid #f9c8b8;
}

.box-mega .article {
    width: calc((100% - 100px)/3);
}

.mega-link {
    color: #ed1a26;
    font-size: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 5px;
    font-family: 'Inter-Bold',sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.mega-link::before {
    content: "";
    display: block;
    width: 80px; /* Độ dài đường kẻ */
    height: 1px; /* Độ dày */
    background:  #ed1a26;
}

.mega-link::after {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background:#ed1a26;
}

.box-mega .article:nth-child(n+2) {
    margin-left: 25px;
    padding-left: 25px;
    position: relative;
}

.box-mega .article:nth-child(n+2)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px; /* Điều chỉnh vị trí từ trên xuống */
    width: 1px; /* Độ rộng border */
    height: 88px; /* Độ dài border */
    background-color: #707070;
}

.box-mega .article-image{
    width: 140px;
    float: left;
    margin-right: 20px;
    margin-bottom: 0;
}

.box-block-3-left {
    width: calc(100% - 330px);
}

.box-block-3-left .box-attention-left {
    width: 100%;
}

.box-block-3-left .box-attention-left .article:first-of-type  {
    grid-template-columns: auto 435px;
    gap: 30px;
}

.box-block-3-left .box-attention-left .article:first-of-type .article-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

.box-block-3-left .box-attention-left .article:first-of-type .article-content {
    background-color: unset !important;
    background: none;
    box-shadow: none;
    padding: 0;
}

.box-block-3-left .box-block.right .article:first-of-type .article-image {
    margin-bottom: 0px;
    order: -1;
}

.box-block-3-left .box-block.right .article:first-of-type {
    display: grid;
    grid-template-columns: 435px auto;
    gap: 30px;
}

.box-rectangle .cat-content{
    display: flex;
    flex-wrap: wrap; 
    justify-content: flex-start; 
    margin-right: -35px; 
}

.box-rectangle .cat-content > * {
    flex: 0 0 calc((100% / 3) - 30px); 
    margin-right: 30px; 
    margin-top: 20px; 
}

.box-rectangle .cat-content > :nth-child(6n) {
    margin-right: 0; 
}

.box-rectangle .cat-content .article:nth-child(n+4) {
    border-top: 1px solid #ececec;
    padding-top: 20px;
}

.box-block-3-right {
    width: 300px;
    margin-left: 30px;
}

.box-noti .over-cat {
    height: 500px;
    background-color: #f7e5e5;
    background-image: url(../images/back-pink.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 20px 30px 20px;
    border-radius: 3px;
    border: 1px solid #f9dedf;
}

.box-noti .cat-content {
    height: 400px;
    overflow: auto;
    padding-right: 10px;
}


.box-noti .cat-content::-webkit-scrollbar {
    width: 1px;
}

.box-noti .cat-content::-webkit-scrollbar-track {
    background: #f7e5e5;
}

.box-noti .cat-content::-webkit-scrollbar-thumb {
    background: #7d7d7d;
    border-radius: 10px;
}


.box-noti .article .article-link {
    font-size: 14px;
}

.box-noti .article:nth-child(n+2) .article-link{
    font-family: 'Inter-Regular', sans-serif;
}

.box-noti .article {
    position: relative;
    margin-top: 35px;
}

.box-noti .article::before {
    content: '';
    background: #ed1c24;
    width: 60px;
    height: 1px;
    position: absolute;
    top: -15px;
    left: 0;
}

.box-noti .article:nth-child(n+2):before {
    background: #acacac;
}

.ico-star  {
    background: url(../images/star.png) left 0px no-repeat;
    width: 67px;
    height: 18px;
    display: inline-block;
}

.box-newspaper .l-prev {
    background: url(../images/rt-l.png) left no-repeat;
    background-size: 50px 50px;
    padding-left: 50px;
    padding-top: 50px;
    cursor: pointer;
}

.box-newspaper .l-next {
    background: url(../images/rt-r.png) left no-repeat;
    background-size: 50px 50px;
    padding-left: 50px;
    padding-top: 50px;
    cursor: pointer;
}

.box-newspaper .agency-prev {
    left: 5px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-newspaper .agency-next {
    right: 5px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ic-arrow {
    width: 62px;
    height: 62px;
    content: "/f054";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
}

.ic-arrow i {
    font-size: 25px;
}

.box-newspaper .slick-dots {
    height: 20px;
}

.box-slider-more .slick-prev {
    width: 0;
    height: 0;
    background: url(../images/rt-l.png) left no-repeat;
    background-size: 40px 40px;
    padding-left: 40px;
    padding-top: 40px;
    cursor: pointer;
    left: 490px;
}

.box-slider-more .slick-next {
    width: 0;
    height: 0;
    background: url(../images/rt-r.png) left no-repeat;
    background-size: 40px 40px;
    padding-left: 40px;
    padding-top: 40px;
    cursor: pointer;
    right: 490px;
}

.slick-dots {
    display: flex !important;
    justify-content: center;
    transform: translateY(50%);
}

.slick-dots button {
    font-size: 0;
    /* Ẩn đi số */
}

.slick-dots li button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #cccccc;
    margin: 0 3px;
    cursor: pointer;
    border: none;
}

.slick-dots li {
    width: unset !important;
    margin: 0 !important;
}

.slick-dots li.slick-active button {
    background-color: #ff0000;
}

.slick-dots li button:before {
    content: none !important;
}

.box-infor {
    background-color: #faf6f2;
    padding: 20px 30px 30px;
    position: relative;
    border-radius: 10px;
}

.box-infor .slick-slider .article,
.box-slider .slick-slider .article {
    float: left;
    margin: 0 15px;
    position: relative;
}

.box-infor .slick-list,
.box-slider .slick-list {
    margin: 0 -15px !important;
}

.box-slider .ic-arrow,
.box-infor .ic-arrow {
    top: 70px;
}

.box-slider .agency-prev,
.box-infor .agency-prev {
    left: -30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-slider .agency-next,
.box-infor .agency-next {
    right: -30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-infor .infor-prev,
.box-slider .infor-prev {
    background: url(../images/i-prev.png) left no-repeat;
    background-size: 47px 47px;
    padding-left: 47px;
    padding-top: 47px;
    cursor: pointer;
}

.box-infor .infor-next,
.box-slider .infor-next {
    background: url(../images/i-next.png) left no-repeat;
    background-size: 47px 47px;
    padding-left: 47px;
    padding-top: 47px;
    cursor: pointer;
}

/* .box-infor .article-link, .box-mega .article-link {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}
*/

.footer-back {
    background-color: #f4f4f4;
    padding: 30px 0;
}

.footer-back .container {
    position: relative;
}

.f-logo {
    margin-right: 30px;
}

.f-t {
    border-top: 1px solid #cccccc;
    margin-top: 15px;
    padding-top: 15px;
}

.f-phone {
    background: url(../images/f-phone.png) left 3px no-repeat;
    background-size: 11px 15px;
    padding-left: 25px;
}

.f-c p{
    color: #333333;
}

.b {
    font-family: 'Inter-Bold', sans-serif;
}

.red {
    color: #ee3940;
}

.btn-send {
    color: #1a57a2;
    background-color: #d7d7d7;
    padding: 5px 15px;
    border-radius: 3px;
    margin-right: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 12px;
}

.mail {
    background: url(../images/mail.png) left 5px no-repeat;
    background-size: 17px 12px;
    padding-left: 25px;
    display: inline-block;
    margin-right: 25px;
    font-size: 14px;
    color: #1a57a2;
}

.web {
    background: url(../images/web.png) left 0px no-repeat;
    background-size: 22px 23px;
    padding-left: 30px;
    display: inline-block;
    font-size: 14px;
    color: #1a57a2;
}


.btn-send:hover {
    background-color: #f0deba;
}

.f-r {
    position: absolute;
    right: 0;
}

.social-item {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #231f20;
    margin-right: 10px;
}

.social-item a {
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.master-cms {
    height: 60px;
    background-color: white;
}

.master-cms a {
    color: black;
}

.category-link {
    color: black;
    font-family: 'PlayfairDisplay-Bold',sans-serif;
    text-transform: uppercase;
    font-size: 36px;
    font-weight: 400;
}

.category-link {
    border-bottom: 3px solid #ededed;
    width: 100%;
    text-align: center;
}

.list-cat-sub {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Inter-Regular', sans-serif;
    color:  #080c27;
    border-top: 1px solid #ededed;
    padding-top: 15px;
    margin-top: 2px;
}

.list-cat-sub li:nth-child(n+2) a{
    border-left: 1px solid black;
    padding-left: 10px;
    margin-left: 10px;
}

.list-cat-sub .active {
    color: #e20613;
}

.box-navigation .home:hover, .box-navigation .cate:hover, .box-navigation .sub-cate:hover {
    text-decoration: underline;
}


.box-navigation .home{
    background: url(../images/ico-dot.png) left 8px no-repeat;
    background-size: 7px 7px;
    padding-left: 15px;
    display: inline-block;
}

.box-navigation .home, .box-navigation .cate, .box-navigation .sub-cate {
    color: #d5d5d5;
    font-size: 14px;
    font-family: 'Inter-Regular', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.box-navigation .cate, .box-navigation .sub-cate {
    margin-left: 5px;
}

.box-block-2.cate .box-right,.box-block-2.cate .box-left .article:first-child {
    border:0
}

.box-section.cate .container{
    border-top: 1px solid #ebebeb;
    padding-top: 30px;
}

.box-section.cate .box-list .article-content {
    padding-right: 0;
}

.box-section.cate .box-list{
    padding-right: 30px;
}

.more {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.more .current {
    color: #b22d27;
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    background: #ebebeb;
    display: flex;
    align-items: center;
    font-family: 'Inter-Regular',sans-serif;
}

.more a {
    font-family: 'Inter-Regular',sans-serif;
    color: #ebebeb;
    font-weight: 400;
    padding: 10px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    width: fit-content;
    cursor: pointer;
    background: #b22d27;
    display: flex;
    align-items: center;
}


#goTop.show {
    opacity: 1;
    visibility: visible;
}

#goTop, #mobile {
    display: flex;
    align-items: center;
    background: url(../images/go-top.png) no-repeat ; 
    background-size: 36px 36px;
    width: 36px;
    height: 36px;
    position: fixed;
    bottom: 10%;
    right: 10%;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

#mobile {
    background: #000000 !important;
    bottom: 10%;
    visibility: unset;
    opacity: 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: unset;
    height: unset;
    display: none;
}
@media screen and (max-width: 1000px) {

    #mobile{
        display: block;
    }

    #goTop {
        display: none;
    }

}

.detail-title {
    font-family: 'PlayfairDisplay-Bold',sans-serif;
    font-weight: 400;
    font-size: 35px;
    color: black;
}

.detail-cat {
    font-size: 11px;
    color: #ec1a23;
    text-transform: uppercase;
}

.detail-desc {
    font-size: 16px;
    color: #000000;
    font-family: 'Inter-Bold', sans-serif;
}

.box-half-left {
    width: calc(100% - 300px);
    padding-right: 30px;
    border-right: 1px solid #ebebeb;
}

.box-half-right {
    margin-left: 30px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 60px auto;
}

.box-dcpl .box-left{
    width: calc(100% - 330px);
}

.box-dcpl .box-right {
    width: 300px;
    margin-left: 30px;
}

.detail-grid-left {
    width: 60px;
}

.article-detail-button {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: sticky;
    top: 60px;
}


.hna-btn-size,
.hna-btn-copy-link,
.hna-btn-comment,
.article-detail-button>a,
.hna-btn-follow {
    display: flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 32px;
    cursor: pointer;
    color: #555;
    margin-bottom: 8px;
    border: 1px solid #e2e2e5
}

.hna-btn-size {
    height: 110px !important;
    position: relative;
}

.hna-btn-size-plus {
    position: absolute;
    top: 2px;
}

.hna-btn-size-plus,
.hna-btn-size-minus {
    display: flex;
    width: 26px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ebebeb;
    border-radius: 26px;
    font-size: 12px;
}

.hna-btn-size-minus {
    position: absolute;
    bottom: 2px;
}

.hna-btn-size-text>span {
    font-size: 20px;
}

.detail-body p,.detail-body p,.detail-body h2, .detail-body h3,.detail-body h4, .detail-body h5, .detail-body h6 {
    margin-bottom: 20px;
    font-size: 16px;
}

.detail-body table {
    margin-bottom: 20px;
}

.detail-body p strong, .detail-body p b,.detail-body p h2, .detail-body p h3, .detail-body p h4 {
    font-family: 'Inter-Bold',sans-serif;
    font-weight: 400;
}

.auther {
    text-align: end;
}

.auther-name {
    font-family: 'Inter-Bold',sans-serif;
    font-weight: 400;
}

.part-tags {
    align-items: baseline;
    border-top: 1px solid #ebebeb ;
    padding-top: 20px;
}

.tags-title {
    background: url(../images/tag.png) no-repeat left top 1px ;
    padding-left: 35px;
    background-size: 26px 20px;
    display: flex;
    height: 22px;
    gap: 10px;
    font-size: 20px;
    color: black;
}

.tags-title p {
    font-family: 'Inter-Bold',sans-serif;
    font-size: 16px;
    color: black;
    margin-right: 15px;
}

.tags-content .tags-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px 6px 10px;
    background: #f7f7f7;
    border: 1px solid #f0f0f0;
    font-family: 'Inter-Regular',sans-serif;
    font-size: 14px;
    margin-bottom: 5px;
    margin-right: 2px;
    color: #1957a6;
    border-radius: 2px;
}

.box-relate .cat-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.box-relate .cat-content > * {
    /* flex: 1 1 calc(33.333% - 30px);  */
    margin-right: 30px; 
    margin-top: 30px; 
}

.box-relate .cat-content > :nth-child(3n) {
    margin-right: 0; 
}

.box-relate .article:nth-child(n+4) .article-image{
    display: none;
}

.box-relate .article:nth-child(n+4) .article-link {
    font-family: 'Merriweather-Regular', sans-serif;
}

.box-relate .article:nth-child(n+4) {
    border-top: 1px solid #ebebeb;
    padding-top: 20px;
    margin-top: 20px;
}

.box-relate .article {
    width: calc((100% - 60px) / 3);
}

#user-comment {
    background-color: #eeeeee;
    padding: 25px;
    border-radius: 3px;
}

#user-comment .box-comment .content {
    display: grid;
    grid-template-columns: 47px auto;
    gap: 20px;
    border-radius: 4px;
    margin-top: 30px;
}

#user-comment .box-comment .content img {
    border-radius: 50px;
}

#user-comment .box-comment textarea {
    width: 100%;
    height: 50px;
    box-sizing: border-box;
    padding: 10px;
    outline: none;
    border: 0;
    border-radius: 4px;
    font-family: inherit;
    align-items: center;
}

#user-comment button {
    margin-top: 25px;
    padding: 10px 46px;
    font-size: 14px;
    background: #8f1f1b;
    border-radius: 4px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
}

#user-comment .content-button {
    display: flex;
    justify-content: flex-end;
}

.motgame-heading {
    font-size: 22px;
    font-family: 'Inter-Bold', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.cat-link.detail {
    font-size: 22px;
}

.box-list.detail {
    border: 0
}

.menu-item.hna-menu-signin{
    position: relative;
}

.menu-item.hna-menu-signin .name {
    font-family: 'Inter-Bold', sans-serif;
}

.hna-menu-signin-more {
    display: none;
    position: absolute;
    right: 0;
    z-index: 10000;
    box-shadow: 1px 2px 2px #ccc;
    border-radius: 3px;
    overflow: hidden;
}

.menu-item.hna-menu-signin:hover .hna-menu-signin-more {
    display: block;
}

.hna-menu-signin-more a {
    width: 100%;
    float: left;
    white-space: nowrap;
    padding: 0 20px;
    background: #fff;
    line-height: 32px;
    text-transform: none;
    font-size: 14px;
    text-align: left;
    color: #000;
    box-shadow: 0px 2px 7px #ebebeb;
}

.same-topic {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.same-topic .cat-link {
    font-family: 'Inter-Bold', sans-serif;
}

.same-topic .cat-link a {
    color: #8f1f1b;
}

.same-topic .cat-content .article {
    margin-bottom: 10px;
}

.same-topic .cat-content .article-link {
    font-weight: 400;
    font-family: 'Inter-Bold', sans-serif;
}

.same-topic .cat-content .article-title {
    position: relative;
    padding-left: 15px;
}

.same-topic .cat-content .article-title::before {
    content: "";
    position: absolute;
    z-index: 3;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    background: #8f1f1b;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.same-topic .cat-content .article-title::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 8px;
    bottom: -20px;
    width: 1px;
    left: 3px;
    background-color: #E5E5E5;
}

.same-topic .cat-content .article:last-child .article-title::after {
    content: none;
}

.same-topic .article-title {
    margin-bottom: 0px !important;
}


.hna-site-link .mb {
    display: none;
}

.hna-site-link {
    border-right: 1px solid black;
    margin-right: 10px;
    padding-right: 10px;
}

.box-qc img {
    height: auto;
}
