/* Reset & Base Variables */
html {
  scroll-behavior: smooth;
}

section {
  /* Giữ khoảng cách với mép trên một khoảng bằng 80px */
  scroll-margin-top: 80px;
}

:root {
  --background-color-bg: #FFFFFF;
  --text-color-text-white: #FFFFFF;
  --text-color-text-brand-primary: #BD240F;
  --text-color-text-brand-secondary: #0D59A5;
  --color-border-brand-primary: #EA2C13;
  --color-border-brand-secondary: #0C58A4;
  --text-color-text-secondary: #2B363B;
  --text-color-text-primary: #161B1D;
  --background-color-bg-brand-primary: #EC2C13;
  --background-color-bg-brand-secondary: #0C58A4;
  --text-color-inverse-text-primary: #FFFFFF;
  --background-color-surface-2: #E2E7E9;
  --background-color-bg-badge-brand-filled-theme: #D42811;
  --font-roboto: 'Roboto', sans-serif;
  --font-roboto-condensed: 'Roboto Condensed', sans-serif;
  --font-VNI-butlong: 'VNI-butlong', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-roboto);
  background: var(--background-color-bg);
  color: var(--text-color-text-secondary);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-wrapper {
  width: 100%;
  max-width: 1224px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

/* Cancel inner container's horizontal padding to avoid double-padding (16px + 16px = 32px) */
.section-wrapper>.container {
  padding-left: 0;
  padding-right: 0;
}

/* Typography Utilities */
.section-title {
  text-align: center;
  color: var(--text-color-text-brand-secondary);
  font-size: 40px;
  font-family: var(--font-roboto-condensed);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
}

.section-line {
  width: 80px;
  height: 4px;
  background: var(--color-border-brand-primary);
  margin: 0 auto 0px;
}

/* Buttons */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  max-height: 40px;
  border-radius: 4px;
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.btn-primary {
  background: #EC2C13;
  color: var(--text-color-text-white);
}

.btn-primary:hover {
  background: #BD240F;
  color: var(--text-color-text-white);
}

.btn-outline {
  background: transparent;
  color: #EE412B;
  border: 1px solid #EE412B;
}

.btn-outline:hover {
  background: transparent;
  color: #BD240F;
  border: 1px solid #BD240F;
}

.btn-controls {
  width: 40px;
  height: 40px;
  border: none;
  background: #627884;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
}

.btn-controls:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Header Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--background-color-bg);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color-text-primary);
}

.mobile-menu-toggle svg line {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform-origin: 12px 12px;
}

.mobile-menu-toggle.active .line-1 {
  transform: rotate(45deg) translate(0, 6px);
}

.mobile-menu-toggle.active .line-2 {
  opacity: 0;
}

.mobile-menu-toggle.active .line-3 {
  transform: rotate(-45deg) translate(0, -6px);
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  color: var(--text-color-text-primary);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-roboto);
  padding: 4px 8px;
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--color-border-brand-primary);
}

.nav-links a:active {
  color: #A51F0D;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  height: 652px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url('https://placehold.co/1440x652') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-color-text-white);
  padding: 16px
}

.hero h1 {
  font-size: 56px;
  font-family: var(--font-roboto-condensed);
  font-weight: 400;
}

.hero p {
  font-size: 32px;
  font-family: var(--font-VNI-butlong);
  margin-bottom: 32px;
}

/* About Section */
.about-desc {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin: 0 auto 0px;
  max-width: 1000px;
  padding: 0px;
  gap: 8px;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.about-cards.about-cards--4col {
  grid-template-columns: repeat(4, 1fr);
}

.about-card {
  background: var(--background-color-bg);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card:nth-child(1) .about-card-icon {
  background: var(--background-color-bg-brand-primary);
}

.about-card:nth-child(2) .about-card-icon {
  background: var(--background-color-bg-brand-secondary);
}

.about-card:nth-child(3) .about-card-icon {
  background: var(--background-color-bg-brand-primary);
}

.about-card h3 {
  color: var(--text-color-text-primary);
  font-size: 24px;
  font-family: var(--font-roboto-condensed);
}

/* Products Section */
.product-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  gap: 24px;
  margin-bottom: 0px;
  padding-bottom: 10px;
}

/* Replacing position: absolute marquee with a flex scrolling track */
.product-track {
  display: flex;
  gap: 24px;
  animation: scroll 20s linear infinite;
  /* Pause animation on hover */
}

.product-carousel:hover .product-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% / 2));
  }
}

.product-item {
  min-width: 183px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
}

.product-item img {
  width: 151px;
  height: 151px;
  border-radius: 8px;
  object-fit: cover;
}

.product-item span {
  font-size: 20px;
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
  color: var(--text-color-text-primary);
}

.brand-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
  margin-bottom: 0px;
}

.brand-mini-card {
  position: relative;
  height: 197px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-mini-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 1;
}

.brand-mini-card h3 {
  position: relative;
  z-index: 2;
  color: var(--text-color-text-white);
  font-size: 40px;
  font-family: var(--font-roboto-condensed);
  font-weight: 900;
}

/* Stats Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 48px;
}

.stat-card {
  background: var(--background-color-bg);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-border-brand-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(180deg, #EC2C13 0%, #0C58A4 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-card h3 {
  font-size: 32px;
  color: var(--text-color-text-primary);
  font-family: var(--font-roboto-condensed);
}

.stats-banner {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 48px;
}

.scope-box {
  background: linear-gradient(180deg, #EC2C13 0%, #C2220D 100%);
  border-radius: 12px;
  padding: 48px 24px;
  width: 100%;
  text-align: center;
}

.scope-box h3 {
  color: var(--text-color-text-white);
  font-size: 40px;
  font-family: var(--font-roboto-condensed);
  margin-bottom: 48px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scope-item {
  background: var(--background-color-bg);
  padding: 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scope-item .highlight {
  color: #BD240F;
  font-size: 32px;
  font-family: var(--font-roboto-condensed);
}

.scope-item .label {
  color: var(--text-color-text-primary);
  font-size: 20px;
  font-family: var(--font-roboto-condensed);
  font-weight: 500;
}

.scope-box {
  background-image: url('../asset/image-hieu-ung.gif');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 24px;
  border-radius: 12px;
}

/* History Section */
.history-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
  width: 100%;
  margin-bottom: 0px;
}

.history-card {
  background: var(--background-color-bg);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-border-brand-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.history-card .year {
  color: var(--text-color-text-brand-secondary);
  font-size: 24px;
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
}

.history-grid .history-card:nth-child(5) {
  grid-column: 2;
}



/* Press Section */
.press-block {
  display: flex;
  gap: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: var(--background-color-bg);
  align-items: stretch;
  border-radius: 20px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0;
  /* override .container's padding so children reach the edges */
}

.press-image {
  flex: 1;
  background: url('https://placehold.co/808x492') center/cover;
  min-height: 492px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  transition: opacity 0.3s ease;
}

.press-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.press-controls button {
  background: #627884;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  color: white;
}

.press-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 492px;
}

.press-article {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  background: var(--background-color-bg);
  transition: background 0.3s ease;
  cursor: pointer;
}

.press-article.active {
  background: var(--background-color-surface-2);
}

.press-badge {
  display: inline-block;
  background: var(--background-color-bg-badge-brand-filled-theme);
  color: white;
  padding: 2px 8px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.press-article h4 {
  font-size: 20px;
  color: var(--text-color-text-primary);
  font-family: var(--font-roboto-condensed);
  margin-bottom: 8px;
  height: fit-content;
}

.press-article p {
  font-size: 16px;
  color: var(--text-color-text-secondary);
  margin-bottom: 8px;
  height: fit-content;
}

.read-more {
  color: #0F66BD;
  text-decoration: underline;
  font-size: 14px;
}

.press-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* Tiêu đề giới hạn 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  height: 2.8em;
  /* 1.4 x 2 */
  margin-bottom: 8px;
}

.press-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  /* Nội dung giới hạn 4 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  height: 6em;
  /* 1.5 x 4 */
  color: var(--text-color-text-secondary);
  margin-bottom: 16px;
}

/* Awards Section */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.awards-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 32px;
}

.awards-scroll::-webkit-scrollbar {
  display: none;
}

.awards-scroll .award-card {
  min-width: 210px;
  flex: 0 0 210px;
}

.award-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.award-card img {
  width: 210px;
  height: 210px;
  object-fit: contain;
}

.award-card p {
  color: var(--text-color-text-primary);
  font-size: 20px;
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
}

/* News Section */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 0px;
}

.news-card {
  background: var(--background-color-bg);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.news-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.news-content h4 {
  font-size: 18px;
  font-family: var(--font-roboto-condensed);
  color: var(--text-color-text-primary);
  flex: 1;
}

/* Header Active State for About Page */
.nav-links a.active {
  color: #A51F0D;
  font-weight: 700;
}

/* Hero About Section */
.hero-about {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero-about-bg {
  width: 100%;
  height: 500px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%), url('https://placehold.co/1440x500') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-about-bg h1 {
  color: var(--text-color-text-white);
  font-size: 56px;
  font-family: var(--font-roboto-condensed);
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  max-width: 1200px;
  padding: 0 16px;
}

.hero-about-desc {
  max-width: 1000px;
  text-align: center;
  color: var(--text-color-text-secondary);
  font-size: 16px;
}

/* Principles Section */
.principles-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 60px;
  column-gap: 60px;
}

.principle-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 48px;
  /* Restores the transparent space needed for the dashed line to be visible */
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.principle-row::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 2px dashed var(--color-border-brand-primary);
  z-index: -1;
  transform: translateY(-50%);
}

.principle-text {
  flex: 1;
  padding: 24px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.10);
  border-radius: 8px;
  border: 2px dashed var(--color-border-brand-primary);
  display: flex;
  align-items: center;
  font-size: 16px;
  background: var(--background-color-bg);
}

.principle-box {
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: white;
  position: relative;
  overflow: visible;
  background: linear-gradient(180deg, #EC2C13 0%, #0C58A4 100%);
}

.principle-box::before,
.principle-box::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Variant 1: Top Left */
.principle-box.variant-1::before {
  /* Cutout on Right */
  right: -20px;
  top: 90px;
  background: var(--background-color-bg);
  z-index: 10;
}

.principle-box.variant-1::after {
  /* Protrusion on Bottom */
  bottom: -20px;
  left: 90px;
  background: #0C58A4;
  z-index: -1;
}

/* Variant 2: Top Right */
.principle-box.variant-2::before {
  /* Protrusion on Left */
  left: -20px;
  top: 90px;
  background: inherit;
  background-size: 220px 220px;
  background-position: 0 -90px;
  z-index: -1;
}

.principle-box.variant-2::after {
  /* Cutout on Bottom */
  bottom: -20px;
  left: 90px;
  background: var(--background-color-bg);
  z-index: 10;
}

/* Variant 3: Bottom Left */
.principle-box.variant-3::before {
  /* Cutout on Top */
  top: -20px;
  left: 90px;
  background: var(--background-color-bg);
  z-index: 10;
}

.principle-box.variant-3::after {
  /* Protrusion on Right */
  right: -20px;
  top: 90px;
  background: inherit;
  background-size: 220px 220px;
  background-position: 0 -90px;
  z-index: -1;
}

/* Variant 4: Bottom Right */
.principle-box.variant-4::before {
  /* Protrusion on Top */
  top: -20px;
  left: 90px;
  background: #EC2C13;
  z-index: -1;
}

.principle-box.variant-4::after {
  /* Cutout on Left */
  left: -20px;
  top: 90px;
  background: var(--background-color-bg);
  z-index: 10;
}

.principle-box h3 {
  font-size: 32px;
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
  z-index: 2;
}

.principle-icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}


/* Core Values Section */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.core-value-card {
  padding: 24px;
  background: var(--background-color-bg);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.cv-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cv-icon-inner {
  width: 24px;
  height: 24px;
  background: white;
}

.cv-icon-inner.round {
  border-radius: 50%;
}

.cv-icon-inner.hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.cv-icon-inner.star {
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.core-value-card h3 {
  font-size: 24px;
  font-family: var(--font-roboto-condensed);
  color: var(--text-color-text-primary);
}

/* Philosophy Section */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.philosophy-card {
  padding: 24px;
  background: var(--background-color-bg);
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.philosophy-card h3 {
  font-size: 24px;
  font-family: var(--font-roboto-condensed);
  color: var(--text-color-text-primary);
}

.commitment-banner {
  padding: 48px 24px;
  background: linear-gradient(180deg, #EC2C13 0%, #0C58A4 100%);
  border-radius: 10px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.commitment-banner h3 {
  font-size: 40px;
  font-family: var(--font-roboto-condensed);
  margin-bottom: 8px;
}

.commitment-banner p {
  font-size: 20px;
  font-weight: 500;
  max-width: 1000px;
}

/* Timeline History Section */
.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

.history-timeline-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 16px 0px;
  max-height: 480px;
}

.history-timeline-scroll::-webkit-scrollbar {
  display: none;
}

.history-timeline-card {
  min-width: 288px;
  flex: 0 0 288px;
  background: var(--background-color-bg);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-border-brand-primary);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.history-timeline-card .year-badge {
  color: var(--text-color-text-brand-secondary);
  font-size: 32px;
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
  text-align: center;
}

.history-timeline-card p {
  font-size: 16px;
}

.history-timeline-card img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  border-radius: 9px;
  margin-top: auto;
}

.timeline-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
}



.stats-banner-img {
  width: 100%;
  height: auto;
  max-height: 268px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 48px;
}

/* Footer Section */
.footer {
  background: #041A2F;
  color: white;
  padding: 64px 0 24px;
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-left {
  flex: 1;
  max-width: 400px;
}

.footer-right {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  white-space: nowrap;
  /* Không cho phép xuống dòng giữa chừng */
}

.footer-col a {
  transition: opacity 0.3s;
}

.footer-col a:hover {
  opacity: 0.7;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: #062647;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  color: #C4CFD4;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* Responsive adjustments */
@media (max-width: 992px) {

  .principles-list {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }

  .stats-grid,
  .history-grid,
  .awards-grid,
  .news-grid,
  .core-values-grid,
  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cards.about-cards--4col {
    grid-template-columns: repeat(2, 1fr);
  }

  .history-grid .history-card:nth-child(5) {
    grid-column: auto;
  }

  .press-block {
    flex-direction: column;
  }

  .press-image {
    min-height: 300px;
    height: 300px;
  }

  .press-content {
    max-height: none;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--background-color-bg);
    flex-direction: column;
    padding: 24px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 24px;
  }

  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-mini-grid {
    grid-template-columns: 1fr;
  }

  .principle-row {
    gap: 16px;
  }

  .principle-row::before {
    display: none;
  }

  .principle-text {
    min-width: 0;
    padding: 16px;
    font-size: 14px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-right {
    width: 100%;
    display: grid;
    justify-content: space-between;
    /* Ở mobile 2 cột này nằm ngang nhau */
    gap: 40px;
  }

  .footer-col ul li a {
    white-space: normal;
    /* Cho phép xuống dòng lại trên mobile */
  }

  .footer-left {
    flex: 1 1 100%;
  }
}

@media (max-width: 600px) {

  .stats-grid,
  .scope-grid,
  .history-grid,
  .awards-grid,
  .news-grid,
  .footer-top,
  .core-values-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 16px;
  }

  .about-cards.about-cards--4col {
    grid-template-columns: 1fr;
  }
}

/* --- PRODUCT PAGE STYLES --- */

/* Production Process */
.production-images {
  display: flex;
  gap: 24px;
  width: 100%;
}

.production-image-card {
  flex: 1;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.10);
  height: 350px;
}

.production-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.production-image-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.prod-img-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: white;
}

.prod-img-text h3 {
  font-size: 32px;
  font-family: var(--font-roboto-condensed);
  margin-bottom: 8px;
}

/* Collections Feature */
.main-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.collection-feature {
  display: flex;
  gap: 24px;
  width: 100%;
  align-items: center;
}

.collection-feature:nth-child(even) {
  flex-direction: row-reverse;
}

.col-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 382px;
  gap: 24px;
  align-items: flex-start;
}

.badge {
  background: var(--background-color-bg-badge-brand-filled-theme);
  color: white;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
}

.col-text h3 {
  font-size: 32px;
  font-family: var(--font-roboto-condensed);
  color: var(--text-color-text-primary);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-color-text-secondary);
}

.feature-list li::before {
  content: "✔";
  color: var(--color-border-brand-primary);
  font-weight: bold;
}

.col-images {
  flex: 1.2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.col-images img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
}

/* Flagship Products Grid */
.flagship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.flagship-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flagship-item {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.flagship-item.short {
  height: 259px;
}

.flagship-item.tall {
  height: 542px;
}

/* Filter Tabs */
.product-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 0px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 24px;
  border-radius: 4px;
  font-family: var(--font-roboto);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  color: #EC2C13;
}

.tab-btn.active {
  background: #EC2C13;
  color: white;
}

/* Product Cards Grid */
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

.prod-card {
  background: var(--background-color-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.prod-card-img {
  width: 100%;
  height: 263px;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
}

.prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.prod-card-info h4 {
  font-size: 28px;
  font-family: var(--font-roboto-condensed);
  color: var(--text-color-text-primary);
}

.prod-card-meta {
  display: flex;
  gap: 8px;
  font-size: 18px;
  color: var(--text-color-text-tertiary, #415058);
}

.prod-card-colors {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.color-btn {
  padding: 6px 16px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  color: #EC2C13;
  outline: none;
}

.color-btn.selected {
  border-color: #EE412B;
}

/* Specific Feature Banner */
.feature-banner {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  background: url('https://placehold.co/1224x400') center/cover;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  margin-bottom: 0px;
}

.feature-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.feature-banner-item {
  background: rgba(41, 54, 61, 0.70);
  border: 1px solid var(--color-border-brand-neutral, #6C8693);
  padding: 12px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #627884;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-btn.active {
  background: #EC2C13;
}

/* Responsive specific to Product page */
@media (max-width: 992px) {
  .production-images {
    flex-direction: column;
  }

  .flagship-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .product-cards {
    grid-template-columns: 1fr;
  }

  .flagship-grid {
    grid-template-columns: 1fr;
  }

  .col-images {
    grid-template-columns: 1fr;
  }

  .feature-banner-grid {
    grid-template-columns: 1fr;
  }

  .feature-banner {
    height: auto;
    min-height: 400px;
  }
}

@media (max-width: 600px) {

  .collection-feature,
  .collection-feature:nth-child(even),
  .collection-feature.reverse {
    flex-direction: column;
    align-items: stretch;
  }

  .col-text {
    max-width: 100%;
  }

  .col-images {
    width: 100%;
  }
}

/* =============== TUYỂN DỤNG PAGE =============== */
.career-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.stat-box {
  padding: 24px;
  background: var(--background-color-bg);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.stat-box.outline-primary {
  outline: 2px dashed var(--color-border-brand-primary);
  outline-offset: -2px;
}

.stat-box.outline-secondary {
  outline: 2px dashed var(--color-border-brand-secondary);
  outline-offset: -2px;
}

.stat-box h3 {
  font-family: var(--font-roboto-condensed);
  font-size: 32px;
  font-weight: 400;
}

.stat-box.outline-primary h3 {
  color: var(--text-color-text-brand-primary);
}

.stat-box.outline-secondary h3 {
  color: var(--text-color-text-brand-secondary);
}

.stat-box p {
  font-family: var(--font-roboto-condensed);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-color-text-secondary);
  margin: 0;
}

/* Modifying about-card for value-card usage */
.value-card {
  border-radius: 12px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  padding: 24px;
}

/* Culture Section */
.culture-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}

.culture-split img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.culture-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 24px;
  padding-left: 24px;
}

.culture-content h3 {
  font-family: var(--font-roboto-condensed);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-color-text-primary);
  margin: 0;
}

.culture-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.culture-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-color-text-secondary);
}

.culture-list li::before {
  content: "";
  display: block;
  min-width: 8px;
  height: 8px;
  background: var(--color-border-brand-primary);
  border-radius: 50%;
  margin-top: 10px;
}

/* Job List Section */
.job-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.job-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: var(--background-color-bg);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  gap: 24px;
}

.job-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.job-content h3 {
  font-family: var(--font-roboto-condensed);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-color-text-primary);
  margin: 0;
}

.job-content>p {
  font-size: 18px;
  color: var(--text-color-text-secondary);
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.job-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-color-text-secondary);
}

.job-tag svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-color-text-brand-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive specific to careers page */
@media (max-width: 992px) {
  .culture-split {
    grid-template-columns: 1fr;
  }

  .culture-content {
    padding-left: 0;
  }

  .job-card {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 768px) {
  .career-stats {
    grid-template-columns: 1fr;
  }
}

/* =============== LIÊN HỆ PAGE =============== */
.location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.location-tab {
  padding: 8px 16px;
  font-family: var(--font-roboto);
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--background-color-bg-brand-primary);
  background: transparent;
  border: none;
}

.location-tab.active {
  background: var(--background-color-bg-brand-primary);
  color: var(--text-color-text-white, white);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  /* Let map cover full left */
  background: var(--background-color-bg);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
}

.location-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.location-info {
  padding: 48px 32px;
  /* Similar to mockup padding */
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.location-info h3 {
  font-family: var(--font-roboto-condensed);
  font-size: 32px;
  font-weight: 400;
  color: var(--text-color-text-primary);
  margin: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: var(--background-color-bg-brand-primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-family: var(--font-roboto);
  font-size: 14px;
  color: var(--text-color-text-secondary);
}

.contact-value {
  font-family: var(--font-roboto);
  font-size: 16px;
  color: var(--text-color-text-primary);
}

@media (max-width: 992px) {
  .location-card {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 300px;
  }

  .location-info {
    padding: 24px;
  }
}

/* =============== TIN TỨC PAGE =============== */
.featured-news-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
}

.featured-news-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-top: 24px;
}

.featured-news-top .news-card,
.featured-news-bottom .news-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-card-content {
  background: rgba(41, 54, 61, 0.50);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  height: 132px;
  width: 100%;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px;
}

.news-date {
  color: var(--text-color-text-white, white);
  font-size: 14px;
  font-family: var(--font-roboto);
  font-weight: 500;
  margin-bottom: 8px;
}

.news-title {
  color: var(--text-color-text-white, white);
  font-size: 24px;
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  /* Giới hạn đúng 2 dòng */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* Hiện dấu ... nếu tiêu đề quá dài */
  height: 2.8em;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
}

.news-list-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.news-list-item img {
  width: 288px;
  height: 144px;
  border-radius: 6px;
  object-fit: cover;
}

.news-list-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-list-date {
  color: var(--text-color-text-tertiary);
  font-size: 14px;
  font-family: var(--font-roboto);
  font-weight: 500;
}

.news-list-title {
  color: var(--text-color-text-primary);
  font-size: 24px;
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.news-card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* Giới hạn tiêu đề 2 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
  /* Giữ chiều cao cố định cho tiêu đề */
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-excerpt {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  /* Giới hạn nội dung 4 dòng */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 6em;
  /* Giữ chiều cao cố định (1.5 line-height * 4) */
  line-height: 1.5;
  font-size: 14px;
  color: var(--text-color-text-secondary);
}

.news-card {
  display: flex;
  flex-direction: column;
  /* Đảm bảo các card có cùng độ cao nếu nằm trên cùng 1 hàng */
}

@media (max-width: 992px) {
  .featured-news-top {
    grid-template-columns: 1fr;
  }

  .featured-news-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .news-list-item {
    flex-direction: column;
  }

  .news-list-item img {
    width: 100%;
    height: auto;
  }
}

/* --- CHI TIẾT TIN TỨC --- */

.article-date {
  color: var(--text-color-text-white);
  font-size: 18px;
  font-family: var(--font-roboto);
}

.article-body {
  max-width: 1224px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-body p,
.article-body span {
  color: var(--text-color-text-secondary);
  font-size: 18px;
  /* 17.6px from figma */
  line-height: 1.6;
}

.article-body h3 {
  color: var(--text-color-text-primary);
  font-size: 24px;
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
  margin-top: 24px;
}

.article-body h3:first-child {
  margin-top: 0;
}

.article-body img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin: 16px auto;
  display: block;
}

/* Link kiểm chứng trong bài viết chi tiết*/
.external-link {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-color-text-secondary);
}

.external-link a {
  color: var(--text-color-text-brand-primary);
  text-decoration: underline;
  font-weight: 700;
}

.external-link a:hover {
  color: #EE412B;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 24px;
  font-family: var(--font-roboto);
  font-size: 16px;
  color: var(--text-color-text-secondary);
}

.breadcrumb a {
  color: var(--text-color-text-primary);
  opacity: 0.7;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb .separator {
  color: var(--text-color-text-tertiary);
  font-size: 14px;
}

.breadcrumb .current {
  color: var(--text-color-text-brand-primary);
  font-weight: 500;
}

/* --- GLOBAL RESPONSIVE EXTENSIONS --- */

/* Text & Padding Global Fixes */
@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }

  .hero-about-desc {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 400px;
  }

  .hero-about {
    margin-top: 60px;
    gap: 32px;
  }

  .hero-about-bg {
    height: 400px;
  }

  .hero-about-bg h1 {
    font-size: 36px;
    padding: 0 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .hero-about-desc p {
    font-size: 16px;
  }
}

/* Grid layout breakpoints for ALL remaining structural grids */
@media (max-width: 992px) {

  .scope-grid,
  .awards-grid,
  .news-grid,
  .core-values-grid,
  .philosophy-grid,
  .career-stats,
  .flagship-grid,
  .product-cards,
  .feature-banner-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .about-cards,
  .scope-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}


@media (max-width: 768px) {

  .about-cards,
  .scope-grid,
  .news-grid,
  .core-values-grid,
  .philosophy-grid,
  .career-stats,
  .flagship-grid,
  .product-cards,
  .feature-banner-grid,
  .brand-mini-grid,
  .principles-list,
  .col-images,
  .culture-split,
  .location-card,
  .flagship-col {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 16px;
  }

  .flagship-col {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* Structural Flex Fallbacks */
.contact-layout {
  flex-direction: column;
}

/* Global Image Bounds */
img {
  max-width: 100%;
  height: auto;
}

/* --- VIEW TRANSITION API --- */
@view-transition {
  navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 0.3s;
}

/* --- RECRUITMENT DETAIL STYLES --- */
.job-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 32px;
    width: 100%;
}

.job-description-content {
    width: 100%;
}

.job-description-content h3 {
    margin: 48px 0 24px;
    color: var(--text-color-text-primary);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
}

.job-description-content ul {
    padding-left: 20px;
    margin-bottom: 32px;
    list-style-type: disc;
}

.job-description-content li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-color-text-secondary);
}

.overview-card {
    background: #F2F5F7;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 24px;
    width: 100%;
}

.overview-card h2 {
    font-size: 24px;
    margin-bottom: 32px;
    color: var(--text-color-text-primary);
    font-family: 'Roboto Condensed', sans-serif;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 60px;
}

@media (max-width: 768px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.overview-item .icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.overview-item .icon svg {
    width: 100%;
    height: 100%;
    stroke: #BD240F;
}

.overview-item .label {
    min-width: 160px;
    font-size: 16px;
    color: #161B1D;
}

.overview-item .value {
    font-weight: 700;
    font-size: 16px;
    color: #161B1D;
}

/* Hero Tags Styles */
.hero-job-tags {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.hero-job-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.hero-job-tag a, .hero-job-tag span {
    color: white !important;
    font-size: 18px;
}