.how__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 0;
    list-style-type: none;
    margin: 30px 0px;
    padding: 0;
}
@media(max-width: 480px){
    .how__list {
        gap: 20px 10px;
    }
}

.how__item {
    width: calc(100% / 4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media(max-width: 991px) {
    .how__item {
        width: calc(100% / 3);
    }
}
@media(max-width: 575px) {
    .how__item {
        width: calc(100% / 2);
    }
}
@media(max-width: 480px) {
    .how__item {
        width: calc((100% / 2) - 10px);
    }
}
@media(max-width: 424px){
    .how__item {
        width: 100%;
    }
}
.how-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    padding: 0px 20px 0px 10px;
}
@media(max-width: 480px) {
    .how-item__header {
        padding: 0;
    }
}
.how-item__number {
    display: grid;
    place-content: center;
    font-size: 18px;
    font-weight: 600;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: 2px solid #fba948;
    flex-shrink: 0;
}
.how-item__comment {
    position: relative;
    max-width: 200px;
    min-height: 95px;
    background-color: #FFFAF2;
    padding: 15px;
    border-radius: 10px;    
    border: 2px solid #fba948; 
    color: inherit;
    text-decoration: none;
}
@media (max-width: 424px){
    .how-item__comment{
        max-width: 100%;
        min-height: auto;
    }
}
.how-item__comment h5 {
    text-transform: uppercase;
    line-height: 140%;
    font-weight: 600;  
    margin: 0;
    padding: 0; 
}
.how-item__comment::before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 0 solid transparent;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top: 10px solid #fba948;
    bottom: -10px;
    left: 25px;
}
.how-item__image {
    width: 70%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 5px;
}
@media(max-width: 480px){
    .how-item__image {
        width: 100%;
    }
}
@media (max-width: 424px){
    .how-item__image {
        width: 70%;
        margin: auto;
    }
}
.how-item__image img{
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}