/* -------------------- ABOUT -------------------- */

.about-card {
  background: #162b47;
  border-radius: 4px;
  padding: 18px;
  margin-bottom: 12px;
  text-align: justify;
}

.about-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.pronoun-badge {
  width: 88px;
  height: auto;
}

.about-intro {
  display: flex;
  align-items: flex-start;
}

.about-avatar {
  width: 160px;
  background: #121519;
}

.about-intro h1 {
  font: 28px "MS Gothic", "Courier New", Arial;
  margin-bottom: 10px;
}

.about-list {
  list-style: none;
  padding-left: 0;
}

.about-list li {
  margin-bottom: 8px;
  padding-left: 22px;
  position: relative;
}

.about-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #abeba5;
}

/* -------------------- Musiques et livres -------------------- */
.book-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.book-card {
  padding: 8px;
  text-align: center;
}

.book-card img {
  width: 100%;
  object-fit: cover;
  margin-bottom: 8px;
}

.book-title {
  font: 16px "MS Gothic", "Courier New", Arial;
  color: #ffffff;
  text-transform: uppercase;
}

.book-author {
  font-size: 12px;
  color: #abeba5;
}
