/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1600px;
  --breakpoint-lg: 1440px;
  --breakpoint-lg-s: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 600px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

.author .hero {
  padding: 1rem 0;
  background: #edf0fc;
}
@media (min-width: 1024px) {
  .author .hero {
    padding: 4rem 0;
  }
}
.author .hero-author {
  padding: 1.25rem;
  background: var(--sk-color-white);
}
@media (min-width: 1024px) {
  .author .hero-author {
    padding: 1.5rem;
  }
}
.author .hero-author--profile {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.5rem;
}
.author .hero-author--photo {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
@media (max-width: 1024px) {
  .author .hero-author--photo {
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .author .hero-author--photo {
    max-width: 23.125rem;
  }
}
.author .hero-author--photo img {
  border-radius: 100%;
  height: 8.625rem;
  width: 8.625rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1024px) {
  .author .hero-author--photo img {
    height: 9.5rem;
    width: 9.5rem;
  }
}
.author .hero-author--info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
}
@media (min-width: 1024px) {
  .author .hero-author--info {
    max-width: calc(100% - 11rem);
  }
}
.author .hero-author--info p {
  margin: 0;
}
.author .hero-author--info .linkedin-link {
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../../img/linkedin.svg") no-repeat center;
  background-size: contain;
}
@media (max-width: 1024px) {
  .author .hero-author--info .linkedin-link {
    margin: 0 auto;
  }
}
.author .hero-author--bio {
  width: 100%;
}
@media (max-width: 1024px) {
  .author .hero-author--bio {
    font-size: var(--sk-text--xs);
  }
}
@media (min-width: 1024px) {
  .author .hero-author--bio {
    max-width: calc(100% - 25.625rem);
  }
}
.author .posts {
  padding: 1rem 0;
}
@media (min-width: 1024px) {
  .author .posts {
    padding: 4rem 0;
  }
}
@media (max-width: 1024px) {
  .author .posts h2 {
    margin-bottom: 1rem;
  }
}
.author .posts .sk-wrapper {
  gap: 1rem;
}
@media (min-width: 1024px) {
  .author .posts .sk-wrapper {
    gap: 1.875rem 3.125rem;
    justify-content: center;
  }
}
.author .posts .post.sk-col {
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .author .posts .post.sk-col {
    max-width: calc(33.3333333333% - 16.25rem / 3);
  }
}
.author .posts .post.sk-col .post-link {
  display: block;
  border-radius: 1.5rem;
  border: 1px solid #d6d6d6;
  padding: 1rem;
}
@media (min-width: 1024px) {
  .author .posts .post.sk-col .post-link {
    padding: 1.25rem;
  }
}
.author .posts .post.sk-col .post-label {
  right: 0;
  left: unset;
  border-radius: 0 1.5rem 0 1.5rem;
  background-color: var(--sk-color-fourth);
}
