.career-page {
  color: #202020;
  padding-top: 96px;
}

.career-hero {
  height: 200px;
  background: url("/static/home/images/job/info/job-banner.jpg") center/cover no-repeat;
  color: #fff;
  position: relative;
}

.career-hero__inner {
  width: min(1200px, calc(100% - 40px));
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: baseline;
  gap: 28px;
}

.career-hero h1 { font-size: 28.8px; font-weight: 700; }
.career-hero p { font-size: 15px; }

.career-subnav {
  width: min(1200px, calc(100% - 40px));
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 3px solid #142e59;
}

.career-subnav a {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #182b49;
  border: 1px solid transparent;
  border-bottom: 0;
}

.career-subnav a.on {
  border-color: #142e59;
  border-radius: 12px 12px 0 0;
  font-weight: 700;
  background: #fff;
  transform: translateY(3px);
}

.career-heading {
  text-align: center;
  margin: 78px auto 48px;
}

.career-heading h2 { font-size: 38px; margin-bottom: 14px; }
.career-heading p { font-size: 17px; color: #777; }

.employment-grid,
.interview-grid {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.employment-grid { grid-template-columns: repeat(3, 1fr); }

.employment-card {
  min-height: 310px;
  padding: 35px 30px;
  border: 1px solid #ddd;
  background: #fff;
  transition: .2s ease;
}

.employment-card:hover { transform: translateY(-5px); box-shadow: 0 12px 28px rgba(0,0,0,.09); }
.employment-card h3 { font-size: 18px; line-height: 1.55; min-height: 105px; }
.employment-card h3 span { display: block; color: #1758b2; font-size: 14px; margin-bottom: 7px; }
.employment-card__line { width: 28px; height: 2px; background: #222; margin: 18px 0; }
.employment-card p { color: #666; margin: 8px 0; }
.employment-card p strong { color: #222; margin-left: 8px; }
.employment-card__company { margin-top: 28px; font-size: 24px; font-weight: 700; color: #132f5f; }

.career-pagination {
  margin: 54px auto 34px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.career-pagination a,
.career-pagination strong {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
}

.career-pagination strong { background: #173c75; color: #fff; border-color: #173c75; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.interview-grid { grid-template-columns: repeat(4, 1fr); }
.interview-card { overflow: hidden; background: #fff; border: 1px solid #e2e2e2; }
.interview-card a { display: block; height: 100%; }
.interview-card__image { height: 240px; background: #edf2f9; overflow: hidden; }
.interview-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.interview-card:hover img { transform: scale(1.04); }
.interview-card__placeholder { height: 100%; display: grid; place-items: center; color: #173c75; font-weight: 700; }
.interview-card__body { padding: 25px 22px 28px; }
.interview-card__body > span { color: #1758b2; font-weight: 700; font-size: 13px; }
.interview-card h3 { margin: 10px 0 16px; font-size: 20px; line-height: 1.4; min-height: 56px; }
.interview-card__person { color: #444; font-weight: 600; }
.interview-card__summary { color: #777; line-height: 1.65; margin-top: 14px; }

.interview-detail {
  width: min(1200px, calc(100% - 40px));
  margin: 70px auto 110px;
}

.interview-detail > h2 { font-size: 34px; text-align: center; margin-bottom: 42px; }

.interview-profile {
  min-height: 400px;
  padding: 60px 11%;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 70px;
  align-items: center;
  color: #fff;
  background: linear-gradient(120deg, #173c75, #0c1f40);
}

.interview-profile__image { width: 250px; height: 250px; overflow: hidden; border-radius: 5px; background: rgba(255,255,255,.1); }
.interview-profile__image img { width: 100%; height: 100%; object-fit: cover; }
.interview-profile__text small { display: block; letter-spacing: .08em; }
.interview-profile__text strong { display: block; font-size: 38px; margin: 8px 0 38px; }
.interview-profile__text h3 { font-size: 29px; margin-bottom: 14px; }
.interview-profile__text p { margin: 8px 0; font-size: 17px; }

.interview-qna { width: min(1000px, 100%); margin: 80px auto; }
.interview-qna__question,
.interview-qna__answer { display: flex; gap: 18px; line-height: 1.75; }
.interview-qna__question { align-items: center; margin-top: 42px; font-size: 18px; font-weight: 700; border-bottom: 2px solid #555; padding-bottom: 18px; }
.interview-qna__answer { width: 86%; margin: 24px 0 58px auto; padding: 28px; background: #f5edf1; }
.interview-qna span { flex: 0 0 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #173c75; color: #fff; font-weight: 800; }
.interview-qna__answer span { background: #bd2a61; }
.interview-detail__nav { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid #ddd; padding-top: 28px; }
.interview-detail__nav a:last-child { text-align: right; }
.career-empty { grid-column: 1/-1; text-align: center; padding: 80px; }

@media (max-width: 980px) {
  .employment-grid { grid-template-columns: repeat(2, 1fr); }
  .interview-grid { grid-template-columns: repeat(2, 1fr); }
  .interview-profile { grid-template-columns: 200px 1fr; padding: 45px; gap: 40px; }
  .interview-profile__image { width: 200px; height: 200px; }
}

@media (max-width: 640px) {
  .career-page { padding-top: 70px; }
  .career-hero { height: 150px; }
  .career-hero__inner { bottom: 22px; display: block; }
  .career-hero h1 { font-size: 25px; }
  .career-hero p { margin-top: 8px; font-size: 13px; }
  .career-subnav { width: calc(100% - 24px); margin-top: 24px; }
  .career-subnav a { min-height: 54px; font-size: 13px; text-align: center; }
  .career-heading { margin: 52px 20px 32px; }
  .career-heading h2 { font-size: 30px; }
  .employment-grid, .interview-grid { grid-template-columns: 1fr; width: calc(100% - 24px); }
  .interview-profile { grid-template-columns: 1fr; padding: 32px 24px; }
  .interview-profile__image { width: 180px; height: 180px; }
  .interview-profile__text strong { font-size: 30px; margin-bottom: 24px; }
  .interview-qna__answer { width: 94%; }
}
