@charset "UTF-8";

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
	Interview Section
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

ul li {
  margin-bottom: 0 !important;
}

.interview-section {
  padding: 60px 0;
  max-width: 1025px;
  margin: 0 auto;
  font-family: "Helvetica Neue", sans-serif;
}

.interview-section h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}

.interview-section h4::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #0385ff;
  border-radius: 50%;
  margin-right: 12px;
}

/* --- Tabs --- */
.tabs-list {
  margin-bottom: 30px;
}

/* --- Tabs --- */
.tabs-list {
  margin-bottom: 30px;
}

.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 3px solid #0385ff;
}

.tabs li {
  flex: 1;
  text-align: center;
  max-width: 200px;
  /* Optional max width */
}

.tabs li a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #b3b3b3;
  /* Grey text */
  font-weight: 700;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom: none;
  /* Sit on the line */
  border-radius: 8px 8px 0 0;
  /* Rounded top corners */
  transition: all 0.3s;
  font-size: 14px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs li a:hover {
  background: #f9f9f9;
  color: #0385ff;
}

.tabs li a.is-current {
  background: #0385ff;
  color: #fff;
  border-color: #0385ff;
  border-bottom: none;
  /* Visual tweak: ensure it looks merged or solid */
}

/* --- Cards --- */
.article-card {
  border: 1px solid #707070;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
}

.flex-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.flex-card__media {
  flex-shrink: 0;
}

.flex-card__media .avatar img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 2.5px 2.5px 1px rgba(0, 0, 0, 1);
}

.flex-card__content {
  flex: 1;
}

.flex-card__content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.5;
}

.flex-card__content p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
}

.flex-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.flex-group a {
  color: #0385ff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.flex-group a:hover {
  text-decoration: underline;
}

/* --- Pagination --- */
.pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.pagination-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.pagination-nav {
  flex: 0 0 32px;
  /* Fixed width for arrows */
  display: flex;
  justify-content: center;
}

.pagination-numbers {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 120px;
}

.pagination a {
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  /* Fixed width */
  height: 32px;
  cursor: pointer;
}

.pagination a.is-currents {
  color: #0385ff;
}

.pagination-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  /* Remove margin as gap is handled by flex container */
  transition: opacity 0.3s;
}

.pagination-arrow img {
  width: 20px;
  height: 20px;
  display: block;
}

.pagination-arrow.is-disabled {
  opacity: 0;
  pointer-events: none;
  cursor: default;
}

.pagination-dots {
  font-size: 16px;
  color: #333;
  width: 32px;
  /* Match link width for grid alignment */
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile */
@media only screen and (max-width: 768px) {
  .interview-section {
    padding: 40px 0px;
  }

  .flex-card__content h3 {
    font-size: 16px;
  }

  .interview-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* Horizontal scrollable tabs */
  .tabs-list {
    position: relative;
    margin-bottom: 20px;
  }

  .tabs {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    border-bottom: 3px solid #0385ff;
    gap: 0;
    /* No gaps between tabs */
    padding-bottom: 0;
  }

  .tabs::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
  }

  .tabs li {
    flex: 0 0 auto;
    min-width: 80px;
    max-width: none;
  }

  .tabs li a {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .flex-card {
    gap: 16px;
  }

  .flex-card__media {
    margin-bottom: 16px;
  }

  .flex-group {
    flex-direction: column;
    gap: 12px;
  }

  .article-card {
    padding: 16px;
    margin-bottom: 16px;
  }

  .pagination-inner {
    gap: 8px;
  }

  .pagination-numbers {
    width: auto;
  }
}