/* App catalogue — shares design tokens with /style.css (mirrors www/index.html) */

.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.app {
    background: var(--white);
    border: 1px solid var(--grey-line);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.app:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.app .icon {
    display: block;
    height: 56px;
    width: 56px;
    border-radius: 14px;
    flex-shrink: 0;
}

.app .description {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.app h2 {
    font-size: 1.05rem;
    margin: 0;
}

.app h3 {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--grey-text);
    margin: 4px 0 0;
}

.app span {
    display: block;
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--grey-text);
}

.app button {
    margin-top: 14px;
    align-self: flex-start;
    padding: 6px 18px;
    border-radius: 999px;
    border: 1px solid var(--black);
    background: transparent;
    color: var(--black);
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.app button:hover {
    background: var(--black);
    color: var(--white);
}
