.notes-image {
    display: block;
    width: 100%;
    height: auto;
}

.notes-actions {
    display: flex;
    justify-content: flex-end;
    padding: 24px;
    background: #f5f9ff;
}

.notes-download {
    min-height: 46px;
    padding: 11px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    background: #2f6fed;
    color: #fff;
    box-shadow: 0 8px 22px rgba(47, 111, 237, .24);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background .22s, box-shadow .22s, transform .22s;
}

.notes-download:visited {
    color: #fff;
}

.notes-download:hover {
    background: #2158d1;
    color: #fff;
    box-shadow: 0 11px 26px rgba(47, 111, 237, .34);
    text-decoration: none;
    transform: translateY(-1px);
}

.notes-download svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .notes-actions {
        padding: 18px;
    }
}
