@charset "UTF-8";

.author-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0 8px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
}

.author-box__avatar {
  flex: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}

.author-box__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-box__body {
  flex: 1;
  min-width: 0;
}

.author-box__person {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.author-box__name {
  margin: 0;
  font-family: "GoshaSans", "Arial", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a3668;
}

.author-box__verify {
  flex: none;
  position: relative;
  width: 24px;
  height: 24px;
  background: #5eb3f0;
  border-radius: 50%;
}

.author-box__verify::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 5px;
  margin-top: -4px;
  margin-left: -5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.author-box__label {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-family: "GoshaSans", "Arial", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #9ecc00;
  border-radius: 6px;
}

.author-box__link {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  font-family: "GoshaSans", "Arial", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: center;
  color: #fff !important;
  background-color: #9ecc00 !important;
  border-radius: 6px;
  border-color: transparent !important;
}

@media (max-width: 768px) {
  .author-box {
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px;
  }

  .author-box__link {
    width: 100%;
  }
}
