.browse {
    margin-top: 60px;
    margin-bottom: 60px;
}

.browse-header {
    font-weight: 700;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    margin-bottom: 20px;
}

.browse-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #666666;
    margin-bottom: 36px;
}

.browse-img-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
    justify-content: center;
}

.browse-img img {
    border-radius: 10px;
}

.browse-img-name {
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 760px) {
    .browse-img-block {
        grid-template-columns: 1fr;
    }

    .browse-img-block img {
        width: 70%;
        height: auto;
    }

    .browse-header {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .browse {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .browse-text {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .browse-img-name {
        font-size: 18px;
        margin-top: 15px;
        margin-bottom: 10px;
    }
}