/* ==========================================================
   KNOWLEDGE HUB
   ========================================================== */

.hk-shell {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

@media (max-width: 640px) {
    .hk-shell {
        width: calc(100% - 24px);
    }
}

.hk-knowledge-page {
    padding: 0;
}

.hk-knowledge-section {
    margin-top: 80px;
}

.hk-section-head {
    margin-bottom: 32px;
}

.hk-section-head h2{
    margin:12px 0 14px;
    font-size:clamp(2rem,3vw,3rem);
    line-height:1.08;
    font-weight:900;
    letter-spacing:-.04em;
    color:#172033;
}
.hk-section-head p{
    max-width:760px;
    margin:0;
    color:#617086;
    font-size:1.08rem;
    line-height:1.8;
}
/* ==========================================================
   HERO
   ========================================================== */

.hk-knowledge-hero {
    padding: clamp(56px, 8vw, 92px) 0 clamp(42px, 6vw, 64px);
}

.hk-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(23, 114, 51, 0.08);
    color: #177233;
    font-size: 13px;
    font-weight: 700;
}

.hk-knowledge-hero h1 {
    max-width: 820px;
    margin: 20px 0 16px;
    color: #263449;
    font-size: clamp(34px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.hk-knowledge-hero p {
    max-width: 720px;
    margin: 0;
    color: #324158;
    font-size: 18px;
    line-height: 1.7;
}


.hk-knowledge-search {
    width: 100%;
    margin-top: 34px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
}

.hk-knowledge-search input {
    width: 100%;
    min-width: 0;
    height: 60px;
    padding: 0 20px;
    border: 2px solid #1f2937;
    border-radius: 16px;
    background: #ffffff;
    color: #1f2937;
    font-size: 15px;
    box-sizing: border-box;
}

.hk-knowledge-search button {
    height: 60px;
    min-width: 116px;
    padding: 0 24px;
    border: 2px solid #1f2937;
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 640px) {
    .hk-knowledge-search {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hk-knowledge-search input,
    .hk-knowledge-search button {
        width: 100%;
        height: 52px;
    }
}

@media (max-width: 640px) {
    .hk-shell {
        width: calc(100% - 28px);
    }

    .hk-knowledge-hero {
        padding: 48px 0 34px;
    }

    .hk-knowledge-hero h1 {
        max-width: 100%;
        font-size: 32px;
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .hk-knowledge-hero p {
        font-size: 15px;
        line-height: 1.65;
    }



   .hk-knowledge-search button {
        width: auto;
        min-width: 120px;
        height: 52px;
        justify-self: start;
        padding: 0 24px;
        background: #177233;
color: #fff;
border-color: #177233;
    }
}

/* ==========================================================
   TOPIC DISCOVERY BENTO
   ========================================================== */

.hk-knowledge-topic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hk-knowledge-topic-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid #dbe4ea;
    border-radius: 28px;
    background: #ffffff;
    color: #1f2937;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hk-knowledge-topic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(15,23,42,.12);
    border-color: rgba(23,114,51,.25);
}

.hk-topic-card-content {
    display: flex;
flex-direction: column;
height: 100%;
    position: relative;
    z-index: 2;
}

.hk-topic-card-content h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.15;
    color: #172033;
}

.hk-topic-card-content p {
    max-width: 92%;
    margin: 0;
    color: #5f6f86;
    font-size: 14px;
    line-height: 1.6;
}

.hk-topic-card-link {
    margin-top: auto;
padding-top: 18px;
    display: inline-flex;
    margin-top: 18px;
    color: #177233;
    font-size: 14px;
    font-weight: 800;
}

.hk-topic-card-image {
    margin: 22px -22px -22px;
}

.hk-topic-card-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.hk-knowledge-topic-card:nth-child(1) {
    grid-column: span 2;
}

.hk-knowledge-topic-card:nth-child(1) .hk-topic-card-image img {
    height: 230px;
}

@media (max-width: 900px) {
    .hk-knowledge-topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hk-knowledge-topic-card:nth-child(1) {
        grid-column: span 1;
    }
}

@media (max-width: 640px) {
    .hk-knowledge-section {
        margin-top: 54px;
    }

    .hk-knowledge-topic-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 4px 4px 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .hk-knowledge-topic-card {
        flex: 0 0 82%;
        min-height: 330px;
        scroll-snap-align: start;
        border-radius: 24px;
    }

    .hk-topic-card-content h3 {
        font-size: 20px;
    }

    .hk-topic-card-image img {
        height: 170px;
    }
}/* Knowledge Hub spacing polish */
.hk-knowledge-hero {
    padding-bottom: clamp(34px, 5vw, 48px);
}

.hk-knowledge-section {
    margin-top: clamp(54px, 7vw, 72px);
}

/* Editorial topic card polish */
.hk-knowledge-topic-card {
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
}

.hk-topic-card-image img {
    border-radius: 0 0 24px 24px;
}

.hk-knowledge-topic-card:nth-child(1) .hk-topic-card-image img {
    height: 210px;
}

@media (max-width: 640px) {
    .hk-knowledge-section {
        margin-top: 46px;
    }

    .hk-knowledge-topic-card {
        flex-basis: 84%;
        min-height: 340px;
    }

    .hk-topic-card-image {
        margin-top: 18px;
    }

    .hk-topic-card-image img {
        height: 175px;
    }
}
/* Topic bento balance fix */
.hk-knowledge-topic-card:nth-child(1) {
    grid-column: span 1;
}

.hk-knowledge-topic-card:nth-child(1) .hk-topic-card-image img {
    height: 150px;
}

.hk-knowledge-topic-card {
    min-height: 340px;
}
/* ==========================================================
   TOPIC PROGRESS + LOAD MORE
   ========================================================== */

.hk-topic-load-more-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.hk-topic-progress {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.hk-topic-current-count,
.hk-topic-total-count {
    color: #172033;
    font-weight: 700;
}

.hk-topic-load-more {
    appearance: none;
    border: 0;
    border-radius: 999px;

    padding: 14px 22px;

    background: #177233;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.hk-topic-load-more:hover {
    transform: translateY(-2px);

    background: #145f2b;

    box-shadow:
        0 12px 30px rgba(23, 114, 51, 0.18);
}

.hk-topic-load-more:disabled {
    opacity: .7;
    cursor: wait;
    transform: none;
}

@media (max-width: 640px) {

    .hk-topic-load-more-wrap {
        margin-top: 24px;
    }

    .hk-topic-load-more {
        width: 100%;
        max-width: 280px;
    }
}
/* ==========================================================
   FEATURED GUIDES
   ========================================================== */

.hk-featured-guides-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 22px;
}

.hk-featured-guide-primary,
.hk-featured-guide-small {
    overflow: hidden;
    border: 1px solid #dbe4ea;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}

.hk-featured-guide-primary:hover,
.hk-featured-guide-small:hover {
    transform: translateY(-4px);

    border-color: rgba(23,114,51,.25);

    box-shadow:
        0 24px 50px rgba(15,23,42,.10);
}
.hk-featured-guide-primary a,
.hk-featured-guide-small a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.hk-featured-guide-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.hk-featured-guide-body,
.hk-featured-guide-small a {
    padding: 24px;
}

.hk-guide-label {
    display: inline-flex;
    margin-bottom: 12px;
    color: #177233;
    font-size: 13px;
    font-weight: 800;
}

.hk-featured-guide-primary h3,
.hk-featured-guide-small h3 {
    margin: 0 0 12px;
    color: #172033;
    line-height: 1.15;
}

.hk-featured-guide-primary h3 {
    font-size: clamp(28px, 4vw, 42px);
}

.hk-featured-guide-small h3 {
    font-size: 20px;
}

.hk-featured-guide-primary p,
.hk-featured-guide-small p {
    margin: 0;
    color: #5f6f86;
    line-height: 1.65;
}

.hk-guide-link {
    display: inline-flex;
    margin-top: 18px;
    color: #177233;
    font-weight: 800;
}

.hk-featured-guide-list {
    display: grid;
    gap: 18px;
    align-content: start;
}

@media (max-width: 900px) {
    .hk-featured-guides-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hk-featured-guide-image img {
        height: 240px;
    }

    .hk-featured-guide-body,
    .hk-featured-guide-small a {
        padding: 20px;
    }
}
/* ==========================================================
   EXPLORE BY LANGUAGE
   ========================================================== */

.hk-language-discovery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.hk-language-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid #dbe4ea;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(23, 114, 51, .08), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
    color: #172033;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hk-language-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 114, 51, .25);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .12);
}

.hk-language-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: rgba(23, 114, 51, .1);
    color: #177233;
    font-size: 17px;
    font-weight: 900;
}

.hk-language-card-kicker {
    margin-bottom: 8px;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hk-language-card h3 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 26px;
    line-height: 1.15;
}

.hk-language-card p {
    margin: 0;
    color: #5f6f86;
    font-size: 14px;
    line-height: 1.65;
}

.hk-language-card-meta {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(23, 114, 51, .08);
    color: #177233;
    font-size: 12px;
    font-weight: 800;
}

.hk-language-card-link {
    margin-top: auto;
    padding-top: 20px;
    color: #177233;
    font-size: 14px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .hk-language-discovery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hk-language-discovery-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        padding: 4px 4px 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .hk-language-card {
        flex: 0 0 82%;
        min-height: 280px;
        scroll-snap-align: start;
        border-radius: 24px;
    }

    .hk-language-discovery-grid::-webkit-scrollbar {
        display: none;
    }
}
/* ==========================================================
   EXPLORE BY LANGUAGE — COMPACT POLISH
   ========================================================== */

.hk-language-card {
    min-height: 210px;
    padding: 24px;
}

.hk-language-card-icon {
    display: none;
}

.hk-language-card-kicker {
    margin-bottom: 6px;
}

.hk-language-card h3 {
    margin-bottom: 12px;
    font-size: 30px;
}

.hk-language-card p {
    font-size: 13px;
    line-height: 1.55;
}

.hk-language-card-meta {
    margin-top: 16px;
    color: #5f6f86;
    background: transparent;
    padding: 0;
}

.hk-language-card-link {
    padding-top: 16px;
}

@media (max-width: 640px) {
    .hk-language-card {
        min-height: 230px;
    }
}

/* Language cards tighter desktop rhythm */
@media (min-width: 641px) {
    .hk-language-card {
        min-height: 220px;
        padding: 24px 26px;
    }

    .hk-language-card h3 {
        font-size: 28px;
    }

    .hk-language-card-meta {
        margin-top: 14px;
    }

    .hk-language-card-link {
        padding-top: 14px;
    }
}
/* ==========================================================
   KNOWLEDGE HUB ECOSYSTEM CTA
   ========================================================== */

.hk-knowledge-ecosystem-cta {
    margin-top: clamp(56px, 7vw, 84px);
}

.hk-ecosystem-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.hk-ecosystem-cta-card {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    border-radius: 34px;
    color: #172033;
    text-decoration: none;
    border: 1px solid rgba(219, 228, 234, .9);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hk-ecosystem-cta-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 114, 51, .24);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .12);
}

.hk-ecosystem-cta-vent {
    background:
        radial-gradient(circle at 86% 18%, rgba(23, 114, 51, .12), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f8fcfa 100%);
}

.hk-ecosystem-cta-pledge {
    background:
        radial-gradient(circle at 88% 22%, rgba(255, 184, 77, .22), transparent 34%),
        linear-gradient(135deg, #fffdf8 0%, #ffffff 100%);
}

.hk-ecosystem-cta-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(23, 114, 51, .08);
    color: #177233;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hk-ecosystem-cta-card h2 {
    max-width: 560px;
    margin: 0 0 12px;
    color: #172033;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hk-ecosystem-cta-card p {
    max-width: 560px;
    margin: 0;
    color: #5f6f86;
    font-size: 15px;
    line-height: 1.7;
}

.hk-ecosystem-cta-link {
    display: inline-flex;
    width: fit-content;
    margin-top: 24px;
    color: #177233;
    font-size: 15px;
    font-weight: 900;
}

@media (max-width: 760px) {
    .hk-ecosystem-cta-grid {
        grid-template-columns: 1fr;
    }

    .hk-ecosystem-cta-card {
        min-height: 260px;
        padding: 26px;
        border-radius: 28px;
    }
}
/* ==========================================================
   KNOWLEDGE HUB HELPLINE CTA
   ========================================================== */

.hk-knowledge-help-cta {
    margin-top: clamp(42px, 6vw, 70px);
}

.hk-help-cta-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 330px;
    border: 1px solid rgba(219, 228, 234, .9);
    border-radius: 34px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fcfa 54%, #177233 54%, #177233 100%);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.hk-help-cta-copy {
    padding: clamp(30px, 5vw, 52px);
}

.hk-help-cta-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(23, 114, 51, .08);
    color: #177233;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hk-help-cta-card h2 {
    max-width: 620px;
    margin: 0 0 16px;
    color: #172033;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.hk-help-cta-card p {
    max-width: 640px;
    margin: 0;
    color: #324158;
    font-size: 16px;
    line-height: 1.75;
}

.hk-help-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hk-help-cta-primary,
.hk-help-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
}

.hk-help-cta-primary {
    background: #177233;
    color: #ffffff;
}

.hk-help-cta-secondary {
    border: 1px solid #dbe4ea;
    background: #ffffff;
    color: #177233;
}

.hk-help-cta-visual {
    position: relative;
    display: grid;
    place-content: center;
    justify-items: center;
    padding: 34px;
    color: #ffffff;
    text-align: center;
}

.hk-help-cta-visual::before {
    content: "";
    position: absolute;
    inset: 22px;
    background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: .7;
}

.hk-help-cta-heart {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #177233;
    font-size: 58px;
    line-height: 1;
}

.hk-help-cta-visual strong,
.hk-help-cta-visual small {
    position: relative;
    z-index: 1;
}

.hk-help-cta-visual strong {
    display: block;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.hk-help-cta-visual small {
    margin-top: 12px;
    font-size: 15px;
    font-weight: 800;
    opacity: .9;
}

@media (max-width: 760px) {
    .hk-help-cta-card {
        grid-template-columns: 1fr;
        background:
            linear-gradient(180deg, #ffffff 0%, #f8fcfa 58%, #177233 58%, #177233 100%);
    }

    .hk-help-cta-copy {
        padding: 28px;
    }

    .hk-help-cta-card h2 {
        font-size: 34px;
    }

    .hk-help-cta-card p {
        font-size: 15px;
    }

    .hk-help-cta-primary,
    .hk-help-cta-secondary {
        width: 100%;
    }

    .hk-help-cta-visual {
        min-height: 230px;
    }
}
/* ==========================================================
   LATEST ARTICLES DISCOVERY SHELF
   ========================================================== */

.hk-latest-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.hk-latest-view-all {
    color: #177233;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.hk-latest-article-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.hk-latest-article-card {
    overflow: hidden;
    border: 1px solid #dbe4ea;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hk-latest-article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23, 114, 51, .25);
    box-shadow: 0 28px 70px rgba(15, 23, 42, .11);
}

.hk-latest-article-card a {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.hk-latest-article-image {
    background: #f3f7f5;
}

.hk-latest-article-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.hk-latest-article-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.hk-latest-article-label {
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(23, 114, 51, .08);
    color: #177233;
    font-size: 12px;
    font-weight: 900;
}

.hk-latest-article-body h3 {
    margin: 0 0 10px;
    color: #172033;
    font-size: 22px;
    line-height: 1.2;
}

.hk-latest-article-body p {
    margin: 0;
    color: #5f6f86;
    font-size: 14px;
    line-height: 1.65;
}

.hk-latest-article-link {
    margin-top: auto;
    padding-top: 22px;
    color: #177233;
    font-size: 14px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .hk-latest-article-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hk-latest-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hk-latest-article-rail {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 4px 4px 18px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .hk-latest-article-card {
        flex: 0 0 84%;
        scroll-snap-align: start;
    }

    .hk-latest-article-image img {
        height: 210px;
    }

    .hk-latest-article-rail::-webkit-scrollbar {
        display: none;
    }
}
.hk-latest-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.hk-latest-load-more {
    min-height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: #177233;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.hk-latest-load-more:hover {
    background: #145f2b;
}

.hk-latest-load-more:disabled {
    opacity: .75;
    cursor: wait;
}
.hk-section-kicker{

    display:inline-flex;
    align-items:center;

    margin-bottom:10px;

    padding:8px 14px;

    border-radius:999px;

    background:#edf8f1;

    color:#177233;

    font-size:.72rem;

    font-weight:800;

    letter-spacing:.12em;

    text-transform:uppercase;
}
.hk-language-card.is-hidden-language {
    display: none;
}

.hk-language-load-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.hk-language-load-more {
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid rgba(23, 114, 51, .45);
    border-radius: 999px;
    background: #ffffff;
    color: #177233;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.hk-language-load-more:hover {
    background: #177233;
    color: #ffffff;
}
/* ==========================================================
   KNOWLEDGE HUB FINAL MICRO POLISH
   ========================================================== */

.hk-topic-card-link,
.hk-language-card-link,
.hk-latest-article-link,
.hk-ecosystem-cta-link {
    transition: transform .22s ease;
}

.hk-knowledge-topic-card:hover .hk-topic-card-link,
.hk-language-card:hover .hk-language-card-link,
.hk-latest-article-card:hover .hk-latest-article-link,
.hk-ecosystem-cta-card:hover .hk-ecosystem-cta-link {
    transform: translateX(4px);
}

.hk-latest-load-more,
.hk-language-load-more,
.hk-topic-load-more {
    box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
}