#interview {
  padding: 40px 0 90px;
}

#interview .banner--txt-summary {
  text-align: center;
  font-size: 13px;
  font-weight: medium;
  line-height: 1.8;
}

#interview .banner--txt-summary h1 {
  max-width: 700px;
  margin: 0 auto 32px;
  color: transparent;
  aspect-ratio: 50 / 11;
  background: url('../img/banner01.jpg')no-repeat;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  #interview {
    padding: 0 15px;
  }
}


#interview .interview--list {
  max-width: 1120px;
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

#interview .interview--list .interview--item {
  display: flex;
  gap: 13px;
  width: calc(50% - 15px);
  transition: all 0.3s ease;
}

#interview .interview--item .item--thumb {
  max-width: 255px;
  width: 100%;
  aspect-ratio: 85 / 48;
  overflow: hidden;
}

#interview .interview--item .item--thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

#interview .interview--item .item--thumb img:hover {
  transform: scale(1.1);
  transition: all 0.3s ease;
}

#interview .interview--item .item--detail {
  width: 100%;
  font-size: 13px;
  font-weight: 350;
}

#interview .interview--item .item--detail-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

#interview .interview--item .item--detail h2 {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}

#interview .interview--item .item--detail .btn {
  display: inline-block;
  width: fit-content;
  margin: 0 0 0 auto;
  padding: 9px 18px;
  color: #fff;
  font-size: 18px;
  border-radius: 3px;
  background: #2D7EEB;
  transition: all 0.3s ease;
}

#interview .interview--item .item--detail .btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  #interview .interview--list {
    flex-direction: column;
  }
  #interview .interview--list .interview--item {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .interview--item {
    flex-direction: column;
  }
  #interview .interview--item .item--thumb {
    max-width: 100%;
    width: 100%;
  }
  #interview .interview--item .item--detail h2 {
    margin-top: 13px;
  }
  #interview .interview--item .item--detail .btn {
    margin-top: 16px;
  }
}


#interview .bottom--banner {
  max-width: 700px;
  width: 100%;
  margin: 64px auto 0;
  aspect-ratio: 513 / 113;
}

#interview .bottom--banner a img {
  transition: all 0.3s ease;
}

#interview .bottom--banner a:hover img {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.modal.active {
  display: flex;
}
.modal-content {
  width: 80%;
  border-radius: 8px;
  position: relative;
}
.modal-body iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
}
.modal-close {
  opacity: 0;
}