#iv-section {
  min-height: 90vh;
}
.interview-contents {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--gutter);
  margin-bottom: var(--offset);
}
@media screen and (max-width: 850px) {
  .interview-contents {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .interview-contents {
    grid-template-columns: repeat(1, 1fr);
  }
}
.interview-card {
  background-color: var(--bg-gray);
  border-radius: 10px;
  padding: var(--gutter);
  cursor: pointer;
  position: relative;
}
.interview-card:hover {
  top: -2px;
}
.interview-card:hover .project-more > div:nth-child(1),
.interview-card:hover .project-more > div:nth-child(3) {
  width: 50%;
}
.interview-card:hover .interview-profile--pic img {
  transform: scale(1.1);
}
.interview-card--header {
  display: flex;
  gap: var(--gutter);
}
.interview-profile--pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}
.interview-profile--pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.interview-header--right {
  font-size: var(--subheading);
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}
.major-badge, .non-major-badge, .double-major-badge  {
  padding: 6px 8px;
  font-size: var(--body2);
  border-radius: 5px;
  color: var(--white);
}
.major-badge {
  background: var(--blue);
}
.non-major-badge {
  background: var(--red);
}
.double-major-badge {
  background: var(--badge-green);
}

.interview-card--intro {
  font-size: var(--body1);
  padding-top: var(--gutter);
  line-height: 2rem;
}

/* modal */
.interview-detailModal {
  position: fixed;
  width: 90%;
  height: calc(100vh - 40px - 40px);
  border-radius: var(--gutter);
  top: 40px;
  background-color: var(--bg-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1002;
  padding-bottom: 2rem;
}
.interview-detailModal .interview-modal--body {
  overflow-y: scroll;
  overflow-x: hidden;
}
.interview-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: -2;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.interview-detailModal .interview-modal--body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.interview-detailModal .interview-modal--body::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.interview-modal-close {
  width: 40px;
  position: absolute;
  top: var(--offset);
  right: var(--offset);
  z-index: 10;
  cursor: pointer;
}
.interview-modal-close i {
  font-size: 3rem;
}
@media screen and (min-width: 700px) {
  .interview-modal-close:hover {
    top: calc(var(--offset) - 2px);
  }
}

/*  */
.interview-modal--header {
  padding: var(--offset);
  border-bottom: 1px solid var(--line-gray);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: var(--offset);
  background-color: var(--bg-gray);
}
.interview-pic {
  width: 13rem;
  height: 13rem;
  overflow: hidden;
  border-radius: 50%;
}
.interview-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interview-modal-content {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}
.interview-content--name {
  font-size: var(--heading2);
  font-weight: 900;
}

.interview-content--introduction {
  font-size: var(--body1);
  color: var(--subtext-gray);
}
.interview-modal--body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  padding: var(--offset) 6rem;
  background-color: var(--bg-gray);
}
.interview-detail--content {
  margin-bottom: var(--gutter);
  z-index: 1002;
}
.interview-modal--body > div:last-child{
  padding-bottom: 7rem;
}
.interview-detail--title > div:first-child {
  font-size: var(--heading2);
  color: var(--green-1);
  font-weight: 900;
}
.interview-detail--title > div:last-child {
  font-size: var(--heading3);
  font-weight: 900;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
.interview-detail--parag {
  font-size: var(--body1);
  line-height: 2rem;
  word-break: keep-all;
  color: var(--subtext-gray);
}
.interview-detailModal .mic-img {
  position: absolute;
  bottom: 0;
  right: 7rem;
  opacity: 30%;
  width: 50rem;
}

@media screen and (max-width: 700px){
  .interview-modal-container.interview-modal--header .interview-pic{
    display: none;
  }
  .interview-modal-close {
    top: var(--gutter);
    right: var(--gutter);
  }
  .interview-detailModal {
    width: 100%;
    height: 100%;
    top: 0;
    border-radius: 0;
  }
  .interview-content--name {
    font-size: var(--heading3);
  }
  .interview-modal--body {
    padding: 3rem;
  }
}