.jaka-shortcuts {
    --jaka-accent: #0f766e;
    --jaka-accent-soft: #ecfdf5;
    --jaka-ink: #172033;
    --jaka-muted: #667085;
    --jaka-border: #e4e7ec;
    position: relative;
    left: 50%;
    width: min(1480px, calc(100vw - 48px));
    max-width: none;
    margin: 0;
    padding: clamp(24px, 4vw, 60px) 24px 72px;
    color: var(--jaka-ink);
    font-family: inherit;
    transform: translateX(-50%);
}

.jaka-shortcuts * {
    box-sizing: border-box;
}

.jaka-shortcuts-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(26px, 5vw, 54px);
    margin-bottom: 28px;
    color: #fff;
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(255,255,255,.18), transparent 33%),
        linear-gradient(135deg, #0f766e, #115e59 60%, #134e4a);
    box-shadow: 0 18px 50px rgba(15, 118, 110, .18);
}

.jaka-shortcuts-kicker {
    display: inline-block;
    margin-bottom: 9px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .82;
}

.jaka-shortcuts-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -.035em;
}

.jaka-shortcuts-hero p {
    max-width: 760px;
    margin: 14px 0 0;
    color: rgba(255,255,255,.84);
    font-size: 19px;
}

.jaka-shortcuts-search {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 760px;
    margin-top: 26px;
    padding: 0 18px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 10px 30px rgba(0,0,0,.14);
}

.jaka-shortcuts-search .dashicons {
    flex: 0 0 auto;
    color: #667085;
}

.jaka-shortcuts-search input {
    width: 100%;
    min-height: 60px;
    padding: 0;
    color: var(--jaka-ink);
    background: transparent;
    border: 0;
    outline: 0;
    box-shadow: none;
    font-size: 20px;
}

.jaka-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(var(--jaka-columns), minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.jaka-shortcuts-category {
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--jaka-border);
    border-radius: 20px;
    box-shadow: 0 8px 26px rgba(16, 24, 40, .06);
}

.jaka-shortcuts-category-title {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 22px 24px;
    background: #f8fafc;
    border-bottom: 1px solid var(--jaka-border);
}

.jaka-shortcuts-category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--jaka-accent-soft);
    border-radius: 11px;
    font-size: 23px;
}

.jaka-shortcuts-category-title h2 {
    min-width: 0;
    flex: 1;
    margin: 0;
    color: var(--jaka-ink);
    font-size: 20px;
    line-height: 1.25;
}

.jaka-shortcuts-count {
    min-width: 30px;
    padding: 5px 9px;
    color: #475467;
    background: #eaecf0;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.jaka-shortcuts-links {
    padding: 15px 16px;
}

.jaka-shortcut-link {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 84px;
    padding: 17px 18px;
    color: var(--jaka-ink);
    border-radius: 12px;
    text-decoration: none !important;
    transition: background .18s ease, transform .18s ease;
}

.jaka-shortcut-link:hover,
.jaka-shortcut-link:focus-visible {
    color: var(--jaka-ink);
    background: #f8fafc;
    transform: translateY(-1px);
    outline: none;
}

.jaka-shortcut-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    overflow: hidden;
    background: #f2f4f7;
    border: 1px solid #eaecf0;
    border-radius: 11px;
}

.jaka-shortcut-icon img {
    width: 31px;
    height: 31px;
    object-fit: contain;
}

.jaka-shortcut-letter {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--jaka-accent);
    font-weight: 800;
}

.jaka-shortcut-content {
    min-width: 0;
    flex: 1;
}

.jaka-shortcut-content strong,
.jaka-shortcut-content small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jaka-shortcut-content strong {
    font-size: 18px;
    line-height: 1.3;
}

.jaka-shortcut-content small {
    margin-top: 3px;
    color: var(--jaka-muted);
    font-size: 14px;
    line-height: 1.35;
}

.jaka-shortcut-arrow {
    flex: 0 0 auto;
    color: #98a2b3;
    font-size: 20px;
    transform: rotate(45deg);
}

.jaka-no-results,
.jaka-shortcuts-notice {
    padding: 44px 22px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--jaka-border);
    border-radius: 20px;
}

.jaka-no-results .dashicons {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    font-size: 44px;
    color: #98a2b3;
}

.jaka-no-results strong,
.jaka-no-results p {
    display: block;
}

.jaka-no-results p {
    margin: 5px 0 0;
    color: var(--jaka-muted);
}

[hidden] {
    display: none !important;
}



.jaka-shortcuts-page .content-area,
.jaka-shortcuts-page .site-content,
.jaka-shortcuts-page .site-main,
.jaka-shortcuts-page .entry-content,
.jaka-shortcuts-page .inside-article,
.jaka-shortcuts-page article,
.jaka-shortcuts-page .wp-block-group__inner-container {
    max-width: none;
    width: 100%;
}

.jaka-shortcuts-page .entry-content > .jaka-shortcuts,
.jaka-shortcuts-page .site-main > .jaka-shortcuts {
    width: 100%;
}

@media (max-width: 1000px) {
    .jaka-shortcuts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .jaka-shortcuts {
        width: calc(100vw - 20px);
        padding-left: 10px;
        padding-right: 10px;
    }

    .jaka-shortcuts-hero {
        border-radius: 18px;
    }

    .jaka-shortcuts-search input {
        min-height: 54px;
        font-size: 16px;
    }

    .jaka-shortcuts-category-title {
        padding: 18px 18px;
    }

    .jaka-shortcut-link {
        min-height: 72px;
        padding: 12px 13px;
    }

    .jaka-shortcut-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }

    .jaka-shortcut-content strong {
        font-size: 16px;
    }

    .jaka-shortcuts-grid {
        grid-template-columns: 1fr;
    }
}

.jaka-shortcuts-page .entry-title,
.jaka-shortcuts-page .wp-block-post-title {
    display: none;
}

.jaka-shortcuts-page .entry-content,
.jaka-shortcuts-page .site-main {
    max-width: none;
}
