.sab-author-box{font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","Helvetica Neue",Arial,sans-serif}
.sab-author-box {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin: 34px 0;
  padding: 26px;
  border: 1px solid #dbe7fb;
  border-top: 4px solid #315cba;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 58%, #faf7ff 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  box-sizing: border-box;
}

.sab-author-box__avatar {
  display: block;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 1px #d6e1f2, 0 8px 22px rgba(15, 23, 42, 0.12);
}

.sab-author-box__avatar-img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
}

.sab-author-box__content {
  min-width: 0;
}

.sab-author-box p {
  margin-top: 0;
}

.sab-author-box__label {
  margin-bottom: 3px;
  color: #66758e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sab-author-box__name {
  margin-bottom: 3px;
  color: #111827;
  font-size: 22px;
  font-weight: 750;
  line-height: 1.25;
}

.sab-author-box__name a {
  color: #1f3f8f;
  text-decoration: none;
}

.sab-author-box__name a:hover,
.sab-author-box__name a:focus {
  color: #cf3b78;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sab-author-box__role {
  margin-bottom: 10px;
  color: #4b5d78;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.sab-author-box__bio {
  max-width: 780px;
  margin-bottom: 14px;
  color: #53647d;
  font-size: 15px;
  line-height: 1.7;
}

.sab-author-box__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  color: #66758e;
  font-size: 13px;
  line-height: 1.5;
}

.sab-author-box__meta a {
  color: #315cba;
  font-weight: 650;
  text-decoration: none;
}

.sab-author-box__meta a:hover,
.sab-author-box__meta a:focus {
  color: #cf3b78;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sab-author-box__reviewed {
  display: inline-flex;
  align-items: center;
}

.sab-author-box__reviewed::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: #3f9b91;
}

@media (max-width: 600px) {
  .sab-author-box {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
    margin: 28px 0;
    padding: 22px 20px;
    border-radius: 16px;
  }

  .sab-author-box__avatar,
  .sab-author-box__avatar-img {
    width: 64px;
    height: 64px;
  }

  .sab-author-box__name {
    font-size: 19px;
  }

  .sab-author-box__bio {
    grid-column: 1 / -1;
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .sab-author-box {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
  }

  .sab-author-box__avatar,
  .sab-author-box__avatar-img {
    width: 56px;
    height: 56px;
  }

  .sab-author-box__meta {
    gap: 7px 12px;
  }

  .sab-author-box__reviewed {
    flex-basis: 100%;
  }
}
