/* CONTAINER */
.doctor-author {
  max-width: 1100px;
  margin: 30px auto;
  padding: 20px;
}

/* HEADER */
.doctor-author__header {
  display: flex;
  gap: 30px;
  align-items: center;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* FOTO */
.doctor-author__photo img {
  width: 220px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
}

/* INFO */
.doctor-author__info {
  flex: 1;
}

/* NOME */
.doctor-author__name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* ESPECIALIDADE */
.doctor-author__specialty {
  color: #1a73e8;
  font-weight: 600;
  margin-bottom: 10px;
}

/* BIO */
.doctor-author__bio {
  color: #555;
  margin-bottom: 15px;
}

/* META */
.doctor-author__meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

/* BOTÕES */
.btn-primary {
  background: #1a73e8;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-secondary {
  background: #e5e7eb;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
}

/* POSTS */
.doctor-author__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.doctor-post img {
  width: 100%;
  border-radius: 10px;
}

.doctor-post h3 {
  font-size: 14px;
  margin-top: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .doctor-author__header {
    flex-direction: column;
    text-align: center;
  }

  .doctor-author__grid {
    grid-template-columns: 1fr;
  }
}