/*-- variable --*/
/*-- variable --*/
/*-- variable --*/
/*-- variable --*/
main.inter-top-page {
  margin-top: 130px;
}
@media (max-width: 1024px) {
  main.inter-top-page {
    margin-top: 100px;
  }
}

.inter-top-page .content-width {
  max-width: 1440px;
  padding: 0 140px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .inter-top-page .content-width {
    padding: 0 20px;
  }
}
.inter-top-page .gradient-bar {
  background: linear-gradient(90deg, #0F83E9 0%, #00B197 100%);
  height: 5px;
  width: 100%;
}

.page-title-section {
  padding: 100px 0 60px;
  background: #FFFFFF;
}
@media (max-width: 767px) {
  .page-title-section {
    padding: 60px 0 40px;
  }
}
.page-title-section .page-subtitle {
  font-size: 14px;
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
  color: #16202C;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
  text-align: left;
  position: relative;
}
.page-title-section .page-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: -50% 0;
  width: 50px;
  height: 1px;
  background-color: #16202C;
  left: 195px;
}
@media (max-width: 767px) {
  .page-title-section .page-subtitle {
    font-size: 12px;
    margin: 0 0 15px 0;
  }
}
.page-title-section .page-title {
  font-size: 42px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #16202C;
  letter-spacing: 4px;
  margin: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .page-title-section .page-title {
    font-size: 32px;
    letter-spacing: 2px;
  }
}

.interview-list {
  padding: 60px 0 100px;
  background: #FFFFFF;
}
@media (max-width: 767px) {
  .interview-list {
    padding: 40px 0 60px;
  }
}

.employee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1024px) {
  .employee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .employee-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.employee-grid .employee-card {
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.employee-grid .employee-card:hover {
  transform: translateY(-5px);
}
.employee-grid .employee-card::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: url("../../../img/common/circle-rightarrow-dark.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
}
@media (max-width: 767px) {
  .employee-grid .employee-card::after {
    bottom: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
  }
}
.employee-grid .employee-card:hover::after {
  transform: translateX(5px);
}
.employee-grid .employee-card .employee-image {
  width: 100%;
  height: 346px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .employee-grid .employee-card .employee-image {
    height: 240px;
  }
}
.employee-grid .employee-card .employee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.employee-grid .employee-card:hover .employee-image img {
  transform: scale(1.05);
}
.employee-grid .employee-card .employee-info {
  padding: 30px 0px;
}
@media (max-width: 767px) {
  .employee-grid .employee-card .employee-info {
    padding: 20px 15px;
  }
}
.employee-grid .employee-card .employee-info .employee-name {
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #16202C;
  letter-spacing: 2px;
  margin: 0 0 15px 0;
}
@media (max-width: 767px) {
  .employee-grid .employee-card .employee-info .employee-name {
    font-size: 20px;
    margin: 0 0 10px 0;
  }
}
.employee-grid .employee-card .employee-info .employee-dept {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #16202C;
  line-height: 1.8;
  letter-spacing: 0.5px;
  margin: 0;
}
@media (max-width: 767px) {
  .employee-grid .employee-card .employee-info .employee-dept {
    font-size: 13px;
  }
}