/* =========================================================
   AGRIMPEX KNOWLEDGE CENTER — MAIN PAGE
   File: assets/css/layout/knowledge-center/kc-page.css
   Template: templates/page-knowledge-center.php
   ========================================================= */

/* =========================================================
   01. PAGE WRAPPER / TOKENS
   ========================================================= */

.agr-kc-hub {
    --kc-hub-green-main: var(--kc-green-main, #4a8a4a);
    --kc-hub-green-accent: var(--kc-green-accent, #26ad21);
    --kc-hub-green-dark: var(--kc-green-dark, #1a301a);
    --kc-hub-bg-light: var(--kc-bg-light, #f0f0f0);
    --kc-hub-grey: var(--kc-grey, #cccccc);
    --kc-hub-black: var(--kc-black, #000000);
    --kc-hub-white: var(--kc-white, #ffffff);
    --kc-hub-border: rgba(26, 48, 26, 0.08);
    --kc-hub-border-strong: rgba(26, 48, 26, 0.14);
    --kc-hub-shadow-soft: 0 18px 44px rgba(26, 48, 26, 0.07);
    --kc-hub-shadow-card: 0 24px 64px rgba(26, 48, 26, 0.10);
    --kc-hub-container: var(--kc-container-max-width, 1180px);
    --kc-hub-container-wide: var(--kc-container-wide, 1440px);
    --kc-hub-heading-font: var(--kc-font-heading, Inter, Arial, sans-serif);
    --kc-hub-body-font: var(--kc-font-body, Lato, Arial, sans-serif);

    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--kc-hub-bg-light);
    color: var(--kc-hub-black);
    font-family: var(--kc-hub-body-font);
}

.agr-kc-hub *,
.agr-kc-hub *::before,
.agr-kc-hub *::after {
    box-sizing: border-box;
}

.agr-kc-hub__article {
    margin: 0;
}

.agr-kc-hub img {
    max-width: 100%;
}

.agr-kc-hub a {
    color: inherit;
}

.agr-kc-hub svg {
    display: block;
}

/* =========================================================
   02. SHARED BUTTONS
   ========================================================= */

.agr-kc-hub-button {
    position: relative;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 22px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 4px;
    font-family: var(--kc-hub-heading-font);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition:
        color 0.24s ease,
        background-color 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        transform 0.24s ease;
}

.agr-kc-hub-button::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 30%,
        transparent 58%
    );
    transform: translateX(-120%);
    transition: transform 0.55s ease;
}

.agr-kc-hub-button:hover {
    transform: translateY(-2px);
}

.agr-kc-hub-button:hover::before {
    transform: translateX(120%);
}

.agr-kc-hub-button:focus-visible {
    outline: 3px solid rgba(38, 173, 33, 0.34);
    outline-offset: 4px;
}

.agr-kc-hub-button svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.agr-kc-hub-button--primary {
    color: var(--kc-hub-white);
    border-color: rgba(38, 173, 33, 0.72);
    background: var(--kc-hub-green-accent);
    box-shadow: 0 14px 30px rgba(38, 173, 33, 0.22);
}

.agr-kc-hub-button--primary:hover {
    color: var(--kc-hub-white);
    border-color: var(--kc-hub-green-main);
    background: var(--kc-hub-green-main);
    box-shadow: 0 18px 34px rgba(38, 173, 33, 0.26);
}

.agr-kc-hub-button--secondary {
    color: var(--kc-hub-white);
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.065);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.agr-kc-hub-button--secondary:hover {
    color: var(--kc-hub-green-dark);
    border-color: var(--kc-hub-white);
    background: var(--kc-hub-white);
}

.agr-kc-hub-button--dark {
    color: var(--kc-hub-white);
    border-color: rgba(255, 255, 255, 0.18);
    background: var(--kc-hub-green-dark);
    box-shadow: 0 14px 32px rgba(26, 48, 26, 0.20);
}

.agr-kc-hub-button--dark:hover {
    color: var(--kc-hub-white);
    border-color: var(--kc-hub-green-accent);
    background: var(--kc-hub-green-accent);
}

/* =========================================================
   03. HERO
   ========================================================= */

.agr-kc-hub-hero {
    position: relative;
    z-index: 4;
    min-height: 760px;
    padding: 34px 42px 0;
    overflow: hidden;
    color: var(--kc-hub-white);
    background:
        radial-gradient(circle at 14% 18%, rgba(38, 173, 33, 0.18), transparent 27rem),
        radial-gradient(circle at 82% 32%, rgba(255, 255, 255, 0.08), transparent 22rem),
        linear-gradient(135deg, #111811 0%, #1a301a 52%, #0d150e 100%);
}

.agr-kc-hub-hero--has-image {
    background:
        linear-gradient(
            90deg,
            rgba(10, 16, 11, 0.95) 0%,
            rgba(26, 48, 26, 0.88) 47%,
            rgba(10, 16, 11, 0.77) 100%
        ),
        var(--agr-kc-hub-hero-image),
        linear-gradient(135deg, #111811 0%, #1a301a 100%);
    background-position:
        center,
        var(--agr-kc-hub-hero-position, center center),
        center;
    background-repeat: no-repeat;
    background-size: cover;
}

.agr-kc-hub-hero--no-image {
    background:
        radial-gradient(circle at 14% 18%, rgba(38, 173, 33, 0.18), transparent 27rem),
        radial-gradient(circle at 82% 32%, rgba(255, 255, 255, 0.08), transparent 22rem),
        linear-gradient(135deg, #111811 0%, #1a301a 52%, #0d150e 100%);
}

.agr-kc-hub-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: 0.22;
    -webkit-mask-image: radial-gradient(circle at 72% 40%, #000 0%, rgba(0, 0, 0, 0.6) 45%, transparent 78%);
    mask-image: radial-gradient(circle at 72% 40%, #000 0%, rgba(0, 0, 0, 0.6) 45%, transparent 78%);
}

.agr-kc-hub-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), transparent 42%, rgba(0, 0, 0, 0.18));
}

.agr-kc-hub-hero__background {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.agr-kc-hub-hero__shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
}

.agr-kc-hub-hero__shape--one {
    top: 78px;
    right: 8%;
    width: 310px;
    height: 310px;
    transform: rotate(8deg);
}

.agr-kc-hub-hero__shape--two {
    bottom: 70px;
    left: -80px;
    width: 290px;
    height: 210px;
    opacity: 0.68;
    transform: rotate(-11deg);
}

.agr-kc-hub-hero__line {
    position: absolute;
    right: -10%;
    left: -10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), rgba(38, 173, 33, 0.44), transparent);
}

.agr-kc-hub-hero__line--one {
    top: 188px;
    transform: rotate(-2.1deg);
}

.agr-kc-hub-hero__line--two {
    bottom: 142px;
    opacity: 0.65;
    transform: rotate(2.5deg);
}

.agr-kc-hub-hero__inner {
    position: relative;
    z-index: 5;
    max-width: var(--kc-hub-container-wide);
    min-height: 726px;
    margin: 0 auto;
    padding: 0 48px 98px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 28px 74px rgba(0, 0, 0, 0.17);
}

.agr-kc-hub-hero__inner::before {
    content: "";
    position: absolute;
    inset: 8px;
    z-index: -1;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.045);
}

.agr-kc-hub-hero__topbar {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 104px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: var(--kc-hub-heading-font);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-hub-hero__topbar::after {
    content: "";
    position: absolute;
    right: -48px;
    bottom: -1px;
    left: -48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), rgba(38, 173, 33, 0.34), transparent);
}

.agr-kc-hub-hero__topbar > span {
    justify-self: start;
    color: rgba(255, 255, 255, 0.72);
}

.agr-kc-hub-hero__topbar > strong {
    justify-self: center;
    color: rgba(255, 255, 255, 0.94);
}

.agr-kc-hub-hero__topbar > span:last-child {
    justify-self: end;
    color: var(--kc-hub-green-accent);
}

.agr-kc-hub-hero__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(400px, 0.72fr);
    gap: clamp(48px, 6vw, 96px);
    align-items: center;
    padding-top: 64px;
}

.agr-kc-hub-hero__content {
    min-width: 0;
    max-width: 760px;
}

.agr-kc-hub-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin-bottom: 24px;
    padding: 8px 13px;
    color: var(--kc-hub-green-accent);
    border: 1px solid rgba(38, 173, 33, 0.34);
    background: rgba(38, 173, 33, 0.08);
    font-family: var(--kc-hub-heading-font);
    font-size: 11px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.agr-kc-hub-hero__title {
    max-width: 850px;
    margin: 0;
    color: var(--kc-hub-white);
    font-family: var(--kc-hub-heading-font);
    font-size: clamp(50px, 5.5vw, 50px);
    font-weight: 850;
    line-height: 0.98;
    letter-spacing: -0.052em;
    text-wrap: balance;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 36px rgba(0, 0, 0, 0.32);
}

.agr-kc-hub-hero__description {
    max-width: 700px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    line-height: 1.72;
}

.agr-kc-hub-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

/* =========================================================
   04. HERO DASHBOARD
   ========================================================= */

.agr-kc-hub-hero__dashboard {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 470px;
}

.agr-kc-hub-hero__dashboard::before,
.agr-kc-hub-hero__dashboard::after {
    content: "";
    position: absolute;
    width: min(100%, 520px);
    min-height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.agr-kc-hub-hero__dashboard::before {
    opacity: 0.46;
    transform: translate(32px, -30px) rotate(6deg);
}

.agr-kc-hub-hero__dashboard::after {
    opacity: 0.62;
    transform: translate(16px, -15px) rotate(3deg);
}

.agr-kc-hub-hero__dashboard-window {
    position: relative;
    z-index: 3;
    width: min(100%, 520px);
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background:
        radial-gradient(circle at 78% 18%, rgba(38, 173, 33, 0.25), transparent 16rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055));
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 28px 76px rgba(0, 0, 0, 0.28);
}

.agr-kc-hub-hero__dashboard-window::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.16;
}

.agr-kc-hub-hero__dashboard-bar {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 8px;
    align-items: center;
    height: 52px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.06);
}

.agr-kc-hub-hero__dashboard-bar span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
}

.agr-kc-hub-hero__dashboard-bar span:first-child {
    background: var(--kc-hub-green-accent);
}

.agr-kc-hub-hero__dashboard-body {
    position: relative;
    z-index: 2;
    padding: 34px;
}

.agr-kc-hub-hero__dashboard-label {
    display: block;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--kc-hub-heading-font);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.agr-kc-hub-hero__dashboard-title {
    display: block;
    max-width: 350px;
    color: var(--kc-hub-white);
    font-family: var(--kc-hub-heading-font);
    font-size: clamp(28px, 3vw, 28px);
    font-weight: 850;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.agr-kc-hub-hero__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 34px 0 0;
}

.agr-kc-hub-hero__stats > div {
    position: relative;
    min-width: 0;
    min-height: 112px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.055);
}

.agr-kc-hub-hero__stats > div::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kc-hub-green-accent), rgba(38, 173, 33, 0));
}

.agr-kc-hub-hero__stats dt {
    color: rgba(255, 255, 255, 0.62);
    font-family: var(--kc-hub-heading-font);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.agr-kc-hub-hero__stats dd {
    margin: 14px 0 0;
    color: var(--kc-hub-white);
    font-family: var(--kc-hub-heading-font);
    font-size: 36px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

/* =========================================================
   05. SHARED SECTIONS / HEADINGS
   ========================================================= */

.agr-kc-hub-section {
    position: relative;
    width: 100%;
    padding: 104px 42px;
    overflow: hidden;
    background: var(--kc-hub-bg-light);
}

.agr-kc-hub-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(26, 48, 26, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, rgba(26, 48, 26, 0.02) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.26;
    -webkit-mask-image: radial-gradient(circle at 50% 38%, #000 0%, rgba(0, 0, 0, 0.42) 44%, transparent 80%);
    mask-image: radial-gradient(circle at 50% 38%, #000 0%, rgba(0, 0, 0, 0.42) 44%, transparent 80%);
}

.agr-kc-hub-section__inner {
    position: relative;
    z-index: 1;
    max-width: var(--kc-hub-container);
    margin: 0 auto;
}

.agr-kc-hub-section__inner--narrow {
    max-width: 900px;
}

.agr-kc-hub-heading {
    max-width: 820px;
    margin: 0 0 48px;
}

.agr-kc-hub-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.62fr);
    gap: 56px;
    align-items: end;
    max-width: none;
}

.agr-kc-hub-heading__eyebrow,
.agr-kc-hub-featured__eyebrow,
.agr-kc-hub-final-cta__eyebrow {
    display: block;
    margin: 0 0 18px;
    color: var(--kc-hub-green-main);
    font-family: var(--kc-hub-heading-font);
    font-size: 12px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-hub-heading__title {
    max-width: 780px;
    margin: 0;
    color: var(--kc-hub-black);
    font-family: var(--kc-hub-heading-font);
    font-size: clamp(38px, 4.5vw, 50px);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.agr-kc-hub-heading__description,
.agr-kc-hub-heading__aside p {
    max-width: 540px;
    margin: 0;
    color: rgba(0, 0, 0, 0.62);
    font-size: 16px;
    line-height: 1.72;
}

.agr-kc-hub-heading__aside {
    display: grid;
    gap: 22px;
    justify-items: start;
}

.agr-kc-hub-heading__aside > a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--kc-hub-green-dark);
    font-family: var(--kc-hub-heading-font);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.agr-kc-hub-heading__aside > a svg {
    width: 18px;
    height: 18px;
    color: var(--kc-hub-green-accent);
    transition: transform 0.22s ease;
}

.agr-kc-hub-heading__aside > a:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   06. CONTENT TYPE CARDS
   ========================================================= */

.agr-kc-hub-section--types {
    background: linear-gradient(180deg, #f7f7f7 0%, var(--kc-hub-bg-light) 100%);
    border-bottom: 1px solid var(--kc-hub-border);
}

.agr-kc-hub-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.agr-kc-hub-type-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 390px;
    padding: 38px;
    overflow: hidden;
    color: var(--kc-hub-white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background:
        radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.12), transparent 18rem),
        linear-gradient(145deg, var(--kc-hub-green-main), #3d773d 58%, var(--kc-hub-green-dark));
    box-shadow: var(--kc-hub-shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.agr-kc-hub-type-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.18;
}

.agr-kc-hub-type-card::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: rotate(12deg);
}

.agr-kc-hub-type-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(26, 48, 26, 0.18);
}

.agr-kc-hub-type-card--issues,
.agr-kc-hub-type-card--cases {
    background:
        radial-gradient(circle at 88% 14%, rgba(38, 173, 33, 0.20), transparent 18rem),
        linear-gradient(145deg, #243e24, var(--kc-hub-green-dark) 58%, #0f180f);
}

.agr-kc-hub-type-card--newsletters {
    background:
        radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.10), transparent 17rem),
        linear-gradient(145deg, #548f54, var(--kc-hub-green-main) 48%, #244224);
}

.agr-kc-hub-type-card__number {
    position: absolute;
    top: 18px;
    right: 28px;
    color: rgba(255, 255, 255, 0.10);
    font-family: var(--kc-hub-heading-font);
    font-size: 112px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
}

.agr-kc-hub-type-card__eyebrow {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 20px;
    color: var(--kc-hub-green-accent);
    font-family: var(--kc-hub-heading-font);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.agr-kc-hub-type-card h3 {
    position: relative;
    z-index: 2;
    max-width: 420px;
    margin: 0;
    color: var(--kc-hub-white);
    font-family: var(--kc-hub-heading-font);
    font-size: clamp(34px, 3vw, 48px);
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.045em;
}

.agr-kc-hub-type-card > p {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.68;
}

.agr-kc-hub-type-card > small {
    position: relative;
    z-index: 2;
    display: block;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--kc-hub-heading-font);
    font-size: 11px;
    font-weight: 750;
    line-height: 1.5;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.agr-kc-hub-type-card__footer {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 32px;
}

.agr-kc-hub-type-card__footer > span {
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--kc-hub-heading-font);
    font-size: 12px;
    font-weight: 800;
}

.agr-kc-hub-type-card__footer a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--kc-hub-white);
    font-family: var(--kc-hub-heading-font);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.agr-kc-hub-type-card__footer a svg {
    width: 19px;
    height: 19px;
    color: var(--kc-hub-green-accent);
    transition: transform 0.22s ease;
}

.agr-kc-hub-type-card__footer a:hover svg {
    transform: translateX(4px);
}

/* =========================================================
   07. GENERIC CONTENT GRIDS / CARDS
   ========================================================= */

.agr-kc-hub-grid {
    display: grid;
    gap: 22px;
}

.agr-kc-hub-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agr-kc-hub-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agr-kc-hub-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--kc-hub-border);
    border-radius: 12px;
    background: var(--kc-hub-white);
    box-shadow: var(--kc-hub-shadow-soft);
    transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.agr-kc-hub-card:hover {
    border-color: rgba(74, 138, 74, 0.20);
    box-shadow: var(--kc-hub-shadow-card);
    transform: translateY(-5px);
}

.agr-kc-hub-card__media {
    position: relative;
    display: block;
    min-height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(74, 138, 74, 0.22), rgba(26, 48, 26, 0.95));
    text-decoration: none;
}

.agr-kc-hub-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 44%, rgba(10, 16, 11, 0.46) 100%);
}

.agr-kc-hub-card__image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.agr-kc-hub-card:hover .agr-kc-hub-card__image:not(.agr-kc-hub-card__image--placeholder) {
    transform: scale(1.045);
}

.agr-kc-hub-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 220px;
    padding: 28px;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 82% 18%, rgba(38, 173, 33, 0.24), transparent 13rem),
        linear-gradient(145deg, #355c35, var(--kc-hub-green-dark));
    font-family: var(--kc-hub-heading-font);
    font-size: 19px;
    font-weight: 850;
    text-align: center;
}

.agr-kc-hub-card__type {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 11px;
    color: var(--kc-hub-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(26, 48, 26, 0.72);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-family: var(--kc-hub-heading-font);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.agr-kc-hub-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 26px;
}

.agr-kc-hub-card__date {
    display: block;
    margin-bottom: 13px;
    color: var(--kc-hub-green-main);
    font-family: var(--kc-hub-heading-font);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.045em;
    text-transform: uppercase;
}

.agr-kc-hub-card__title {
    margin: 0;
    color: var(--kc-hub-black);
    font-family: var(--kc-hub-heading-font);
    font-size: 23px;
    font-weight: 850;
    line-height: 1.13;
    letter-spacing: -0.032em;
}

.agr-kc-hub-card__title a {
    text-decoration: none;
}

.agr-kc-hub-card__title a:hover {
    color: var(--kc-hub-green-main);
}

.agr-kc-hub-card__excerpt {
    margin: 18px 0 0;
    color: rgba(0, 0, 0, 0.62);
    font-size: 15px;
    line-height: 1.65;
}

.agr-kc-hub-card__link {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    padding-top: 24px;
    color: var(--kc-hub-green-dark);
    font-family: var(--kc-hub-heading-font);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.agr-kc-hub-card__link svg {
    width: 18px;
    height: 18px;
    color: var(--kc-hub-green-accent);
    transition: transform 0.22s ease;
}

.agr-kc-hub-card__link:hover svg {
    transform: translateX(4px);
}

.agr-kc-hub-section--latest {
    background: #ffffff;
}

.agr-kc-hub-section--cases {
    background: linear-gradient(180deg, #f7f7f7 0%, var(--kc-hub-bg-light) 100%);
}

/* =========================================================
   08. FEATURED RESOURCE
   ========================================================= */

.agr-kc-hub-section--featured {
    padding-top: 80px;
    padding-bottom: 80px;
    background:
        radial-gradient(circle at 14% 18%, rgba(74, 138, 74, 0.10), transparent 24rem),
        linear-gradient(135deg, #101810 0%, var(--kc-hub-green-dark) 100%);
}

.agr-kc-hub-section--featured::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    opacity: 0.22;
}

.agr-kc-hub-featured {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.88fr);
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

.agr-kc-hub-featured__media {
    position: relative;
    display: block;
    min-height: 500px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(74, 138, 74, 0.38), rgba(26, 48, 26, 0.95));
}

.agr-kc-hub-featured__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 44%, rgba(16, 24, 16, 0.46) 100%);
    pointer-events: none;
}

.agr-kc-hub-featured__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.agr-kc-hub-featured:hover .agr-kc-hub-featured__image:not(.agr-kc-hub-featured__image--placeholder) {
    transform: scale(1.035);
}

.agr-kc-hub-featured__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 40px;
    color: rgba(255, 255, 255, 0.8);
    background:
        radial-gradient(circle at 70% 24%, rgba(38, 173, 33, 0.26), transparent 16rem),
        linear-gradient(145deg, #335833, #111a11);
    font-family: var(--kc-hub-heading-font);
    font-size: 26px;
    font-weight: 850;
    text-align: center;
}

.agr-kc-hub-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(42px, 5vw, 72px);
    color: var(--kc-hub-white);
}

.agr-kc-hub-featured__eyebrow {
    color: var(--kc-hub-green-accent);
}

.agr-kc-hub-featured__type {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    margin-bottom: 20px;
    padding: 0 11px;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.055);
    font-family: var(--kc-hub-heading-font);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.agr-kc-hub-featured__content h2 {
    max-width: 620px;
    margin: 0;
    color: var(--kc-hub-white);
    font-family: var(--kc-hub-heading-font);
    font-size: clamp(38px, 4.2vw, 38px);
    font-weight: 850;
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.agr-kc-hub-featured__content > p {
    max-width: 590px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.72;
}

.agr-kc-hub-featured__content .agr-kc-hub-button {
    width: fit-content;
    margin-top: 30px;
}

/* =========================================================
   09. ARTICLES EDITORIAL LAYOUT
   ========================================================= */

.agr-kc-hub-section--articles {
    background: #ffffff;
}

.agr-kc-hub-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
    grid-template-rows: repeat(2, minmax(0, auto));
    gap: 22px;
}

.agr-kc-hub-card--lead {
    grid-row: 1 / span 2;
}

.agr-kc-hub-card--lead .agr-kc-hub-card__media,
.agr-kc-hub-card--lead .agr-kc-hub-card__image,
.agr-kc-hub-card--lead .agr-kc-hub-card__image--placeholder {
    min-height: 390px;
    height: 390px;
}

.agr-kc-hub-card--lead .agr-kc-hub-card__body {
    padding: 32px;
}

.agr-kc-hub-card--lead .agr-kc-hub-card__title {
    font-size: clamp(30px, 3vw, 38px);
}

.agr-kc-hub-card--compact {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    min-height: 220px;
}

.agr-kc-hub-card--compact .agr-kc-hub-card__media,
.agr-kc-hub-card--compact .agr-kc-hub-card__image,
.agr-kc-hub-card--compact .agr-kc-hub-card__image--placeholder {
    min-height: 220px;
    height: 100%;
}

.agr-kc-hub-card--compact .agr-kc-hub-card__body {
    padding: 24px;
}

.agr-kc-hub-card--compact .agr-kc-hub-card__title {
    font-size: 21px;
}

.agr-kc-hub-card--compact .agr-kc-hub-card__excerpt {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* =========================================================
   10. PUBLICATIONS
   ========================================================= */

.agr-kc-hub-section--publications {
    background:
        radial-gradient(circle at 82% 18%, rgba(74, 138, 74, 0.09), transparent 24rem),
        linear-gradient(180deg, #f7f7f7 0%, var(--kc-hub-bg-light) 100%);
}

.agr-kc-hub-publications {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.agr-kc-hub-publication {
    display: grid;
    grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.25fr);
    min-height: 420px;
    overflow: hidden;
    border: 1px solid var(--kc-hub-border);
    border-radius: 12px;
    background: var(--kc-hub-white);
    box-shadow: var(--kc-hub-shadow-card);
}

.agr-kc-hub-publication__media {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    background: linear-gradient(145deg, rgba(74, 138, 74, 0.26), rgba(26, 48, 26, 0.94));
}

.agr-kc-hub-publication__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 45%, rgba(26, 48, 26, 0.20));
}

.agr-kc-hub-publication__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center top;
}

.agr-kc-hub-publication__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 26px;
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 78% 16%, rgba(38, 173, 33, 0.26), transparent 14rem),
        linear-gradient(145deg, #365f36, var(--kc-hub-green-dark));
    font-family: var(--kc-hub-heading-font);
    font-size: 20px;
    font-weight: 850;
    text-align: center;
}

.agr-kc-hub-publication__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 38px;
}

.agr-kc-hub-publication__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: var(--kc-hub-green-main);
    font-family: var(--kc-hub-heading-font);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.agr-kc-hub-publication__number {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    margin-bottom: 20px;
    padding: 0 11px;
    color: var(--kc-hub-green-dark);
    border: 1px solid rgba(74, 138, 74, 0.18);
    background: rgba(74, 138, 74, 0.08);
    font-family: var(--kc-hub-heading-font);
    font-size: 11px;
    font-weight: 850;
}

.agr-kc-hub-publication__body h3 {
    margin: 0;
    color: var(--kc-hub-black);
    font-family: var(--kc-hub-heading-font);
    font-size: clamp(27px, 2.8vw, 38px);
    font-weight: 850;
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.agr-kc-hub-publication__body > p {
    margin: 22px 0 0;
    color: rgba(0, 0, 0, 0.62);
    font-size: 15px;
    line-height: 1.68;
}

.agr-kc-hub-publication__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
}

.agr-kc-hub-publication__actions a {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--kc-hub-green-dark);
    font-family: var(--kc-hub-heading-font);
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.agr-kc-hub-publication__actions a:first-child {
    min-height: 44px;
    padding: 0 16px;
    color: var(--kc-hub-white);
    border: 1px solid var(--kc-hub-green-main);
    background: var(--kc-hub-green-main);
}

.agr-kc-hub-publication__actions a:first-child:hover {
    border-color: var(--kc-hub-green-accent);
    background: var(--kc-hub-green-accent);
}

.agr-kc-hub-publication__actions svg {
    width: 17px;
    height: 17px;
}

/* =========================================================
   11. TOPICS
   ========================================================= */

.agr-kc-hub-section--topics {
    background: #ffffff;
}

.agr-kc-hub-topics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.agr-kc-hub-topic {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 12px;
    align-items: center;
    min-height: 82px;
    padding: 20px 22px;
    overflow: hidden;
    color: var(--kc-hub-green-dark);
    border: 1px solid var(--kc-hub-border);
    border-radius: 8px;
    background: #fafafa;
    font-family: var(--kc-hub-heading-font);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: color 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
}

.agr-kc-hub-topic::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--kc-hub-green-main);
    transition: width 0.22s ease, background-color 0.22s ease;
}

.agr-kc-hub-topic:hover {
    color: var(--kc-hub-white);
    border-color: var(--kc-hub-green-dark);
    background: var(--kc-hub-green-dark);
    transform: translateY(-2px);
}

.agr-kc-hub-topic:hover::before {
    width: 7px;
    background: var(--kc-hub-green-accent);
}

.agr-kc-hub-topic small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    min-height: 30px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(74, 138, 74, 0.10);
    font-size: 11px;
}

.agr-kc-hub-topic:hover small {
    background: rgba(255, 255, 255, 0.12);
}

.agr-kc-hub-topic svg {
    width: 18px;
    height: 18px;
    color: var(--kc-hub-green-accent);
    transition: transform 0.22s ease;
}

.agr-kc-hub-topic:hover svg {
    transform: translateX(3px);
}

/* =========================================================
   12. EDITOR CONTENT
   ========================================================= */

.agr-kc-hub-section--editor-content {
    background: linear-gradient(180deg, var(--kc-hub-bg-light), #f7f7f7);
}

.agr-kc-hub-section--editor-content .entry-content {
    padding: 44px;
    border: 1px solid var(--kc-hub-border);
    border-radius: 12px;
    background: var(--kc-hub-white);
    box-shadow: var(--kc-hub-shadow-soft);
}

.agr-kc-hub-section--editor-content .entry-content > :first-child {
    margin-top: 0;
}

.agr-kc-hub-section--editor-content .entry-content > :last-child {
    margin-bottom: 0;
}

.agr-kc-hub-section--editor-content .entry-content h2,
.agr-kc-hub-section--editor-content .entry-content h3,
.agr-kc-hub-section--editor-content .entry-content h4 {
    color: var(--kc-hub-black);
    font-family: var(--kc-hub-heading-font);
    font-weight: 850;
    letter-spacing: -0.035em;
}

.agr-kc-hub-section--editor-content .entry-content h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.agr-kc-hub-section--editor-content .entry-content h3 {
    font-size: 28px;
}

.agr-kc-hub-section--editor-content .entry-content p,
.agr-kc-hub-section--editor-content .entry-content li {
    color: rgba(0, 0, 0, 0.70);
    font-size: 17px;
    line-height: 1.78;
}

.agr-kc-hub-section--editor-content .entry-content a {
    color: var(--kc-hub-green-main);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* =========================================================
   13. FINAL CTA
   ========================================================= */

.agr-kc-hub-final-cta {
    position: relative;
    min-height: 520px;
    padding: 110px 42px;
    overflow: hidden;
    color: var(--kc-hub-white);
    background:
        radial-gradient(circle at 16% 18%, rgba(38, 173, 33, 0.18), transparent 26rem),
        radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.07), transparent 22rem),
        linear-gradient(135deg, #101810 0%, var(--kc-hub-green-dark) 56%, #0d150e 100%);
}

.agr-kc-hub-final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.18;
}

.agr-kc-hub-final-cta__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.agr-kc-hub-final-cta__background span {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(255, 255, 255, 0.025);
}

.agr-kc-hub-final-cta__background span:first-child {
    top: 52px;
    right: 8%;
    width: 280px;
    height: 280px;
    transform: rotate(9deg);
}

.agr-kc-hub-final-cta__background span:last-child {
    bottom: -90px;
    left: 7%;
    width: 260px;
    height: 210px;
    transform: rotate(-10deg);
}

.agr-kc-hub-final-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.agr-kc-hub-final-cta__eyebrow {
    color: var(--kc-hub-green-accent);
}

.agr-kc-hub-final-cta h2 {
    margin: 0;
    color: var(--kc-hub-white);
    font-family: var(--kc-hub-heading-font);
    font-size: clamp(44px, 5.6vw, 50px);
    font-weight: 850;
    line-height: 0.99;
    letter-spacing: -0.052em;
    text-wrap: balance;
}

.agr-kc-hub-final-cta__inner > p {
    max-width: 720px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 17px;
    line-height: 1.72;
}

.agr-kc-hub-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 34px;
}

/* =========================================================
   14. ACCESSIBILITY / MOTION
   ========================================================= */

.agr-kc-hub a:focus-visible {
    outline: 3px solid rgba(38, 173, 33, 0.38);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .agr-kc-hub *,
    .agr-kc-hub *::before,
    .agr-kc-hub *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   15. RESPONSIVE — LARGE DESKTOP
   ========================================================= */

@media (max-width: 1320px) {
    .agr-kc-hub-hero {
        padding-right: 28px;
        padding-left: 28px;
    }

    .agr-kc-hub-hero__inner {
        padding-right: 38px;
        padding-left: 38px;
    }

    .agr-kc-hub-hero__topbar::after {
        right: -38px;
        left: -38px;
    }

    .agr-kc-hub-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .agr-kc-hub-publication {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .agr-kc-hub-publication__body {
        padding: 30px;
    }
}

/* =========================================================
   16. RESPONSIVE — TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1080px) {
    .agr-kc-hub-hero {
        min-height: auto;
    }

    .agr-kc-hub-hero__inner {
        min-height: auto;
    }

    .agr-kc-hub-hero__layout {
        grid-template-columns: 1fr;
        gap: 54px;
        padding-top: 54px;
    }

    .agr-kc-hub-hero__dashboard {
        min-height: 430px;
    }

    .agr-kc-hub-hero__dashboard-window,
    .agr-kc-hub-hero__dashboard::before,
    .agr-kc-hub-hero__dashboard::after {
        width: min(100%, 720px);
    }

    .agr-kc-hub-heading--split {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .agr-kc-hub-heading__description,
    .agr-kc-hub-heading__aside p {
        max-width: 720px;
    }

    .agr-kc-hub-featured {
        grid-template-columns: 1fr;
    }

    .agr-kc-hub-featured__media,
    .agr-kc-hub-featured__image,
    .agr-kc-hub-featured__image--placeholder {
        min-height: 420px;
    }

    .agr-kc-hub-publications {
        grid-template-columns: 1fr;
    }

    .agr-kc-hub-publication {
        grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    }

    .agr-kc-hub-topics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* =========================================================
   17. RESPONSIVE — TABLET
   ========================================================= */

@media (max-width: 820px) {
    .agr-kc-hub-hero {
        padding: 22px 18px 0;
    }

    .agr-kc-hub-hero--has-image {
        background:
            linear-gradient(180deg, rgba(10, 16, 11, 0.93), rgba(26, 48, 26, 0.86)),
            var(--agr-kc-hub-hero-mobile-image, var(--agr-kc-hub-hero-image)),
            linear-gradient(135deg, #111811, #1a301a);
        background-position: center, center center, center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .agr-kc-hub-hero__inner {
        padding: 0 26px 76px;
    }

    .agr-kc-hub-hero__topbar {
        grid-template-columns: 1fr auto;
        min-height: 88px;
    }

    .agr-kc-hub-hero__topbar > strong {
        display: none;
    }

    .agr-kc-hub-hero__topbar::after {
        right: -26px;
        left: -26px;
    }

    .agr-kc-hub-hero__title {
        font-size: clamp(42px, 9vw, 62px);
    }

    .agr-kc-hub-hero__description {
        font-size: 16px;
    }

    .agr-kc-hub-section {
        padding: 82px 24px;
    }

    .agr-kc-hub-types,
    .agr-kc-hub-grid--three,
    .agr-kc-hub-grid--four {
        grid-template-columns: 1fr;
    }

    .agr-kc-hub-type-card {
        min-height: 360px;
    }

    .agr-kc-hub-article-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .agr-kc-hub-card--lead {
        grid-row: auto;
    }

    .agr-kc-hub-card--compact {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .agr-kc-hub-final-cta {
        padding: 88px 24px;
    }
}

/* =========================================================
   18. RESPONSIVE — MOBILE
   ========================================================= */

@media (max-width: 620px) {
    .agr-kc-hub-hero {
        padding: 14px 10px 0;
    }

    .agr-kc-hub-hero__inner {
        padding: 0 18px 58px;
    }

    .agr-kc-hub-hero__topbar {
        gap: 12px;
        min-height: 76px;
        font-size: 9px;
    }

    .agr-kc-hub-hero__topbar::after {
        right: -18px;
        left: -18px;
    }

    .agr-kc-hub-hero__layout {
        gap: 42px;
        padding-top: 42px;
    }

    .agr-kc-hub-hero__eyebrow {
        margin-bottom: 19px;
        font-size: 9px;
    }

    .agr-kc-hub-hero__title {
        font-size: clamp(38px, 12vw, 52px);
        line-height: 1;
    }

    .agr-kc-hub-hero__actions,
    .agr-kc-hub-final-cta__actions {
        flex-direction: column;
    }

    .agr-kc-hub-button {
        width: 100%;
    }

    .agr-kc-hub-hero__dashboard {
        min-height: auto;
    }

    .agr-kc-hub-hero__dashboard::before,
    .agr-kc-hub-hero__dashboard::after {
        display: none;
    }

    .agr-kc-hub-hero__dashboard-window {
        min-height: auto;
    }

    .agr-kc-hub-hero__dashboard-body {
        padding: 26px 20px;
    }

    .agr-kc-hub-hero__dashboard-title {
        font-size: 30px;
    }

    .agr-kc-hub-hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 26px;
    }

    .agr-kc-hub-hero__stats > div {
        min-height: 98px;
        padding: 16px;
    }

    .agr-kc-hub-hero__stats dd {
        font-size: 30px;
    }

    .agr-kc-hub-section {
        padding: 68px 18px;
    }

    .agr-kc-hub-heading {
        margin-bottom: 34px;
    }

    .agr-kc-hub-heading__title {
        font-size: clamp(33px, 10vw, 44px);
    }

    .agr-kc-hub-type-card {
        min-height: 350px;
        padding: 30px 24px;
    }

    .agr-kc-hub-type-card__number {
        right: 20px;
        font-size: 88px;
    }

    .agr-kc-hub-type-card h3 {
        font-size: 36px;
    }

    .agr-kc-hub-type-card__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .agr-kc-hub-card__media,
    .agr-kc-hub-card__image,
    .agr-kc-hub-card__image--placeholder {
        min-height: 230px;
        height: 230px;
    }

    .agr-kc-hub-card__body {
        padding: 24px 22px;
    }

    .agr-kc-hub-card--lead .agr-kc-hub-card__media,
    .agr-kc-hub-card--lead .agr-kc-hub-card__image,
    .agr-kc-hub-card--lead .agr-kc-hub-card__image--placeholder {
        min-height: 250px;
        height: 250px;
    }

    .agr-kc-hub-card--lead .agr-kc-hub-card__body {
        padding: 26px 22px;
    }

    .agr-kc-hub-card--compact {
        display: flex;
    }

    .agr-kc-hub-card--compact .agr-kc-hub-card__media,
    .agr-kc-hub-card--compact .agr-kc-hub-card__image,
    .agr-kc-hub-card--compact .agr-kc-hub-card__image--placeholder {
        min-height: 230px;
        height: 230px;
    }

    .agr-kc-hub-featured__media,
    .agr-kc-hub-featured__image,
    .agr-kc-hub-featured__image--placeholder {
        min-height: 290px;
    }

    .agr-kc-hub-featured__content {
        padding: 34px 24px;
    }

    .agr-kc-hub-featured__content h2 {
        font-size: 38px;
    }

    .agr-kc-hub-publication {
        grid-template-columns: 1fr;
    }

    .agr-kc-hub-publication__media,
    .agr-kc-hub-publication__image,
    .agr-kc-hub-publication__image--placeholder {
        min-height: 300px;
        height: 300px;
    }

    .agr-kc-hub-publication__body {
        padding: 30px 24px;
    }

    .agr-kc-hub-publication__body h3 {
        font-size: 31px;
    }

    .agr-kc-hub-publication__actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .agr-kc-hub-topics {
        grid-template-columns: 1fr;
    }

    .agr-kc-hub-section--editor-content .entry-content {
        padding: 30px 22px;
    }

    .agr-kc-hub-final-cta {
        min-height: 460px;
        padding: 76px 18px;
    }

    .agr-kc-hub-final-cta h2 {
        font-size: clamp(38px, 11vw, 52px);
    }
}
