.special-focus-content {
  position: relative;
  padding: 1rem;

  &::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(248.91deg, rgba(11, 30, 65, 0) 1.95%, #091834 89.22%);
  }

  .news-swiper {
    display: flex;
    flex-direction: column;
    .news-swiper-option {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      .news-swiper-pagination {
        position: relative;
        bottom: unset;
        left: unset;
        right: unset;
        top: unset;
  
        .swiper-pagination-bullet {
          width: 30px !important;
          height: 4px !important;
          border-radius: 100px !important;
          background-color: #D9D9D9;
          &.swiper-pagination-bullet-active {
            background: var(--primary) !important;
          }
        }
  
        @media screen and (max-width: 767px) {
          display: flex;
          justify-content: center;
        }
      }
    }
  
    @media screen and (max-width: 767px) {
      overflow: unset !important;
    }
  
    .news-swiper-button-prev,
    .news-swiper-button-next {
      position: relative;
      background-size: contain !important;
      width: 24px !important;
      height: 24px !important;
      left: unset !important;
      top: unset !important;
      bottom: unset !important;
      right: unset !important;
      transform: unset !important;
      cursor: pointer;
    }
  
    .news-swiper-button-next {
      background: url("../images/icon/icon-arrow-slide-right-w.svg") no-repeat center;
      /* bottom: 0;
      z-index: 55;
      right: 0;
  
      @media screen and (max-width: 767px) {
        top: 40%;
        bottom: unset;
        right: -22px;
        transform: translateY(-40%);
      } */
    }
  
    .news-swiper-button-prev {
      background: url("../images/icon/icon-arrow-slide-left-w.svg") no-repeat center;
  
      /* bottom: 0;
      right: 30px;
      z-index: 55;
  
      @media screen and (max-width: 767px) {
        top: 40%;
        bottom: unset;
        left: -22px;
        transform: translateY(-40%);
      } */
    }
  
    .news-swiper-button-next:after,
    .news-swiper-button-prev:after {
      display: none;
    }

    .item-blog-bg {
      display: block;
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
      border-radius: 10px;
    
      &:hover .bg-img {
        transform: scale(1.1);
      }
    
      a {
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
      }
    
      .bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: 0.3s ease 0s;
      }
    
      .filter {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        z-index: 1;
        top: 0;
        background: linear-gradient(180deg,
            rgba(51, 51, 51, 0) 64.73%,
            rgba(51, 51, 51, 0.8) 100%);
    
        &.blue {
          background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, #0e4174 100%);
        }
    
        &.green {
          background: linear-gradient(180deg,
              rgba(52, 171, 112, 0) 67.53%,
              rgba(52, 171, 112, 0.9) 100%);
        }
    
        &.orange {
          background: linear-gradient(180deg,
              rgba(238, 95, 48, 0) 67.21%,
              rgba(238, 95, 48, 0.8) 100%);
        }
      }
    
      .detail {
        position: absolute;
        z-index: 2;
        padding: 25px;
        bottom: 0;
        display: flex;
        flex-direction: column;
        gap: 5px;
    
        .title {
          font-size: 36px;
          line-height: 36px;
          color: white;
          font-weight: bold;
        }
    
        .time {
          display: flex;
          align-items: center;
          gap: 10px;
          flex: none;
    
          span {
            color: white;
          }
        }
    
        .tag {
          width: fit-content;
        }
    
        @media (max-width: 1024px) {
          .title {
            font-size: 30px;
            line-height: 30px;
          }
        }
    
        @media (max-width: 767px) {
          padding: 10px 20px !important;
    
          .title {
            font-size: 28px;
            line-height: 28px;
          }
        }
    
    
      }
    }
  }

  .card-timeline{
    .timeline{
      .item:not(.active){
        .time{
          color: white;
        }
        .detail{
          > a{
            color: white;
          }
        }
      }
    }
  }

  .videos{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
    .item{
      display: flex;
      flex-direction: column;
      gap: 10px;
      .thumbnail{
        position: relative;
        aspect-ratio: 16/10;
        border-radius: 10px;
        overflow: hidden;
        &:hover{
          .img{
            transform: scale(1.05);
          }
        }
        .yt-logo{
          position: absolute;
          top:50%;
          left: 50%;
          transform: translate(-50%,-50%);
          z-index: 2;
          width: 60px;
        }
        .img{
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center;
          transition: .3s ease 0s;
        }
      }

      .title{
        font-size: 21px;
        font-weight: bold;
        font-family: 'True Bold';
        color: white;
        line-height: 1;
      }
      .time{
        display: flex;
        align-items: center;
        gap: 5px;
        color: #9D9D9D;
        .text{
          font-size: 16px;
          color: currentColor;
          font-weight: bold;
          font-family: 'True Bold';
        }
      }

      .tag{
        padding: 0 10px;
        border-radius: 50px;
        font-size: 20px;
      }
    }

    @media screen and (max-width: 767px) {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      .item{
        flex: none;
        max-width: 280px;
        scroll-snap-align: start;
      }
    }
  }

  .tnn-button{
    color: var(--primary);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: bold;
    font-family: 'True Bold';
    padding: .7rem 3rem;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
  }
}