@charset "utf-8";

.interview-hero{
  padding-top:20px;
}

.interview-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:40px;
}

.interview-card{
  background:#fff;
  border:1px solid #dde2eb;
  border-top:4px solid var(--gold);
  transition:.3s ease;
  overflow:hidden;
}

.interview-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.interview-image{
  aspect-ratio:1 / 1.2;
  overflow:hidden;
  background:#f7f4ef;
}

.interview-image img{
  width:70%;
  height:70%;
  object-fit:cover;
  display:block;
  transition:.6s ease;
	margin: 15%;
}

.interview-content{
  padding:32px;
  text-align:center;
}

.interview-content h3{
  margin:0 0 14px;
  color:var(--navy);
  font-size:22px;
  line-height:1.6;
  font-family:var(--mincho);
  font-weight:500;
  min-height:1.8em;
}

.position{
  margin:0 0 18px;
  color:#344765;
  font-size:15px;
  line-height:1.8;
}

.interview-content time{
  display:block;
  margin-bottom:24px;
  color:#8b97ab;
  font-size:14px;
}

.interview-btn{
  width:100%;
  box-sizing:border-box;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  padding:18px 24px;

  background:var(--navy);
  color:#fff !important;
  text-decoration:none;

  font-size:15px;
  font-family:var(--mincho);
  transition:.3s ease;
}

.interview-btn span{
  color:#fff !important;
}

.interview-btn b{
  display:flex;
  align-items:center;
  justify-content:center;

  width:36px;
  height:36px;

  border-radius:50%;
  background:var(--gold);
  color:var(--navy);

  font-weight:700;
  line-height:1;
  flex-shrink:0;

  transition:.3s ease;
}

.interview-btn:hover{
  color:#fff !important;
  transform:translateX(6px);
}

.interview-btn:hover span{
  color:#fff !important;
}

.interview-btn:hover b{
  color:var(--navy);
  transform:translate(3px,3px) rotate(45deg);
}

@media(max-width:760px){
.interview-image img{
  width:80%;
  height:80%;
	margin: 10%;
}
  .interview-hero{
    padding-top:20px;
  }

  .interview-list{
    grid-template-columns:1fr;
    gap:28px;
  }

  .interview-card:hover{
    transform:none;
    box-shadow:0 8px 18px rgba(0,0,0,.04);
  }

  .interview-content{
    padding:26px 22px 28px;
  }

  .interview-content h3{
    font-size:18px;
    min-height:auto;
    margin-bottom:10px;
  }

  .position{
    font-size:14px;
    margin-bottom:12px;
  }

  .interview-content time{
    margin-bottom:20px;
    font-size:13px;
  }

  .interview-btn{
    padding:16px 20px;
  }

  .interview-btn b{
    width:32px;
    height:32px;
  }
}