/* 
    reset defaults
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: Poppins, sans-serif;
  margin: 0;
}

.site-main {
  max-width: unset;
}

.feature-post-wrapper {
  width: 100%;
  max-width: 1192px;
  margin: auto;
  float: unset;
  padding-top: 50px;
  padding-bottom: 80px;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.post-feed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  row-gap: 24px;
  column-gap: 16px;
  padding: 0;
  margin: 0;
  width: 100%;
}

.author-page-wrapper,
.post-feed>h5,
.post-feed .btn {
  grid-column: 1 / -1;
}
.authors-company-image {
  height: 48px;
}
.author-page-wrapper {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  border-bottom: 1px solid #AEAEAE;
  padding-bottom: 24px;
  width: 100%;
}

.author-details-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.author-title {
  font-size: 24px;
  font-weight: 400;
}

.post-feed>h5 {
  margin: 0;
}

.post-card {
  margin: 0;
}

.author-img-container {
  width: min(250px, 100%);
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
}

.author-img-container .authors-profile-image {
  width: 100%;
  height: auto;
  border-radius: 5px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
}

.author-bio {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.author-name {
  font-family: Poppins, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 58px;
  letter-spacing: -0.04em;
  text-align: left;
}

.author-name span {
  display: inline;
}

.author-meta-icons {
  margin: 0;
}

.author-meta-icons img {
  width: 31.72px;
  height: 32px;
}

.limit-display .post-card:nth-child(n+15) {
  display: none;
}

#seeMore {
  margin-top: 24px;
  display: inline-block;
}

.post-filter__panel .post-panel__clear-all {
  display: flex;
}

.no-results {
  width: 100%;
  grid-column: span 3;
  padding: 50px 0px;
}

.tags-filter-container {
  display: flex;
  flex-direction: row;
  gap: 24px;
  border-bottom: 1px solid #AEAEAE;
  padding-bottom: 24px;
  align-items: center;
  width: 100%;
}

.tags-filters {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex-wrap: wrap;
}

.tags-filters .tag {
  padding: 8px 12px;
  border: 1px solid var(--black);
  border-radius: 40px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: transparent;
}

.tags-filters .tag.active {
  border-color: var(--coral);
  color: var(--coral);
}

@media (min-width: 601px) and (max-width: 1200px) {
  .feature-post-wrapper {
    padding-left: 56px;
    padding-right: 56px;
  }

  .limit-display .post-card:nth-child(n+15) {
    display: none;
  }

  .post-feed {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .author-page-wrapper {
    gap: 24px;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .feature-post-wrapper {
    padding: 56px 32px;
    align-items: flex-start;
  }

  .author-name {
    line-height: 36px;
  }

  .author-name span {
    display: block;
  }

  .post-feed>h5 {
    margin-top: 32px;
  }

  .author-page-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .post-feed {
    grid-template-columns: repeat(1, 1fr);
  }

  .author-meta {
    align-items: flex-start;
    flex-direction: column;
  }
}