.section_name {
    display: flex;
    gap: 10px;
}
.name_arrow_title svg use {
    stroke: var(--white_text_black);
}
.section_name {
    display: flex;
    gap: 20px;
    align-items: center;
}
.section_name a.section_name_link {
    text-decoration: none;
}
.item_wrap img {
    max-width: 100%;
}
.subsection_item_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-rows: 150px;
    gap: 10px;
}
.item_section_pic {
    height: 100%;
    position: relative;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    overflow: hidden;
}
.item_section_pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease; /* Плавная анимация увеличения */
}
.subsection_item:hover .item_section_pic img{
    transform: scale(1.2);
}
.subsection_link {
    display: block;
    height: 100%;
}
.name_img_wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    color: #fff;
    line-height: 19px;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}
.item_section_pic::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 85%) 0%, rgba(0, 0, 0, 0) 50%);
}
.name_arrow {
    position: absolute;
    right: 20px;
    bottom: 0;
}
.count_el {
    font-size: 15px;
    font-weight: 400;
}
.item_wrap {
    padding-bottom: 40px;
}


@media (max-width: 1200px) {
    .subsection_item_wrap {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 1024px) {

}
@media (max-width: 530px) {
   .subsection_item_wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 120px;
        gap: 10px;
    }
}

