
.homepage-wrapper__girls-cards {
    margin-top: 30px;
}
.girls-cards {
    padding-bottom: 60px;
    border-bottom: 3px solid var(--accent-color);
    margin-bottom: 60px;
}
.girls-cards-user {
    margin-top: 30px;
}
.girls-cards-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    row-gap: 10px;
}
.girls-cards-row article {
    flex: 0 1 33.333333%;
    padding: 0 5px;
}
.girls-cards.gold-card .girls-cards-row article {
    flex: 0 1 calc(100% / 6);
}
.girls-cards-silver .girls-cards-row article {
    flex: 0 1 20%;
}
.girls-cards-free .girls-cards-row article {
    flex: 0 1 calc(100% / 10);
}
.girls-cards-free.girls-cards-agency .girls-cards-row article {
    flex: 0 1 calc(100% / 5);
}

.post-info-wrapper-plural {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}
.post-info-wrapper-plural .active-model {
    position: absolute;
    z-index: 99;
    top: 10px;
    left: 10px;
    text-align: center;
    padding: 2px 5px;
    border-radius: 2px;
    background-color: #2b9660;
    display: flex;
    align-items: center;
    color: var(--light-color);
}
.post-info-wrapper-plural .favourites {
    position: absolute;
    z-index: 99;
    top: 10px;
    left: 10px;
    text-align: center;
    color: var(--light-color);
    display: flex;
    align-items: center;
}
.post-info-wrapper-plural .favourites .favourites-text {
    display: none;
}
.post-info-wrapper-plural .favourites .favourites-btn {
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.post-info-wrapper-plural .favourites .favourites-btn svg {
    width: 30px;
    height: 30px;
}
.post-info-wrapper-plural .favourites .favourites-btn svg path {
    stroke: var(--light-bg-color);
    transition: all 0.3s ease 0s;
}
.post-info-wrapper-plural .favourites .favourites-btn:hover svg path {
    stroke: var(--accent-color);
}
.post-info-wrapper-plural .verified-girl {
    position: absolute;
    z-index: 99;
    top: 0;
    right: 0;
    width: auto;
    height: 30px;
    text-align: center;
    color: var(--light-color);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.post-info-wrapper-plural .verified-girl .verified-girl-bg {
    content: '';
    transition: all 0.3s ease 0s;
    background-color: var(--accent-color);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(80% 0, 100% 0, 100% 100%, 100% 100%, 75% 0);
}
.post-info-wrapper-plural .verified-girl span {
    display: block;
    min-width: 30px;
    min-height: 30px;
    position: relative;
    z-index: 2;
}
.post-info-wrapper-plural .verified-girl svg {
    min-width: 30px;
    min-height: 30px;
}
.post-info-wrapper-plural .verified-girl svg path.verified-girl-check {
    fill: var(--accent-dark-color);
}
.post-info-wrapper-plural .verified-girl .verified-girl-text {
    opacity: 0;
    transition: all 0.3s ease 0s;
    position: relative;
    z-index: 2;
    font-size: var(--text-bigger-size);
    padding: 0 7px;
    display: flex;
    align-items: center;
}
.post-info-wrapper-plural .verified-girl:hover .verified-girl-bg {
    clip-path: polygon(0 0, 100% 0, 100% 99%, 100% 100%, 0 100%);
}
.post-info-wrapper-plural .verified-girl:hover .verified-girl-text {
    opacity: 1;
}
@media(max-width: 768px) {
    .post-info-wrapper-plural .verified-girl .verified-girl-bg {
        clip-path: polygon(0 0, 100% 0, 100% 99%, 100% 100%, 0 100%);
    }
    .post-info-wrapper-plural .verified-girl .verified-girl-text {
        opacity: 1;
        font-size: var(--text-smaller-size);
    }
    .post-info-wrapper-plural .verified-girl {
        height: 20px;
    }
}

.post-info-wrapper-plural .girl-card__description {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    transition: all 0.3s ease 0s;
}
.post-info-wrapper-plural .girl-card__description::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 200%;
    height: 120%;
    filter: blur(15px);
    opacity: 0.7;
    transition: all 0.3s ease 0s;
}
.girls-cards-gold .post-info-wrapper-plural .girl-card__description::before {
    background-color: var(--gold-color);
}
.girls-cards-silver .post-info-wrapper-plural .girl-card__description::before {
    background-color: var(--silver-color);
    background-color: var(--accent-color);
}
.girls-cards-free .post-info-wrapper-plural .girl-card__description::before {
    background-color: var(--dark-color);
}
.post-info-wrapper-plural:hover .girl-card__description {
    opacity: 0.4;
}
.post-info-wrapper-plural .girl-card__description:hover {
    opacity: 1;
}
.post-info-wrapper-plural .girl-card__description h2 {
    margin: 0px;
    padding: 0px;
    text-decoration: none;
}
.post-info-wrapper-plural .girl-card__description h2 a {
    text-decoration: none;
}

.post-info-wrapper-plural .post-thumbnail {
    display: block;
    position: relative;
    padding-top: 150%;
    min-height: 300px;
}
.post-info-wrapper-plural .post-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
    .girls-cards-free .girls-cards-row article .girl-card__description-footer {
        display: none;
    }
@media (max-width: 1024px) {
    .girls-cards .post, .girls-cards-row article {
        flex: 0 1 50%;
        padding: 0 10px;
    }
    .post-info-wrapper-plural .girl-card__description h2 {
    }
    .post-info-phone-number {
    }
}
@media (max-width: 768px) {
    .girls-cards-row {
        margin: 0 -2px;
        row-gap: 5px;
    }
    .girls-cards .post, .girls-cards-row article {
        flex: 0 1 100%;
        padding: 0 2px;
    }
    .girls-cards.gold-card .girls-cards-row article {
        flex: 0 1 calc(100% / 2);
    }
    .girls-cards-silver .girls-cards-row article {
        flex: 0 1 50%;
        padding: 0 2px;
    }
    .girls-cards-free .girls-cards-row article {
        flex: 0 1 calc(100% / 6);
        padding: 0 2px;
    }
    .girls-cards-free.girls-cards-agency .girls-cards-row article {
        flex: 0 1 50%;
        padding: 0 2px;
    }
    
    .post-info-wrapper-plural .girl-card__description {
        padding: 3px;
    }
}




