/* =====================================================
   BLOK AUTORA
   Avatar, imię, stopień zawodowy, data publikacji
   ===================================================== */

.author-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-box__avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-box__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.author-box__name {
  font-size: 20px;
  font-weight: 600;
  color: #0E4466;
  line-height: 100%;
  margin-bottom: 5px;
}

.author-box__title {
  font-size: 12px;
  font-weight: 400;
  color: #0E4466;
  line-height: 100%;
  margin-bottom: 3px;
}

.author-box__date {
  font-size: 12px;
  font-weight: 400;
  color: #779AAB;
  line-height: 100%;
}

a.author-box {
  text-decoration: none;
  color: inherit;
}

/* Mobile */
@media (max-width: 781px) {
  .author-box__name {
    font-size: 16px;
  }

  .author-box__title {
    font-size: 14px;
  }

  .author-box__date {
    font-size: 14px;
  }
}