.likurstat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.tool-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.2s;
}
.tool-card:hover           { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.tool-card__link           { text-decoration: none; color: inherit; display: block; }
.tool-card__body           { padding: 1.25rem; }
.tool-card__title          { font-size: 1.125rem; margin: 0 0 0.5rem; }
.tool-card__type {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}

/* ── Navigation: centered menu + lang switcher on the right ───────────── */

/* GP pushes #site-navigation right via margin-left:auto; override to fill space */
body.nav-float-right #site-navigation {
    margin-left: 0;
    flex: 1;
}

/* GP uses justify-content:space-between inside nav; override to center */
body.nav-float-right .main-navigation .inside-navigation {
    justify-content: center;
}

/* Lang switcher: absolute to right edge of the nav bar */
.main-navigation .likurstat-lang-switcher {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
}

.likurstat-lang-switcher .lang-item {
    list-style: none;
}

.likurstat-lang-switcher .lang-item a,
.likurstat-lang-switcher .lang-item span {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.likurstat-lang-switcher .lang-item a:hover {
    opacity: 1;
}

.likurstat-lang-switcher .current-lang a,
.likurstat-lang-switcher .current-lang span {
    opacity: 1;
    background: rgba(0, 0, 0, 0.08);
}

/* Mobile: restore normal flow */
@media (max-width: 768px) {
    body.nav-float-right #site-navigation {
        flex: none;
    }
    .main-navigation .likurstat-lang-switcher {
        position: static;
        transform: none;
    }
}
