.landing_intro {
    text-align: center;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2rem;
}

.landing_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.landing_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.landing_card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.landing_card_image {
    width: 72px;
    height: 72px;
    margin-bottom: 1rem;
}

.landing_card_title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.landing_card_desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .landing_grid {
        grid-template-columns: 1fr;
    }
}
