.mobile-app-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    justify-items: center;
}

.mobile-app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.mobile-app-item:hover {
    transform: scale(1.05);
}

.mobile-app-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-app-icon {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 20%;
    object-fit: cover;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-app-title {
    margin-top: 8px;
    font-size: 14px;
    text-align: center;
    color: #333;
    font-weight: 500;
}