/* =========================
   CV.CSS
   ========================= */

/* TITRE */
.cv-title {
    text-align: center;
    margin-bottom: 20px;
}

/* VIEWER */
.pdf-viewer {
    text-align: center;
}

/* LIENS */
.pdf-links {
    margin-bottom: 15px;
}

.pdf-links a {
    color: var(--accent);
    text-decoration: none;
    font-weight: bold;
}

.pdf-links a:hover {
    color: var(--accent-2);
}

/* PDF EMBED */
.pdf-frame {
    width: 100%;
    height: 800px;
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
}

/* TEXTE AIDE */
.pdf-help {
    font-size: 0.9em;
    color: var(--muted);
    margin-top: 10px;
}

.pdf-viewer {
    background: var(--surface-dark);
    padding: 20px;
    border-radius: var(--radius-md);
}

/* responsive */

@media (max-width: 768px) {
    .pdf-frame {
        height: 600px;
    }

    .pdf-viewer {
        padding: 15px;
    }

    .cv-title {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .pdf-frame {
        height: 400px;
    }

    .pdf-viewer {
        padding: 10px;
    }

    .pdf-links a {
        font-size: 0.9em;
    }
}