.author-heading {
  position: relative;
  overflow: hidden;
  padding: 160px 0px 70px 0px;
  background-color: var(--OffWhite);
  margin-bottom: 30px;
}

.author-heading__inner {
  display: grid;
  grid-template-columns: 275px 1fr;
  max-width: 100%;
  width: 100%;
  grid-gap: 40px;
}

.author-heading .author-heading__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  padding-bottom: 130%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.4);
}

.author-heading__image-wrapper {
  margin-bottom: 40px;
  position: relative;
}

.author-heading .author-heading__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.author-heading__social-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.author-heading__social-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.4);
  background-color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease,
    background-color 0.3s ease;
}

.author-heading__social-nav a svg path {
  transition: fill 0.3s ease;
}

.author-heading__social-nav a:hover {
  transform: translateY(-4px);
  background-color: var(--PrimaryGreen);
  border-color: var(--PrimaryGreen);
}

.author-heading__social-nav a:hover svg path {
  fill: #fff;
}

.author-heading__logo {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 100%;
  padding: 10px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
}

.author-heading__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.author-heading h1 {
  margin: 0;
}

.author-heading .author-heading__info {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.author-heading .author-heading__text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 0, 0, 0.4);
  font-size: 16px;
  line-height: 1.5;
}

.author-heading__right {
  padding-top: 18px;
}

/* Desktop and Down */
@media (max-width: 1439px) {
  .author-heading {
    margin-bottom: 50px;
  }

  .author-heading__inner {
    max-width: 100%;
  }
}

/* Small Desktop and Down */
@media (max-width: 1199px) {
  .author-heading {
    padding: 130px 0 50px;
  }

  .author-heading__inner {
    grid-template-columns: 30% 1fr;
  }
}

/* Tablet P and Down */
@media (max-width: 992px) {
  .author-heading__inner {
    grid-gap: 30px;
  }

  .author-heading__right {
    padding-top: 0;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .author-heading {
    padding: 110px 0 50px;
  }

  .author-heading__left {
    max-width: 65%;
    width: 100%;
    margin: 0 auto;
  }

  .author-heading__inner {
    gap: 10px;
    text-align: center;
    grid-template-columns: 1fr;
  }

  .author-heading .author-heading__info {
    justify-content: center;
  }
}

.blog-author-listing .portfolio-pagination .circle-box {
  background-color: var(--OffWhite);
}
