/* Repositories guide page — page-specific redesign on top of guide.css. */

.guide-card-grid--repos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.guide-note {
    margin: 1.1rem 0 0;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: var(--card-bg);
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.guide-note strong {
    color: var(--text);
}

@media (max-width: 860px) {
    .guide-card-grid--repos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .guide-card-grid--repos {
        grid-template-columns: minmax(0, 1fr);
    }
}
