/* =========================
   FICHE ANGE – TABLE
========================= */

.angel-profile {
  max-width: 720px;
  margin: 30px auto;
  padding: 20px 25px;
  background: rgba(31, 25, 22, 0.85);
  border: 1px solid var(--gold-dark);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.angel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.20rem;
  font-weight: 400;
}

.angel-table th {
  text-align: left;
  padding: 10px 12px;
  font-weight: 600;
  color: var(--gold-soft);
  width: 38%;
  vertical-align: top;
}

.angel-table td {
  padding: 10px 12px;
  color: var(--text-main);
}

.angel-table tr:not(:last-child) {
  border-bottom: 1px solid rgba(201,162,77,.2);
}

.angel-table a {
  color: #FFD700 !important;
  text-decoration: none;
}

.angel-table a:hover {
  color: var(--gold-soft);
  text-decoration: underline;
}

/* Couleur symbolique */
.angel-color {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  color: var(--angel-color);
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}

/* =========================
   TEXTE ÉDITORIAL
========================= */

.angel-description {
  max-width: 760px;
  margin: 45px auto 0;
  font-size: clamp(1.05rem, 2.6vw, 1.2rem);
  font-family: "Cormorant Garamond", "Georgia", serif;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.02em;
  /* color: #f1ede6; */
  display: flow-root;
}

.angel-description::after {
  content: "";
  display: block;
  clear: both;
}

.angel-description p {
  margin-bottom: 24px;
}

.angel-description strong {
  color: #d4af37;
  font-weight: 600;
  text-shadow: 0 0 6px rgba(201,162,77,.25);
  letter-spacing: 0.04em;
}


h3.gold {
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.15em;
  text-shadow: 0 0 8px rgba(201,162,77,0.35);
}

.angel-subtitle {
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  color: var(--gold-main);
  letter-spacing: 0.12em;
  text-shadow: 0 0 6px rgba(201,162,77,0.35);
  font-style: italic;
}

/* =========================
   CITATIONS / BLOCKQUOTE
========================= */

blockquote {
  max-width: 720px;
  margin: 35px auto;
  padding: 22px 28px;
  background: linear-gradient(
    145deg,
    rgba(40,32,28,0.9),
    rgba(25,20,18,0.95)
  );
  border-left: 4px solid var(--gold-main);
  border-radius: 12px;
  font-style: italic;
  color: #e6dcc5;
  line-height: 1.7;
  box-shadow: inset 0 0 0 1px rgba(201,162,77,0.18),
              0 10px 25px rgba(0,0,0,0.35);
  position: relative;
  clear: both;
}

blockquote::before {
  content: "❝";
  font-size: 3rem;
  color: rgba(201,162,77,0.35);
  position: absolute;
  top: -12px;
  left: 12px;
  font-style: normal;
}

figure.image {
  max-width: 45%;
  margin: 1.8rem 2rem 1.8rem 0;
}

figure.image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,.35);
}

figure.image.left {
  float: left;
  margin-left: 0;
}

figure.image.right {
  float: right;
  margin-right: 0;
}

figure.image.center {
  float: center;
  margin: auto;
}

figure.image figcaption {
  font-size: 0.85rem;
  color: var(--gold-dark);
  text-align: center;
  margin-top: 6px;
  font-style: italic;
}

@media (max-width: 768px) {
  figure.image {
    float: none !important;
    max-width: 100%;
    margin: 1.2rem auto;
  }
  
   figure.image img {
    max-height: 500px;
    opacity: 0.95;
    width: auto;
    margin: 0 auto;
    object-fit: contain;     /* conserve les proportions */
  }
}

.angel-keywords {
  margin: 30px auto 0;
  max-width: 760px;
  text-align: center;
  
  background: rgba(0, 0, 0, 0.015);
  border-radius: 14px;
}

.angel-keywords .keyword {
  display: inline-block;
  margin: 6px 8px;
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
}

.keywords-title {
  margin-top: 30px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8c6a1f;
  text-align: center;
}

.keywords-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.keywords-list span {
  padding: 6px 14px;
  font-size: 0.9rem;
  color: #2a2a2a;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  font-weight: 600;
}


.functions-title {
  margin-bottom: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8c6a1f; /* or foncé lisible sur fond clair */
  text-align: center;
}

.functions-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 560px;
}

.functions-list li {
  margin-bottom: 12px;
  padding-left: 1.6em;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2a2a2a; /* texte très lisible */
  font-weight: 500;
}

/* Puce symbolique */
.functions-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.15em;
  color: #8c6a1f;
  font-size: 0.85rem;
}

.angel-functions {
  padding: 30px 20px;
  margin: 40px auto;
  background: rgba(0, 0, 0, 0.025);
  border-radius: 14px;
  max-width: 720px;
}