/* ================================================
   CAREER PAGE – CUSTOM STYLES
   ================================================ */

/* ---------- Reset & Base overrides ---------- */
body {
  background-color: #f5f6f8;
}

/* ---------- Top Banner ---------- */
.at-career-banner {
  width: 100%;
  min-height: 270px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.at-career-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.at-career-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 69%);
  z-index: 2;
}

.at-career-banner__title {
  position: relative;
  z-index: 3;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 0 15px;
  max-width: 1300px;
}

/* ---------- Container ---------- */
.at-career-container {
  width: 100%;
  padding: 50px 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  gap: 30px;
}

/* ---------- Main Content ---------- */
.at-career-main {
  flex: 1;
      background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .10196078431372549);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.at-career-title {
  font-size: 26px;
  font-weight: 600;
  color: #0a218d;
  margin-top: 0;
}

.at-career-text {
  font-size: 15px;
  font-weight: 400;
  color: #111111;
  line-height: 1.8;
}



.at-career-text .highlight {
  color: #d9534f;
}

.at-career-text a {
  color: #d9534f;
  text-decoration: none;
}

.at-career-text a:hover {
  text-decoration: underline;
}

/* ---------- Sidebar ---------- */
.at-career-sidebar {
  width: 320px;
        background-color: #ffffff;
    border-radius: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .10196078431372549);
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.at-quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.at-quick-links li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.at-quick-links li:last-child {
  margin-bottom: 0;
}

.at-quick-links li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 12px;
  flex-shrink: 0;
  background: #94959d;
}

.at-quick-links a {
  font-size: 15px;
  color: #222222;
  text-decoration: none;
}

.at-quick-links a:hover {
  color: #0a218d;
  text-decoration: underline;
}

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 992px) {
  .at-career-container {
    flex-direction: column;
  }
  .at-career-sidebar {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .at-career-container {
    padding: 30px 16px;
    gap: 20px;
  }
  .at-career-main, .at-career-sidebar {
   padding: 15px;
  }
  .at-career-title {
    font-size: 22px;
  }
}
