/* Estilo do Card de Autor */

.page-header-author {
  margin: 30px auto;
}

.author-card {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #EEEEEE;
  margin-block: 15px;
}

.author-name {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: #333;
}

.author-description {
  font-size: 1rem;
  color: #555;
}

.author-photo img {
  object-fit: cover;
  object-position: center center;
  max-width: max-content;
  border-radius: 50%;
  width: 96px;
  height: 96px;
}

.author-social a {
  margin-right: 10px;
  display: inline-block;
}
.author-social img {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 768px) {
  .author-card {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .author-photo {
    margin-bottom: 20px;
  }

  .author-social i {
    width: 32px;
    height: 32px;
  }

  .author-social {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media screen and (min-width: 769px) {
  .author-info {
    margin-left: 15px;
  }
}

.layout-sidebar .main-content {
  margin-bottom: 5rem;
}

/* Estilo do Card de Autor dark mode */
html[data-scheme='dark'] .author-card{
  background-color: #333;
  border: 1px solid #696969;
}

[data-scheme='dark'] .author-name,
[data-scheme='dark'] .author-description {
  color: #fff;
}

/* Estilo do Card de Autor dark mode */
