.author-main {
  padding: 160px 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.author-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.author-info .avatar {
  width: 160px;
  height: 160px;
  border-radius: 100%;
  overflow: hidden;
}
.author-info .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info .avatar .position {
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: var(--text);
}

.author-main h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: var(--black);
}

.author-info .tags {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.author-info .tag-item {
  background: #00dfff1a;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: center;
  color: #00dfff;
}

.experience {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.experience-detail {
  max-width: 1200px;
  padding: 40px;
  border-radius: 8px;
  background-color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.experience-detail h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  color: var(--black);
}

.experience-detail p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0px;
  color: var(--black);
}

.posts {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post-content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.post-item {
  display: flex;
  flex-direction: column;
  border: 1px solid #d8d8d8;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.post-item-top {
  max-width: 100%;
  overflow: hidden;
}
.post-item-top img {
  width: 100%;
  height: 100%;
  max-height: 210px;
  object-fit: cover;
}

.post-item-bottom {
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-title {
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--black);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.post-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-item-info img {
  width: 16px;
  height: 16px;
}
.post-item-info .time {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--text);
}

.experience-item h3 {
  margin-bottom: 20px;
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 20px; */
}

@media screen and (max-width: 1280px) {
  .post-content {
    padding: 0 24px;
  }
}

@media screen and (max-width: 1024px) {
  .author-info {
    padding: 0 24px;
  }
  .experience-detail {
    padding: 40px 20px;
  }
  .post-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 680px) {
  .author-info {
    padding: 0 15px;
  }
  .author-info .tag-item {
    font-size: 14px;
  }
  .post-content {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
