@font-face {
  font-family: "Opensans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/mix/OpensansRegular.woff") format("woff");
}
@font-face {
  font-family: "Opensans";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/mix/OpensansMedium.woff") format("woff");
}
* {
  font-family: "Opensans", sans-serif !important;
}

#news-container {
  margin-bottom: 52px;
}
#news-container .hero-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
#news-container .hero-section .news-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
  text-decoration: none;
  position: relative;
}
#news-container .hero-section .news-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
#news-container .hero-section .news-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#news-container .hero-section .news-item img:hover {
  transform: scale(1.05);
}
#news-container .hero-section .news-item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 16px;
}
#news-container .hero-section .news-item .content h4 {
  margin: 0;
  font-weight: bold;
  color: #ffffff;
  transition: color 0.3s ease;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
}
#news-container .hero-section .news-item:first-child {
  grid-column: span 1;
  grid-row: span 2;
}
#news-container .hero-section .news-item:first-child img {
  height: 100%;
  -o-object-fit: unset;
     object-fit: unset;
}
#news-container .category-section {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px 0;
}
#news-container .category-section #first_item .link_category .cat_thumbnail {
  width: 180px;
  height: 180px;
}
#news-container .category-section #first_item .link_category span {
  background-color: #e40808;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 12px;
  width: 85%;
  bottom: 25px;
}
#news-container .category-section .category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
}
#news-container .category-section .category-item .link_category {
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
#news-container .category-section .category-item .link_category .cat_thumbnail {
  width: 180px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
#news-container .category-section .category-item .link_category span {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  position: absolute;
  width: 85%;
  opacity: 1;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  border-radius: 24px;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#news-container .category-section .category-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
#news-container .category-section .category-item:hover img {
  transform: scale(1.05);
}
#news-container .latest-news .section-header {
  margin-bottom: 30px;
  position: relative;
}
#news-container .latest-news .section-header .icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
#news-container .latest-news .section-header .icon-title .icon {
  color: #dc3545;
  font-size: 20px;
}
#news-container .latest-news .section-header .icon-title h3 {
  margin-left: 8px;
  line-height: 100%;
  margin: 0;
  color: #000;
  font-size: 20px;
  font-weight: 600;
}
#news-container .latest-news .section-header .icon-title .gray-line {
  position: absolute;
  bottom: 50%;
  right: 0;
  transform: translateY(25%);
  width: 75%;
  height: 20px;
}
#news-container .latest-news .section-header .icon-title .gray-line img {
  width: 100%;
  height: 100%;
}
#news-container .latest-news .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
#news-container .latest-news .news-grid .news-item {
  border-radius: 12px;
  transition: all 0.3s ease;
  background: white;
  text-decoration: none;
}
#news-container .latest-news .news-grid .news-item img {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#news-container .latest-news .news-grid .news-item img:hover {
  transform: scale(1.05);
}
#news-container .latest-news .news-grid .news-item .content {
  padding: 20px 0;
}
#news-container .latest-news .news-grid .news-item .content h4 {
  margin: 0 0 12px 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #3b3b3b;
  transition: color 0.3s ease;
}
#news-container .latest-news .news-grid .news-item .content h4:hover {
  color: #dc3545;
}
#news-container .latest-news .news-grid .news-item .content .summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #3b3b3b;
  overflow: hidden;
  height: 65px;
  text-overflow: ellipsis;
  font-family: "Opensans", sans-serif !important;
  font-weight: 400;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
@media (max-width: 1024px) {
  #news-container .hero-section {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 15px;
  }
  #news-container .hero-section .news-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
  #news-container .hero-section .news-item:first-child img {
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #news-container .category-section {
    gap: 15px;
    flex-wrap: wrap;
  }
  #news-container .category-section .category-item .link_category .cat_thumbnail {
    width: 140px;
    height: 140px;
  }
  #news-container .category-section .category-item .link_category span {
    font-size: 15px;
    padding: 8px 10px;
    width: 90%;
    bottom: 20px;
  }
  #news-container .category-section #first_item .link_category .cat_thumbnail {
    width: 140px;
    height: 140px;
  }
  #news-container .category-section #first_item .link_category span {
    font-size: 15px;
    padding: 8px 10px;
    width: 90%;
    bottom: 20px;
  }
  #news-container .latest-news .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  #news-container .hero-section {
    grid-template-columns: 1fr;
  }
  #news-container .hero-section .news-item:first-child {
    grid-column: span 1;
  }
  #news-container .hero-section .news-item:first-child img {
    height: 200px;
  }
  #news-container .hero-section .news-item img {
    height: 180px;
  }
  #news-container .category-section {
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }
  #news-container .category-section .category-item {
    flex-shrink: 0;
    min-width: 100px;
  }
  #news-container .category-section .category-item .link_category .cat_thumbnail {
    width: 100px;
    height: 100px;
  }
  #news-container .category-section .category-item .link_category span {
    font-size: 14px;
    padding: 6px 8px;
  }
  #news-container .latest-news .section-header {
    margin-bottom: 20px;
  }
  #news-container .latest-news .section-header .icon-title .gray-line {
    display: none;
  }
  #news-container .latest-news .section-header .icon-title h3 {
    font-size: 18px;
  }
  #news-container .latest-news .news-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 480px) {
  #news-container {
    margin-bottom: 30px;
  }
  #news-container .hero-section {
    gap: 10px;
  }
  #news-container .hero-section .news-item img {
    height: 150px;
  }
  #news-container .hero-section .news-item .content {
    padding: 12px;
  }
  #news-container .hero-section .news-item .content h4 {
    font-size: 16px;
    line-height: 1.3;
  }
  #news-container .category-section {
    gap: 8px;
  }
  #news-container .category-section .category-item {
    min-width: 100px;
  }
  #news-container .category-section .category-item .link_category .cat_thumbnail {
    width: 100px;
    height: 100px;
  }
  #news-container .category-section .category-item .link_category span {
    font-size: 13px;
    padding: 6px 8px;
    bottom: 15px;
    width: 90%;
    line-height: 1.2;
  }
  #news-container .category-section #first_item .link_category .cat_thumbnail {
    width: 100px;
    height: 100px;
  }
  #news-container .category-section #first_item .link_category span {
    font-size: 13px;
    padding: 6px 8px;
    bottom: 15px;
    width: 90%;
    line-height: 1.2;
  }
  #news-container .latest-news .news-grid .news-item img {
    height: 150px;
  }
  #news-container .latest-news .news-grid .news-item .content {
    padding: 15px 0;
  }
  #news-container .latest-news .news-grid .news-item .content h4 {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  #news-container .latest-news .news-grid .news-item .content .summary {
    font-size: 12px;
    height: 50px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

#news-container .category-section {
  gap: 40px;
}
#news-container .gray-line {
  width: 100%;
  height: 25px;
}
#news-container .gray-line img {
  width: 100%;
  height: 100%;
}
#news-container .main-section {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}
#news-container .main-section .left-side {
  width: 75%;
}
#news-container .main-section .left-side .post {
  border-radius: 8px;
  background-color: #fff;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
#news-container .main-section .left-side .post .post-header {
  margin-bottom: 20px;
}
#news-container .main-section .left-side .post .post-header .post_main_img {
  border-radius: 8px;
  width: 100%;
}
#news-container .main-section .left-side .post .post-header .post_main_img img {
  width: 100%;
  height: auto;
}
#news-container .main-section .left-side .post .post-header .post-title {
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #3b3b3b;
  margin: 24px 0 16px 0;
}
#news-container .main-section .left-side .post .post-meta {
  display: flex;
  font-size: 0.9rem;
  color: #3b3b3b;
  margin-bottom: 15px;
}
#news-container .main-section .left-side .post .post-meta .fa {
  margin-right: 5px;
}
#news-container .main-section .left-side .post .post-meta > span {
  margin-right: 20px;
}
#news-container .main-section .left-side .post .post-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}
#news-container .main-section .left-side .post .post-content .post-summary {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 24px;
}
#news-container .main-section .left-side .post .table-of-contents {
  border: 1px solid #ddd;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 5px;
}
#news-container .main-section .left-side .post .table-of-contents__heading {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px 0;
  cursor: pointer;
}
#news-container .main-section .left-side .post .table-of-contents__heading .fa {
  margin-right: 10px;
}
#news-container .main-section .left-side .post .table-of-contents__list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
#news-container .main-section .left-side .post .table-of-contents__item {
  font-size: 0.95rem;
  line-height: 1.5;
}
#news-container .main-section .left-side .post .table-of-contents__item a {
  text-decoration: none;
  color: #555;
}
#news-container .main-section .left-side .post .table-of-contents__item a:hover {
  color: #007bff;
}
#news-container .main-section .left-side .post .table-of-contents__item:has(a[href*="-"]) {
  padding-left: 20px;
}
#news-container .main-section .left-side .post .main-content {
  margin-top: 24px;
  font-family: "Opensans", sans-serif !important;
  font-weight: 400;
}
#news-container .main-section .left-side .post .main-content p {
  font-family: "Opensans", sans-serif !important;
  font-weight: 400;
}
#news-container .main-section .left-side .post .main-content span {
  font-family: "Opensans", sans-serif !important;
  font-weight: 400;
}
#news-container .main-section .left-side .post .post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}
#news-container .main-section .left-side .post .post-footer .post-tags,
#news-container .main-section .left-side .post .post-footer .social-share {
  font-size: 0.9rem;
  color: #555;
}
#news-container .main-section .left-side .post .post-footer .post-tags .fa,
#news-container .main-section .left-side .post .post-footer .social-share .fa {
  color: #999;
  margin-right: 5px;
}
#news-container .main-section .left-side .post .post-footer .post-tags a {
  color: #e40808;
  border: 1px solid #e40808;
  font-weight: 300;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 50px;
  background-color: #fff;
  text-decoration: none;
  margin-right: 8px;
}
#news-container .main-section .left-side .post .post-footer .post-tags a:hover {
  background-color: #e0e0e0;
  color: #333;
}
#news-container .main-section .left-side .post .post-footer .social-share a {
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  margin-left: 5px;
  display: inline-block;
  transition: background-color 0.3s ease;
}
#news-container .main-section .left-side .post .post-footer .social-share a.fa-facebook-f {
  background-color: #3b5998;
}
#news-container .main-section .left-side .post .post-footer .social-share a.fa-twitter {
  background-color: #1da1f2;
}
#news-container .main-section .left-side .post .post-footer .social-share a.fa-zalo {
  background-color: #008fec;
}
#news-container .main-section .left-side .post .post-footer .social-share a.fa-envelope {
  background-color: #e3412a;
}
#news-container .main-section .left-side .post .post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}
#news-container .main-section .left-side .post .post-navigation .prev-post,
#news-container .main-section .left-side .post .post-navigation .next-post {
  display: flex;
  flex-direction: column;
}
#news-container .main-section .left-side .post .post-navigation .prev-post small,
#news-container .main-section .left-side .post .post-navigation .next-post small {
  color: #888;
}
#news-container .main-section .left-side .post .post-navigation .prev-post a,
#news-container .main-section .left-side .post .post-navigation .next-post a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
#news-container .main-section .left-side .post .post-navigation .prev-post a:hover,
#news-container .main-section .left-side .post .post-navigation .next-post a:hover {
  color: #007bff;
}
#news-container .main-section .left-side .post .post-navigation .next-post {
  text-align: right;
}
#news-container .main-section .left-side .post .related-posts {
  margin-top: 30px;
}
#news-container .main-section .left-side .post .related-posts__heading {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 20px;
  border-left: 5px solid #ff4141;
  padding-left: 10px;
}
#news-container .main-section .left-side .post .related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#news-container .main-section .left-side .post .related-post-card {
  color: inherit;
  text-decoration: none;
  border-radius: 5px;
  overflow: hidden;
}
#news-container .main-section .left-side .post .related-post-card__image {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
#news-container .main-section .left-side .post .related-post-card__title {
  font-size: 1rem;
  font-weight: bold;
  color: #3b3b3b;
  margin: 0;
  padding: 16px 0px;
}
#news-container .main-section .left-side .post .related-post-card__excerpt {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}
#news-container .main-section .right-side {
  width: 25%;
}
#news-container .main-section .right-side .latest-articles {
  background-color: #fff;
}
#news-container .main-section .right-side .latest-articles__heading {
  margin: 0;
  padding: 16px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  border-left: 5px solid #ff4141;
  background-color: #f7f7f7;
}
#news-container .main-section .right-side .article-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#news-container .main-section .right-side .article-list__item {
  border-bottom: 1px solid #eee;
}
#news-container .main-section .right-side .article-list__item:last-child {
  border-bottom: none;
}
#news-container .main-section .right-side .article-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 0px;
  color: #555;
  transition: background-color 0.3s ease;
}
#news-container .main-section .right-side .article-link:hover {
  background-color: #f0f0f0;
}
#news-container .main-section .right-side .article-link .article-image {
  width: 40%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
  border-radius: 4px;
}
#news-container .main-section .right-side .article-link .article-title {
  width: 60%;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.1px;
  color: #0d0d0d;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  height: 60px;
}

@media screen and (max-width: 1024px) {
  #news-container .category-section {
    gap: 15px;
    flex-wrap: wrap;
  }
  #news-container .category-section .category-item .link_category .cat_thumbnail {
    width: 120px;
    height: 120px;
  }
  #news-container .main-section {
    gap: 20px;
  }
  #news-container .main-section .left-side {
    width: 65%;
  }
  #news-container .main-section .left-side .post {
    padding: 20px;
  }
  #news-container .main-section .left-side .post .post-header .post-title {
    font-size: 22px;
    line-height: 1.3;
  }
  #news-container .main-section .left-side .post .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  #news-container .main-section .right-side {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  #news-container .category-section {
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }
  #news-container .category-section .category-item {
    flex-shrink: 0;
    min-width: 120px;
  }
  #news-container .category-section .category-item .link_category .cat_thumbnail {
    width: 120px;
    height: 120px;
  }
  #news-container .category-section .category-item .link_category span {
    font-size: 14px;
    padding: 8px 10px;
    bottom: 18px;
    width: 90%;
    line-height: 1.3;
  }
  #news-container .category-section #first_item .link_category .cat_thumbnail {
    width: 120px;
    height: 120px;
  }
  #news-container .category-section #first_item .link_category span {
    font-size: 14px;
    padding: 8px 10px;
    bottom: 18px;
    width: 90%;
    line-height: 1.3;
  }
  #news-container .main-section {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  #news-container .main-section .left-side {
    width: 100%;
  }
  #news-container .main-section .left-side .post {
    padding: 16px;
  }
  #news-container .main-section .left-side .post .post-header {
    margin-bottom: 16px;
  }
  #news-container .main-section .left-side .post .post-header .post-title {
    font-size: 20px;
    line-height: 1.4;
    margin: 16px 0 12px 0;
  }
  #news-container .main-section .left-side .post .post-meta {
    flex-direction: column;
    gap: 5px;
    font-size: 0.8rem;
  }
  #news-container .main-section .left-side .post .post-meta > span {
    margin-right: 0;
    margin-bottom: 5px;
  }
  #news-container .main-section .left-side .post .post-content .post-summary {
    font-size: 15px;
    margin-bottom: 20px;
  }
  #news-container .main-section .left-side .post .post-content .table-of-contents {
    margin-bottom: 20px;
    padding: 12px;
  }
  #news-container .main-section .left-side .post .post-content .table-of-contents__heading {
    font-size: 1rem;
    margin-bottom: 8px;
  }
  #news-container .main-section .left-side .post .post-content .table-of-contents__item {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  #news-container .main-section .left-side .post .post-content .table-of-contents__item a {
    word-break: break-word;
  }
  #news-container .main-section .left-side .post .post-content .main-content {
    margin-top: 20px;
  }
  #news-container .main-section .left-side .post .post-content .main-content__body {
    font-size: 15px;
    line-height: 1.6;
  }
  #news-container .main-section .left-side .post .post-content .main-content__body p {
    margin-bottom: 12px;
  }
  #news-container .main-section .left-side .post .post-content .main-content__body img {
    max-width: 100%;
    height: auto;
  }
  #news-container .main-section .left-side .post .post-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  #news-container .main-section .left-side .post .post-footer .post-tags a {
    margin-bottom: 8px;
    margin-right: 5px;
    display: inline-block;
    font-size: 12px;
    padding: 4px 8px;
  }
  #news-container .main-section .left-side .post .post-footer .social-share {
    font-size: 0.8rem;
  }
  #news-container .main-section .left-side .post .post-footer .social-share a {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
  #news-container .main-section .left-side .post .post-navigation {
    flex-direction: column;
    gap: 15px;
  }
  #news-container .main-section .left-side .post .post-navigation .prev-post,
  #news-container .main-section .left-side .post .post-navigation .next-post {
    text-align: left;
  }
  #news-container .main-section .left-side .post .post-navigation .prev-post small,
  #news-container .main-section .left-side .post .post-navigation .next-post small {
    font-size: 0.8rem;
    color: #666;
  }
  #news-container .main-section .left-side .post .post-navigation .prev-post a,
  #news-container .main-section .left-side .post .post-navigation .next-post a {
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
  }
  #news-container .main-section .left-side .post .related-posts {
    margin-top: 25px;
  }
  #news-container .main-section .left-side .post .related-posts__heading {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  #news-container .main-section .left-side .post .related-posts__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  #news-container .main-section .left-side .post .related-post-card {
    display: flex;
    gap: 12px;
  }
  #news-container .main-section .left-side .post .related-post-card__image {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
  }
  #news-container .main-section .left-side .post .related-post-card__title {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  #news-container .main-section .left-side .post .related-post-card__excerpt {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #666;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  #news-container .main-section .right-side {
    width: 100%;
  }
  #news-container .main-section .right-side .latest-articles__heading {
    font-size: 1.1rem;
    padding: 12px;
  }
  #news-container .main-section .right-side .article-list__item {
    border-bottom: 1px solid #eee;
  }
  #news-container .main-section .right-side .article-link {
    padding: 12px;
  }
  #news-container .main-section .right-side .article-link .article-image {
    width: 80px;
    height: 50px;
    margin-right: 12px;
  }
  #news-container .main-section .right-side .article-link .article-title {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 480px) {
  #news-container .category-section {
    gap: 8px;
  }
  #news-container .category-section .category-item {
    min-width: 100px;
  }
  #news-container .category-section .category-item .link_category .cat_thumbnail {
    width: 100px;
    height: 100px;
  }
  #news-container .category-section .category-item .link_category span {
    font-size: 13px;
    padding: 6px 8px;
    bottom: 15px;
    width: 90%;
    line-height: 1.2;
  }
  #news-container .category-section #first_item .link_category .cat_thumbnail {
    width: 100px;
    height: 100px;
  }
  #news-container .category-section #first_item .link_category span {
    font-size: 13px;
    padding: 6px 8px;
    bottom: 15px;
    width: 90%;
    line-height: 1.2;
  }
  #news-container .main-section {
    margin-top: 15px;
  }
  #news-container .main-section .left-side .post {
    padding: 12px;
  }
  #news-container .main-section .left-side .post .post-header .post-title {
    font-size: 18px;
    line-height: 1.3;
    margin: 12px 0 10px 0;
  }
  #news-container .main-section .left-side .post .post-meta {
    font-size: 0.75rem;
  }
  #news-container .main-section .left-side .post .post-content .post-summary {
    font-size: 14px;
    margin-bottom: 15px;
  }
  #news-container .main-section .left-side .post .post-content .table-of-contents {
    padding: 10px;
  }
  #news-container .main-section .left-side .post .post-content .table-of-contents__heading {
    font-size: 0.9rem;
  }
  #news-container .main-section .left-side .post .post-content .table-of-contents__item {
    font-size: 0.8rem;
  }
  #news-container .main-section .left-side .post .post-content .main-content__body {
    font-size: 14px;
  }
  #news-container .main-section .left-side .post .post-footer .post-tags a {
    font-size: 11px;
    padding: 3px 6px;
    margin: 2px 3px 2px 0;
  }
  #news-container .main-section .left-side .post .post-footer .social-share a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-left: 3px;
  }
  #news-container .main-section .left-side .post .post-navigation .prev-post small,
  #news-container .main-section .left-side .post .post-navigation .next-post small {
    font-size: 0.7rem;
  }
  #news-container .main-section .left-side .post .post-navigation .prev-post a,
  #news-container .main-section .left-side .post .post-navigation .next-post a {
    font-size: 0.8rem;
  }
  #news-container .main-section .left-side .post .related-posts__heading {
    font-size: 1.1rem;
  }
  #news-container .main-section .left-side .post .related-post-card {
    flex-direction: column;
  }
  #news-container .main-section .left-side .post .related-post-card__image {
    width: 100%;
    height: 120px;
  }
  #news-container .main-section .left-side .post .related-post-card__title {
    font-size: 0.85rem;
    margin-top: 8px;
  }
  #news-container .main-section .left-side .post .related-post-card__excerpt {
    font-size: 0.75rem;
  }
  #news-container .main-section .right-side .article-link {
    padding: 10px;
  }
  #news-container .main-section .right-side .article-link .article-image {
    width: 60px;
    height: 40px;
    margin-right: 10px;
  }
  #news-container .main-section .right-side .article-link .article-title {
    font-size: 13px;
    line-height: 1.3;
  }
}
