* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9fb;
  color: #1a1a1a;
  line-height: 1.6;
}

.centered-figure {
  max-width: 540px;       /* tùy chọn – để ảnh không quá to */
  margin: 24px auto;      /* căn giữa figure trong bài */
  text-align: center;     /* căn giữa caption và ảnh nếu cần */
}

.centered-figure img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.centered-figure figcaption {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}

@media screen and (max-width: 600px) {
  .centered-figure {
    max-width: 100%;       /* cho phép ảnh chiếm toàn bộ chiều rộng trên di động */
  }
  
}