.afisha_item {
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    color: inherit;
    padding-top: 100%;
    background: var(--theme-color-violet);
    border-radius: 1rem;
    overflow: hidden;
}

.afisha_item:hover {
    color: inherit;
}

.afisha_item_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.afisha_item_img:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 30%, rgba(0, 0, 0, 0) 100%);
    -webkit-transition: all .15s linear;
    transition: all .15s linear;
}

.afisha_item_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all .15s linear;
    transition: all .15s linear;
}

.afisha_item:hover .afisha_item_img img {
   transform: scale(1.1);
}

.afisha_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1rem;
}

.afisha_section_name {
    font-size: 0.8rem;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0.5rem;
}

.afisha_title {
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    -webkit-transition: all .15s linear;
    transition: all .15s linear;
}

.afisha_item:hover .afisha_title {
    color: var(--theme-skit-color);
}

.afisha_bottom {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.afisha_bottom_item {
    font-size: 0.7rem;
    line-height: 1;
    text-align: center;
    padding: 0.25rem 1rem;
    border-radius: 5rem;
}

.afisha_bottom_item.afisha_date {
    color: #fff;
    background: var(--theme-color-red);
}

.afisha_bottom_item.afisha_place {
    background: rgba(255, 255, 255, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}