:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-m: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.author-page .author-intro {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0 0;
  gap: 20px;
}
.author-page .author-image {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
}
.author-page .author-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-page .author-info h1 {
  font-size: 24px;
  line-height: 120%;
}
.author-page .author-info .social-media {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.author-page .author-info .social-media a {
  text-decoration: none;
  transition: all 0.3s ease;
}
.author-page .author-info .social-media a:hover {
  transform: scale(1.2);
}
.author-page .author-bio {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.5;
}
.author-page .author-posts {
  margin-top: 50px;
}
.author-page .author-posts ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.author-page .author-posts ul li {
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .author-page .author-posts ul li {
    width: calc(50% - 20px);
  }
}
@media (min-width: 992px) {
  .author-page .author-posts ul li {
    width: calc(33.333% - 20px);
  }
}
.author-page .author-posts ul li a {
  display: block;
  text-decoration: none;
  color: #333;
}
.author-page .author-posts ul li a .post-img {
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.author-page .author-posts ul li a .post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-page .author-posts ul li a h2 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.author-page .author-posts ul li a p {
  font-size: 14px;
  line-height: 1.6;
}
