/* Rázcestník jazykov na holej hub doméne (heyfox.eu). */
* { box-sizing: border-box; margin: 0; }

body {
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #f6f7f9;
    color: #1c2430;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.hub { max-width: 720px; width: 100%; text-align: center; }

.hub-logo { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }

.hub-lead { margin: 8px 0 28px; color: #5a6572; }

.hub-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.hub-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #e2e6eb;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
}

.hub-grid a:hover { border-color: #1c2430; }

.hub-grid img { border-radius: 3px; }

.hub-code {
    font-size: 0.75rem;
    font-weight: 700;
    width: 24px;
}
