/* ============================================
   CUSTOM CSS - CPAC Template
   Project-specific overrides & additions
   ============================================ */

/* ============================================
   PRELOADER
   ============================================ */
#cpac-preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #004391;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#cpac-preloader.hide { opacity: 0; visibility: hidden; }
.preloader-logo {
  width: 300px;
  animation: preloaderPulse 1.4s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(0.95); }
}

/* ============================================
   GLOBAL FONT RESET
   ============================================ */
html, body, * {
  font-family: 'CPAC Loop', 'Noto Sans Thai', sans-serif !important;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'CPAC Modern', 'CPAC Loop', sans-serif !important;
}

/* ============================================
   EQUAL-HEIGHT CARDS (all grid sections)
   ============================================ */
/* Card-level grid cells: stretch and fill */
.MuiGrid-grid-md-4,
.MuiGrid-grid-sm-6 {
  display: flex;
}
/* Links inside grid cells fill height */
.MuiGrid-grid-md-4 > a,
.MuiGrid-grid-sm-6 > a {
  display: flex;
  width: 100%;
}
/* Paper/Card fills its parent */
.MuiGrid-grid-md-4 .MuiPaper-root,
.MuiGrid-grid-md-4 .MuiCard-root,
.MuiGrid-grid-sm-6 .MuiPaper-root,
.MuiGrid-grid-sm-6 .MuiCard-root {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
/* Card content area grows to fill remaining space */
.MuiGrid-grid-md-4 .MuiPaper-root .MuiStack-root {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.MuiGrid-grid-md-4 .MuiCardContent-root,
.MuiGrid-grid-sm-6 .MuiCardContent-root {
  flex: 1;
}
/* News card links fill height */
.news-card-link {
  display: flex !important;
  height: 100%;
}

.swiper-pagination {
  margin-bottom: 15px;
}

/* ============================================
   HEADER NAV SPACING — match reference design
   ============================================ */

/* ============================================
   BLOCK-HEADER
   ============================================ */
.block-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: #fff;
  box-shadow: inset 0 -2px 0 #E6EDF3;
  transition: all 0.2s ease-in-out;
}
.block-header__inner {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
@media (min-width: 576px) {
  .block-header__inner { padding: 0 24px; }
}
.block-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.block-header__logo img {
  height: 36px;
  width: auto;
}
@media (min-width: 576px) {
  .block-header__logo img { height: 46px; }
}
.block-header__nav {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 992px) {
  .block-header__nav { display: flex; }
}
.block-header__link {

  font-size: 0.875rem;
  font-weight: 500;
  color: #004391;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.15s;
}
.block-header__link:hover {
  background: rgba(0,67,145,0.05);
}
.block-header__link--active {
  color: #0c4da2;
  font-weight: 600;
}
.block-header__link--active::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: #0c4da2;
  border-radius: 2px;
}
/* When header is scrolled, active nav underline turns white */
header.MuiAppBar-root.scrolled .css-1awymsp.active::before,
header.MuiAppBar-root.scrolled .css-1awymsp.active:before,
header.MuiAppBar-root.scrolled .block-header__link--active::before {
  background-color: #fff !important;
  background: #fff !important;
}
.block-header__chevron {
  flex-shrink: 0;
  opacity: 0.6;
}
.block-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.block-header__lang {

  font-size: 0.875rem;
  font-weight: 500;
  color: #004391;
  padding: 6px 12px;
  border: 1px solid #E6EDF3;
  border-radius: 4px;
  background: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.block-header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  color: #004391;
  border-radius: 8px;
}
.block-header__hamburger:hover {
  background: #f3f4f6;
}
@media (min-width: 992px) {
  .block-header__hamburger { display: none; }
}

/* ============================================
   BLOCK-FOOTER
   ============================================ */
.block-footer {
  position: relative;
  background: #004391;
  color: #fff;
}
.block-footer__container {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 576px) {
  .block-footer__container { padding: 0 24px; }
}
/* Back to top button */
.block-footer__top-btn {
  position: absolute;
  top: -22px;
  right: 24px;
  z-index: 50;
}
@media (max-width: 575px) {
  .block-footer__top-btn { top: 16px; right: 16px; }
}
.block-footer__scroll-top {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 999px;
  border: 1.5px solid #fff;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(11px);
  box-shadow: 0 2px 14px rgba(0,67,145,0.2);
  color: #004391;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s;
}
.block-footer__scroll-top:hover {
  background: #fff;
}
@media (max-width: 575px) {
  .block-footer__scroll-top { width: 36px; height: 36px; min-width: 36px; }
}
/* Main footer content */
.block-footer__main {
  padding: 40px 0 24px;
}
.block-footer__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (min-width: 992px) {
  .block-footer__grid { flex-wrap: nowrap; }
}
.block-footer__brand {
  flex: 0 0 auto;
  max-width: 320px;
}
.block-footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}
.block-footer__slogan {

  font-size: 1.25rem;
  font-weight: 700;
  color: #0c4da2;
  margin: 0 0 8px;
  line-height: 1.4;
}
.block-footer__desc {

  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.7;
}
/* Footer links */
.block-footer__links {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (min-width: 768px) {
  .block-footer__links { gap: 48px; }
}
.block-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.block-footer__col li {
  margin-bottom: 6px;
}
.block-footer__col a {

  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.block-footer__col a:hover {
  color: #fff;
}
.block-footer__col-title {

  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}
/* Divider */
.block-footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 0;
}
/* Bottom bar */
.block-footer__bottom {
  padding: 20px 0;
}
.block-footer__bottom-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.block-footer__company {

  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 4px;
}
.block-footer__address {

  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin: 0 0 12px;
}
.block-footer__social {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.block-footer__social a {
  display: flex;
  text-decoration: none;
}
.block-footer__social img {
  width: 32px;
  height: 32px;
}
.block-footer__copyright {

  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
/* CTA area */
.block-footer__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.block-footer__call img {
  height: 50px;
  width: auto;
}
.block-footer__cta-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.block-footer__order {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.block-footer__order-text {

  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-align: right;
  line-height: 1.3;
}
.block-footer__order img {
  width: 48px;
  height: 48px;
}

/* Hero banner: slide text overlay */
.hero-slide-img {
  position: relative !important;
  overflow: hidden !important;
}
.hero-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 48px 40px;
  color: #fff;
  width: 50%;
  max-width: 640px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0,67,145,0.72) 0%, rgba(0,67,145,0.38) 60%, transparent 100%);
  border-radius: 0 24px 0 0;
}
.hero-slide-overlay h2 {

  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  margin: 0 0 10px;
  color: #fff;
}
.hero-slide-overlay p {

  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,0.92);
}
@media (max-width: 991px) {
  .hero-slide-overlay {
    width: 60%;
    padding: 24px 32px 28px;
  }
  .hero-slide-overlay h2 { font-size: 1.5rem; }
  .hero-slide-overlay p { font-size: 0.8125rem; }
}
@media (max-width: 767px) {
  .hero-slide-overlay {
    width: 100%;
    max-width: none;
    border-radius: 0;
    padding: 20px 24px 24px;
    bottom: auto;
    top: 0;
    justify-content: flex-start;
    background: linear-gradient(180deg, rgba(0,67,145,0.78) 0%, rgba(0,67,145,0.40) 70%, transparent 100%);
  }
  .hero-slide-overlay h2 { font-size: 1.25rem; margin-bottom: 8px; }
  .hero-slide-overlay p { font-size: 0.8125rem; }
}

/* Hero banner: desktop/mobile image toggle */
.css-2dmznq .css-h9r63z { display: block !important; }
.css-2dmznq .css-3l99kw { display: none !important; }
@media (max-width: 767px) {
  .css-2dmznq .css-h9r63z { display: none !important; }
  .css-2dmznq .css-3l99kw { display: block !important; }
}

/* ============================================
   BLOCK-01: Hero Carousel Banner
   ============================================ */
.block-carousel-001 {
  position: relative;
  overflow: hidden;
}
.block-carousel-001 .hero-carousel {
  width: 100%;
}
.block-carousel-001 .swiper-slide a {
  display: block;
}
.block-carousel-001 .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}
/* Desktop / Mobile image toggle */
.block-carousel-001 .hero-desktop { display: block; }
.block-carousel-001 .hero-mobile { display: none; }
@media (max-width: 767px) {
  .block-carousel-001 .hero-desktop { display: none; }
  .block-carousel-001 .hero-mobile { display: block; }
}
/* Navigation arrows */
.block-carousel-001 .swiper-button-prev,
.block-carousel-001 .swiper-button-next {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s;
}
.block-carousel-001 .swiper-button-prev:hover,
.block-carousel-001 .swiper-button-next:hover {
  background: #fff;
}
.block-carousel-001 .swiper-button-prev::after,
.block-carousel-001 .swiper-button-next::after {
  font-size: 18px;
  font-weight: 700;
  color: #004391;
}
/* Pagination dots */
/* Pagination dots */
.block-carousel-001 .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: rgba(255,255,255,0.7) !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  border-radius: 50% !important;
}
.block-carousel-001 .swiper-pagination-bullet-active {
  background: #0c4da2 !important;
  width: 48px !important;
  height: 12px !important;
  border-radius: 6px !important;
}

/* ============================================
   BLOCK-CONTENT-001: About CPAC
   ============================================ */
.block-content-001 {
  position: relative;
  text-align: center;
  background-image: url('https://cdn.cpac.co.th/uploads/about_us_bg_cpac_64c5d407f3.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px 24px 0;
}
@media (max-width: 767px) {
  .block-content-001 {
    aspect-ratio: auto;
    min-height: 480px;
    padding: 40px 20px 0;
    background-image: url('https://cdn.cpac.co.th/uploads/about_us_bg_moblie_cpac_f420d36b94.jpg');
    background-position: center bottom;
  }
}
.block-content-001__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.block-content-001__title {

  font-weight: 700;
  font-size: 3rem;
  color: #004391;
  margin: 0 0 12px;
  line-height: 1.2;
}
.block-content-001__desc {

  font-size: 1rem;
  color: #004391;
  margin: 0 0 4px;
  line-height: 1.7;
}
.block-content-001__highlight {

  font-size: 1.0625rem;
  font-weight: 700;
  color: #0c4da2;
  margin: 0;
  line-height: 1.6;
}
.block-content-001__cta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.block-content-001__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-size: 0.9375rem;
  font-weight: 600;
  color: #004391;
  text-decoration: none;
  border: 2px solid rgba(0,67,145,0.15);
  border-radius: 999px;
  padding: 8px 10px 8px 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,67,145,0.10);
  transition: all 0.2s ease;
}
.block-content-001__btn:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,67,145,0.18);
}
.block-content-001__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0c4da2;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .block-content-001__title { font-size: 2rem; }
  .block-content-001__desc { font-size: 0.875rem; }
  .block-content-001__highlight { font-size: 0.9375rem; }
  .block-content-001__cta { bottom: 16px; }
}
@media (min-width: 1200px) {
  .block-content-001 { padding-top: 56px; }
  .block-content-001__title { font-size: 3.5rem; }
}
@media (min-width: 1441px) {
  .block-content-001 { padding-top: 72px; }
  .block-content-001__title { font-size: 4rem; }
}

/* ============================================
   BLOCK-CAROUSEL-002: Product Showcase
   ============================================ */
.block-carousel-002 {
  position: relative;
  overflow: hidden;
      padding: 40px 30px;
}
.block-carousel-002 .swiper {
      border-radius: 24px;
}

.bc002 {
  position: relative;
}

/* Main slide link */
.bc002__slide {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}

/* Image containers */
.bc002__img img {
  width: 100%;
  height: auto;
  display: block;
}
.bc002__img--desktop { display: block; }
.bc002__img--mobile { display: none; }
@media (max-width: 767px) {
  .bc002__img--desktop { display: none; }
  .bc002__img--mobile { display: block; }
}

/* Text overlay */
.bc002__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #282728;
}
@media (max-width: 767px) {
  .bc002__overlay {
    justify-content: flex-start;
    padding-top: 20px;
  }
}
@media (min-width: 576px) {
  .bc002__overlay { padding: 32px; }
}
@media (min-width: 768px) {
  .bc002__overlay {
    color: #fff;
    padding: 32px;
    padding-bottom: 96px;
  }
}
@media (min-width: 992px) {
  .bc002__overlay { padding: 48px; padding-bottom: 88px; }
}
@media (min-width: 1441px) {
  .bc002__overlay { padding: 64px; padding-bottom: 96px; }
}

/* Overlay text */
.bc002__title {

  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
  font-size: 1.5rem;
  color: #0c4da2;
}
.bc002__desc {

  margin: 0;
  line-height: 1.7;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .bc002__title { color: #fff; font-size: 2rem; }
  .bc002__desc { color: #fff; font-size: 1rem; max-width: 520px; }
}
@media (min-width: 992px) {
  .bc002__title { font-size: 2.5rem; }
}
@media (min-width: 1441px) {
  .bc002__title { font-size: 3rem; }
  .bc002__desc { font-size: 1.25rem; max-width: 640px; }
}

/* Navigation arrows — edge-positioned simple chevrons */
.bc002__main .swiper-button-prev,
.bc002__main .swiper-button-next {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  top: 50%;
  margin-top: -20px;
}
.bc002__main .swiper-button-prev { left: 8px; }
.bc002__main .swiper-button-next { right: 8px; }
.bc002__main .swiper-button-prev::after,
.bc002__main .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
  color: #004391;
}
.bc002__main .swiper-button-prev:hover,
.bc002__main .swiper-button-next:hover {
  background: rgba(255,255,255,0.9);
}

/* Thumb tabs */
.bc002__tabs {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    margin-top: -70px;
    padding: 0 0 15px 0;
}
@media (max-width: 767px) {
  .bc002__tabs {
    margin-top: 0;
    padding: 12px 12px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
  }
}
.bc002__tabs-pill {
  display: inline-flex;
  max-width: 100%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 5px 6px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.bc002__thumbs {
  overflow: visible;
}
.bc002__thumbs .swiper-wrapper {
  display: flex;
}
.bc002__thumbs .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
  cursor: pointer;
  text-align: center;
  padding: 10px 28px;

  font-size: 0.9375rem;
  font-weight: 500;
  color: #6b7280;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
  user-select: none;
}
.bc002__thumbs .swiper-slide:hover {
  color: #004391;
}
.bc002__thumbs .swiper-slide-thumb-active {
  background: linear-gradient(135deg, #0c4da2 0%, #0090E0 100%);
  color: #fff !important;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,144,224,0.35);
}
@media (max-width: 767px) {
  .bc002__thumbs .swiper-slide {
    font-size: 0.8125rem;
    padding: 8px 16px;
  }
  .bc002__tabs-pill {
    border-radius: 16px;
  }
}

/* ============================================
   BLOCK-CONTENT-002: GREEN PRODUCT
   ============================================ */
.block-content-002 {
  position: relative;
  background-image: url('https://web.cpac.co.th/_next/static/media/green-product-bg.1303de81.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 56px 24px 0;
}
@media (max-width: 767px) {
  .block-content-002 {
    background-image: url('https://web.cpac.co.th/_next/static/media/green-product-bg-mobile.1bc23d19.jpg');
    min-height: 600px;
    padding: 40px 20px 0;
  }
}
@media (min-width: 1200px) {
  .block-content-002 { min-height: 780px; padding-top: 64px; }
}
@media (min-width: 1441px) {
  .block-content-002 { min-height: 900px; padding-top: 72px; }
}
.block-content-002__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
/* Title */
.block-content-002__title {

  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}
.block-content-002__title-green {
  color: #2E7D32;
}
.block-content-002__title-light {
  color: #004391;
  font-weight: 300;
}
@media (max-width: 767px) {
  .block-content-002__title { font-size: 2rem; }
}
@media (min-width: 1200px) {
  .block-content-002__title { font-size: 3.5rem; }
}
/* Description */
.block-content-002__desc {

  font-size: 1rem;
  color: #004391;
  margin: 0 0 4px;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .block-content-002__desc { font-size: 0.875rem; }
}
/* Highlight tagline */
.block-content-002__highlight {

  font-size: 1.25rem;
  color: #2E7D32;
  margin: 0 0 32px;
  line-height: 1.6;
}
.block-content-002__highlight strong {
  font-weight: 700;
  background: linear-gradient(90deg, #2E7D32, #43A047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 767px) {
  .block-content-002__highlight { font-size: 1rem; margin-bottom: 24px; }
}
/* Icon row */
.block-content-002__icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .block-content-002__icons { gap: 24px; }
}
@media (max-width: 767px) {
  .block-content-002__icons { gap: 16px; }
}
.block-content-002__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 140px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.block-content-002__icon-item:hover {
  transform: translateY(-6px);
}
@media (max-width: 767px) {
  .block-content-002__icon-item { width: 100px; gap: 10px; }
}
.block-content-002__icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2.5px solid #4CAF50;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(76,175,80,0.08);
}
.block-content-002__icon-circle img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.block-content-002__icon-item:hover .block-content-002__icon-circle {
  border-color: #2E7D32;
  box-shadow: 0 6px 24px rgba(76,175,80,0.22);
  background: #fff;
}
.block-content-002__icon-item:hover .block-content-002__icon-circle img {
  transform: scale(1.08);
}
@media (max-width: 767px) {
  .block-content-002__icon-circle { width: 80px; height: 80px; }
  .block-content-002__icon-circle img { width: 48px; height: 48px; }
}
@media (min-width: 1200px) {
  .block-content-002__icon-circle { width: 140px; height: 140px; }
  .block-content-002__icon-circle img { width: 84px; height: 84px; }
}
.block-content-002__icon-label {

  font-size: 0.8125rem;
  color: #004391;
  text-align: center;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.2s;
}
.block-content-002__icon-item:hover .block-content-002__icon-label {
  color: #2E7D32;
}
/* Bottom actions */
.block-content-002__actions {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  width: auto;
  max-width: 90%;
}
@media (max-width: 767px) {
  .block-content-002__actions {
    flex-direction: column;
    bottom: 20px;
    width: 90%;
  }
}
/* Search bar */
.block-content-002__search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(0,67,145,0.12);
  border-radius: 999px;
  padding: 4px 6px 4px 24px;
  min-width: 420px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
@media (max-width: 767px) {
  .block-content-002__search { min-width: auto; width: 100%; }
}
.block-content-002__search input {
  flex: 1;
  border: none;
  background: none;

  font-size: 0.875rem;
  color: #6b7280;
  outline: none;
  padding: 8px 0;
}
.block-content-002__search-btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0,67,145,0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.block-content-002__search-btn:hover {
  background: rgba(0,67,145,0.15);
}
/* CTA button */
.block-content-002__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-size: 0.9375rem;
  font-weight: 600;
  color: #004391;
  text-decoration: none;
  border: 2px solid rgba(0,67,145,0.15);
  border-radius: 999px;
  padding: 8px 10px 8px 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,67,145,0.10);
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.block-content-002__cta:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,67,145,0.18);
}
.block-content-002__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0c4da2;
  flex-shrink: 0;
}

/* ============================================
   LANGUAGE SWITCHER - Hide on Mobile
   ============================================ */
@media (max-width: 991px) {
  .css-19muecv {
    display: none !important;
  }
  header .MuiToolbar-root .css-19muecv .nav-btn-wrap {
    display: none !important;
  }
}

/* ============================================
   BLOCK-CAROUSEL-002 THUMBS - Hide on Mobile
   ============================================ */
@media (max-width: 767px) {
  .bc002__thumbs {
    display: none !important;
  }
}

/* ============================================
   BLOCK-PRODUCT-001: Product Hero Banner
   ============================================ */
.block-product-001 {
  position: relative;
  overflow: hidden;
}
.block-product-001__banner {
  position: relative;
  width: 100%;
}
.block-product-001__img {
  width: 100%;
  height: auto;
  display: block;
}
.block-product-001__img--desktop { display: block; }
.block-product-001__img--mobile { display: none; }
@media (max-width: 767px) {
  .block-product-001__img--desktop { display: none; }
  .block-product-001__img--mobile { display: block; }
}
.block-product-001__overlay {
  position: absolute;
  bottom: 12%;
  left: 0;
  width: 100%;
  text-align: left;
  pointer-events: none;
  padding: 0 48px;
}
.block-product-001__title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.2;
  -webkit-text-stroke: 1.5px #004391;
  paint-order: stroke fill;
  text-shadow: 2px 3px 6px rgba(0,67,145,0.25);
}
.block-product-001__desc {
  font-size: 1.75rem;
  font-weight: 600;
  color: #0c4da2;
  margin: 0;
  font-style: italic;
  text-shadow: 1px 2px 4px rgba(255,255,255,0.5);
}
@media (max-width: 991px) {
  .block-product-001__overlay { padding: 0 32px; }
  .block-product-001__title { font-size: 2.5rem; }
  .block-product-001__desc { font-size: 1.25rem; }
}
@media (max-width: 767px) {
  .block-product-001__overlay { bottom: 8%; padding: 0 20px; }
  .block-product-001__title { font-size: 1.5rem; -webkit-text-stroke: 1px #004391; }
  .block-product-001__desc { font-size: 0.875rem; }
}
/* Bottom icon */
.block-product-001__icon-wrap {
  display: flex;
  justify-content: center;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.block-product-001__icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,67,145,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8f0f8;
}
.block-product-001__icon-circle img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* --- Project carousel section spacing --- */
div.MuiBox-root.css-muwg19 {
  margin-top: 60px !important;
}
@media (max-width: 991px) {
  div.MuiBox-root.css-muwg19 {
    margin-top: 20px !important;
  }
}

/* --- Project carousel card: remove black border --- */
.css-muwg19 .MuiCard-root,
.css-muwg19 .css-1ji6kdc,
.css-muwg19 .MuiPaper-root {
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(0,67,145,0.08) !important;
}
.css-muwg19 a,
.css-muwg19 a:focus,
.css-muwg19 a:active,
.css-muwg19 a:visited,
.css-muwg19 .swiper-slide *,
.css-muwg19 .css-79elbk {
  border: none !important;
  outline: none !important;
}

/* ============================================
   BLOCK-LAYOUT-001: Product Series / Assessment Sections
   ============================================ */
.block-layout-001 {
  padding: 64px 0;
  background: #fff;
}
.block-layout-001 .MuiContainer-root {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Hero intro title block --- */
.css-w9zzj1 {
  text-align: center;
  margin-bottom: 60px;
}

/* --- Hero intro spacing --- */
.bl001-hero-intro {
  margin-bottom: 80px;
}

/* --- Row layout --- */
.bl001-row {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
}
.bl001-row--reverse {
  flex-direction: row-reverse;
}
.bl001-content {
  flex: 1;
  min-width: 0;
}
.bl001-image {
  flex: 1;
  min-width: 0;
}

/* --- Series badge --- */
.bl001-series-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  padding: 4px 12px 4px 4px;
  background: #fff;
  border: 1.5px solid #004391;
  border-radius: 6px;
}
.bl001-badge-logo {
  height: 22px;
  width: auto;
}
.bl001-badge-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #004391;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}
.bl001-badge-name small {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  display: block;
  margin-top: 1px;
}

/* --- Section number --- */
.bl001-num {
  color: #0c4da2;
  font-weight: 700;
}

/* --- Title --- */
.bl001-title {
  font-size: 1.75rem;
  font-weight: 400;
  color: #004391;
  margin: 0 0 12px;
  line-height: 1.4;
}
.bl001-title strong {
  font-weight: 700;
  color: #0c4da2;
}

/* --- Description --- */
.bl001-desc {
  font-size: 0.925rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* --- Label box --- */
.bl001-label-box {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #004391;
  border: 1.5px solid #004391;
  border-radius: 8px;
  padding: 8px 20px;
  margin-bottom: 16px;
}

/* --- Product list --- */
.bl001-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.bl001-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
}
.bl001-list li + li {
  border-top: 1px solid #eef2f7;
}
.bl001-plus {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 2px;
}
.bl001-list a {
  font-size: 0.925rem;
  font-weight: 500;
  color: #004391;
  text-decoration: none;
  transition: color 0.2s;
}
.bl001-list a:hover {
  color: #0c4da2;
}
.bl001-list span:not(.bl001-plus) {
  font-size: 0.925rem;
  color: #004391;
  line-height: 1.6;
}
.bl001-list span strong {
  font-weight: 600;
  color: #004391;
}

/* --- Image frame with cyan background --- */
.bl001-frame-wrap {
  position: relative;
  padding-right: 28px;
  padding-bottom: 28px;
}
.bl001-row--reverse .bl001-frame-wrap {
  padding-right: 0;
  padding-left: 28px;
  padding-bottom: 28px;
}
.bl001-frame {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  background: linear-gradient(135deg, #5dd8fc 0%, #00a8e8 100%);
  border-radius: 20px;
  overflow: hidden;
}
.bl001-row--reverse .bl001-frame {
  right: auto;
  left: 0;
}
.bl001-frame-lines {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
}
.bl001-photo {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,67,145,0.15);
}

/* --- Swiper carousel in layout --- */
.bl001-swiper {
  width: 100%;
}
.bl001-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.bl001-swiper .swiper-pagination {
  bottom: 12px !important;
}
.bl001-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #888;
  opacity: 1;
  transition: all 0.3s;
}
.bl001-swiper .swiper-pagination-bullet-active {
  background: #0c4da2;
  width: 28px;
  border-radius: 5px;
}

/* --- Static image (no carousel) --- */
.bl001-static-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .bl001-hero-intro {
    margin-bottom: 20px;
  }
  .bl001-row,
  .bl001-row--reverse {
    flex-direction: column;
    gap: 32px;
  }
  .bl001-row {
    margin-bottom: 20px;
  }
  .bl001-image {
    width: 100%;
  }
  .block-layout-001 {
    padding: 40px 0;
  }
}
@media (max-width: 575px) {
  .bl001-title {
    font-size: 1.5rem;
  }
  .bl001-row {
    gap: 24px;
    margin-bottom: 30px;
  }
  .block-layout-001 {
    padding: 32px 0;
  }
}

/* ============================================
   SCROLL FADE-IN ANIMATION
   ============================================ */
.scroll-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-fade--visible {
  opacity: 1;
  transform: translateY(0);
}
/* Preserve translateX(-50%) on centered absolute elements */
.css-1kjizbl.scroll-fade {
  transform: translateX(-50%) translateY(32px);
}
.css-1kjizbl.scroll-fade--visible {
  transform: translateX(-50%) translateY(0);
}
/* Stagger cards within a grid row */
.MuiGrid-root.scroll-fade:nth-child(2) { transition-delay: 0.1s; }
.MuiGrid-root.scroll-fade:nth-child(3) { transition-delay: 0.2s; }
.MuiGrid-root.scroll-fade:nth-child(4) { transition-delay: 0.15s; }
.MuiGrid-root.scroll-fade:nth-child(5) { transition-delay: 0.25s; }
.MuiGrid-root.scroll-fade:nth-child(6) { transition-delay: 0.2s; }

@media (prefers-reduced-motion: reduce) {
  .scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   NEWS DETAIL PAGE
   ============================================ */
.news-detail-hero {
  padding: 32px 0 0;
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
}
.news-detail-hero-img {
  border-radius: 16px;
  overflow: hidden;
}
.news-detail-hero-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}
.news-detail-content {
  padding: 40px 0 56px;
}
.news-detail-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.news-detail-date {
  font-size: 0.875rem;
  color: #888;
}
.news-detail-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #004391;
  line-height: 1.4;
  margin-bottom: 32px;
}
.news-detail-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}
.news-detail-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #004391;
  margin: 32px 0 16px;
}
.news-detail-img-inline {
  margin: 32px 0;
  border-radius: 12px;
  overflow: hidden;
}
.news-detail-img-inline img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Related News */
.news-related {
  padding: 48px 0 56px;
  background: #f7fcff;
}
.news-related-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004391;
  margin-bottom: 24px;
}
.news-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.news-card-link:hover .MuiCard-root {
  box-shadow: 0 4px 20px rgba(0,67,145,0.12);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

@media (max-width: 600px) {
  .news-detail-title {
    font-size: 1.35rem;
  }
  .news-detail-content {
    padding: 24px 0 40px;
  }
  .news-detail-hero {
    padding: 16px 0 0;
  }
  .news-related {
    padding: 32px 0 40px;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.about-hero {
  padding-top: 60px;
  padding-bottom: 0;
}
.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004391;
  margin-bottom: 12px;
}
.about-hero .subtitle {
  font-size: 1rem;
  color: #004391;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Stat Boxes */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.about-stat-box {
  text-align: center;
  padding: 32px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
}
.about-stat-box .stat-label {
  font-size: 1rem;
  color: #004391;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.5;
}
.about-stat-box .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(90deg, #0c4da2, #004391);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-stat-box .stat-unit {
  font-size: 1rem;
  color: #004391;
}

/* Description Section */
.about-description {
  padding-bottom: 48px;
}
.about-description p {
  font-size: 1rem;
  color: #004391;
  line-height: 1.7;
}

/* Value Creation Section */
.about-value {
  padding-bottom: 48px;
}
.about-value h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004391;
  text-align: center;
  margin-bottom: 20px;
}
.about-value p {
  font-size: 1rem;
  color: #004391;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Team Management Section */
.about-team {
  padding-bottom: 48px;
}
.about-team h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #004391;
  text-align: center;
  margin-bottom: 32px;
}
.about-team-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.about-team-row:last-child {
  margin-bottom: 0;
}
.about-team-row.row-1 {
  display: flex;
  justify-content: center;
}
.about-team-row.row-1 .about-team-card {
  width: 300px;
}
.about-team-row.row-2 {
  display: flex;
  justify-content: center;
}
.about-team-row.row-2 .about-team-card {
  width: calc(25% - 12px);
}
.about-team-row.row-4 {
  grid-template-columns: repeat(3, 1fr);
}
.about-team-card {
  position: relative;
  border: 3px solid #003db8;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}
.about-team-card:hover {
  background: #003db8;
  border-color: #003db8;
}
.about-team-card .team-photo {
  width: 100%;
  background: #d0d5da;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 16px solid #fff;
  transition: all 0.3s ease;
}
.about-team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.about-team-card:hover .team-photo {
  background: #003db8;
  border-color: #003db8;
}
.about-team-card:hover .team-photo img,
.about-team-card:hover .team-photo svg {
  transform: scale(1.1);
}
.about-team-card .team-photo svg {
  width: 80px;
  height: 80px;
  color: #a0a8b0;
  transition: transform 0.3s ease;
}
.about-team-card .team-detail {
  padding: 10px 16px;
  transition: all 0.3s ease;
}
.about-team-card .team-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #004391;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}
.about-team-card .team-position {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.about-team-card:hover .team-name {
  color: #fff;
}
.about-team-card:hover .team-position {
  color: rgba(255,255,255,0.8);
}

/* Masterpiece Carousel Section */
.about-masterpiece {
  padding-bottom: 0;
}
.masterpiece-slide {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #003a7d;
}
.masterpiece-slide .slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.masterpiece-slide .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,67,145,0.92) 0%, rgba(0,67,145,0.7) 40%, rgba(0,67,145,0.15) 70%, transparent 100%);
}
.masterpiece-slide .slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.masterpiece-slide .slide-info {
  max-width: 480px;
  color: #fff;
}
.masterpiece-slide .slide-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.masterpiece-slide .slide-icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.masterpiece-slide .slide-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
.masterpiece-slide .slide-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.95;
}
.masterpiece-slide .slide-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.85;
}
.masterpiece-bottom {
  background: linear-gradient(135deg, #004391 0%, #0068c9 100%);
  color: #fff;
  padding: 16px 0;
}
.masterpiece-bottom .bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.masterpiece-bottom .project-label {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.masterpiece-bottom .project-number {
  font-size: 2rem;
  font-weight: 700;
  opacity: 0.6;
}
.masterpiece-bottom .project-name {
  font-size: 1.125rem;
  font-weight: 600;
}
.masterpiece-bottom .project-year {
  font-size: 0.8125rem;
  opacity: 0.7;
}
.masterpiece-bottom .slide-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.masterpiece-bottom .slide-counter {
  font-size: 0.8125rem;
  opacity: 0.7;
}
.masterpiece-bottom .slide-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.masterpiece-bottom .slide-btn:hover {
  background: rgba(255,255,255,0.15);
}

/* Company VDO Section */
.about-vdo {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-vdo-player {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}
.about-vdo-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.about-vdo-player .vdo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #004391 0%, #0068c9 50%, #0c4da2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
}
.about-vdo-player .vdo-placeholder svg {
  width: 64px;
  height: 64px;
  fill: #fff;
  opacity: 0.9;
  margin-bottom: 12px;
}
.about-vdo-player .vdo-placeholder span {
  font-size: 1rem;
  opacity: 0.8;
}

/* Download Section */
.about-download {
  padding-bottom: 60px;
  padding-top: 12px;
}
.about-download h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.about-download .dl-subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}
.about-dl-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
.about-dl-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.about-dl-card .dl-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-dl-card .dl-icon {
  width: 48px;
  height: 56px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-dl-card .dl-icon svg {
  width: 48px;
  height: 56px;
  color: #cddbe7;
}
.about-dl-card .dl-icon .dl-badge {
  position: absolute;
  bottom: 2px;
  left: 0;
  background: #0c4da2;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  line-height: 1.4;
}
.about-dl-card .dl-info h6 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #004391;
  margin-bottom: 2px;
}
.about-dl-card .dl-info p {
  font-size: 0.8125rem;
  color: #999;
}
.about-dl-card .dl-action {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0c4da2;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.about-dl-card .dl-action svg {
  width: 18px;
  height: 18px;
}

/* About Page Responsive */
@media (max-width: 767px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-stat-box .stat-number {
    font-size: 2.25rem;
  }
  .about-team-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .about-team-row.row-1 {
    display: flex !important;
  }
  .about-team-row.row-1 .about-team-card {
    width: 100%;
  }
  .about-team-row.row-2 .about-team-card {
    width: 100%;
  }
  .about-hero h1 {
    font-size: 1.375rem;
  }
  .masterpiece-slide {
    height: 400px;
  }
  .masterpiece-slide .slide-title {
    font-size: 1.75rem;
  }
  .masterpiece-slide .slide-overlay {
    background: linear-gradient(180deg, rgba(0,67,145,0.9) 0%, rgba(0,67,145,0.5) 100%);
  }
  .masterpiece-bottom .bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================
   NEWS / ARTICLES TABS
   ============================================ */
.news-tabs { padding: 16px 0; margin-bottom: 32px; }
.news-tabs-inner { display: flex; gap: 10px; overflow-x: auto; padding: 0 4px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.news-tabs-inner::-webkit-scrollbar { display: none; }
.news-tab { white-space: nowrap; padding: 8px 20px; border-radius: 20px; border: 1.5px solid #004391; background: #fff; color: #004391; font-size: 0.875rem; font-weight: 500; cursor: pointer; transition: all 0.2s; flex-shrink: 0; font-family: inherit; }
.news-tab:hover { background: #f0f4f8; }
.news-tab.active { background: #004391; color: #fff; border-color: #004391; font-weight: 600; }
.news-card-grid[data-hidden="true"] { display: none !important; }

/* ============================================
   PRIVACY SETTINGS - TOGGLE SWITCH
   ============================================ */
.toggle-switch { position: relative; display: inline-block; width: 48px; height: 26px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }

/* ============================================
   RECOMMEND SWIPER - allow hover shadow
   ============================================ */
.recommend-swiper {
  overflow: clip !important;
  overflow-y: visible !important;
  overflow-x: clip !important;
  padding: 16px 0;
  margin: -16px 0;
}
