@charset "UTF-8";

.interview {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.11);
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}



@media (max-width: 1100px) {
  #interview .flexbox2 > div + * {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  #interview .flexbox2 > div + * {
    margin-top: 10px;
  }
}

.interview .interview__header {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .interview .interview__header {
  }
}


#interview_01 .interview__header {
  background: #3c96c8;
  color: #FFF;
}
#interview_02 .interview__header {
  background: #dd4e3b;
  color: #FFF;
}

.interview .profile--img {
  flex: 30% 0 0;
}

.interview .profile--img + div {
  flex: 70% 0 0;
  padding: 25px;
}


@media (max-width: 768px) {
  .interview .profile--img {
    flex: 25% 0 0;
  }
  
  .interview .profile--img + div {
    flex: 75% 0 0;
    padding: 10px;
  }
}

.interview .profile--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}
.interview .profile--name {
  font-size: 25px;
  font-weight: bold;
}
.interview .profile--name small {
  margin-left: 15px;
}
.interview .profile--text {
  font-size: 15px;
}
@media (max-width: 768px) {
  .interview .profile--name {
    font-size: 13px;
  }
  .interview .profile--text {
    font-size: 9px;
  }
}



.interview__body {
  flex-grow: 1;
  flex-shrink: 1;
  align-items: flex-start;
  padding: 20px;
  color: #666666;
}
@media (max-width: 768px) {
  .interview__body {
    padding: 10px;
  }
}

.interview__body p {
  font-size: 12px;
}
@media (max-width: 768px) {
  .interview__body p {
    font-size: 12px;
  }
}
.interview__body p + p {
  margin-top: 1em;
}
.interview__body p span {
  font-weight: bold;
  color: #000;
}



.interview__footer {
  flex-grow: 0;
  flex-shrink: 0;
  margin: 20px;
  text-align: center;
  border-top: 1px dashed #dddddd;
  margin-top: 0;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .interview__footer {
    margin: 10px;
    padding-top: 10px;
  }
}

.interview__footer a{
  font-size: 14px;
  font-weight: bold;
  display: block;
  border-radius: 5px;
  line-height: 38px;
  background: #000;
  color: #FFF;
  text-decoration: none;
  border: 1px solid #000;
}

@media (max-width: 768px) {
  .interview__footer a{
    font-size: 10px;
    line-height: 28px;
  }
}

.interview__footer a:hover{
  background: #FFF;
  color: #000;
}