/* Magazine card layout */
.home-banner-section .block-card-swiper {
  padding: 0;
  background: transparent;
}

.home-banner-section .banner-image-slider {
  position: relative;
  overflow: hidden;
}

.home-banner-section .banner-slide-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-banner-section .banner-slider-pagination {
  position: static;
  display: flex;
  left: auto !important;
  bottom: auto;
  width: fit-content !important;
  margin: 14px auto 0;
  transform: none;
}

.navbar-language {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tc-neutral-600);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.navbar-language a {
  color: inherit;
}

.navbar-language a:hover,
.navbar-language a.active {
  color: var(--tc-orange);
}

@media (max-width: 767.98px) {
  .home-banner-section .custom-container {
    padding-right: 12px;
    padding-left: 12px;
    box-sizing: border-box;
  }

  .home-banner-section .container {
    padding-right: 0;
    padding-left: 0;
  }

  .home-banner-section .banner-slide-img {
    min-height: 180px;
    object-fit: cover;
  }

  .navbar-language {
    font-size: 13px;
  }
}

/* About page and reusable page sidebar */
.inner-page-hero {
  position: relative;
  display: flex;
  min-height: 260px;
  align-items: center;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.magazine-page-hero {
  background-image:
    linear-gradient(rgba(14, 14, 15, 0.68), rgba(14, 14, 15, 0.68)),
    url("../../img/inner-banner/magazine-banner.png");
}

.inner-page-hero-content {
  position: relative;
  z-index: 1;
}

.inner-page-hero h1 {
  margin: 0 0 8px;
  color: var(--tc-system-white);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.inner-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--tc-neutral-200);
  font-size: 14px;
}

.inner-page-breadcrumb a {
  color: var(--tc-neutral-200);
}

.inner-page-breadcrumb a:hover,
.inner-page-breadcrumb .active {
  color: var(--tc-orange);
}

.magazine-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

.magazine-meta .author {
  color: var(--tc-neutral-700);
  font-weight: 500;
}

a.author {
  transition: color 0.2s ease;
}

a.author:hover {
  color: var(--tc-orange);
}

.magazine-meta .separator {
  color: var(--tc-neutral-400);
}

.magazine-meta .date,
.magazine-meta .views {
  color: var(--tc-neutral-500);
}

.magazine-meta .author,
.magazine-meta .date,
.magazine-meta .views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.magazine-meta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.interview-banner-wrap {
  padding: 40px 0;
}

.interview-static-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* Living archive */
.living-page .living-archive-page {
  padding-top: 10px;
}

.living-page .living-list-card .thumbnail {
  width: 100%;
}

.living-page .living-list-card .thumbnail .cover-image {
  display: block;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.living-page .living-list-card .card-body .left {
  flex: 1;
  min-width: 0;
}

.living-page .living-list-card .magazine-meta {
  padding-right: 24px;
}

.living-page .living-title-link .card-title {
  transition: color 0.2s ease;
}

.living-page .living-title-link:hover .card-title {
  color: var(--tc-orange);
}

/* Magazine detail */
.magazine-detail-page .magazine-detail-content {
  padding: 70px 0;
  background-color: var(--tc-neutral-50);
}

.magazine-detail-page .magazine-detail-cover {
  background-color: var(--tc-system-white);
  box-shadow: 0 14px 40px rgba(14, 14, 15, 0.08);
}

.magazine-detail-page .magazine-detail-cover img {
  display: block;
  width: 100%;
  height: auto;
}

.magazine-detail-page .magazine-detail-card {
  padding: 42px;
  border: 1px solid var(--tc-neutral-200);
  border-radius: 16px;
  background-color: var(--tc-system-white);
  box-shadow: 0 14px 40px rgba(14, 14, 15, 0.08);
}

.magazine-detail-page .magazine-detail-card h2 {
  margin: 0 0 18px;
  color: var(--tc-neutral-900);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.2;
}

.magazine-detail-page .magazine-detail-card h2:hover {
  color: var(--tc-orange);
}

.magazine-detail-page .magazine-detail-copy {
  margin-top: 30px;
}

.magazine-detail-page .magazine-detail-copy p {
  margin: 0 0 18px;
  color: var(--tc-neutral-600);
  line-height: 1.8;
}

.magazine-detail-page .magazine-detail-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 30px;
}

.magazine-detail-page .magazine-detail-button {
  display: inline-flex;
  min-height: 46px;
  padding: 11px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tc-orange);
  border-radius: 50px;
  background-color: var(--tc-orange);
  color: var(--tc-system-white);
  font-weight: 700;
  transition: all 0.25s ease;
}

.magazine-detail-page .magazine-detail-button:hover {
  background-color: var(--tc-neutral-900);
  border-color: var(--tc-neutral-900);
  color: var(--tc-system-white);
}

.magazine-detail-page .magazine-detail-footer {
  display: flex;
  margin-top: 36px;
  padding-top: 28px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--tc-neutral-200);
}

.magazine-detail-page .magazine-detail-tags strong,
.magazine-detail-page .magazine-detail-share strong {
  display: block;
  margin-bottom: 12px;
  color: var(--tc-neutral-900);
}

.magazine-detail-page .magazine-detail-tag-list,
.magazine-detail-page .magazine-detail-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.magazine-detail-page .magazine-detail-tag-list a {
  padding: 7px 14px;
  border: 1px solid var(--tc-neutral-200);
  border-radius: 50px;
  background-color: var(--tc-neutral-50);
  color: var(--tc-neutral-600);
  font-size: 13px;
}

.magazine-detail-page .magazine-detail-tag-list a:hover {
  border-color: var(--tc-orange);
  color: var(--tc-orange);
}

.magazine-detail-page .magazine-detail-socials .icon-shape {
  margin: 0;
  border: 1px solid var(--tc-neutral-200);
  background-color: var(--tc-system-white);
  color: var(--tc-neutral-900);
}

.magazine-detail-page .magazine-detail-socials .icon-shape:hover {
  border-color: var(--tc-orange);
  background-color: var(--tc-orange);
  color: var(--tc-system-white);
}

/* News detail */
.news-detail-page .news-detail-content {
  padding-top: 70px;
}

.news-detail-page .news-detail-article .block-banner {
  margin-bottom: 36px;
}

.news-detail-page .news-detail-article .card-info h3 {
  width: 100%;
  margin: 22px 0 28px;
}

.news-detail-page .news-detail-article .readers {
  margin-left: auto;
  color: var(--tc-neutral-600);
}

.news-detail-page .news-detail-main-image {
  display: block;
  max-height: 560px;
  margin-bottom: 36px;
  object-fit: cover;
}

.news-detail-page .news-detail-copy p {
  color: var(--tc-neutral-600) !important;
  line-height: 1.8;
}

.magazine-detail-page .magazine-detail-copy p,
.article-detail-content p,
.entry-content p,
.sec-1-single-1 .post-content p,
.sec-1-single-2 .post-content p,
.sec-1-single-3 .post-content p,
.sec-1-single-3 .row.mt-5 > .col-lg-8 > .d-flex.flex-column.gap-3 > p {
  color: var(--tc-neutral-600) !important;
}

.news-detail-page .news-detail-footer {
  display: flex;
  margin-top: 42px;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--tc-neutral-300);
}

.news-detail-page .news-detail-share .group-social-icons {
  background-color: var(--tc-system-white);
}

@media (max-width: 767.98px) {
  .living-page .living-list-card .thumbnail .cover-image {
    min-height: 230px;
  }

  .living-page .living-list-card .card-body .left {
    padding-right: 1.5rem !important;
  }

  .living-page .living-list-card .magazine-meta {
    padding-right: 0;
  }

  .magazine-detail-page .magazine-detail-content {
    padding: 45px 0;
  }

  .magazine-detail-page .magazine-detail-card {
    padding: 28px 22px;
  }

  .magazine-detail-page .magazine-detail-actions {
    justify-content: flex-start;
  }

  .magazine-detail-page .magazine-detail-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-detail-page .news-detail-content {
    padding-top: 45px;
  }

  .news-detail-page .news-detail-article .readers {
    margin-left: 0;
  }

  .news-detail-page .news-detail-main-image {
    margin-bottom: 28px;
  }

  .news-detail-page .news-detail-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.interview-list-card .card-body {
  min-width: 0;
}

.interview-list-card .card-body .left {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}

.interview-list-card .magazine-meta {
  padding-right: 10px;
}

.interview-archive-page .interview-title-link .card-title {
  transition: color 0.2s ease;
}

.interview-archive-page .interview-title-link:hover .card-title {
  color: var(--tc-orange);
}

.interview-archive-page .interview-title-link .card-title {
  display: block;
  overflow: visible;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  white-space: normal;
}

@media (max-width: 767.98px) {
  .interview-banner-wrap {
    padding: 28px 0;
  }

  .interview-list-card .card-body {
    padding-top: 32px;
  }
}

.about-main-image {
  aspect-ratio: 16 / 7;
  background-color: var(--tc-neutral-100);
}

.about-copy {
  margin-top: 32px;
}

.about-copy p {
  margin-bottom: 20px;
  color: var(--tc-neutral-600);
  font-size: 16px;
  line-height: 1.8;
}

.about-video {
  margin-top: 38px;
}

.about-video-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background-color: var(--tc-neutral-900);
}

.about-video-link img {
  transition: transform 0.3s ease;
}

.about-video-link .play-btn {
  transition: transform 0.3s ease;
}

.about-video-link:hover img {
  transform: scale(1.04);
}

.about-video-link:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08) !important;
}

.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget-title {
  margin-bottom: 20px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--tc-orange);
  border-radius: 8px;
  background-color: var(--tc-orange);
  color: var(--tc-system-white);
  font-size: 16px;
}

.sidebar-social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--tc-neutral-200);
  background-color: var(--tc-system-white);
}

.sidebar-social-item {
  display: flex;
  min-width: 0;
  padding: 16px 6px;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--tc-neutral-600);
  text-align: center;
}

.sidebar-social-item + .sidebar-social-item {
  border-left: 1px solid var(--tc-neutral-200);
}

.sidebar-social-icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  place-items: center;
  border-radius: 50%;
  background-color: var(--tc-orange);
  color: var(--tc-system-white);
  font-size: 13px;
  font-weight: 700;
}

.sidebar-social-item strong {
  color: var(--tc-neutral-900);
  font-size: 15px;
}

.sidebar-social-item small {
  font-size: 11px;
}

.sidebar-newsletter {
  padding: 34px 28px;
  border-radius: 8px;
  background-color: var(--tc-orange);
  color: var(--tc-system-white);
  text-align: center;
}

.sidebar-newsletter h4 {
  margin-bottom: 20px;
  color: inherit;
  font-size: 24px;
  line-height: 1.3;
}

.sidebar-newsletter p {
  margin-bottom: 18px;
  color: inherit;
}

.sidebar-newsletter-form {
  display: flex;
}

.sidebar-newsletter-form .form-control {
  min-width: 0;
  border-radius: 8px 0 0 8px;
}

.sidebar-newsletter-form .btn {
  flex: 0 0 54px;
  padding: 0;
  border-radius: 0 8px 8px 0;
}

.sidebar-recent-posts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-recent-posts .article.card-10.style-2 {
  width: 100%;
}

.sidebar-recent-posts .article.card-10.style-2 .hover-effect-1 {
  flex: 0 0 105px;
}

@media (max-width: 1199.98px) {
  .sidebar-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-social-item:nth-child(3) {
    border-left: 0;
  }

  .sidebar-social-item:nth-child(n + 3) {
    border-top: 1px solid var(--tc-neutral-200);
  }
}

@media (max-width: 991.98px) {
  .page-sidebar {
    margin-top: 10px;
  }

  .sidebar-social-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sidebar-social-item:nth-child(3) {
    border-left: 1px solid var(--tc-neutral-200);
  }

  .sidebar-social-item:nth-child(n + 3) {
    border-top: 0;
  }
}

@media (max-width: 575.98px) {
  .inner-page-hero {
    min-height: 190px;
  }

  .inner-page-hero h1 {
    font-size: 32px;
  }

  .about-main-image {
    aspect-ratio: 4 / 3;
  }

  .sidebar-social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-social-item:nth-child(3) {
    border-left: 0;
  }

  .sidebar-social-item:nth-child(n + 3) {
    border-top: 1px solid var(--tc-neutral-200);
  }
}

.article.card-3 {
  gap: 8px;
}

.article.card-3 .hover-effect-1 {
  flex: 1;
}

.article.card-3 .card-body {
  flex: 1;
}

.article.card-3 .card-img-top {
  width: 100%;
  min-width: unset;
  height: 100%;
}

.article.card-3 .card-body > .d-flex {
  justify-content: center;
}

.article.card-3 .card-body {
  flex: 1;
  padding: 28px 20px;
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.article.card-3 .card-body > .d-flex {
  height: 100%;
}

.article.card-3 .card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.article.card-3 .bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article.card-3 .post-date {
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article.card-3 .arrow-box {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #0e0e0f;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article.card-3 .arrow-box svg path {
  stroke: #fff;
}

.article.card-3 .card-body > .d-flex {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article.card-3 .bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article.card-3 .card-body > .d-flex {
  width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column !important;
}

.article.card-3 .bottom {
  width: 100%;
  margin-top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.article.card-3 .arrow-box {
  position: static !important;
  margin-left: auto;
  flex-shrink: 0;
}

.article.card-3 .card-body {
  display: flex;
  flex-direction: column;
}

.article.card-3 .card-body > .d-flex {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article.card-3 .card-body a:first-child {
  flex: 1;
  display: flex;
  align-items: center;
}

.article.card-3 .card-title {
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.article.card-3:hover .card-title {
  color: var(--tc-orange);
  transform: translateX(4px);
}

/* News & Event */
.news-events-section {
  --news-orange: #ff5a00;
  --news-dark: #191a1a;
  overflow: hidden;
}

.sec-4-home-2.video-gallery-section {
  background-color: #e9ebed;
}

.sec-1-archive-1 .magazine-link[href="MagazineDetail.php"] h6.card-title,
.sec-1-archive-1 .magazine-link[href="NewsDetail.php"] h6.card-title,
.sec-1-archive-1 .magazine-link[href="EntertainmentDetail.php"] h6.card-title,
.interview-archive-page .interview-title-link .card-title {
  font-size: 20px;
  font-weight: var(--tc-fw-semi-bold);
  line-height: var(--tc-heading-line-height);
}

.news-events-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 18px 30px 18px 42px;
  border: 2px solid var(--news-orange);
  border-radius: 16px;
  background: var(--news-dark);
}

.news-events-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  line-height: 1;
}

.news-events-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--news-orange);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.news-events-more:hover {
  color: #fff;
}

.news-events-more-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--news-orange);
}

.news-events-more-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-events-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 32px;
  margin-top: 26px;
}

.news-events-categories .nav-tabs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  border: 0;
}

.news-events-categories .nav-link {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #666;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
}

.news-events-categories .nav-link:hover,
.news-events-categories .nav-link.active {
  border: 0;
  background: transparent;
  color: var(--news-orange);
  font-weight: 600;
}

.news-events-content {
  min-width: 0;
  overflow: hidden;
}

.news-event-swiper {
  width: 100%;
  overflow: hidden;
}

.news-event-swiper .swiper-wrapper {
  align-items: stretch;
}

.news-event-swiper .swiper-slide {
  display: flex;
  height: auto;
}

.news-event-card {
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 485px;
  padding: 32px 30px 20px;
  flex-direction: column;
  border-radius: 16px;
  background: var(--news-dark);
}

.news-event-badge {
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #ffd1bb;
  color: #111;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.news-event-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
}

.news-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-event-card:hover .news-event-image img {
  transform: scale(1.035);
}

.news-event-card h3 {
  margin: 14px 0 18px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
}

.news-event-card h3 a {
  color: #a6a6a6;
}

.news-event-card h3 a:hover {
  color: #fff;
}

.news-event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.news-event-footer time {
  color: #a6a6a6;
  font-size: 15px;
}

.news-event-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.news-event-arrow svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #111;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-event-arrow:hover {
  background: var(--news-orange);
}

.news-event-arrow:hover svg {
  stroke: #fff;
}

@media (max-width: 1199.98px) {
  .news-events-layout {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .news-events-header {
    min-height: 76px;
    padding: 16px 20px;
  }

  .news-events-more {
    gap: 9px;
    font-size: 13px;
  }

  .news-events-more-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .news-events-layout {
    display: block;
    margin-top: 20px;
  }

  .news-events-categories {
    margin-bottom: 22px;
  }

  .news-events-categories .nav-tabs {
    flex-direction: row;
    gap: 8px 18px;
  }

  .news-events-categories .nav-link {
    width: auto;
    padding: 5px 0;
    font-size: 16px;
  }

  .news-event-card {
    min-height: 0;
    padding: 24px;
  }

  .news-event-image {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 420px) {
  .news-events-header h2 {
    font-size: 20px;
  }

  .news-events-more > span:last-child {
    display: none;
  }
}

/* Video gallery */
.video-gallery-section .video-card .card-body {
  height: 100%;
  padding: 14px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  background-color: var(--tc-neutral-800);
  border-color: var(--tc-neutral-700);
}

.video-gallery-section .video-card-media {
  position: relative;
  display: flex;
  width: 100%;
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--tc-neutral-700);
  background-color: var(--tc-neutral-900);
}

.video-gallery-section .video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-gallery-section .video-card .card-title {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 16px;
  padding: 0 6px 8px;
  color: var(--tc-system-white);
  line-height: 1.3;
  /* -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; */
}

.video-gallery-section .video-card .card-title a {
  color: inherit;
}

.video-gallery-section .video-card .play-btn {
  transition: transform 0.3s ease;
}

.video-gallery-section .video-card:hover .video-card-media img {
  transform: scale(1.04);
}

.video-gallery-section .video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08) !important;
}

.magazine-link .card-title {
  transition: color 0.3s ease;
}

.magazine-link:hover .card-title {
  color: var(--tc-orange);
}

/* Site footer */
.site-footer {
  display: block;
  width: 100%;
  color: var(--tc-neutral-600);
}

.site-footer-main {
  width: 100%;
  padding: 52px 0 58px;
  background-color: var(--tc-neutral-50);
}

.site-footer-main > .container > .row {
  align-items: flex-start;
}

.site-footer-brand {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.site-footer-logo {
  display: inline-block;
  max-width: 333px;
}

.site-footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.site-footer .site-footer-socials {
  margin-top: 40px;
}

.site-footer h6 {
  margin-bottom: 34px;
  color: var(--tc-neutral-600);
  font-weight: 700;
}

.site-footer-contact dl {
  display: grid !important;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: start;
  column-gap: 0;
  row-gap: 18px;
  margin: 0;
}

.site-footer-contact dt {
  grid-column: 1;
  margin: 0;
  color: var(--tc-orange) !important;
  font-weight: 500;
  line-height: 1.5;
}

.site-footer-contact dd {
  grid-column: 2;
  margin: 0;
  color: var(--tc-neutral-600) !important;
  line-height: 1.5;
}

.site-footer-contact dd span {
  display: block;
}

.site-footer-contact dd span + span {
  margin-top: 18px;
}

.site-footer-contact a,
.site-footer-sitemap a {
  color: var(--tc-neutral-600) !important;
}

.site-footer-contact a:hover,
.site-footer-sitemap a:hover {
  color: var(--tc-orange) !important;
}

.site-footer-sitemap ul {
  margin: 0;
}

.site-footer-sitemap li {
  line-height: 1.5;
}

.site-footer-sitemap li + li {
  margin-top: 15px;
}

.site-footer-bottom {
  position: relative;
  z-index: 1;
  display: block;
  clear: both;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--tc-orange);
  background-color: var(--tc-neutral-800);
}

.site-footer-bottom-inner {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-footer-bottom p {
  margin: 0;
  color: var(--tc-orange);
  font-size: 13px;
}

.site-footer-legal {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer-legal a {
  color: var(--tc-orange);
  font-size: 13px;
}

.site-footer-legal a:hover {
  color: var(--tc-system-white);
}

@media (max-width: 991.98px) {
  .site-footer-brand {
    min-height: 250px;
  }

  .site-footer-sitemap {
    padding-left: 0;
  }
}

@media (max-width: 767.98px) {
  .site-footer-main {
    padding: 44px 0;
  }

  .site-footer-brand {
    min-height: 0;
    align-items: center;
    gap: 35px;
    text-align: center;
  }

  .site-footer-logo {
    max-width: 300px;
  }

  .site-footer .site-footer-socials {
    margin-top: 0;
  }

  .site-footer-contact,
  .site-footer-sitemap {
    max-width: 440px;
    margin: 0 auto;
    padding-left: 0;
  }

  .site-footer h6 {
    margin-bottom: 24px;
    text-align: center;
  }

  .site-footer-bottom-inner {
    padding: 16px 0;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
}

/* Small-screen responsive refinements */
@media (max-width: 767.98px) {
  .about-copy iframe {
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
  }

  header .topbar {
    min-height: 0;
    padding: 0 !important;
  }

  .about-page > .container > .row.g-5 {
    --bs-gutter-x: 1.5rem;
    margin-right: 0;
    margin-left: 0;
  }

  .news-events-section .news-events-categories .nav-tabs {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .news-events-section .news-events-categories .nav-link {
    width: auto;
    padding: 8px 0;
    text-align: center;
  }

  .site-footer .site-footer-contact {
    text-align: center;
  }

  .site-footer .site-footer-contact dl {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 6px;
  }

  .site-footer .site-footer-contact dt,
  .site-footer .site-footer-contact dd {
    grid-column: 1;
    text-align: center;
  }

  .site-footer .site-footer-contact dd:not(:last-child) {
    margin-bottom: 12px;
  }

  .site-footer .site-footer-sitemap {
    text-align: center;
  }

  .site-footer .site-footer-sitemap ul {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .sec-1-archive-1 .row.m-5 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .sec-1-archive-1 .row.m-5 .pagination {
    justify-content: center;
    gap: 4px !important;
  }

  .sec-1-archive-1 .row.m-5 .pagination .pagination_item {
    width: 38px;
    height: 38px;
    font-size: 14px !important;
    line-height: 38px;
  }

  .sec-1-archive-1 .row.m-5 .pagination .pagination_item svg {
    width: 18px;
    height: 18px;
  }

  .news-detail-page .news-detail-copy p,
  .magazine-detail-page .magazine-detail-copy p {
    font-size: 17px;
    line-height: 1.8;
  }

  .news-detail-page .news-detail-article .card-info h3 {
    font-size: 26px;
    line-height: 1.3;
  }
}

@media (max-width: 575.98px) {
  .home-banner-section .custom-container,
  .home-banner-section .container,
  .home-banner-section .row,
  .home-banner-section .col-12,
  .home-banner-section .banner-image-slider,
  .home-banner-section .swiper-wrapper,
  .home-banner-section .swiper-slide {
    max-width: 100%;
    min-width: 0;
  }

  .home-banner-section .row {
    --bs-gutter-x: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .home-banner-section .col-12 {
    padding-right: 0;
    padding-left: 0;
  }

  .home-banner-section .block-card-swiper,
  .home-banner-section .banner-image-slider,
  .home-banner-section .swiper-slide,
  .home-banner-section .banner-slide-img {
    border-radius: 12px;
  }

  .home-banner-section .banner-image-slider,
  .home-banner-section .swiper-slide {
    overflow: hidden;
  }

  .home-banner-section .banner-slide-img {
    max-width: 100%;
    height: auto;
  }

  .sidebar-left {
    width: 100%;
    max-width: 370px;
  }

  .site-footer-main > .container > .row {
    margin-right: 0;
    margin-left: 0;
  }

  .site-footer-main > .container > .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
  }

  .sec-1-archive-1 .row.m-5 .pagination {
    gap: 3px !important;
  }

  .sec-1-archive-1 .row.m-5 .pagination .pagination_item {
    width: 34px;
    height: 34px;
    font-size: 13px !important;
    line-height: 34px;
  }

  .news-detail-page .news-detail-article .card-info h3 {
    font-size: 22px;
  }
}

.navbar .navbar-nav .nav-item .nav-link.active {
  color: #ff6600;
  font-weight: 600;
}
