@charset "UTF-8";
:root {
  /* 🎯 Màu thương hiệu (Brand / Primary) */
  --color-primary: #ec4621;
  /* Cam chính */
  --color-primary-hover: #f15a22;
  /* Cam sáng hơn, dùng hover hoặc active */
  /* 🖤 Màu cơ bản (Neutral / Grayscale) */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray-900: #1a1a1a;
  --color-gray-800: #344054;
  --color-gray-700: #4a5568;
  --color-gray-600: #52525b;
  --color-gray-500: #667085;
  --color-gray-300: #d9d9d9;
  --color-gray-100: #f4f4f4;
  --color-gray-50: #f5f5f7;
  --color-bg-subtle: #eaecf0;
  --color-surface: #f9fafb;
  /* ✍️ Màu văn bản (Text) */
  --color-text-primary: var(--color-gray-800);
  /* Dễ đọc nhất */
  --color-text-secondary: var(--color-gray-500);
  --color-text-invert: var(--color-white);
  /* 🎨 Nền & viền */
  --color-bg: var(--color-white);
  --color-bg-light: var(--color-gray-100);
  --color-border: var(--color-gray-300);
  --container-padding-x: 339px;
  --container-padding-x-desktop: 200px;
  /* Desktop nhỏ (992px – 1199px) */
  --container-padding-x-md: 48px;
  /* Tablet (576px – 991px) */
  --container-padding-x-sm: 32px;
  /* Mobile (<576px) */
  --container-padding-x-xs: 16px;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  line-height: 1;
  font-weight: 500;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul li a {
  text-decoration: none;
}

p {
  margin: 0;
}

a {
  text-decoration: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  line-height: normal;
  box-sizing: border-box;
}

/* 8. Button style */
button {
  cursor: pointer;
  border: none;
}

.row {
  display: flex;
}

.col-8 {
  flex: 0 0 33.3333%;
}

/* header */
.header {
  width: 100%;
  position: relative;
  z-index: 10;
}
.header__top {
  height: 88px;
  display: flex;
  justify-content: space-between;
  padding: 9px var(--container-padding-x);
  align-items: center;
}
@media (max-width: 1600px) {
  .header__top {
    padding: 9px var(--container-padding-x-desktop);
  }
}
@media (max-width: 1200px) {
  .header__top {
    padding: 9px var(--container-padding-x-md);
  }
}
@media (max-width: 992px) {
  .header__top {
    padding: 9px var(--container-padding-x-sm);
  }
}
@media (max-width: 576px) {
  .header__top {
    height: 64px;
    padding: 8px var(--container-padding-x-xs);
  }
}
.header__logo img {
  width: 70px;
  height: 70px;
}
@media (max-width: 576px) {
  .header__logo img {
    width: 48px;
    height: 44px;
  }
}
.header__contact {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 576px) {
  .header__contact {
    display: none;
  }
}
.header__hotline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
}
.header__auth-btn {
  background-color: var(--color-gray-300);
  padding: 8px 13px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
}
.header__menu {
  display: none;
}
@media (max-width: 576px) {
  .header__menu {
    display: block;
    cursor: pointer;
  }
}

/* banner */
.banner {
  position: relative;
  height: 589px;
  width: 100%;
  background: url("../assets/images/banner-home.png") center/cover no-repeat;
}
/* @media (max-width: 1600px) {
  .banner {
    height: 400px;
  }
} */
@media (max-width: 1200px) {
  .banner {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .banner {
    height: 200px;
  }
}
@media (max-width: 576px) {
  .banner {
    height: 115px;
  }
}
.banner__nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (max-width: 576px) {
  .banner__nav {
    display: none;
  }
}
.banner__menu {
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: rgba(0, 0, 0, 0.4);
  margin: 0;
  list-style: none;
}
.banner__menu-item {
  font-size: 14px;
  font-weight: 400;
}
.banner__menu-item a {
  text-decoration: none !important;
  text-transform: uppercase;
  color: var(--color-bg);
}

/* main */
.main-content {
  padding: 80px var(--container-padding-x);
}
@media (max-width: 1600px) {
  .main-content {
    padding: 60px var(--container-padding-x-desktop);
  }
}
@media (max-width: 1200px) {
  .main-content {
    padding: 40px var(--container-padding-x-md);
  }
}
@media (max-width: 992px) {
  .main-content {
    padding: 25px var(--container-padding-x-sm);
  }
}
@media (max-width: 576px) {
  .main-content {
    padding: 0;
    padding-bottom: 92px;
  }
}
.main-content .tracking {
  text-align: center;
}
@media (max-width: 576px) {
  .main-content .tracking {
    margin: 25px 6px 0px 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background: linear-gradient(to top right, #d0d0d2, #ffffff);
    padding: 40px 8px 20px 16px;
  }
}
.main-content .tracking__title {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: var(--color-gray-600);
  text-transform: uppercase;
  text-align: center;
}
.main-content .tracking__title::after {
  content: "";
  left: 0;
  width: 100%;
  position: absolute;
  height: 2px;
  bottom: -17px;
  background-color: var(--color-primary-hover);
}
@media (max-width: 576px) {
  .main-content .tracking__title {
    display: none;
  }
}
.main-content .tracking__form {
  padding: 20px 16px;
  margin-top: 45px;
  box-shadow: 0px 0px 12.9px 4px rgba(0, 0, 0, 0.13);
  border-radius: 16px;
}
@media (max-width: 576px) {
  .main-content .tracking__form {
    margin-top: 0px;
    background-color: var(--color-white);
  }
}
.main-content .tracking__search {
  align-items: center;
  display: flex;
  width: 100%;
  gap: 30px;
}
@media (max-width: 576px) {
  .main-content .tracking__search {
    gap: 8px;
  }
}
.main-content .tracking__button {
  width: 139px;
  height: 54px;
  background-color: var(--color-primary);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--color-white);
}
@media (max-width: 576px) {
  .main-content .tracking__button {
    margin-top: 0px;
    background-color: var(--color-white);
    box-shadow: 4px 4px 0 #555;
    border: 2px solid #333;
    color: #555;
    font-weight: 600;
  }
}
.main-content .tracking__input {
  flex: 1;
  height: 54px;
  background-color: var(--color-gray-100);
  padding: 16px;
  box-sizing: border-box;
}
@media (max-width: 576px) {
  .main-content .tracking__input {
    padding: 8px;
  }
}
.main-content .tracking__desc {
  text-align: start;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-700);
}
@media (max-width: 576px) {
  .main-content .tracking__desc {
    color: #333333;
    margin-top: 16px;
  }
  .main-content .tracking__desc .link {
    color: #00aeef;
  }
}
.main-content .services {
  margin-top: 80px;
}
@media (max-width: 576px) {
  .main-content .services {
    margin-top: 49px;
  }
}
.main-content .services__title {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
}
.main-content .services__list {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 576px) {
  .main-content .services__list {
    margin-top: 49px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: stretch;
  }
  .main-content .services__list::-webkit-scrollbar {
    display: none;
  }
  .main-content .services__list {
    padding-left: 16px;
    scroll-padding-left: 16px;
  }
  .main-content .services__list::after {
    content: "";
    flex: 0 0 10px;
  }
}
.main-content .services__list .service-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
}
@media (max-width: 576px) {
  .main-content .services__list .service-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
    scroll-snap-align: start;
  }
}
.main-content .services__list .service-card__image {
  width: 100%;
  height: auto;
  display: block;
}
.main-content .services__list .service-card__info {
  flex: 1;
  padding: 20px 16px 40px 16px;
  background-color: var(--color-primary-hover);
  border-end-end-radius: 20px;
  border-end-start-radius: 20px;
  color: var(--color-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
.main-content .services__list .service-card__title {
  font-size: 20px;
  font-weight: 500;
}
.main-content .services__list .service-card__desc {
  font-size: 14px;
  font-weight: 500;
}

/* benefits */
.benefits {
  position: relative;
  height: 606px;
  width: 100%;
  background: url("../assets/images/banner-benefit.png") center/cover no-repeat;
}
@media (max-width: 1200px) {
  .benefits {
    height: auto;
  }
}
@media (max-width: 576px) {
  .benefits {
    background: linear-gradient(120deg, #ffffff 0%, #e8ddf4 55%, #7444b8 85%, #582e91 100%);
    height: auto;
  }
}
.benefits__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(255, 255, 255, 0.6) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 70%, rgba(255, 255, 255, 0.03) 85%, transparent 100%);
  mix-blend-mode: screen;
  z-index: 1;
}
@media (max-width: 576px) {
  .benefits__overlay {
    display: none;
  }
}
.benefits__logo {
  max-width: 295px;
  max-height: 270px;
}
@media (max-width: 1200px) {
  .benefits__logo {
    width: 220;
    height: 210px;
  }
}
@media (max-width: 1200px) {
  .benefits__logo {
    width: 215px;
    height: 196px;
  }
}
@media (max-width: 576px) {
  .benefits__logo {
    width: 215px;
    height: 196px;
  }
}
.benefits__container {
  position: relative;
  height: 100%;
  z-index: 20;
  padding: 112px 339px 124px 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 1600px) {
  .benefits__container {
    padding: 40px 180px 80px 100px;
  }
}
@media (max-width: 1200px) {
  .benefits__container {
    padding: 40px;
  }
}
@media (max-width: 576px) {
  .benefits__container {
    padding: 32px 16px;
    justify-content: center;
    flex-direction: column;
    gap: 36px;
  }
}
.benefits__card {
  padding: 40px 20px;
  background-color: var(--color-primary-hover);
  width: 606px;
  border-radius: 20px;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1600px) {
  .benefits__card {
    width: 500px;
  }
}
@media (max-width: 1200px) {
  .benefits__card {
    width: 400px;
  }
}
@media (max-width: 992px) {
  .benefits__card {
    width: 300px;
  }
}
@media (max-width: 576px) {
  .benefits__card {
    width: calc(100% - 32px);
    background-color: rgba(241, 90, 34, 0.75);
  }
}
.benefits__card-title {
  font-size: 24px;
}
@media (max-width: 576px) {
  .benefits__card-title {
    line-height: 22.4px;
    text-align: center;
  }
}
.benefits__card-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.benefits__list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.8px;
}

/* stats */
.stats {
  padding: 80px var(--container-padding-x);
  background-color: var(--color-white);
}
@media (max-width: 1600px) {
  .stats {
    padding: 60px var(--container-padding-x-desktop);
  }
}
@media (max-width: 1200px) {
  .stats {
    padding: 40px var(--container-padding-x-md);
  }
}
@media (max-width: 992px) {
  .stats {
    padding: 40px var(--container-padding-x-sm);
  }
}
@media (max-width: 576px) {
  .stats {
    padding: 49px 0px;
  }
}
.stats__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-black);
  text-align: center;
}
@media (max-width: 576px) {
  .stats__title {
    padding: 0px 30px;
  }
}
.stats__list {
  margin-top: 52px;
  gap: 40px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
@media (max-width: 576px) {
  .stats__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stats__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--color-gray-600);
  font-weight: 600;
  align-items: center;
}
.stats__icon {
  width: 80px;
  height: 80px;
}
.stats__number {
  font-size: 48px;
}
@media (max-width: 1600px) {
  .stats__number {
    font-size: 30px;
  }
}
@media (max-width: 1200px) {
  .stats__number {
    font-size: 24px;
  }
}
.stats__label {
  font-size: 24px;
  text-align: center;
}
@media (max-width: 1600px) {
  .stats__label {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  .stats__label {
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .stats__label {
    font-size: 16px;
  }
}

/* testimonials */
.testimonials {
  padding: 40px var(--container-padding-x);
  background-color: var(--color-gray-50);
}
@media (max-width: 1600px) {
  .testimonials {
    padding: 40px var(--container-padding-x-desktop);
  }
}
@media (max-width: 1200px) {
  .testimonials {
    padding: 40px var(--container-padding-x-md);
  }
}
@media (max-width: 992px) {
  .testimonials {
    padding: 40px var(--container-padding-x-xs);
  }
}
@media (max-width: 576px) {
  .testimonials {
    padding: 20px 16px 30px 16px;
  }
}
.testimonials__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-gray-600);
  text-align: center;
}
.testimonials__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 576px) {
  .testimonials__list {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 16px;
    padding: 0 2px;
  }
  .testimonials__list::-webkit-scrollbar {
    display: none;
  }
}
.testimonials__item {
  border-radius: 24px;
  background-color: var(--color-white);
  border: 1px solid var(--color-bg-subtle);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--color-gray-800);
}
@media (max-width: 576px) {
  .testimonials__item {
    flex: 0 0 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
  }
}
.testimonials__avatar {
  width: 75px;
  height: 75px;
}
.testimonials__heading {
  font-size: 18px;
  font-weight: 700;
}
.testimonials__text {
  font-size: 14px;
  font-weight: 400;
}

/* partners */
.partners {
  padding: 80px 339px 120px 339px;
  background-color: #fff;
  text-align: center;
}
@media (max-width: 1600px) {
  .partners {
    padding: 80px var(--container-padding-x-desktop) 120px var(--container-padding-x-desktop);
  }
}
@media (max-width: 1200px) {
  .partners {
    padding: 80px var(--container-padding-x-md) 120px var(--container-padding-x-md);
  }
}
@media (max-width: 992px) {
  .partners {
    padding: 80px var(--container-padding-x-xs) 120px var(--container-padding-x-xs);
  }
}
@media (max-width: 576px) {
  .partners {
    padding: 0;
  }
}
.partners__clients {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (max-width: 576px) {
  .partners__clients {
    gap: 16px;
    margin-top: 69px;
  }
}
.partners__title {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-gray-600);
}
@media (max-width: 576px) {
  .partners__title {
    padding: 0px 12px;
  }
}
.partners__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  .partners__list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    grid-auto-columns: calc((100% - 16px) / 2);
    scroll-snap-stop: always;
    scroll-padding: 0 16px;
    padding: 0 16px;
    justify-content: start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .partners__list::-webkit-scrollbar {
    display: none;
  }
  .partners__list::after {
    content: "";
    width: 16px;
  }
}
.partners__item {
  width: calc(16.6666666667% - 24px);
  max-width: 180px;
  background: #f8f8f8;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .partners__item {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    box-sizing: border-box;
    justify-self: stretch;
    align-self: stretch;
    scroll-snap-align: start;
  }
}
.partners__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.partners__logo {
  width: 100%;
  height: 100%;
}
.partners__download {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 74px 0px 34px 32px;
}
@media (max-width: 576px) {
  .partners__download {
    padding: 0;
  }
}
.partners__download-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-gray-600);
  line-height: 44px;
}
@media (max-width: 576px) {
  .partners__download-title {
    text-align: start;
  }
}
.partners__download-section {
  margin-top: 80px;
  background-color: var(--color-surface);
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
}
@media (max-width: 576px) {
  .partners__download-section {
    margin: 16px 16px 162px 16px;
    flex-direction: column;
    padding: 40px 32px 0px 32px;
    gap: 32px;
  }
}
.partners__store-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .partners__store-list {
    justify-content: start;
  }
}
.partners__mobile {
  padding: 40px 32px 0px 0px;
  display: flex;
}
@media (max-width: 576px) {
  .partners__mobile {
    padding: 0;
  }
}

.home .banner {
  background: url("../assets/images/banner-home.png") center/cover no-repeat;
}

.new-post .banner,
.detail .banner {
  background: url("../assets/images/banner-new.png") center/cover no-repeat;
  height: 303px;
}
.new-post .banner__overlay,
.detail .banner__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
@media (max-width: 1600px) {
  .new-post .banner,
  .detail .banner {
    height: 200px;
  }
}
@media (max-width: 1200px) {
  .new-post .banner,
  .detail .banner {
    height: 150px;
  }
}
@media (max-width: 992px) {
  .new-post .banner,
  .detail .banner {
    height: 100px;
  }
}
@media (max-width: 576px) {
  .new-post .banner,
  .detail .banner {
    height: 59px;
  }
}

.footer {
  background: var(--color-surface);
  padding: 64px var(--container-padding-x);
  font-size: 14px;
  color: var(--color-gray-500);
  font-weight: 400;
}
@media (max-width: 1600px) {
  .footer {
    padding: 64px var(--container-padding-x-desktop);
  }
}
@media (max-width: 1200px) {
  .footer {
    padding: 64px var(--container-padding-x-md);
  }
}
@media (max-width: 576px) {
  .footer {
    background-color: #e9ecef;
    padding: 34px 16px;
  }
}
.footer__container {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .footer__container {
    flex-direction: column;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 400px;
  color: var(--color-gray-500) !important;
  font-family: "Manrope", sans-serif !important;
  letter-spacing: -0.01em !important;
  line-height: 20px;
}
@media (max-width: 1600px) {
  .footer__info {
    width: 300px;
  }
}
@media (max-width: 1200px) {
  .footer__info {
    width: 200px;
  }
}
.footer__logo img {
  width: 100px;
}
.footer__address-label {
  font-weight: 600;
}
.footer__email-label {
  font-weight: 600;
}
.footer__social {
  display: flex;
  gap: 40px;
}
.footer__social-link {
  width: 24px;
  height: 24px;
}
.footer__social-link:hover {
  color: var(--color-primary);
}
.footer__links {
  flex: 1;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  gap: 16px;
}
@media (max-width: 1600px) {
  .footer__links {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .footer__links {
    flex-direction: column;
    gap: 32px;
  }
}
.footer__heading {
  color: var(--color-gray-800);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__item a {
  color: var(--color-gray-500);
  font-size: 14px;
  font-weight: 400;
}
.footer__bottom {
  text-align: center;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-gray-500);
}
@media (max-width: 1600px) {
  .footer__fanpage img {
    width: 300px;
  }
}
@media (max-width: 576px) {
  .footer__fanpage img {
    width: 307px;
  }
}

.news {
  padding: 39px var(--container-padding-x) 100px var(--container-padding-x);
}
@media (max-width: 1600px) {
  .news {
    padding: 39px var(--container-padding-x-desktop) 100px var(--container-padding-x-desktop);
  }
}
@media (max-width: 1200px) {
  .news {
    padding: 39px var(--container-padding-x-md) 100px var(--container-padding-x-md);
  }
}
@media (max-width: 992px) {
  .news {
    padding: 39px var(--container-padding-x-xs) 100px var(--container-padding-x-xs);
  }
}
@media (max-width: 576px) {
  .news {
    padding: 16px 16px 109px 16px;
  }
}
.news__breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
}
.news__breadcrumb-link {
  color: #1d1d1f;
  line-height: 24px;
}
.news__breadcrumb-separator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d9d9d9;
}
.news__breadcrumb-current {
  color: var(--color-primary-hover);
}
.news__featured {
  margin-top: 28px;
  display: flex;
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.16);
  border-radius: 16px;
}
@media (max-width: 576px) {
  .news__featured {
    display: none;
  }
}
.news__featured img {
  max-width: 360px;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-item {
  box-shadow: 0px 20px 50px rgba(18, 17, 39, 0.08);
  border-radius: 16px;
}
.news-item__image img {
  flex: 1 1 0;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.news-item__content {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
}
.news-item__title {
  color: #1d1d1f;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}
.news-item__excerpt {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  line-height: 20px;
}
.news-item__meta {
  margin-top: 48px;
  font-size: 14px;
  font-weight: 400;
  color: #777777;
  line-height: 20px;
}
.news__list {
  margin-top: 53px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 53px 20px;
}
@media (max-width: 576px) {
  .news__list {
    margin-top: 28px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}
.news__item .news-item__content {
  padding: 16px 20px;
}
.news__item .news-item__meta {
  margin-top: 24px;
}
.news__btn {
  display: flex;
  justify-content: center;
  margin-top: 95px;
}
@media (max-width: 576px) {
  .news__btn {
    margin-top: 54px;
  }
}
.news__load-more {
  width: 160px;
  height: 40px;
  border-radius: 24px;
  border: 1px solid #f89418;
  background-color: rgba(248, 148, 24, 0.08);
  color: #f89418;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  cursor: pointer;
}
.news-detail {
  padding: 36px var(--container-padding-x) 96px var(--container-padding-x);
}
@media (max-width: 1600px) {
  .news-detail {
    padding: 36px var(--container-padding-x-desktop) 80px var(--container-padding-x-desktop);
  }
}
@media (max-width: 1200px) {
  .news-detail {
    padding: 36px var(--container-padding-x-md) 60px var(--container-padding-x-md);
  }
}
@media (max-width: 992px) {
  .news-detail {
    padding: 36px var(--container-padding-x-sm) 40px var(--container-padding-x-sm);
  }
}
@media (max-width: 576px) {
  .news-detail {
    padding: 16px 16px 40px 16px;
  }
}
.news-detail__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-detail__title {
  font-size: 24px;
  line-height: 32px;
  color: #582e91;
  font-weight: 600;
}
.news-detail__description {
  font-size: 18px;
  line-height: 28px;
  color: #1d1d1f;
  font-weight: 400;
}
.news-detail__layout {
  display: flex;
  gap: 68px;
  margin-top: 36px;
}
@media (max-width: 992px) {
  .news-detail__layout {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .news-detail__layout {
    margin-top: 14px;
  }
}
.news-detail__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1 1 auto;
}
.news-detail__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-detail__section-title {
  color: #582e91;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.news-detail__section-content {
  font-size: 18px;
  font-weight: 400;
  color: #1d1d1f;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news-detail__images {
  padding: 0 50px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .news-detail__images {
    padding: 0;
  }
}
.news-detail__images img {
  flex: 1 1 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}
.news-detail__sidebar {
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 320px;
}
@media (max-width: 992px) {
  .news-detail__sidebar {
    display: none;
  }
}
.news-detail__toc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-detail__toc-item {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: #182f43;
  cursor: pointer;
}
.news-detail__video {
  position: relative;
}
.news-detail__video--icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  cursor: pointer;
}

/*# sourceMappingURL=index.css.map */
