* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  width: 100%;
  font-family: "Bricolage Grotesque", sans-serif;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.main-section {
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.expert-articles-text {
  display: flex;
  margin-top: 80px;
}

.expert-articles-text h1 {
  font-size: 70px;
  font-weight: 500;
}

.insights-images-container {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
  width: 100%;
}

.insights-images {
  display: flex;
  width: 100%;
  gap: 30px;
  margin-bottom: 20px;
}

.insights-image {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.img-part img {
  width: 100%;
  border-radius: 15px;
}

.text-part {
  display: flex;
  flex-direction: column;
  width: 98%;
}

.pc-head {
  display: flex;
  gap: 10px;
  font-size: 13px;
  align-items: center;
  margin-top: 15px;
  margin-bottom: 20px;
}

.pc-head h4 {
  letter-spacing: 1.5px;
}

.pc-head p {
  letter-spacing: 1px;
  color: gray;
}

.pc-para p {
  line-height: 1.3;
  color: #080d10;
  border-bottom: 1px solid rgba(8, 13, 16, 0.08);
  padding-bottom: 20px;
}

.pc-head p::before {
  content: "";
  border-radius: 50%;
  background: rgba(8, 13, 16, 0.7);
  display: inline-block;
}

.dp-picture {
  border-radius: 50%;
  width: 3%;
}

.pc-title {
  font-size: 10px;
  font-weight: 100;
  margin-bottom: 13px;
}

.authors-btn {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.insight-btn-design {
  border: none;
  padding: 13px;
  background-color: #f5f6f6;
  border-radius: 5px;
  letter-spacing: 1.5px;
  font-size: 10px;
  font-weight: 600;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}
.page-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  list-style: none;
  width: 100%;
}

.page-list li.active {
  background: #000;
  color: #fff;
}

.page-list li {
  padding: 20px 25px;
  border-radius: 5px;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  cursor: pointer;
}

.page-list li:not(.active):hover {
  background: #f5f6f6;
  color: black;
}

.pagination-left-btn {
  font-size: 22px;
  color: gray;
}

.word-reveal span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.word-reveal.show span {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 850px) {
  .expert-articles-text h1 {
    font-size: 45px;
  }
  .page6-btn {
    flex-wrap: wrap !important;
  }
  .page6-btn button {
    padding: 16px 13px !important;
  }
  .pc-head {
    flex-wrap: wrap;
  }
  .insights-images {
    flex-direction: column;
  }
  .insights-image {
    width: 100%;
  }
}

@media (max-width: 650px) {
  .expert-articles-text h1 {
    font-size: 40px;
    font-weight: 400;
  }
  .dp-picture {
    width: 8%;
  }
  .page-list li {
    padding: 10px 20px;
  }
}
