.node--personesdifuntes {
  --hist-text: #24313b;
  --hist-muted: #64707d;
  --hist-soft: #f8fafb;
  --hist-line: rgba(0, 0, 0, 0.08);
}

.historical-person-page {
  padding: 2.5rem 0 4rem;
}

.historical-person-page__header {
  margin-bottom: 2rem;
}

.historical-person-page__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.historical-person-page__layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.historical-person-page__sidebar,
.historical-person-page__main {
  display: grid;
  gap: 1.5rem;
}

.historical-person-page__photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

/* Grups / fieldsets */
.historical-person-page__group .field-group-format,
.historical-person-page__group fieldset,
.historical-person-page__attachments fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.historical-person-page__group .field-group-format > h2,
.historical-person-page__group .field-group-format > h3,
.historical-person-page__group legend,
.historical-person-page__attachments legend {
  margin: 0 0 1rem;
  color: var(--hist-text);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.historical-person-page__group .fieldset-wrapper,
.historical-person-page__group .field-group-format-wrapper,
.historical-person-page__attachments .fieldset-wrapper {
  display: grid;
  gap: 0.85rem;
}

.historical-person-page__group .field,
.historical-person-page__attachments .field {
  margin: 0;
}

.historical-person-page__group .field__label,
.historical-person-page__attachments .field__label {
  display: inline;
  margin: 0 0.35rem 0 0;
  color: var(--hist-text);
  font-size: 1rem;
  font-weight: 700;
}

.historical-person-page__group .field__item,
.historical-person-page__group .field__items,
.historical-person-page__attachments .field__item,
.historical-person-page__attachments .field__items {
  color: var(--hist-text);
  line-height: 1.6;
}

.historical-person-page__group a,
.historical-person-page__attachments a {
  color: #1d4f73;
  text-decoration: none;
  font-weight: 600;
}

.historical-person-page__group a:hover,
.historical-person-page__attachments a:hover {
  text-decoration: underline;
}

/* Camps de dades més compactes */
.historical-person-page__group .field > .field__item,
.historical-person-page__group .field > .field__items,
.historical-person-page__group .field > div:last-child {
  display: inline;
}

/* Cos */
.historical-person-page__body {
  min-width: 0;
}

.historical-person-page__richtext {
  color: var(--hist-text);
  line-height: 1.8;
}

.historical-person-page__richtext > *:first-child {
  margin-top: 0;
}

.historical-person-page__richtext > *:last-child {
  margin-bottom: 0;
}

/* Adjunts */
.historical-person-page__attachments .field__items {
  display: grid;
  gap: 0;
}

.historical-person-page__attachments .field__item {
  padding: 0.85rem 0;
  border-top: 1px solid var(--hist-line);
}

.historical-person-page__attachments .field__item:first-child {
  border-top: 0;
  padding-top: 0;
}

/* Mobile */
@media (max-width: 991px) {
  .historical-person-page__layout {
    grid-template-columns: 1fr;
  }

  .historical-person-page__sidebar {
    order: 1;
  }

  .historical-person-page__main {
    order: 2;
  }

  .historical-person-page__photo {
    max-width: 420px;
  }
}

@media (max-width: 767px) {
  .historical-person-page {
    padding: 2rem 0 3rem;
  }

  .historical-person-page__title {
    font-size: 2.1rem;
  }
}