.component__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    list-style-type: none;

    justify-content: space-between;
    align-content: space-between;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.component__item {
    height: 250px;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.component__img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.component__title {
    font-weight: 700;
    font-size: 20px;
    margin: 0;
    text-align: center;
}

.component__sub-title {
    margin: 0;
    font-weight: 700;
    font-size: 20px;
}

@media (max-width: 1300px) {
    .component__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .component__item {
        height: 250px;
    }

    .component__img {
        width: 50px;
        height: 50px;
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .component__list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .component__img {
        width: 41px;
        height: 41px;
    }

    .component__item {
        padding: 10px;
        height: 200px;
    }
}

@media (max-width: 450px) {
    .component__list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .component__item {
        width: auto;
    }

    .component__img {
        width: 51px;
        height: 51px;
        object-fit: contain;
    }
}
