.mobile-app-card {
    position: relative;
    background: #fff;
    border-radius: 32px;
    margin-bottom: 32px;
}

.mobile-app-card__body {
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 24px;
}

.mobile-app-card__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-app-card__content {
    display: flex;
    flex-direction: column;
}

.mobile-app-card__title {
    text-align: center;
}

.mobile-app-card__text-body {
    text-align: center;
}

.mobile-app-card__img-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.mobile-app-card__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mobile-app-card__links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-app-card__links a {
    text-decoration: none;
    display: inline-flex;
    line-height: 0;
    flex-shrink: 0; 
}

.mobile-app-card__links img {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
}

.mobile-app-card__links a:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.mobile-app-card__links a:active {
    transform: scale(0.98);
}

@media (min-width: 1024px) {
    .mobile-app-card__body {
        flex-direction: row;
        gap: 24px;
        justify-content: space-between;
    }
    
    .mobile-app-card__wrapper {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
    }
    
    
    .mobile-app-card__title {
        text-align: start;
    }
    
    .mobile-app-card__body {
        text-align: start;
    }
    
    .mobile-app-card__links {
        justify-content: flex-end;
    }
}