/* =====================
   TAXONOMY – INTEGRATED SYSTEM CATEGORY
===================== */

.taxonomy-integrated-system {
  background: #fff;
}

/* HERO */
.taxonomy-hero {
  padding: 72px 0 48px;
  background: linear-gradient(
    180deg,
    #f4f8ff 0%,
    #ffffff 70%
  );
}

.taxonomy-hero__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
}

.taxonomy-hero__desc {
  margin-top: 12px;
  max-width: 720px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

/* spacing giữa hero và grid */
.taxonomy-integrated-system .integrated-systems {
  padding-top: 24px;
}
/* =====================
   TAXONOMY HERO
===================== */

.taxonomy-hero {
  position: relative;
  padding: 96px 0 72px;
  background-color: #0b1c2d;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.taxonomy-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,28,45,0.85),
    rgba(11,28,45,0.45)
  );
}

.taxonomy-hero .container {
  position: relative;
  z-index: 2;
}

.taxonomy-hero__title {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
}

.taxonomy-intro__desc {
  margin: 60px 0 40px;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .taxonomy-hero {
    padding: 72px 0 56px;
  }
}
/* =====================
   Integrated Systems Grid
===================== */

.integrated-systems {
  padding: 64px 0;
}

.integrated-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
/* Mobile */
@media (max-width: 768px) {
  .integrated-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 580px) {
  .integrated-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
/* =====================
   Integrated System Card
===================== */

.integrated-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform .15s ease,
              box-shadow .15s ease,
              border-color .15s ease;
}

.integrated-card:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}
.integrated-card__img {
  height: 220px;
  overflow: hidden;
}

.integrated-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.integrated-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 12px 20px 16px;
  min-height: 120px;
}

.integrated-card__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.integrated-card__desc {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--color-text, #444);
}
.integrated-card__arrow {
  margin-top: auto;
  padding-top: 14px;
  align-self: flex-end;
  font-size: 0.75rem;
  color: var(--color-muted, #777);
  transition: color .15s ease;
}

.integrated-card:hover .integrated-card__arrow {
  color: var(--color-primary);
}
