/* Interviews Section Styles */

.interviews-section {
  margin: 40px 0 0 0;
  top: -75px;
  max-width: 100vw;
  box-sizing: border-box;
  position: relative;
  min-height: 800px;
  padding: 2rem 1rem;
}

.interviews-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  width: 100vw;
  left: 0;
  top: clamp(160px, 8vw, 60px);
}

.interview-box {
  background: hsl(38, 100%, 90%);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  border: 3px solid #eaddbf;
  /* max-width: 900px; */
  width: 90%;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.divide {
    display: flex; 
    margin-top: 600px;
}
.interview-box h2 {
  margin: 0 0 1rem 0;
  font-size: 2.2rem;
  color: #683737;
  font-weight: bold;
  text-align: center;
  
}

.interview-button {
  height: 70px;
  position: relative;
  width: 200px;
  padding: 6px;
  text-decoration: none;
  color: #ffffff !important;
  background-color: #683737;
  border-radius: 15px;
  text-align: center;
  font-size: 1.1rem;
  top: -13px;
  font-weight: bold;
  line-height: 30px;    
  box-sizing: border-box;
}

.interview-button:hover {
  text-decoration: none !important;
  color: #ffffff !important;
  background-color: #361f1f;
}

@media screen and (min-width: 1010px) {
  .interview-box h2 {
    border-bottom: 3px solid #683737;
    padding-bottom: 1rem;
  }
  .interview-box {
    max-width: 900px;
  }
  
}

.interview-box h3 {
  margin: 0 0 1.5rem 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #683737;
  text-align: left;
  font-style: italic;
}

.interview-box h4 {
  margin: 2rem 0 1rem 0;
  font-size: 1.3rem;
  color: #683737;
  font-weight: bold;
}

.interview-box p {
  margin: 0 0 1.5rem 0;
  font-size: 1.6rem;
  color: #683737;
  line-height: 1.6;
  text-align: justify;
}

.interview-content {
  margin-top: 2rem;
}

.interview-box ul {
  margin: 1rem 0 2rem 2rem;
  color: #683737;
}

.interview-box li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.interview-box blockquote {
  background: rgba(104, 55, 55, 0.1);
  border-left: 5px solid #683737;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  font-style: italic;
  font-size: 1.15rem;
  color: #683737;
  border-radius: 0 10px 10px 0;
}

/* Mobile responsive design */
@media (max-width: 1009px) {
  .interviews-container {
    top: clamp(100px, 6vw, 40px);
  }

  .body {
    padding: 0;
    margin: 0;
  }

  .interview-button {
    left: 5%;
  }
  
  .interview-box {
    padding: 0;
    width: clamp(100%, 100%, 100%);
    border-right: none;
    border-left: none;
  }
  
  .interview-box h2 {
    padding: 10px 5%;
    font-size: 1.6rem;
    text-align: left;
  }
  
  .interview-box h3 {
    padding: 0 5%;
    font-size: 1.3rem;
    text-align: left;
  }
  
  .interview-box h4 {
    padding: 0 5%;
    font-size: 1.4rem;
    text-align: left;
  }
  
  .interview-box p {
    padding: 0 5%;
    font-size: 1.55rem;
    text-align: left;
  }
  
  .interview-box blockquote {
    padding: 0 5%;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
  }
}