/* Estilos específicos para a seção autora */
/* .author-section, .author-content, .author-image, etc. */

#autora.author-section {
  padding: 3.5rem 0 2.5rem 0;
  background: #fff;
}
#autora .author-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2.5rem;
}
#autora .author-image-wrapper {
  flex: 0 0 280px; /* larger visual on desktop */
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#autora .author-image img {
  width: 260px;
  height: 340px; /* use portrait-friendly size matching 1080x1350 source */
  object-fit: cover;
  object-position: center 24%; /* show upper part of portrait (face) */
  border-radius: 18px; /* rounded-rectangle looks more modern for portrait */
  box-shadow: 0 8px 32px rgba(155,107,158,0.18);
  border: 6px solid rgba(255,255,255,0.9); /* subtle frame */
}
#autora .author-text {
  flex: 1 1 320px;
  font-size: 1.08rem;
  color: #444;
}

/* mobile: center image and reduce size */
@media (max-width: 720px) {
  #autora .author-image-wrapper {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #autora .author-image img {
    width: 220px;
    height: 290px;
    border-radius: 14px;
    border: 4px solid rgba(255,255,255,0.95);
    box-shadow: 0 6px 20px rgba(155,107,158,0.14);
  }
  #autora .author-text {
    flex: 0 0 100%;
  }
}
#autora .author-text .highlight {
  color: var(--primary-color, #9B6B9E);
  font-weight: 600;
}
#autora .author-text a {
  background: var(--primary-color, #9B6B9E);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  margin-top: 2.5rem;
  transition: background 0.2s;
}
#autora .author-text a:hover {
  background: var(--accent-color, #1dbf73);
}

#autora .author-text a i {
  margin-right: 0.5rem;
}
