.section-wrapper a {
    color: #000;
}

.section-wrapper a:hover {
    color: #0a8be1;
}

.notes-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 1rem;
}

.notes-item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 3rem;
}
.notes-item:last-child {
    border-bottom: none;
}

.notes-item-cover {
    width: 80%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    border: 1px solid #e0e0e0;
    padding: 2rem;
}


.notes-item-cover a {
    display: flex;
    flex-direction: column;
}

.notes-item-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notes-item-title, .download-wrapper {
    align-self: flex-start;
}

.pdf-download-link {
    background-color: #0a8be1;
    color: #fff!important;

    border-radius: .25rem;
    
    display: flex;
    flex-direction: row;
    align-items: center;
    padding:.5rem 1rem;
}

.pdf-download-link:hover {
    background-color: #084b78;
    color: #fff!important;
}

.pdf-download-link i {
    margin-left: .5rem;
}

.version-wrapper, .course-link-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.course-link-wrapper ul {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

@media (max-width: 1024px) {
    .notes-item-cover {
        width: 100%;
        padding: 1rem;
    }

}