/* =========================
   APPS
   ========================= */

.apps {
    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 18px;
}


/* =========================
   APP
   ========================= */

.app {
    display: flex;
    flex-direction: column;

    min-height: 190px;
    padding: 24px;

    text-decoration: none;
}

.app:hover {
    transform: translateY(-2px);
}


/* =========================
   APP CONTENT
   ========================= */

.app-title {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 25px;
    font-weight: 700;
}

.app-title .icon {
    font-size: 27px;
}

.app-description {
    margin-top: 10px;

    color: var(--muted);

    font-size: 15px;
    line-height: 1.5;
}

.app-description small {
    font-size: inherit;
}

.app-footer {
    margin-top: auto;
    padding-top: 22px;

    color: var(--accent);

    font-size: 14px;
    font-weight: 600;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

    .apps {
        grid-template-columns: 1fr;
    }

    .app {
        min-height: 160px;
    }
}