/* =====================================================
   Recruit Page Styles
===================================================== */

/* ----- Recruit Hero ----- */
.recruit-hero {
  position: relative;
}

.recruit-hero__content {
  padding: 80px 0 60px;
}

.recruit-hero__spacer {
  height: 400px;
  background-color: #f5f5f5;
}

/* ----- Recruit Message ----- */
.recruit-message {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-message__title {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.recruit-message__text {
  margin-top: 32px;
  font-size: 1.9rem;
  line-height: 1.9;
  color: #111;
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* ----- Recruit Images ----- */
.recruit-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto 0;

}

.recruit-images__item {
  overflow: hidden;
  aspect-ratio: 356 / 237;
}

.recruit-images__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.recruit-images__item:hover img {
  transform: scale(1.03);
}

/* ----- Application Table ----- */
.application-table {
  margin-top: 40px;
}

.application-table .table {
  background: transparent;
}

.application-table .table tr {
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
  
}

.application-table .table tr:first-child {
  border-top: 1px solid #e0e0e0;
}

.application-table .table th,
.application-table .table td {
  padding: 22px 0;
  font-size: 1.8rem;
  line-height: 1.8;
  vertical-align: middle;
  background: transparent;
  border-bottom: none;
}

.application-table .table th {
  width: 186px;
  padding-left: 40px;
  font-weight: 500;
  color: #002049;
  text-align: left;
  letter-spacing: -0.02em;
}

.application-table .table td {
  padding-left: 0;
  font-weight: 400;
  color: #000;
}

/* ----- Responsive ----- */
@media screen and (max-width: 768px) {
  .recruit-hero__content {
    padding: 60px 0 40px;
  }

  .recruit-hero__spacer {
    height: 200px;
  }

  .recruit-message__title {
    font-size: 2.4rem;
  }

  .recruit-message__text {
    font-size: 1.5rem;
  }

  .recruit-images {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .application-table .table th,
  .application-table .table td {
    display: block;
    padding: 10px 10px;
    font-size: 1.4rem;

  }

  .application-table .table th {
    /* width: 100px; */
    /* padding-left: 0; */
  }
}
