@charset "UTF-8";
.list-blogs-latest .item-article .post-content h3 a {
  white-space: initial;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box; }

/*===== BLOGS +++ ARTICLE  =================================*/
/* Blog */
.layout-blogs .breadcrumb-shop,
.layout-article .breadcrumb-shop,
.layout-blogs-all .breadcrumb-shop {
  margin-bottom: 0; }

/* ===== ALL BLOGS PAGE ===== */
.layout-blogs-all {
  /* Responsive */
  /* Touch targets for mobile (Min 44x44px) */ }
  .layout-blogs-all .breadcrumb-list .breadcrumb-arrows {
    padding: 24px 0; }
  .layout-blogs-all .allblogs-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #1d1d1d;
    margin: 0 0 24px 0;
    letter-spacing: -0.2px; }
  .layout-blogs-all .allblogs-featured {
    margin-bottom: 8px; }
    .layout-blogs-all .allblogs-featured .featured-grid {
      margin: 0 -12px; }
      .layout-blogs-all .allblogs-featured .featured-grid > div {
        padding: 0 12px; }
  .layout-blogs-all .allblogs-latest {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px; }
    .layout-blogs-all .allblogs-latest .latest-grid {
      margin: 0 -12px; }
      .layout-blogs-all .allblogs-latest .latest-grid > div {
        padding: 0 12px; }
  .layout-blogs-all .latest-article {
    display: flex;
    gap: 16px;
    height: 100%;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
    .layout-blogs-all .latest-article__link {
      display: flex;
      gap: 16px;
      text-decoration: none;
      width: 100%;
      color: inherit; }
      .layout-blogs-all .latest-article__link:hover {
        text-decoration: none; }
        .layout-blogs-all .latest-article__link:hover .latest-article__title {
          color: var(--shop-color-main, #fb6514); }
        .layout-blogs-all .latest-article__link:hover .latest-article__image img {
          transform: scale(1.05); }
    .layout-blogs-all .latest-article__image {
      flex-shrink: 0;
      width: 210px;
      height: 118px;
      border-radius: 6px;
      overflow: hidden;
      background: #f2f4f7; }
      .layout-blogs-all .latest-article__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .layout-blogs-all .latest-article__content {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 4px; }
    .layout-blogs-all .latest-article__title {
      font-size: 16px;
      font-weight: 700;
      line-height: 24px;
      color: #1d1d1d;
      margin: 0;
      letter-spacing: -0.2px;
      transition: color 0.2s ease;
      /* Line clamp 2 lines */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      word-break: break-word; }
    .layout-blogs-all .latest-article__excerpt {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      color: #1d1d1d;
      margin: 0;
      /* Line clamp 2 lines */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      word-break: break-word; }
    .layout-blogs-all .latest-article__date {
      font-size: 14px;
      font-weight: 400;
      line-height: 20px;
      color: #757575;
      margin: 0; }
  .layout-blogs-all .allblogs-video {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px; }
    .layout-blogs-all .allblogs-video .allblogs-heading {
      font-size: 18px;
      font-weight: 700;
      line-height: 28px;
      color: #1d1d1d;
      margin: 0 0 24px 0;
      letter-spacing: -0.2px; }
    .layout-blogs-all .allblogs-video .video-layout {
      margin: 0 -12px; }
      .layout-blogs-all .allblogs-video .video-layout > div {
        padding: 0 12px; }
  .layout-blogs-all .video-featured {
    height: 100%; }
    .layout-blogs-all .video-featured__link {
      display: block;
      text-decoration: none;
      color: inherit; }
      .layout-blogs-all .video-featured__link:hover {
        text-decoration: none; }
        .layout-blogs-all .video-featured__link:hover .video-featured__title {
          color: var(--shop-color-main, #fb6514); }
        .layout-blogs-all .video-featured__link:hover .video-featured__thumbnail img {
          transform: scale(1.02); }
        .layout-blogs-all .video-featured__link:hover .video-featured__play-icon {
          transform: scale(1.1); }
    .layout-blogs-all .video-featured__thumbnail {
      position: relative;
      width: 100%;
      height: 0;
      padding-bottom: 58.59375%;
      /* 450/768 = aspect ratio */
      border-radius: 12px;
      overflow: hidden;
      background: #f2f4f7;
      margin-bottom: 24px; }
      .layout-blogs-all .video-featured__thumbnail img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .layout-blogs-all .video-featured__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.2);
      transition: background 0.2s ease; }
      .layout-blogs-all .video-featured__overlay:hover {
        background: rgba(0, 0, 0, 0.3); }
    .layout-blogs-all .video-featured__play-icon {
      transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)); }
    .layout-blogs-all .video-featured__title {
      font-size: 24px;
      font-weight: 700;
      line-height: 32px;
      color: #1d1d1d;
      margin: 0;
      letter-spacing: -0.3px;
      transition: color 0.2s ease;
      /* Line clamp 2 lines */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      word-break: break-word; }
  .layout-blogs-all .video-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%; }
    .layout-blogs-all .video-sidebar__item {
      flex: 1;
      min-height: 82px; }
      .layout-blogs-all .video-sidebar__item:not(:last-child) {
        margin-bottom: 0; }
    .layout-blogs-all .video-sidebar__link {
      display: flex;
      gap: 16px;
      text-decoration: none;
      color: inherit;
      height: 100%; }
      .layout-blogs-all .video-sidebar__link:hover {
        text-decoration: none; }
        .layout-blogs-all .video-sidebar__link:hover .video-sidebar__title {
          color: var(--shop-color-main, #fb6514); }
        .layout-blogs-all .video-sidebar__link:hover .video-sidebar__thumbnail img {
          transform: scale(1.05); }
    .layout-blogs-all .video-sidebar__thumbnail {
      position: relative;
      flex-shrink: 0;
      width: 146px;
      height: 82px;
      border-radius: 6px;
      overflow: hidden;
      background: #f2f4f7; }
      .layout-blogs-all .video-sidebar__thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
    .layout-blogs-all .video-sidebar__play-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.3);
      transition: background 0.2s ease; }
      .layout-blogs-all .video-sidebar__play-overlay svg {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); }
    .layout-blogs-all .video-sidebar__title {
      flex: 1;
      font-size: 14px;
      font-weight: 700;
      line-height: 20px;
      color: #1d1d1d;
      margin: 0;
      transition: color 0.2s ease;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      word-break: break-word;
      max-height: 60px; }
  .layout-blogs-all .allblogs-featured .featured-grid {
    margin: 0 -12px; }
    .layout-blogs-all .allblogs-featured .featured-grid > div {
      padding: 0 12px; }
  .layout-blogs-all .featured-article {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 100%;
    display: block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease; }
    .layout-blogs-all .featured-article__link {
      display: block;
      position: relative;
      height: 100%;
      text-decoration: none; }
    .layout-blogs-all .featured-article__image {
      position: relative;
      overflow: hidden;
      border-radius: 12px; }
      .layout-blogs-all .featured-article__image img {
        display: block;
        width: 100%;
        height: 100%;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .layout-blogs-all .featured-article__overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 100%;
      background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.5) 100%);
      border-radius: 12px;
      pointer-events: none;
      z-index: 1; }
    .layout-blogs-all .featured-article__content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px;
      z-index: 2; }
    .layout-blogs-all .featured-article__title {
      color: #ffffff;
      margin: 0;
      font-weight: 700;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden; }
    .layout-blogs-all .featured-article--large .featured-article__image {
      aspect-ratio: 792 / 446;
      min-height: 446px; }
    .layout-blogs-all .featured-article--large .featured-article__title--large {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.3px;
      -webkit-line-clamp: 3;
      line-clamp: 3; }
    .layout-blogs-all .featured-article--small .featured-article__image {
      aspect-ratio: 384 / 216;
      min-height: 216px; }
    .layout-blogs-all .featured-article--small .featured-article__title--small {
      font-size: 16px;
      line-height: 24px;
      letter-spacing: -0.2px;
      -webkit-line-clamp: 2;
      line-clamp: 2; }
    @media (min-width: 1200px) {
      .layout-blogs-all .featured-article:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); }
        .layout-blogs-all .featured-article:hover .featured-article__image img {
          transform: scale(1.05); } }
  .layout-blogs-all .allblogs-list {
    margin-top: 50px; }
    .layout-blogs-all .allblogs-list .heading-page {
      margin-bottom: 30px; }
      .layout-blogs-all .allblogs-list .heading-page h1 {
        font-size: 32px;
        font-weight: 700;
        color: var(--shop-color-title);
        margin: 0; }
    .layout-blogs-all .allblogs-list .allblogs-grid {
      margin: 0 -12px; }
      .layout-blogs-all .allblogs-list .allblogs-grid .article-loop {
        padding: 0 12px;
        margin-bottom: 24px; }
  @media (max-width: 991px) {
    .layout-blogs-all .breadcrumb-list .breadcrumb-arrows {
      padding: 16px 0; }
    .layout-blogs-all .allblogs-video {
      padding: 20px;
      margin-bottom: 16px; }
      .layout-blogs-all .allblogs-video .allblogs-heading {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px; }
      .layout-blogs-all .allblogs-video .video-layout > div {
        margin-bottom: 20px; }
      .layout-blogs-all .allblogs-video .video-featured__title {
        font-size: 20px;
        line-height: 28px; }
      .layout-blogs-all .allblogs-video .video-sidebar {
        gap: 20px; }
    .layout-blogs-all .allblogs-latest {
      padding: 20px;
      margin-bottom: 16px; }
      .layout-blogs-all .allblogs-latest__heading {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px; }
      .layout-blogs-all .allblogs-latest .latest-grid .col-lg-6 {
        margin-bottom: 20px; }
    .layout-blogs-all .allblogs-tabs {
      margin: 30px 0; }
      .layout-blogs-all .allblogs-tabs .tabs-menu {
        gap: 6px; }
        .layout-blogs-all .allblogs-tabs .tabs-menu__link {
          font-size: 14px;
          padding: 6px 16px;
          min-height: 40px; }
    .layout-blogs-all .allblogs-featured {
      margin-bottom: 30px; }
      .layout-blogs-all .allblogs-featured .featured-article--large .featured-article__title--large {
        font-size: 20px;
        line-height: 28px; }
      .layout-blogs-all .allblogs-featured .featured-article--small .featured-article__title--small {
        font-size: 15px;
        line-height: 22px; }
    .layout-blogs-all .allblogs-list .heading-page h1 {
      font-size: 26px; } }
  @media (max-width: 767px) {
    .layout-blogs-all .allblogs-heading {
      font-size: 16px;
      line-height: 24px;
      margin-bottom: 16px; }
    .layout-blogs-all .allblogs-tabs {
      margin: 0 0 16px;
      overflow: hidden;
      /* Fade indicators cho scrollable */ }
      .layout-blogs-all .allblogs-tabs .tabs-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none; }
        .layout-blogs-all .allblogs-tabs .tabs-wrapper::-webkit-scrollbar {
          display: none; }
      .layout-blogs-all .allblogs-tabs .tabs-menu {
        flex-wrap: nowrap;
        overflow: auto hidden;
        padding: 0;
        gap: 8px; }
        .layout-blogs-all .allblogs-tabs .tabs-menu__link {
          font-size: 14px;
          padding: 8px 20px;
          min-width: auto;
          flex-shrink: 0; }
      .layout-blogs-all .allblogs-tabs .tabs-wrapper::before,
      .layout-blogs-all .allblogs-tabs .tabs-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 20px;
        pointer-events: none;
        z-index: 1; }
      .layout-blogs-all .allblogs-tabs .tabs-wrapper::before {
        left: 0;
        background: linear-gradient(90deg, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%); }
      .layout-blogs-all .allblogs-tabs .tabs-wrapper::after {
        right: 0;
        background: linear-gradient(270deg, #f8f9fa 0%, rgba(248, 249, 250, 0) 100%); }
    .layout-blogs-all .allblogs-featured {
      margin-bottom: 0; }
      .layout-blogs-all .allblogs-featured .featured-grid {
        margin: 0 -7px; }
        .layout-blogs-all .allblogs-featured .featured-grid > div {
          padding: 0 7px; }
      .layout-blogs-all .allblogs-featured .featured-article--large,
      .layout-blogs-all .allblogs-featured .featured-article--small {
        margin-bottom: 14px; }
        .layout-blogs-all .allblogs-featured .featured-article--large .featured-article__image,
        .layout-blogs-all .allblogs-featured .featured-article--small .featured-article__image {
          min-height: 200px; }
      .layout-blogs-all .allblogs-featured .featured-article--large .featured-article__title--large {
        font-size: 18px;
        line-height: 26px;
        padding: 0; }
      .layout-blogs-all .allblogs-featured .featured-article--small .featured-article__title--small {
        font-size: 14px;
        line-height: 20px;
        padding: 0; }
      .layout-blogs-all .allblogs-featured .featured-article__content {
        padding: 16px; }
    .layout-blogs-all .allblogs-latest {
      padding: 12px;
      margin-bottom: 16px; }
      .layout-blogs-all .allblogs-latest .latest-grid .col-lg-6 {
        margin-bottom: 16px; }
      .layout-blogs-all .allblogs-latest .latest-article__link {
        gap: 8px; }
      .layout-blogs-all .allblogs-latest .latest-article__image {
        width: 120px;
        height: 67px; }
      .layout-blogs-all .allblogs-latest .latest-article__title {
        font-size: 14px;
        line-height: 20px;
        -webkit-line-clamp: 2;
        line-clamp: 2; }
      .layout-blogs-all .allblogs-latest .latest-article__excerpt {
        font-size: 13px;
        line-height: 18px;
        -webkit-line-clamp: 2;
        line-clamp: 2; }
      .layout-blogs-all .allblogs-latest .latest-article__date {
        font-size: 12px;
        line-height: 16px; }
    .layout-blogs-all .allblogs-video {
      padding: 16px; }
      .layout-blogs-all .allblogs-video .allblogs-heading {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px; }
      .layout-blogs-all .allblogs-video .video-layout {
        flex-direction: column; }
      .layout-blogs-all .allblogs-video .video-featured__thumbnail {
        padding-bottom: 56.25%;
        /* 16:9 ratio for mobile */
        margin-bottom: 16px; }
      .layout-blogs-all .allblogs-video .video-featured__title {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 16px; }
      .layout-blogs-all .allblogs-video .video-featured__play-icon {
        width: 60px;
        height: 60px; }
      .layout-blogs-all .allblogs-video .video-sidebar {
        gap: 16px; }
        .layout-blogs-all .allblogs-video .video-sidebar__item {
          min-height: auto; }
        .layout-blogs-all .allblogs-video .video-sidebar__thumbnail {
          width: 100px;
          height: 56px; }
        .layout-blogs-all .allblogs-video .video-sidebar__title {
          font-size: 13px;
          line-height: 18px;
          -webkit-line-clamp: 2;
          line-clamp: 2; }
        .layout-blogs-all .allblogs-video .video-sidebar__play-overlay svg {
          width: 20px;
          height: 20px; }
    .layout-blogs-all .allblogs-list {
      margin-top: 30px; }
      .layout-blogs-all .allblogs-list .heading-page h1 {
        font-size: 22px; }
      .layout-blogs-all .allblogs-list .allblogs-grid {
        margin: 0 -7px; }
        .layout-blogs-all .allblogs-list .allblogs-grid .article-loop {
          padding: 0 7px;
          margin-bottom: 14px; } }
  @media (max-width: 767px) {
    .layout-blogs-all .featured-article__link {
      min-height: 44px;
      display: flex;
      align-items: flex-end; } }

.allblogs-tabs {
  margin: 0 0 24px;
  --tabs-bg-default: #f2f4f7;
  --tabs-bg-active: #fff;
  --tabs-border-default: #d5d7da;
  --tabs-border-active: var(--shop-color-main);
  --tabs-text-default: var(--shop-color-text);
  --tabs-text-active: var(--shop-color-main); }
  .allblogs-tabs .tabs-wrapper.tabs-align--left .tabs-menu {
    justify-content: flex-start; }
  .allblogs-tabs .tabs-wrapper.tabs-align--center .tabs-menu {
    justify-content: center; }
  .allblogs-tabs .tabs-wrapper.tabs-align--right .tabs-menu {
    justify-content: flex-end; }
  .allblogs-tabs .tabs-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* Underline variant */ }
    .allblogs-tabs .tabs-menu__item {
      margin: 0;
      padding: 0; }
    .allblogs-tabs .tabs-menu__link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 24px;
      font-size: 16px;
      font-weight: 400;
      line-height: 20px;
      text-align: center;
      text-decoration: none;
      border-radius: 4px;
      border: 1px solid var(--tabs-border-default);
      background-color: var(--tabs-bg-default);
      color: var(--tabs-text-default);
      transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
      white-space: nowrap;
      min-height: 44px;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent; }
      .allblogs-tabs .tabs-menu__link:hover {
        background-color: var(--tabs-bg-active);
        border-color: var(--tabs-border-active);
        color: var(--tabs-text-active);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
      .allblogs-tabs .tabs-menu__link.active {
        background-color: var(--tabs-bg-active);
        border-color: var(--tabs-border-active);
        color: var(--tabs-text-active);
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(251, 101, 20, 0.12); }
      .allblogs-tabs .tabs-menu__link:focus {
        outline: 2px solid var(--tabs-border-active);
        outline-offset: 2px; }
      .allblogs-tabs .tabs-menu__link.loading {
        opacity: 0.6;
        pointer-events: none; }
    .allblogs-tabs .tabs-menu--pills .tabs-menu__link {
      border-radius: 4px; }
    .allblogs-tabs .tabs-menu--underline {
      gap: 16px; }
      .allblogs-tabs .tabs-menu--underline .tabs-menu__link {
        border: none;
        border-bottom: 2px solid transparent;
        border-radius: 0;
        background: transparent;
        padding: 8px 16px; }
        .allblogs-tabs .tabs-menu--underline .tabs-menu__link:hover, .allblogs-tabs .tabs-menu--underline .tabs-menu__link.active {
          background: transparent;
          border-bottom-color: var(--tabs-border-active);
          box-shadow: none;
          transform: none; }

.boxBlog-left {
  padding-right: 30px; }

.boxBlog-right {
  padding-left: 0; }

.heading-page h1 {
  font-size: 18px;
  text-transform: uppercase; }

.list-article-content {
  display: flex;
  display: -ms-flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap; }

.listBlogs-content, .article-related {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px; }

/* Article Loop */
.article-loop .article-image {
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px; }
  .article-loop .article-image img {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

.article-loop .date {
  color: #757575;
  display: block;
  padding: 0 0 8px; }

.article-loop .post-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0 0 8px; }
  .article-loop .post-title a {
    white-space: initial;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box; }

.article-loop .entry-content {
  white-space: initial;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box; }

.article-loop:hover .article-image img {
  transform: scale(1.05); }

.article-loop:hover .post-title a {
  color: var(--shop-color-hover); }

/* Article */
.wrapper-contentArticle,
.wrapper-contentBlogs {
  margin-bottom: 40px; }

.wrapper-contentArticle .heading-article {
  margin: 0 0 20px; }

.wrapper-contentArticle .heading-article h1 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 10px; }

.boxArticle-detail {
  background: #fff;
  padding: 24px;
  margin-bottom: 25px;
  border-radius: 12px; }

.inforArticle-content .article-content > div {
  margin-bottom: 30px; }

.inforArticle-content .article-content .box-article-detail {
  max-width: 860px;
  margin: 0 auto 30px; }

.inforArticle-content .box-article-detail img {
  width: 800px;
  max-width: 100%;
  /* Rất quan trọng: giúp ảnh không bị tràn màn hình trên điện thoại */
  height: auto;
  display: block;
  /* Giúp ảnh không bị dính chữ */
  margin: 0 auto;
  /* Tự động căn giữa ảnh */ }

.inforArticle-content .article-post-meta {
  font-size: 13px;
  color: #74839f;
  margin: 0 0 5px; }
  .inforArticle-content .article-post-meta a {
    color: #757575; }
  .inforArticle-content .article-post-meta a:hover {
    color: var(--shop-color-hover); }
  .inforArticle-content .article-post-meta span {
    position: relative; }
  .inforArticle-content .article-post-meta span + span:before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: -1px 10px 0;
    border-radius: 100%;
    background-color: #74839f;
    opacity: 0.4;
    vertical-align: middle; }
  @media (max-width: 991px) {
    .inforArticle-content .article-post-meta {
      font-size: 10px; }
    .inforArticle-content .article-post-meta span + span:before {
      margin: 0 2px; }
    .inforArticle-content .article-post-meta span.comment:before {
      margin-left: 0;
      margin-right: 5px; } }

.inforArticle-content .post-navigation {
  border-top: 1px solid var(--shop-color-border);
  width: 100%;
  display: inline-block;
  font-size: 16px;
  padding: 25px 0 0; }
  .inforArticle-content .post-navigation .flex-row-articleToolbar {
    font-size: 13px;
    margin: 0 -7px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap; }
    .inforArticle-content .post-navigation .flex-row-articleToolbar a {
      color: var(--shop-color-text); }
    .inforArticle-content .post-navigation .flex-row-articleToolbar a:hover {
      color: var(--shop-color-hover); }
    .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar-title p {
      margin: 0;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis; }
    .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar-title p span {
      font-size: 14px;
      color: var(--shop-color-title);
      font-weight: 600; }
    .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar--nav {
      text-align: right;
      font-weight: 600; }
    .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar--nav > span svg {
      vertical-align: -1px;
      width: 12px;
      color: var(--shop-color-text);
      height: 12px;
      margin: 0 4px; }
    .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar--nav .separator {
      display: inline-block;
      position: relative;
      width: 1px;
      height: 12px;
      margin: 0 18px;
      background: var(--shop-color-text);
      opacity: 0.8;
      vertical-align: middle; }

.inforArticle-content .box-article-detail h2 {
  font-size: 18px; }

.inforArticle-content .box-article-detail h3 {
  font-size: 16px; }

.inforArticle-content .box-article-detail h4,
.inforArticle-content .box-article-detail h5,
.inforArticle-content .box-article-detail h6 {
  font-size: 14px; }

.inforArticle-content .box-article-tags {
  font-size: 14px; }

.inforArticle-content .box-article-tags a {
  color: red; }

.inforArticle-content .article-comment {
  background: #fff;
  padding: 15px 20px;
  border-radius: 3px;
  box-shadow: 0 0 6px #e5e8e0; }
  .inforArticle-content .article-comment > div {
    margin-bottom: 30px; }
  .inforArticle-content .article-comment .title-bl h3 {
    font-size: 18px;
    color: #252a2b;
    border-bottom: 1px solid var(--shop-color-border);
    padding-bottom: 10px;
    margin-bottom: 20px; }
  .inforArticle-content .article-comment .comment_form .form-group {
    width: 100%;
    margin-bottom: 15px; }
  .inforArticle-content .article-comment .comment_form .form-group input {
    color: #5c5c5c;
    height: 45px;
    width: 100%;
    font-weight: 500;
    padding: 8px 20px;
    background: #fff;
    border: 1px solid var(--shop-color-border);
    border-radius: 4px;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none; }
  .inforArticle-content .article-comment .comment_form .form-group textarea {
    box-shadow: none;
    border: 1px solid var(--shop-color-border);
    border-radius: 4px;
    box-shadow: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none; }
  .inforArticle-content .article-comment .comment-user {
    margin-bottom: 16px; }
  .inforArticle-content .article-comment .comment-user .author {
    font-size: 14px;
    margin: 0 0 5px; }
  .inforArticle-content .article-comment .comment-user .author span.date {
    font-size: 12px;
    float: right; }

.inforArticle-content .article-related {
  margin-top: 25px; }
  .inforArticle-content .article-related .title-blog-related {
    position: relative;
    text-align: left;
    margin: 0 0 24px;
    font-size: 18px; }
  .inforArticle-content .article-related .title-blog-related span {
    display: inline-block;
    color: var(--shop-color-text);
    position: relative;
    font-size: 18px; }

.inforArticle-content .list-blogs-related .article-loop {
  margin-bottom: 0; }

.inforArticle-content .list-blogs-related .article-loop .article-detail .post-title {
  font-size: 16px;
  margin: 0;
  padding-bottom: 8px; }

.inforArticle-content .list-blogs-related .article-loop .article-detail .entry-content {
  font-size: 14px; }

/* Toolbar article */
.article-content h2 {
  font-size: 18px; }

.article-content h3 {
  font-size: 16px; }

/* Table of Contents Article */
.table-of-contents {
  background: #f7fbf9;
  border: 1px solid #e0f1e9;
  border-radius: 6px;
  display: block;
  padding: 8px 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  position: relative;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 860px;
  display: table; }

.table-of-contents .table-title {
  font-weight: 700;
  font-size: 15px;
  margin: 0;
  padding: 10px 0; }

.table-of-contents .table-title .toc_toggle {
  font-size: 13px;
  color: #bcbdc1;
  display: inline-block;
  vertical-align: 2px;
  margin-left: 8px; }

.table-of-contents .table-title .toc_toggle a {
  color: var(--shop-color-main);
  padding: 0 1px; }

.table-of-contents ul {
  font-size: 14px;
  list-style-type: disc;
  margin: 0 0 0 16px; }

.table-of-contents ul li {
  list-style-position: outside;
  margin: 8px 0 0; }

.table-of-contents ul li::marker {
  color: var(--shop-color-main); }

.table-of-contents ul li a {
  text-decoration: none;
  color: #333; }

.table-of-contents > ul {
  padding-bottom: 10px; }

.table-of-contents > ul ul ul {
  display: none; }

.table-of-contents ul li a:hover,
.table-of-contents ul li a:focus {
  color: var(--shop-color-hover); }

.table-content-button {
  width: 35px;
  height: 35px;
  display: block;
  position: fixed;
  left: 10px;
  z-index: 10;
  opacity: 0;
  top: 45%;
  transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); }

.table-content-button .btn-icolist {
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  outline: none;
  float: left;
  background: #fcfcfc;
  border: 1px solid #eeeeee;
  border-radius: 4px; }

.table-content-button .btn-icolist svg {
  width: 20px;
  height: 35px;
  vertical-align: initial; }

.table-content-fixed {
  position: fixed;
  left: 10px;
  z-index: 999;
  max-width: 280px;
  top: 45%;
  background: #f7fbf9;
  border: 1px solid #e0f1e9;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.08);
  -webkit-transform-origin: 0 top;
  transform-origin: 0 top;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1); }

.table-content-fixed .table-of-header {
  position: relative;
  padding: 10px 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee; }

.table-content-fixed .table-of-header .hTitle {
  max-width: calc(100% - 50px);
  margin-left: 0;
  font-weight: 600;
  font-size: 14px; }

.table-content-fixed .table-of-header .hClose {
  position: absolute;
  right: 5px;
  top: 2px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  text-align: center; }

.table-content-fixed .table-of-header .hClose svg {
  width: 32px;
  height: 32px;
  width: 14px; }

.table-content-fixed .table-of-contents {
  border: 0;
  background: #ffffff;
  margin: 0;
  padding: 5px 12px;
  box-shadow: none;
  display: block;
  overflow: hidden;
  overflow-y: auto;
  max-height: 70vh;
  -webkit-overflow-scrolling: touch;
  -ms-scroll-chaining: none;
  overscroll-behavior: none; }

.table-content-fixed .table-of-contents .table-title {
  display: none; }

.table-content-fixed .table-of-contents ul {
  font-size: 13px; }

.table-content-button.active {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1); }

.table-content-fixed.active {
  transform: scale(1) translateY(-45%);
  -webkit-transform: scale(1) translateY(-45%);
  -moz-transform: scale(1) translateY(-45%);
  -ms-transform: scale(1) translateY(-45%);
  -o-transform: scale(1) translateY(-45%); }

@media (min-width: 768px) {
  .blogs-aside--sticky {
    top: 30px;
    position: -webkit-sticky;
    position: sticky;
    -webkit-transition: top 400ms ease;
    -moz-transition: top 400ms ease;
    transition: top 400ms ease; }
  body.scroll-body-up .blogs-aside--sticky {
    top: 80px; } }

@media (max-width: 991px) and (min-width: 768px) {
  .boxBlog-left {
    padding-right: 15px; }
  .boxBlog-right {
    padding-left: 15px;
    padding-right: 15px; }
  .article-loop .article-inner .article-image {
    background: transparent; }
  .article-loop .article-inner .article-title h3.post-title {
    font-size: 18px;
    margin: 10px 0 5px; }
  .inforArticle-content .article-related .list-blogs-related .article-post {
    margin-bottom: 15px; }
  .inforArticle-content .article-related .list-blogs-related .article-post:nth-of-type(2n + 1) {
    clear: both; }
  .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar--nav,
  .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar-title p {
    text-align: center; }
  .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar-title p {
    margin-bottom: 20px; }
  .inforArticle-content .article-related {
    margin-bottom: 20px; } }

@media (max-width: 767px) {
  .boxBlog-left {
    padding: 0 7px; }
  .boxBlog-right {
    padding: 0 7px; }
  .list-article-content {
    margin: 0 -7px; }
  .wrapper-contentArticle,
  .wrapper-contentBlogs {
    margin-top: 0;
    margin-bottom: 0; }
  .article-loop {
    margin-bottom: 14px;
    padding: 0 7px; }
  .article-loop .article-inner .article-image {
    background: transparent; }
  .article-loop .article-inner .article-detail {
    padding: 7px; }
  .article-loop .article-inner .article-detail .entry-content {
    font-size: 12px;
    margin-bottom: 5px; }
  .article-loop .article-inner .article-title h3.post-title {
    font-size: 14px;
    margin: 0 0 6px; }
  .article-loop.article_loopfirst .article-inner {
    padding-top: 0;
    overflow: hidden; }
  .article-loop.article_loopfirst .article-inner .article-title {
    -webkit-order: 2;
    order: 2; }
  .article-loop.article_loopfirst .article-inner .article-detail {
    -webkit-order: 3;
    order: 3;
    width: 100%;
    padding-left: 0; }
  .article-loop.article_loopfirst .article-inner .article-image {
    -webkit-order: 1;
    order: 1;
    width: 100%; }
  .wrapper-contentArticle .heading-article h1 {
    font-size: 18px; }
  .inforArticle-content .article-related {
    margin-bottom: 20px; }
  .inforArticle-content .article-related .content-blogs-related .owl-stage {
    left: -23px; }
  .inforArticle-content .article-related .list-blogs-related .article-post {
    display: inline-block;
    width: 65%;
    float: none;
    padding-left: 0;
    padding-right: 7px;
    vertical-align: top;
    white-space: normal; }
  .inforArticle-content .article-comment .title-bl h3 {
    font-size: 20px; }
  .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar--nav,
  .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar-title p {
    text-align: center; }
  .inforArticle-content .post-navigation .flex-row-articleToolbar .articleToolbar-title p {
    margin-bottom: 20px; } }

.list-blogs-latest {
  counter-reset: post-ranking; }

.list-blogs-latest .item-article {
  border-bottom: 1px #efefef dotted;
  padding: 15px 0;
  margin: 0; }

.list-blogs-latest .item-article:last-child {
  border-bottom: none; }

.list-blogs-latest .item-article .post-image {
  width: 100px;
  padding-right: 10px;
  float: left;
  position: relative; }

.list-blogs-latest .item-article .post-content {
  width: calc(100% - 100px);
  float: left; }

.list-blogs-latest .item-article .post-content h3 {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 500; }

.list-blogs-latest .item-article .post-content h3 a {
  color: var(--shop-color-text); }

.list-blogs-latest .item-article .post-content .post-meta {
  font-size: 12px;
  margin: 0; }

.list-blogs-latest .item-article .post-content .post-meta .date {
  color: #74839f; }

/* ===== UTILITY: Skeleton Loading (CLS Prevention) ===== */
.article-skeleton {
  min-height: 400px;
  /* Prevent layout shift during AJAX load */
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 12px; }

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0; }
  100% {
    background-position: -200% 0; } }

/* Mobile Touch Optimization */
@media (max-width: 991px) {
  .featured-article__link,
  .blog-post-thumbnail {
    /* Minimum touch target 44x44px */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .listBlogs-content, .article-related, .boxArticle-detail,
  .group-sidebox .sidebox-title {
    padding: 12px;
    margin-bottom: 16px; }
  .article-loop .article-image {
    margin-bottom: 6px; }
  .inforArticle-content .article-content > div {
    margin-bottom: 0; }
  .list-blogs-related {
    margin: 0; }
    .list-blogs-related .article-loop {
      padding: 0; } }
