/* ===== Apps Page ===== */
.apps-list {
    max-width: var(--max-width-article);
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    transition: box-shadow 0.2s;
}

.app-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.app-card-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 24px;
    overflow: hidden;
}

.app-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.app-card-content {
    flex: 1;
    min-width: 0;
}

.app-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.app-card-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.app-badge {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    background: var(--color-tag-bg);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.app-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.app-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 1.25rem;
}

.app-highlights li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.7;
}

.app-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 600;
}

.app-card-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-store-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-text);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background 0.2s;
}

.app-store-link:hover {
    background: #333;
    color: #fff;
}

.apple-icon {
    width: 14px;
    height: 14px;
}

.app-platform {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .app-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .app-card-icon {
        width: 88px;
        height: 88px;
    }
}
