/* =========================================================
   Category Document Page
========================================================= */

html {
    scroll-behavior: smooth;
}

.category-document-page {
    overflow: clip;
    color: var(--color-navy);
    background: #fff;
}

.category-document-page *,
.category-document-page *::before,
.category-document-page *::after {
    box-sizing: border-box;
}

.category-container {
    width: min(1440px, calc(100% - 80px));
    margin: 0 auto;
}

.category-eyebrow,
.category-card-eyebrow {
    margin: 0;
    color: var(--color-blue);
    font-size: 13px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}


/* =========================================================
   Category Hero
========================================================= */

.category-document-hero {
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(
                    circle at 83% 18%,
                    rgba(23, 139, 255, 0.15),
                    transparent 31%
            ),
            radial-gradient(
                    circle at 16% 12%,
                    rgba(92, 198, 255, 0.12),
                    transparent 28%
            ),
            linear-gradient(
                    180deg,
                    #f7fbff 0%,
                    #f2f8fe 100%
            );
}

.category-document-hero__background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.category-document-hero__background::before {
    content: "";
    position: absolute;
    top: -170px;
    right: -130px;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(23, 139, 255, 0.08);
    border-radius: 50%;
}

.category-document-hero__background::after {
    content: "";
    position: absolute;
    bottom: -240px;
    left: -150px;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(23, 139, 255, 0.07);
    border-radius: 50%;
}

.category-document-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 610px;
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(500px, 1.12fr);
    align-items: center;
    gap: 90px;
    padding-top: 90px;
    padding-bottom: 90px;
}

.category-document-hero__content {
    max-width: 670px;
}

.category-document-hero__content h1 {
    margin: 18px 0 0;
    color: var(--color-navy);
    font-size: clamp(58px, 5.6vw, 92px);
    line-height: 1.02;
    letter-spacing: -0.07em;
}

.category-document-hero__content > p:last-child {
    max-width: 650px;
    margin: 28px 0 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.84;
    word-break: keep-all;
}

.category-document-hero__visual {
    position: relative;
    height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-document-hero__visual::before {
    content: "";
    position: absolute;
    width: 70%;
    height: 60%;
    border-radius: 50%;
    background: rgba(45, 157, 255, 0.14);
    filter: blur(70px);
}

.category-document-hero__visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(
            0 28px 28px rgba(7, 60, 116, 0.11)
    );
}

.category-document-hero__fallback {
    position: relative;
    z-index: 1;
    width: 300px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 139, 255, 0.13);
    border-radius: 44px;
    color: #178bff;
    background: rgba(255, 255, 255, 0.55);
    font-size: 36px;
    font-weight: 900;
}


/* =========================================================
   Category Tabs
========================================================= */

.category-document-tabs {
    position: sticky;
    top: var(--header-height, 72px);
    z-index: 30;
    border-top: 1px solid rgba(6, 27, 51, 0.05);
    border-bottom: 1px solid rgba(6, 27, 51, 0.08);
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.category-document-tabs__scroll {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-document-tabs__scroll::-webkit-scrollbar {
    display: none;
}

.category-document-tabs a {
    min-height: 42px;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: rgba(6, 27, 51, 0.62);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition:
            color 0.2s ease,
            border-color 0.2s ease,
            background-color 0.2s ease;
}

.category-document-tabs a:hover {
    color: #178bff;
    background: rgba(23, 139, 255, 0.06);
}

.category-document-tabs a.is-active {
    color: #fff;
    border-color: #178bff;
    background: #178bff;
}


/* =========================================================
   Introduction
========================================================= */

.category-document-intro {
    padding: 112px 0 76px;
}

.category-document-intro__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 62px;
    border-bottom: 1px solid rgba(6, 27, 51, 0.11);
}

.category-document-intro__content {
    max-width: 850px;
}

.category-document-intro__heading h2 {
    margin: 15px 0 0;
    color: var(--color-navy);
    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 1.1;
    letter-spacing: -0.06em;
}

.category-document-intro__content > p:last-child {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 17px;
    line-height: 1.82;
    word-break: keep-all;
}

.category-document-intro__count {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.category-document-intro__count strong {
    color: #178bff;
    font-size: 64px;
    line-height: 0.9;
    letter-spacing: -0.07em;
}

.category-document-intro__count span {
    margin-top: 11px;
    color: rgba(6, 27, 51, 0.48);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
}


/* =========================================================
   Mobile Table of Contents
========================================================= */

.category-mobile-toc {
    display: none;
}


/* =========================================================
   Document Layout
========================================================= */

.category-document-content {
    padding-bottom: 150px;
}

.category-document-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(270px, 320px);
    align-items: start;
    gap: clamp(70px, 8vw, 130px);
}

.category-document-main {
    min-width: 0;
}


/* =========================================================
   Product Article
========================================================= */

.category-document-item {
    position: relative;
    scroll-margin-top: 150px;
    padding-bottom: 126px;
}

.category-document-item + .category-document-item {
    padding-top: 126px;
    border-top: 1px solid rgba(6, 27, 51, 0.11);
}

.category-document-item__header {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 30px;
    margin-bottom: 54px;
}

.category-document-item__number {
    padding-top: 8px;
}

.category-document-item__number span {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 139, 255, 0.15);
    border-radius: 16px;
    color: #178bff;
    background: rgba(23, 139, 255, 0.06);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.category-document-item__title {
    max-width: 780px;
}

.category-document-item__title h2 {
    margin: 13px 0 0;
    color: var(--color-navy);
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.065em;
}

.category-document-item__title > p:last-child {
    max-width: 690px;
    margin: 24px 0 0;
    color: var(--color-muted);
    font-size: 18px;
    line-height: 1.82;
    word-break: keep-all;
}


/* =========================================================
   Product Media
========================================================= */

.category-document-item__media {
    position: relative;
    min-height: 560px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(6, 27, 51, 0.07);
    border-radius: 34px;
    background:
            radial-gradient(
                    circle at 75% 16%,
                    rgba(137, 217, 255, 0.25),
                    transparent 28%
            ),
            linear-gradient(
                    145deg,
                    #f3f9fe 0%,
                    #eaf5fd 100%
            );
    box-shadow: 0 28px 75px rgba(6, 27, 51, 0.09);
}

.category-document-item__media > img {
    width: 100%;
    height: 560px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
}

.category-document-item__media:hover > img {
    transform: scale(1.025);
}

.category-document-item__media figcaption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 14px;
    color: #fff;
    background: rgba(4, 28, 54, 0.6);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.category-document-item__media figcaption span:first-child {
    font-size: 14px;
    font-weight: 900;
}

.category-document-item__media figcaption span:last-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.category-document-item__placeholder {
    width: 100%;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #178bff;
}

.category-document-item__placeholder span {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.category-document-item__placeholder strong {
    margin-top: 15px;
    font-size: 34px;
}


/* =========================================================
   Product Description
========================================================= */

.category-document-item__body {
    max-width: 850px;
    margin: 70px auto 0;
}

.category-document-copy {
    padding-bottom: 72px;
}

.category-document-copy__label {
    margin: 0;
    color: #178bff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.category-document-copy h3,
.category-processing-section__heading h3 {
    margin: 12px 0 0;
    color: var(--color-navy);
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -0.045em;
}

.category-document-copy__description {
    margin: 28px 0 0;
    color: #46596f;
    font-size: 17px;
    line-height: 1.95;
    word-break: keep-all;
}

.category-document-copy__description p {
    margin: 0 0 1.3em;
}

.category-document-copy__description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   Processing Options
========================================================= */

.category-processing-section {
    padding-top: 68px;
    border-top: 1px solid rgba(6, 27, 51, 0.1);
}

.category-processing-section__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.category-processing-section__heading > span {
    color: rgba(6, 27, 51, 0.42);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.13em;
}

.category-processing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}
.category-processing-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(6, 27, 51, 0.07);
    border-radius: 22px;
    background: #f7f9fb;
    transition:
            transform 0.23s ease,
            border-color 0.23s ease,
            background-color 0.23s ease,
            box-shadow 0.23s ease;
}

.category-processing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(23, 139, 255, 0.2);
    background: #fff;
    box-shadow: 0 20px 44px rgba(6, 27, 51, 0.08);
}

.category-processing-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background:
            radial-gradient(
                    circle at 75% 15%,
                    rgba(131, 215, 255, 0.25),
                    transparent 30%
            ),
            #edf7ff;
}

.category-processing-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.category-processing-card:hover .category-processing-card__image img {
    transform: scale(1.035);
}

.category-processing-card__body {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 17px;
    padding: 27px;
}

.category-processing-card__index {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #178bff;
    background: rgba(23, 139, 255, 0.08);
    font-size: 11px;
    font-weight: 900;
}

.category-processing-card__content {
    min-width: 0;
}

.category-processing-card__eyebrow {
    margin: 2px 0 0;
    color: #178bff;
    font-size: 10px;
    line-height: 1.4;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.category-processing-card__content h4 {
    margin: 6px 0 0;
    color: var(--color-navy);
    font-size: 20px;
    line-height: 1.35;
    letter-spacing: -0.035em;
}

.category-processing-card__summary {
    margin: 11px 0 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.68;
    word-break: keep-all;
}

.category-processing-card__description {
    margin-top: 18px;
    padding-top: 17px;
    border-top: 1px solid rgba(6, 27, 51, 0.08);
    color: #52657a;
    font-size: 13px;
    line-height: 1.75;
    word-break: keep-all;
}

.category-processing-card__description p {
    margin: 0 0 1em;
}

.category-processing-card__description p:last-child {
    margin-bottom: 0;
}

.category-processing-empty {
    padding: 30px;
    border: 1px dashed rgba(6, 27, 51, 0.13);
    border-radius: 18px;
    color: var(--color-muted);
    text-align: center;
    font-size: 14px;
}


/* =========================================================
   Next Product
========================================================= */

.category-document-next {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
    padding: 26px 28px;
    border-top: 1px solid rgba(6, 27, 51, 0.1);
    border-bottom: 1px solid rgba(6, 27, 51, 0.1);
    color: inherit;
    transition:
            color 0.2s ease,
            background-color 0.2s ease;
}

.category-document-next:hover {
    color: #178bff;
    background: rgba(23, 139, 255, 0.035);
}

.category-document-next > span {
    color: rgba(6, 27, 51, 0.45);
    font-size: 12px;
    font-weight: 800;
}

.category-document-next strong {
    font-size: 18px;
}

.category-document-next svg {
    transition: transform 0.2s ease;
}

.category-document-next:hover svg {
    transform: translateY(4px);
}


/* =========================================================
   Sticky Sidebar
========================================================= */

.category-document-sidebar {
    /*position: relative;*/
    position: sticky;
    top: calc(var(--header-height, 72px) + 92px);
}

.category-document-sidebar__sticky {
    position: sticky;
    top: calc(var(--header-height, 72px) + 92px);
    overflow: hidden;
    border: 1px solid rgba(6, 27, 51, 0.09);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 56px rgba(6, 27, 51, 0.065);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.category-document-sidebar__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 25px 20px;
}

.category-document-sidebar__heading p {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.category-document-sidebar__heading span {
    min-width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #178bff;
    background: rgba(23, 139, 255, 0.08);
    font-size: 11px;
    font-weight: 900;
}

.category-document-toc {
    max-height: calc(100vh - 280px);
    padding: 0 11px 11px;
    overflow-y: auto;
}

.category-document-toc a {
    position: relative;
    display: grid;
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 13px;
    padding: 15px 14px;
    border-radius: 14px;
    color: rgba(6, 27, 51, 0.57);
    transition:
            color 0.2s ease,
            background-color 0.2s ease;
}

.category-document-toc a::before {
    content: "";
    position: absolute;
    top: 13px;
    bottom: 13px;
    left: 0;
    width: 3px;
    border-radius: 999px;
    background: #178bff;
    opacity: 0;
    transform: scaleY(0.3);
    transition:
            opacity 0.2s ease,
            transform 0.2s ease;
}

.category-document-toc a:hover {
    color: #178bff;
    background: rgba(23, 139, 255, 0.04);
}

.category-document-toc a.is-active {
    color: var(--color-navy);
    background: rgba(23, 139, 255, 0.075);
}

.category-document-toc a.is-active::before {
    opacity: 1;
    transform: scaleY(1);
}

.category-document-toc a > span {
    padding-top: 2px;
    color: #178bff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.category-document-toc a div {
    min-width: 0;
}

.category-document-toc strong {
    display: block;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.category-document-toc small {
    display: block;
    margin-top: 5px;
    overflow: hidden;
    color: rgba(6, 27, 51, 0.38);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.category-document-sidebar__footer {
    padding: 17px 25px;
    border-top: 1px solid rgba(6, 27, 51, 0.07);
    color: rgba(6, 27, 51, 0.33);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.13em;
}


/* =========================================================
   Empty State
========================================================= */

.category-document-empty {
    padding: 90px 0 130px;
}

.category-empty-state {
    padding: 70px 30px;
    text-align: center;
    border: 1px solid rgba(6, 27, 51, 0.09);
    border-radius: 27px;
    background: #fff;
}

.category-empty-state strong {
    display: block;
    color: var(--color-navy);
    font-size: 22px;
}

.category-empty-state p {
    margin: 12px 0 0;
    color: var(--color-muted);
}


/* =========================================================
   Pagination
========================================================= */

.category-document-pagination {
    padding: 0 0 120px;
}

.category-document-pagination__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.category-document-pagination__inner a {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid rgba(6, 27, 51, 0.12);
    border-radius: 10px;
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 800;
}

.category-document-pagination__inner a:hover {
    color: #178bff;
    border-color: rgba(23, 139, 255, 0.35);
}

.category-document-pagination__inner span {
    color: rgba(6, 27, 51, 0.48);
    font-size: 14px;
}

.category-document-pagination__inner strong {
    color: var(--color-navy);
}


/* =========================================================
   Medium Desktop
========================================================= */

@media (max-width: 1280px) {
    .category-container {
        width: min(calc(100% - 56px), 1440px);
    }

    .category-document-hero__inner {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(430px, 1.05fr);
        gap: 58px;
    }

    .category-document-layout {
        grid-template-columns:
            minmax(0, 1fr)
            280px;
        gap: 64px;
    }
}


/* =========================================================
   Tablet
========================================================= */

@media (max-width: 980px) {
    .category-document-hero__inner {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 34px;
        padding-top: 72px;
        padding-bottom: 70px;
    }

    .category-document-hero__content {
        max-width: 720px;
    }

    .category-document-hero__visual {
        height: 390px;
    }

    .category-document-tabs {
        top: var(--mobile-header-height, 64px);
    }

    .category-document-intro {
        padding: 80px 0 50px;
    }

    .category-document-intro__heading {
        align-items: flex-start;
    }

    .category-document-layout {
        display: block;
    }

    .category-document-sidebar {
        display: none;
    }

    .category-mobile-toc {
        display: block;
        margin-top: 30px;
        border: 1px solid rgba(6, 27, 51, 0.11);
        border-radius: 17px;
        background: #fff;
    }

    .category-mobile-toc summary {
        min-height: 62px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 0 21px;
        cursor: pointer;
        list-style: none;
        font-size: 15px;
        font-weight: 900;
    }

    .category-mobile-toc summary::-webkit-details-marker {
        display: none;
    }

    .category-mobile-toc summary svg {
        transition: transform 0.2s ease;
    }

    .category-mobile-toc[open] summary svg {
        transform: rotate(180deg);
    }

    .category-mobile-toc__body {
        padding: 8px;
        border-top: 1px solid rgba(6, 27, 51, 0.08);
    }

    .category-mobile-toc__body a {
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 14px;
        border-radius: 11px;
        color: var(--color-navy);
    }

    .category-mobile-toc__body a:hover,
    .category-mobile-toc__body a.is-active {
        color: #178bff;
        background: rgba(23, 139, 255, 0.06);
    }

    .category-mobile-toc__body a span {
        color: #178bff;
        font-size: 10px;
        font-weight: 900;
    }

    .category-mobile-toc__body a strong {
        overflow: hidden;
        font-size: 14px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .category-document-item__media,
    .category-document-item__media > img,
    .category-document-item__placeholder {
        height: 480px;
        min-height: 480px;
    }
}


/* =========================================================
   Mobile
========================================================= */

@media (max-width: 768px) {
    .category-container {
        width: 100%;
        max-width: none;
        padding-right: 24px;
        padding-left: 24px;
    }

    .category-document-hero__inner {
        padding-top: 58px;
        padding-bottom: 52px;
    }

    .category-document-hero__content h1 {
        font-size: 52px;
    }

    .category-document-hero__content > p:last-child {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.74;
    }

    .category-document-hero__visual {
        height: 330px;
    }

    .category-document-tabs .category-container {
        padding-right: 0;
        padding-left: 0;
    }

    .category-document-tabs__scroll {
        padding-right: 24px;
        padding-left: 24px;
    }

    .category-document-intro {
        padding: 68px 0 42px;
    }

    .category-document-intro__heading {
        display: block;
        padding-bottom: 40px;
    }

    .category-document-intro__heading h2 {
        font-size: 42px;
        line-height: 1.15;
    }

    .category-document-intro__content > p:last-child {
        font-size: 15px;
        line-height: 1.75;
    }

    .category-document-intro__count {
        display: none;
    }

    .category-document-item {
        scroll-margin-top: 125px;
        padding-bottom: 90px;
    }

    .category-document-item + .category-document-item {
        padding-top: 90px;
    }

    .category-document-item__header {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 18px;
        margin-bottom: 38px;
    }

    .category-document-item__number span {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 10px;
    }

    .category-document-item__title h2 {
        font-size: 42px;
        line-height: 1.12;
    }

    .category-document-item__title > p:last-child {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.75;
    }

    .category-document-item__media,
    .category-document-item__media > img,
    .category-document-item__placeholder {
        height: 390px;
        min-height: 390px;
    }

    .category-document-item__media {
        border-radius: 25px;
    }

    .category-document-item__media figcaption {
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 13px 14px;
    }

    .category-document-item__media figcaption span:last-child {
        display: none;
    }

    .category-document-item__body {
        margin-top: 52px;
    }

    .category-document-copy {
        padding-bottom: 55px;
    }

    .category-document-copy h3,
    .category-processing-section__heading h3 {
        font-size: 26px;
    }

    .category-document-copy__description {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.85;
    }

    .category-processing-section {
        padding-top: 52px;
    }

    .category-processing-grid {
        grid-template-columns: 1fr;
    }

    .category-document-next {
        margin-top: 60px;
        padding-right: 16px;
        padding-left: 16px;
    }
}


/* =========================================================
   Small Mobile
========================================================= */

@media (max-width: 560px) {
    .category-container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .category-document-hero__inner {
        gap: 24px;
        padding-top: 46px;
        padding-bottom: 44px;
    }

    .category-document-hero__content h1 {
        font-size: 44px;
    }

    .category-document-hero__visual {
        height: 270px;
    }

    .category-document-tabs a {
        min-height: 39px;
        padding: 0 15px;
        font-size: 13px;
    }

    .category-document-intro {
        padding-top: 56px;
    }

    .category-document-intro__heading h2 {
        font-size: 36px;
    }

    .category-document-item__header {
        display: block;
    }

    .category-document-item__number {
        margin-bottom: 18px;
        padding-top: 0;
    }

    .category-document-item__title h2 {
        font-size: 37px;
    }

    .category-document-item__media,
    .category-document-item__media > img,
    .category-document-item__placeholder {
        height: 310px;
        min-height: 310px;
    }

    .category-document-item__media {
        border-radius: 21px;
    }

    .category-document-item__media figcaption {
        border-radius: 11px;
    }

    .category-processing-section__heading {
        display: block;
    }

    .category-processing-section__heading > span {
        display: inline-flex;
        margin-top: 12px;
    }

    .category-processing-card {
        border-radius: 18px;
    }

    .category-processing-card__body {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 13px;
        padding: 22px 18px;
    }

    .category-processing-card__index {
        width: 34px;
        height: 34px;
    }

    .category-document-next {
        grid-template-columns: 1fr auto;
    }

    .category-document-next > span {
        display: none;
    }
}