/* About page (About.aspx) */

body { background: var(--archivo-fondo); }

.info-page {
    max-width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 1rem 5rem;
    color: #1f2733;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.info-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.info-eyebrow {
    margin: 0 0 .75rem;
    color: #9a7b3f;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.info-header h1 {
    margin: 0;
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.08;
    color: #1f2733;
}

.info-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    max-width: 220px;
    margin: 1.4rem auto 0;
}

.info-rule::before,
.info-rule::after {
    content: "";
    flex: 1;
    height: 1px;
}

.info-rule::before { background: linear-gradient(90deg, transparent, #9a7b3f); }
.info-rule::after  { background: linear-gradient(90deg, #9a7b3f, transparent); }

.info-ornament {
    color: #9a7b3f;
    font-size: .82rem;
    flex-shrink: 0;
}

.info-body {
    background: #fbf9f4;
    border: 1px solid #e3ddd0;
    border-radius: 18px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 8px 28px rgba(31, 39, 51, .07);
}

.info-section {
    padding-bottom: 1.6rem;
    margin-bottom: 1.6rem;
    border-bottom: 1px solid #e3ddd0;
}

.info-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.info-section h2 {
    margin: 0 0 .75rem;
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    font-size: 1.18rem;
    font-weight: 600;
    color: #7a2e2c;
}

.info-section p {
    margin: 0;
    color: #2c3340;
    font-size: .97rem;
    line-height: 1.75;
}

.info-section strong {
    color: #1f2733;
    font-weight: 700;
}

/* Autoría y desarrollo: solo tipografía y espacio, sin tarjetas ni avatares. */
.credit-block {
    margin-top: 2.2rem;
}

.credit-block:first-of-type {
    margin-top: 0;
}

.credit-block-label {
    margin: 0 0 .9rem;
    color: #9a7b3f;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.credit-intro {
    margin-bottom: 1.5rem;
}

.credit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.credit-entry {
    padding-left: 1rem;
    border-left: 2px solid #9a7b3f;
    margin-top: 15px;
}

.credit-name {
    margin: 0;
    font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
    font-weight: 600;
    font-size: 1.08rem;
    color: #1f2733;
}

.credit-role {
    margin: .3rem 0 0;
    font-size: .92rem;
    color: #5d6470;
    line-height: 1.5;
}

.credit-dept {
    margin: .2rem 0 0;
    font-size: .92rem;
    color: #5d6470;
    line-height: 1.5;
}

.credit-email {
    margin: .2rem 0 0;
    font-size: .88rem;
    color: #5d6470;
    line-height: 1.5;
}

.credit-email a {
    color: inherit;
    text-decoration: none;
}

.credit-email a:hover {
    text-decoration: underline;
}

/* Citas: en esta página el contenedor es estrecho (740px), así que en vez del
   grid de 2 columnas que usan las fichas de cuadro/libro, se listan una debajo
   de otra. */
.info-section .citation-grid {
    grid-template-columns: 1fr;
}

/* El panel de citas (.citation-panel/.citation-text) usa variables (--line,
   --brass...) que solo existen dentro de .cuadros-page, así que aquí no se
   resuelven: fuera de ese contexto el borde queda invisible y el fondo blanco
   que trae por defecto desentona con el pergamino cálido de .info-body.
   Se pisa con los mismos tonos que ya usa esta página (ver .info-body). */
.info-section .citation-panel {
    background: #f5f1e8;
    border-color: #e3ddd0;
    margin-top: 20px;
}

.info-section .citation-text {
    background: #fff;
    border-color: #e3ddd0;
    height: auto;
    white-space: normal;
    overflow: visible;
}

/* .citation-copy usa var(--oxblood)/var(--oxblood-soft), que aquí no existen
   (solo se definen dentro de .cuadros-page); se fijan valores propios y se
   añade el estado "copiado" que sustituye al aviso aparte. */
.info-section .citation-copy {
    color: #7a2e2c;
}

.info-section .citation-copy:hover,
.info-section .citation-copy:focus-visible {
    background: #f3e4e1;
}

.info-section .citation-copy.is-copiado {
    background: #e8f3ec;
    border-color: rgba(47, 107, 79, .4);
    color: #2f6b4f;
}

/* El formato BibTeX trae saltos de línea propios que hay que conservar. */
.info-section .citation-text-pre {
    white-space: pre-wrap;
}
