/* Tema pubblico: card */
@font-face {
    font-family: "bootstrap-icons";
    src: url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/fonts/bootstrap-icons.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg: #2f3136;
    --card: #36393f;
    --accent: #5865F2;
    --text: #dcddde;
    --muted: #b9bbbe;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheda-profilo-img {
    width: 150px;
    object-fit: cover;
    display: block;
    margin: 0 auto 0.75rem;
}
.card {
    width: 100%;
    max-width: 420px;
    background: var(--card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.card h1 {
    margin: 0 0 0.25rem;
    font-size: 1.4rem;
}

.card .handle {
    color: var(--muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
}

.row:last-of-type {
    border-bottom: none;
}

.row .k {
    color: var(--muted);
}

.row .v a {
    color: var(--accent);
    text-decoration: none;
}

.row .v a:hover {
    text-decoration: underline;
}

.social {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.social a {
    display: inline-block;
    margin-right: 0.75rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.social a:hover {
    text-decoration: underline;
}

.profile-icon {
    font-size: 2.25rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: block;
    float: right;
}

.scheda-files { margin-top: 1rem; }
.scheda-files .row .k { color: var(--muted); }
.scheda-files-images { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: flex-start; }
.scheda-file-thumb-link { display: inline-block; width: 33%; }
.scheda-file-thumb {width:100%; object-fit: cover; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); vertical-align: middle; }
.scheda-file-pdf-link { display: inline-block; margin-right: 1rem; margin-bottom: 0.25rem; color: var(--accent); }
.scheda-file-pdf-link:hover { text-decoration: underline; }
