:root {
    --article-orange: #ff6200;
    --article-orange-dark: #e85800;
    --article-green: #73b942;
    --article-ink: #111212;
    --article-dark: #080909;
    --article-dark-soft: #121413;
    --article-paper: #f1f1ee;
    --article-white: #ffffff;
    --article-muted: #626565;
    --article-display: "Teko", sans-serif;
    --article-body: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 116px;
}

body {
    margin: 0;
    color: var(--article-white);
    background: var(--article-dark);
    font-family: var(--article-body);
}

.article-page {
    overflow: hidden;
    background: var(--article-dark);
}

.article-container {
    width: min(90%, 1240px);
    margin: 0 auto;
}

.article-reading-progress {
    position: fixed;
    top: 5.5rem;
    right: 0;
    left: 0;
    z-index: 998;
    height: 3px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.08);
}

.article-reading-progress span {
    width: 0;
    height: 100%;
    display: block;
    background: var(--article-orange);
    transition: width 80ms linear;
}

.article-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(560px, calc(100vh - 7.75rem), 650px);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    background: #080909;
}

.article-hero::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(5, 6, 6, 0.99) 0%, rgba(5, 6, 6, 0.94) 46%, rgba(5, 6, 6, 0.55) 68%, rgba(5, 6, 6, 0.82) 100%);
    pointer-events: none;
    content: "";
}

.article-hero::after {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 130px;
    background: linear-gradient(180deg, transparent, rgba(8, 9, 9, 0.68));
    pointer-events: none;
    content: "";
}

.article-hero-media {
    position: absolute;
    inset: 0 0 0 47%;
    z-index: 0;
    margin: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.article-hero-media::before {
    position: absolute;
    inset: 0;
    background: #171a18;
    content: "";
}

.article-hero-media img {
    position: relative;
    z-index: 1;
    width: 86%;
    height: 86%;
    display: block;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.5));
}

.article-hero-media.blog-media-maintenance::before {
    background: #24211d;
}

.article-hero-media.blog-media-plastic::before {
    background: #18251b;
}

.article-hero-media.blog-media-conveyor::before {
    background: #182425;
}

.article-hero-inner {
    position: relative;
    z-index: 3;
    min-height: clamp(560px, calc(100vh - 7.75rem), 650px);
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 28px 0 36px;
}

.article-breadcrumb ol {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.article-breadcrumb li + li::before {
    margin-right: 10px;
    color: var(--article-orange);
    content: "/";
}

.article-breadcrumb a {
    color: var(--article-white);
    text-decoration: none;
}

.article-breadcrumb strong {
    font-weight: 500;
}

.article-hero-copy {
    width: min(100%, 790px);
    align-self: center;
    padding: 34px 0 22px;
}

.article-eyebrow,
.article-section-label,
.article-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--article-orange);
    font-family: var(--article-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-eyebrow::before,
.article-section-label::before {
    width: 32px;
    height: 2px;
    flex: 0 0 auto;
    background: currentColor;
    content: "";
}

.article-hero h1,
.article-content h2,
.article-sidebar h2,
.article-related-heading h2,
.article-final-cta h2 {
    margin: 0;
    font-family: var(--article-display);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 790px;
    margin: 17px 0 18px;
    color: var(--article-white);
    font-size: 68px;
    line-height: 0.9;
}

.article-title-accent {
    color: var(--article-orange);
}

.article-hero-copy > p {
    max-width: 690px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 24px 0 0;
}

.article-meta div {
    min-width: 130px;
    padding-left: 11px;
    border-left: 2px solid var(--article-orange);
}

.article-meta dt {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
}

.article-meta dd {
    margin: 4px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
}

.article-start-link {
    min-height: 46px;
    width: fit-content;
    margin-top: 24px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--article-white);
    background: rgba(0, 0, 0, 0.24);
    font-family: var(--article-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.article-start-link:hover {
    transform: translateY(-2px);
    border-color: var(--article-white);
    background: rgba(255, 255, 255, 0.08);
}

.article-reading-section {
    padding: 98px 0 108px;
    color: var(--article-ink);
    background: var(--article-paper);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 72px;
    align-items: start;
}

.article-content {
    min-width: 0;
}

.article-intro-block {
    padding-bottom: 38px;
    border-bottom: 1px solid rgba(17, 18, 18, 0.18);
}

.article-intro {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.article-content p {
    max-width: 820px;
    margin: 0;
    color: #4f5252;
    font-size: 15px;
    line-height: 1.85;
}

.article-intro p:first-child {
    color: #242626;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.72;
}

.article-sections > section {
    padding: 48px 0 8px;
    scroll-margin-top: 116px;
}

.article-sections > section + section {
    margin-top: 40px;
    border-top: 1px solid rgba(17, 18, 18, 0.16);
}

.article-content h2 {
    max-width: 720px;
    margin-bottom: 18px;
    color: var(--article-ink);
    font-size: 42px;
}

.article-content h2 span {
    color: var(--article-orange-dark);
}

.article-sections section > p + p {
    margin-top: 16px;
}

.article-benefit-grid,
.article-application-grid,
.article-check-grid {
    display: grid;
    gap: 12px;
    margin-top: 25px;
}

.article-benefit-grid,
.article-application-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-benefit-card,
.article-application-card,
.article-check-card {
    min-width: 0;
    border: 1px solid rgba(17, 18, 18, 0.14);
    border-radius: 6px;
    background: var(--article-white);
}

.article-benefit-card,
.article-application-card {
    min-height: 210px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
}

.article-benefit-card > span,
.article-application-card > span {
    color: var(--article-orange-dark);
    font-family: var(--article-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
}

.article-benefit-card h3,
.article-application-card h3 {
    margin: 32px 0 10px;
    color: var(--article-ink);
    font-family: var(--article-display);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-benefit-card p,
.article-application-card p,
.article-check-card p {
    color: #646767;
    font-size: 12px;
    line-height: 1.65;
}

.article-check-card {
    min-height: 92px;
    padding: 18px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.article-check-card span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--article-white);
    background: var(--article-green);
    font-size: 12px;
}

.article-highlight {
    margin: 56px 0 0;
    padding: 34px 38px;
    border: 0;
    border-left: 4px solid var(--article-green);
    border-radius: 0 6px 6px 0;
    color: var(--article-white);
    background: var(--article-ink);
    font-family: var(--article-display);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 14px;
}

.article-sidebar-panel,
.article-help {
    padding: 22px;
    border: 1px solid rgba(17, 18, 18, 0.15);
    border-radius: 6px;
    background: var(--article-white);
}

.article-panel-label {
    color: var(--article-orange-dark);
    font-size: 14px;
}

.article-sidebar h2 {
    margin-top: 11px;
    color: var(--article-ink);
    font-size: 28px;
}

.article-toc ol {
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    list-style: none;
}

.article-toc li {
    border-top: 1px solid rgba(17, 18, 18, 0.11);
}

.article-toc a {
    min-height: 45px;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    color: #5c5f5f;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
}

.article-toc a span {
    color: var(--article-orange-dark);
    font-family: var(--article-display);
    font-size: 16px;
}

.article-toc a:hover,
.article-toc a.is-current {
    color: var(--article-ink);
}

.article-share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 17px;
}

.article-share-actions a,
.article-share-actions button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid rgba(17, 18, 18, 0.2);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--article-ink);
    background: transparent;
    cursor: pointer;
    font: 700 12px var(--article-body);
    text-decoration: none;
    transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.article-share-actions a:hover,
.article-share-actions button:hover {
    color: var(--article-white);
    border-color: var(--article-orange-dark);
    background: var(--article-orange-dark);
}

.article-share-actions img {
    width: 16px;
    height: 16px;
}

.article-share-feedback {
    margin: 12px 0 0;
    color: var(--article-green);
    font-size: 10px;
    font-weight: 600;
}

.article-help {
    color: var(--article-white);
    border-color: rgba(255, 255, 255, 0.1);
    background: var(--article-ink);
}

.article-help .article-panel-label {
    color: var(--article-green);
}

.article-help h2 {
    color: var(--article-white);
}

.article-help p {
    margin: 12px 0 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.65;
}

.article-help > a {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--article-white);
    background: var(--article-green);
    font-family: var(--article-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.article-help > a img {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.article-navigation-section {
    color: var(--article-ink);
    background: var(--article-paper);
}

.article-pagination {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(17, 18, 18, 0.17);
}

.article-pagination a {
    min-height: 132px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--article-ink);
    text-decoration: none;
}

.article-pagination a + a {
    padding-left: 42px;
    border-left: 1px solid rgba(17, 18, 18, 0.17);
    text-align: right;
}

.article-pagination small {
    color: var(--article-orange-dark);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.article-pagination strong {
    max-width: 500px;
    margin-top: 8px;
    font-family: var(--article-display);
    font-size: 23px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-pagination a:last-child strong {
    align-self: flex-end;
}

.article-related-section {
    padding: 94px 0 104px;
    background: var(--article-dark);
}

.article-related-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 38px;
}

.article-related-heading h2 {
    margin-top: 15px;
    color: var(--article-white);
    font-size: 46px;
}

.article-outline-link {
    min-height: 44px;
    padding: 10px 17px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--article-white);
    font-family: var(--article-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.article-related-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.article-related-item {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    color: var(--article-white);
    background: var(--article-dark-soft);
    text-decoration: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.article-related-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 98, 0, 0.62);
}

.article-related-item figure {
    position: relative;
    height: 210px;
    margin: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #1c1f1d;
}

.article-related-item figure::after {
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.54));
    content: "";
}

.article-related-item img {
    width: 78%;
    height: 78%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.45));
}

.article-related-item > div {
    flex: 1;
    padding: 23px;
    display: flex;
    flex-direction: column;
}

.article-related-category {
    color: var(--article-orange);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.article-related-item h3 {
    margin: 15px 0 18px;
    color: var(--article-white);
    font-family: var(--article-display);
    font-size: 27px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.article-related-meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 10px;
}

.article-sidebar-empty {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.article-final-cta {
    color: var(--article-white);
    background: var(--article-orange-dark);
}

.article-final-cta-inner {
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 60px;
    align-items: center;
    padding: 58px 0;
}

.article-final-cta .article-section-label {
    color: var(--article-ink);
}

.article-final-cta h2 {
    max-width: 760px;
    margin-top: 16px;
    color: var(--article-white);
    font-size: 48px;
}

.article-final-cta p {
    max-width: 720px;
    margin: 17px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.7;
}

.article-final-cta figure {
    min-width: 0;
    height: 280px;
    margin: 0;
    display: grid;
    place-items: center;
}

.article-final-cta figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 26px 24px rgba(78, 24, 0, 0.34));
}

.article-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.article-btn {
    min-height: 48px;
    padding: 11px 19px;
    border: 1px solid transparent;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--article-white);
    font-family: var(--article-display);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.article-btn:hover {
    transform: translateY(-2px);
}

.article-btn-dark {
    background: var(--article-ink);
}

.article-btn-dark:hover {
    background: #000000;
}

.article-btn-outline {
    border-color: rgba(255, 255, 255, 0.72);
    background: transparent;
}

.article-btn-outline:hover {
    border-color: var(--article-white);
    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 1120px) {
    .article-hero h1 {
        font-size: 60px;
    }

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

    .article-benefit-grid,
    .article-application-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .article-hero-media {
        left: 38%;
        opacity: 0.68;
    }

    .article-hero::before {
        background: linear-gradient(90deg, rgba(5, 6, 6, 0.98) 0%, rgba(5, 6, 6, 0.9) 58%, rgba(5, 6, 6, 0.64) 100%);
    }

    .article-hero h1 {
        font-size: 52px;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .article-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-toc {
        grid-column: 1 / -1;
    }

    .article-toc ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 24px;
    }

    .article-related-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-final-cta-inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
        gap: 30px;
    }

    .article-final-cta h2 {
        font-size: 42px;
    }
}

@media (max-width: 680px) {
    .article-reading-progress {
        top: 5.5rem;
    }

    .article-hero,
    .article-hero-inner {
        min-height: 0;
    }

    .article-hero-media {
        inset: 0;
        opacity: 0.34;
    }

    .article-hero-media img {
        width: 94%;
        height: 94%;
        object-position: right bottom;
    }

    .article-hero::before {
        background: linear-gradient(180deg, rgba(5, 6, 6, 0.84) 0%, rgba(5, 6, 6, 0.94) 70%, #080909 100%);
    }

    .article-hero-inner {
        padding: 20px 0 34px;
    }

    .article-breadcrumb ol {
        font-size: 11px;
    }

    .article-breadcrumb li:last-child {
        max-width: 145px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .article-hero-copy {
        padding: 48px 0 20px;
    }

    .article-eyebrow,
    .article-section-label {
        font-size: 15px;
    }

    .article-eyebrow::before,
    .article-section-label::before {
        width: 24px;
    }

    .article-hero h1 {
        margin: 14px 0 17px;
        font-size: 42px;
        line-height: 0.92;
    }

    .article-hero-copy > p {
        font-size: 13px;
        line-height: 1.65;
    }

    .article-meta {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 8px;
    }

    .article-meta div:last-child {
        grid-column: 1 / -1;
    }

    .article-meta div {
        min-width: 0;
    }

    .article-start-link {
        width: 100%;
        justify-content: center;
    }

    .article-reading-section {
        padding: 60px 0 66px;
    }

    .article-layout {
        gap: 50px;
    }

    .article-intro-block {
        padding-bottom: 30px;
    }

    .article-content p {
        font-size: 13px;
        line-height: 1.78;
    }

    .article-intro p:first-child {
        font-size: 17px;
        line-height: 1.65;
    }

    .article-sections > section {
        padding-top: 36px;
    }

    .article-sections > section + section {
        margin-top: 28px;
    }

    .article-content h2 {
        font-size: 34px;
    }

    .article-benefit-grid,
    .article-application-grid,
    .article-check-grid,
    .article-sidebar,
    .article-toc ol,
    .article-pagination,
    .article-related-list,
    .article-final-cta-inner {
        grid-template-columns: 1fr;
    }

    .article-benefit-card,
    .article-application-card {
        min-height: 0;
    }

    .article-benefit-card h3,
    .article-application-card h3 {
        margin-top: 22px;
    }

    .article-highlight {
        margin-top: 40px;
        padding: 26px 24px;
        font-size: 25px;
    }

    .article-toc {
        grid-column: auto;
    }

    .article-pagination a {
        min-height: 108px;
        padding: 24px 0;
    }

    .article-pagination a + a {
        padding-left: 0;
        border-top: 1px solid rgba(17, 18, 18, 0.17);
        border-left: 0;
        text-align: left;
    }

    .article-pagination a:last-child strong {
        align-self: flex-start;
    }

    .article-related-section {
        padding: 64px 0 70px;
    }

    .article-related-heading {
        align-items: stretch;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .article-related-heading h2 {
        font-size: 38px;
    }

    .article-outline-link {
        width: 100%;
        justify-content: center;
    }

    .article-related-item figure {
        height: 200px;
    }

    .article-final-cta-inner {
        gap: 26px;
        padding: 52px 0 44px;
    }

    .article-final-cta h2 {
        font-size: 38px;
    }

    .article-final-cta p {
        font-size: 13px;
    }

    .article-cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .article-btn {
        width: 100%;
    }

    .article-final-cta figure {
        height: 230px;
    }
}

@media print {
    body {
        padding-top: 0;
        color: #111212;
        background: #ffffff;
    }

    .header,
    .site-footer,
    .article-reading-progress,
    .article-hero-media,
    .article-start-link,
    .article-sidebar,
    .article-navigation-section,
    .article-related-section,
    .article-final-cta {
        display: none !important;
    }

    .article-hero,
    .article-hero-inner {
        min-height: 0;
        color: #111212;
        background: #ffffff;
    }

    .article-hero::before,
    .article-hero::after {
        display: none;
    }

    .article-hero-inner {
        padding: 20px 0;
    }

    .article-breadcrumb,
    .article-meta dt {
        color: #555555;
    }

    .article-hero h1,
    .article-hero-copy > p,
    .article-meta dd {
        color: #111212;
    }

    .article-reading-section {
        padding: 20px 0;
        background: #ffffff;
    }

    .article-layout {
        display: block;
    }

    .article-highlight {
        color: #111212;
        background: #f1f1ee;
    }
}
