.bullet-list {
    display: grid;
    grid-template-columns: repeat(4, calc((100% - 30px) / 4));
    gap: 10px;
    list-style-type: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.bullet-list__item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    min-height: 150px;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 1);
    overflow: hidden;
}

.bullet-list__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(0, 0, 0, 1);
    margin: 0;
}

.bullet-list__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: rgba(74, 76, 88, 1);
    margin: 0;
}

.bullet-list__calendar-icon {
    width: 170px;
    position: absolute;
    bottom: -33px;
    right: -25px;
    object-fit: contain;
}

.bullet-list__clock-icon {
    width: 144px;
    position: absolute;
    bottom: -33px;
    right: -10px;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 1399px) {
    .bullet-list {
        grid-template-columns: repeat(2, calc((100% - 10px) / 2));
    }

    .bullet-list__item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .bullet-list__item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
}

@media screen and (max-width: 991px) {
    .bullet-list__item-clock .bullet-list__text {
        max-width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .bullet-list {
        grid-template-columns: repeat(1, 100%);
    }

    .bullet-list__item:nth-child(2) {
        grid-column: auto;
        grid-row: auto;
    }

    .bullet-list__item:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }

    .bullet-list__item-clock .bullet-list__text {
        max-width: 100%;
    }

    .bullet-list__clock-icon {
        bottom: -25px;
    }

    .bullet-list__item-calendar .bullet-list__calendar-icon {
        bottom: -25px;
    }
}

@media screen and (max-width: 575px) {
    .bullet-list__item-clock .bullet-list__text {
        max-width: 200px;
    }
}

@media screen and (max-width: 375px) {
    .bullet-list__clock-icon {
        width: 125px;
        bottom: -25px;
    }

    .bullet-list__calendar-icon {
        width: 155px;
        bottom: -25px;
    }
}