/* ============================================================
   PRINT
   ============================================================ */

@media print {

    .hero,
    .back-nav,
    .footer,
    .profile__views-card,
    .btn {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
        font-size: 12pt;
    }

    .profile {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0;
        padding: 0;
        gap: 20px;
    }

    .profile__sidebar {
        position: static;
        max-width: 200px;
    }

    .profile__info,
    .profile__contact {
        box-shadow: none;
        border: none;
        padding: 0;
        background: #fff;
    }

    .resp-list li {
        break-inside: avoid;
        border: 1px solid #ccc;
        border-left: 3px solid #000;
        margin-bottom: 6px;
        background: #fff;
    }

    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #555;
    }
}