/* ── INFO PAGE STYLES ────────────────────────────────────────────────────────── */
/* Scope: contact links display, centered layout                                  */
/* Shared layout/fonts live in index.css                                          */

/* Vertically and horizontally centered within the content div */
#view-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 140px);
}

.info-contact {
    font-family: 'Determination', monospace;
    line-height: 2.2;
}

.info-row {
    display: flex;
    gap: 1.2em;
    align-items: baseline;
}

.info-label {
    color: #888;
    min-width: 6em;
    text-align: right;
    font-size: 0.85em;
    text-transform: lowercase;
}

.info-value {
    color: #000;
    font-size: 1em;
    text-decoration: none;
}

a.info-value:hover {
    text-decoration: underline;
}
