.bundle {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.bundle__content {
    display: flex;
    justify-content: flex-start;

    gap: 24px;
}

.bundle__name {
    color: black;
}

.bundle__description {
    color: gray;
}

.bundle__anchor {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 1000px) {
    .bundle {
        flex-direction: column;
    }
}

@media print and (max-width: 1000px) {
    .bundle {
        flex-direction: column;
    }
}