/* ===============================
   WHO WE ARE BREADCRUMB HERO
=============================== */
.tenmet-breadcrumb-hero {
  position: relative;
  width: 100%;
  min-height: 260px;
  padding: 4.5rem 1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Background team image */
  background-image: url("../banners/bn-03.jpg"); /* your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #ffffff;
  overflow: hidden;
}

/* Blue overlay (#0e75c2) */
.tenmet-breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 117, 194, 0.6); /* #0e75c2 with opacity */
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Inner content */
.tenmet-breadcrumb-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tenmet-breadcrumb-inner.tenmet-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Title */
.tenmet-breadcrumb-title {
  font-size: clamp(2.4rem, 3vw + 1.2rem, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 1.3rem;
}

/* Breadcrumb nav */
.tenmet-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.3rem;
  /* border-radius: 999px; */
  /* background: rgba(0, 0, 0, 0.28); */
  /* backdrop-filter: blur(10px); */
}

.tenmet-breadcrumb-link a {
  color: #e6f3ff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 1px;
}

.tenmet-breadcrumb-link a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.2s ease;
}

.tenmet-breadcrumb-link a:hover::after {
  width: 100%;
}

.tenmet-breadcrumb-separator {
  color: #cfe8ff;
  opacity: 0.9;
}

.tenmet-breadcrumb-current {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
}

/* ===============================
   WHO WE ARE CONTENT SECTION
=============================== */
.tenmet-about-section {
  background-color: #f7f5f0; /* soft off-white for readability */
  padding: 3.5rem 1rem 4rem;
}

.tenmet-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.tenmet-about-grid.tenmet-is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Text styles */
.tenmet-about-text {
  max-width: 640px;
}

.tenmet-about-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: #0e75c2;
  margin-bottom: 0.75rem;
}

.tenmet-about-heading {
  font-size: clamp(1.8rem, 2.3vw + 1rem, 2.4rem);
  font-weight: 700;
  color: #222222;
  margin-bottom: 1.25rem;
}

.tenmet-about-body {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #444444;
  margin-bottom: 0.9rem;
  text-align: justify;
}

/* Image side */
.tenmet-about-media {
  display: flex;
  justify-content: center;
}

.tenmet-about-image-wrapper {
  position: relative;
  max-width: 420px;
  /* border-radius: 1.5rem; */
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

/* subtle brand accent border */
.tenmet-about-image-wrapper::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 1.25rem;
  border: 2px solid rgba(14, 117, 194, 0.4);
  pointer-events: none;
}

.tenmet-about-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .tenmet-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tenmet-about-media {
    order: -1; /* show image above text on mobile */
  }

  .tenmet-breadcrumb-hero {
    min-height: 220px;
    padding: 3.5rem 1rem 3rem;
  }
}
