/* Container rộng 85% */
.faa-container {
  width: 85%;
  max-width: 100%;
  margin: 0 auto;
}

/* Title author: margin-top 35px */
.faa-author-title {
  margin: 35px 0 24px;
}
.faa-author-title h1 {
  margin-top: 35px;
}

/* Avatar 350 x auto (kèm bo tròn cho đẹp) */
.faa-author-avatar img {
  width: 350px;
  height: auto !important;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}

/* Bio canh trái và khối đọc dễ hơn */
.faa-author-bio {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: left;
}

/* Heading H2 khoảng cách hợp lý */
.faa-article-heading {
  margin: 32px 0 24px;
}

/* === Thumbnail bài viết 4:3 (landscape) === */
.faa-thumb-43 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;        /* Ép tỉ lệ 4:3 nằm ngang */
  overflow: hidden;
  background: #f2f2f2;
}

.faa-thumb-43 img,
.faa-thumb-43 .faa-thumb-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* Crop cho đầy khung, không méo */
  display: block;
}

/* Trường hợp không có thumbnail, hiện nền xám */
.faa-thumb-43 .faa-thumb-fallback {
  content: "";
}
