/**
 * Módulo: Notes
 */

.module-notes__sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.module-notes__section {
    width: 100%;
}

.module-notes__title {
    margin-bottom: 1rem;
}

.module-notes__description {
    color: var(--color-text);
    line-height: 1.6;
}

.module-notes__description p {
    margin-bottom: 1rem;
}

.module-notes__description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .module-notes__sections {
        gap: 2rem;
    }
}

