.author {
  padding: 24px;
  gap: 20px;
  border-radius: var(--12, 12px);
  background: var(--white-80, rgba(255, 255, 255, 0.8));
}

.author__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.author__profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.author__image {
  width: 70px;
  height: 70px;
  border-radius: 100px;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
}

.author__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.author__details {
  display: flex;
  flex-direction: column;
}

.author__label {
  color: var(--grey-700, #3E494E);
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.02em;
}

.author__name {
  color: var(--secondary, #1A2225);
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: -0.03em;
}

.author__role {
  color: var(--secondary, #1A2225);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
}

.author__button.btn {
  width: 170px;
  height: 56px;
  padding: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: var(--primary, #02C358);
  color: var(--white, #FFFFFF);
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.author__button.btn svg {
  flex-shrink: 0;
}

.post-content__author {
  margin-top: 32px;
}

@media (max-width: 1260px) {
  .author {
    padding: 24px;
  }

  .author__info {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .author__info {
    flex-direction: column;
    align-items: flex-start;
  }

  .author__profile {
    flex-wrap: wrap;
  }

  .author__button.btn {
    width: 100%;
  }
}