.careers-hero .hero-media img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.why-card,
.facility-points,
.facility-media,
.role-card,
.benefit-card,
.apply-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.why-card:hover,
.facility-points:hover,
.facility-media:hover,
.role-card:hover,
.benefit-card:hover,
.apply-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(12, 38, 56, 0.12);
  border-color: #badff2;
}

.facility-media img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #d2e3f0;
  display: block;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.role-card p {
  margin: 0;
}

.role-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.badges {
  display: grid;
  gap: 6px;
}

.badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #0f789f;
  background: #e7f7ff;
  border: 1px solid #bde8f8;
  border-radius: 999px;
  padding: 5px 9px;
  white-space: nowrap;
}

.benefit-card p {
  margin: 0;
}

.apply-card h2 {
  margin-top: 2px;
}

.apply-card p {
  margin-top: 8px;
}

.apply-card a {
  color: #0c789f;
  font-weight: 700;
  text-decoration: none;
}

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