/* Premium Minimalist Styles for Career Page */

/* Hero Section */
.career-hero {
  position: relative;
  padding: 220px 0 120px;
  background-color: #050505; /* Deep rich black */
  color: #fff;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-image: url("../images/banner-1.jpg"); /* Assuming a nice building/structure banner */
  background-size: cover;
  background-position: center;
}

.hero-overlay-minimal {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(15, 15, 15, 0.7) 100%
  ); */
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 12.77%, rgba(0, 0, 0, 0) 20.13%), linear-gradient(90deg, rgba(0, 0, 0, 0.85) 1.71%, rgba(52, 52, 52, 0) 100%);
  z-index: 1;
}

.career-hero-content {
  max-width: 950px;
  margin: 0 auto;
}

.premium-label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #b0b0b0;
  margin-bottom: 2rem;
  position: relative;
}

.premium-label::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #ffffff;
}

.career-hero-content h1 {
  font-family: "PlayfairHeading", Georgia, serif;
  line-height: 1.25;
  letter-spacing: -1.5px;
  font-weight: 300;
  color: #ffffff;
}

/* Common Premium Typography */
.section-title-premium {
  font-size: 3.2rem;
  font-weight: 300;
  letter-spacing: -1.5px;
  color: #111;
  line-height: 1.15;
}

.premium-text-large {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #555;
  font-weight: 300;
}

/* Sections */
.bg-light-premium {
  background-color: #f7f7f9;
}

.culture-section {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

/* Career Area Cards - Minimal Glass/Border aesthetic */
.career-area-card {
  padding: 40px 20px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.career-area-card h5 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: #444;
  transition: color 0.3s ease;
  letter-spacing: -0.3px;
}

.career-area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #d1d1d1;
}

.career-area-card:hover h5 {
  color: #000;
}

/* Image Wrappers for Blended Sections */
.premium-image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.premium-image-wrapper img {
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-image-wrapper:hover img {
  transform: scale(1.05);
}
