.app-card {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 0 2px 10px 0 rgba(0,0,0,.12);      
    transition: 0.3s;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px 0 rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.app-card::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0; right: 0;
    width: 250px;
    height: 190px;
    background: center/cover no-repeat url("../../assets/img/app-image.png");
    opacity: 0.10;
    z-index: -10;
    filter: 
        brightness(0)
        saturate(100%)
        invert(54%)
        sepia(93%)
        saturate(1223%)
        hue-rotate(344deg)
        brightness(98%)
        contrast(89%);
    transition: opacity 0.3s ease;
}

.app-card__content {
    padding: 24px;        
}

.app-card__content-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.app-card__content-main {
    display: flex;
    flex-direction: column; 
    gap: 16px;
}

.app-card__content-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.app-card__counterparty {
    font-weight: 600;
}

.app-card__city {
    text-align: center;
}

.app-card__price {
    color: var(--color-text-black);
    font-size: 18px;
    font-weight: 600;
}

.app-card__title {
    color: var(--color-text-black);
    font-size: 20px;
    font-weight: 600;
}

.app-card__title--primary {
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
}

.app-card__title--secondary {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 600;
}

.app-card__subtitle {
    color: var(--color-text-black);
    font-size: 18px;
    font-weight: 600;
}

.app-card__text {
    color: var(--color-text-black);
    font-size: 16px;
    font-weight: 500;
}

.app-card__text--secondary {
    color: var(--color-secondary);
    font-size: 16px;
    font-weight: 500;
}


.app-card__meta {
    color: var(--color-secondary);
    font-size: 14px;
    font-weight: 500;
}

@media(min-width: 992px) {

    .app-card::before {
        width: 300px;
        height: 220px;
    }
    
    .app-card__content-top {
        flex-direction: row;
        align-items: center;    
    }
    
    .app-card__city {
        text-align: start;
    }
}
















