@font-face {
    font-family: "Roboto Condensed";
    src: url("../fonts/roboto-condensed-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto Condensed";
    src: url("../fonts/roboto-condensed-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --cl-green: #008969;
    --cl-green-dark: #006f55;
    --cl-anthracite: #565656;
    --cl-black: #000000;
    --cl-white: #ffffff;
    --cl-light: #f6f8f7;
    --cl-line: #dde4e1;
    --cl-copy: #3f4644;
    --header-height: 96px;
    --font-main: "Roboto Condensed", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(0, 137, 105, .2);
}

body.cl-page {
    min-width: 320px;
    margin: 0;
    background: var(--cl-white);
    color: var(--cl-copy);
    font-family: var(--font-main);
    font-size: 16px;
    letter-spacing: 0;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(0, 137, 105, .42);
    outline-offset: 3px;
}

.container {
    width: calc(100% - 40px);
    max-width: 1120px;
    margin: 0 auto;
}

.visually-hidden,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: .75rem 1rem;
    background: var(--cl-black);
    color: var(--cl-white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, .98);
    border-bottom: 1px solid var(--cl-line);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.header-inner {
    width: calc(100% - 40px);
    max-width: 1120px;
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.language-switch {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .84rem;
    color: #777;
    white-space: nowrap;
}

.language-switch a {
    text-decoration: none;
    color: var(--cl-green);
}

.header-main {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
}

.header-actions {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .9rem;
}

.desktop-language-switch {
    padding: .45rem .65rem;
    border: 1px solid var(--cl-line);
    border-radius: 4px;
    background: var(--cl-white);
}

.mobile-menu-top {
    display: none;
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
}

.brand img {
    display: block;
    width: 190px;
    max-width: 100%;
    max-height: calc(var(--header-height) - 28px);
    object-fit: contain;
}

.primary-nav {
    justify-self: end;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
    overflow: visible;
    background: rgba(0, 137, 105, .9);
    border-radius: 6px;
    box-shadow: 0 10px 24px rgba(0, 137, 105, .14);
}

.nav-item {
    position: relative;
    display: flex;
}

.nav-link-row {
    display: flex;
    align-items: stretch;
}

.nav-link-row > a,
a.nav-item {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: .75rem .9rem;
    color: var(--cl-white);
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    border-right: 1px solid rgba(255, 255, 255, .24);
    transition: background .18s ease;
}

.nav-item:hover .nav-link-row > a,
.nav-item:focus-within .nav-link-row > a,
a.nav-item:hover,
a.nav-item:focus-visible {
    background: rgba(0, 0, 0, .16);
}

.submenu-toggle {
    display: none;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    display: none;
    padding: .35rem 0;
    background: #333;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
}

.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
    display: grid;
}

.submenu a {
    padding: .72rem 1rem;
    color: var(--cl-white);
    text-decoration: none;
}

.submenu a:hover,
.submenu a:focus-visible {
    background: var(--cl-green);
}

.menu-toggle {
    display: none;
    justify-self: end;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(0, 137, 105, .35);
    border-radius: 999px;
    background: var(--cl-white);
    padding: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    cursor: pointer;
}

.menu-toggle span:not(.visually-hidden) {
    grid-area: 1 / 1;
    display: block;
    width: 20px;
    height: 2px;
    margin: 0;
    background: var(--cl-green);
    border-radius: 999px;
    transition: opacity .18s ease, transform .18s ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

.hero-slider {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    overflow: hidden;
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .7s ease, visibility .7s ease;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .18)), var(--slide-image);
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    position: relative;
    width: calc(100% - 40px);
    max-width: 1120px;
    margin: 0 auto;
    color: var(--cl-white);
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 5vw, 4rem) clamp(1.1rem, 2vw, 1.5rem);
}

.hero-content::before {
    content: "";
    position: absolute;
    top: clamp(2rem, 5vw, 4rem);
    bottom: clamp(2rem, 5vw, 4rem);
    left: 0;
    width: 5px;
    background: var(--cl-green);
}

.hero-content h1,
.hero-content h2 {
    max-width: 960px;
    margin: 0 0 1rem;
    color: var(--cl-white);
    font-size: clamp(2.4rem, 5.8vw, 5.5rem);
    line-height: 1;
    font-weight: 700;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .34);
    overflow-wrap: break-word;
}

.hero-content p {
    max-width: 560px;
    margin: 0 0 1.5rem;
    font-size: clamp(1rem, 2.2vw, 1.7rem);
    line-height: 1.35;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: .65rem 1.1rem;
    border: 0;
    background: var(--cl-green);
    color: var(--cl-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.button:hover,
.button:focus-visible {
    background: var(--cl-green-dark);
    box-shadow: 0 10px 24px rgba(0, 137, 105, .22);
    transform: translateY(-1px);
}

.slider-controls {
    position: absolute;
    right: 20px;
    bottom: 1.4rem;
    display: flex;
    gap: .5rem;
}

.slider-controls button {
    width: 34px;
    height: 8px;
    border: 0;
    background: rgba(255, 255, 255, .55);
}

.slider-controls button.is-active,
.slider-controls button:focus-visible {
    background: var(--cl-green);
    outline: 2px solid var(--cl-white);
    outline-offset: 2px;
}

.section {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    background: var(--cl-white);
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
    margin-bottom: 2rem;
}

.section-intro p:last-child {
    margin: 0;
    color: var(--cl-anthracite);
    font-size: 1.18rem;
    line-height: 1.5;
}

.section-title {
    max-width: 820px;
    margin: 0;
    color: #333;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
}

.teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.teaser-card {
    min-height: 100%;
    display: grid;
    align-content: start;
    gap: .85rem;
    padding: 1.35rem;
    border: 1px solid var(--cl-line);
    border-radius: 6px;
    background: var(--cl-white);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .06);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.teaser-card:hover,
.teaser-card:focus-within {
    border-color: rgba(0, 137, 105, .34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.teaser-index {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(0, 137, 105, .12);
    color: var(--cl-green);
    border: 1px solid rgba(0, 137, 105, .2);
    border-radius: 4px;
}

.teaser-card:hover .teaser-index {
    background: var(--cl-green);
    color: var(--cl-white);
}

.teaser-card h3 {
    margin: .4rem 0 0;
    color: #333;
    font-size: 1.45rem;
}

.teaser-card p {
    margin: 0;
    line-height: 1.45;
}

.button-small {
    width: fit-content;
    max-width: 100%;
    min-height: 36px;
    padding: .55rem .85rem;
    font-size: .95rem;
    text-align: center;
}

.product-section {
    border-top: 1px solid var(--cl-line);
    background: var(--cl-light);
}

.section-heading {
    margin: 0 0 1.25rem;
    color: #333;
    font-size: 1.45rem;
}

.section-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: .8rem;
    background: var(--cl-line);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.product-card {
    position: relative;
    min-height: 190px;
    display: grid;
    overflow: hidden;
    border: 1px solid var(--cl-line);
    border-radius: 6px;
    background: var(--cl-white);
    color: #333;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.product-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: clamp(170px, 18vw, 220px);
    object-fit: cover;
    transition: transform .25s ease;
}

.product-card-body {
    display: grid;
    gap: .7rem;
    align-content: start;
    padding: 1.15rem;
}

.product-card h3 {
    margin: 0;
    color: #333;
    font-size: 1.35rem;
}

.product-card p {
    margin: 0;
    line-height: 1.45;
}

.product-card:hover img,
.product-card:focus-within img {
    transform: scale(1.04);
}

.product-card:hover,
.product-card:focus-within {
    border-color: rgba(0, 137, 105, .34);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .25rem;
}

.card-actions a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: .5rem .75rem;
    background: var(--cl-green);
    color: var(--cl-white);
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
}

.card-actions a + a {
    background: #333;
}

.split-section {
    background: var(--cl-white);
    border-top: 1px solid var(--cl-line);
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.kicker {
    margin: 0 0 .75rem;
    color: var(--cl-green);
    font-weight: 700;
    text-transform: uppercase;
}

.split-layout h2,
.contact-panel h2 {
    margin: 0;
    color: #333;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.split-layout p,
.contact-panel p {
    margin-top: 0;
    font-size: 1.18rem;
    line-height: 1.55;
}

.rich-text p {
    margin: 0 0 1rem;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 2rem;
}

.fact-item {
    padding: 1rem;
    border: 1px solid var(--cl-line);
    border-radius: 6px;
    background: var(--cl-light);
}

.fact-item strong {
    display: block;
    margin-bottom: .45rem;
    color: var(--cl-green);
    font-size: 1.45rem;
    line-height: 1;
}

.fact-item span {
    display: block;
    color: var(--cl-copy);
    line-height: 1.35;
}

.career-section {
    background: var(--cl-light);
    border-top: 1px solid var(--cl-line);
}

.job-list {
    display: grid;
    gap: 1rem;
}

.job-card {
    padding: 1.2rem;
    border-left: 4px solid var(--cl-green);
    border-radius: 6px;
    background: var(--cl-white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    transition: box-shadow .18s ease, transform .18s ease;
}

.job-card:hover,
.job-card:focus-within {
    box-shadow: 0 16px 36px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.contact-section {
    background: var(--cl-white);
    border-top: 1px solid var(--cl-line);
}

.contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 6px;
    background: var(--cl-anthracite);
    color: var(--cl-white);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .12);
}

.contact-panel h2 {
    max-width: 760px;
    color: var(--cl-white);
}

.contact-panel p {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .86);
}

.contact-panel .kicker {
    color: #bff0e4;
}

.contact-button {
    align-self: center;
    white-space: nowrap;
}

.contact-actions {
    display: grid;
    gap: .75rem;
    justify-items: end;
}

.contact-secondary {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    color: var(--cl-white);
    text-decoration: none;
    font-weight: 700;
}

.contact-secondary:hover,
.contact-secondary:focus-visible {
    color: #bff0e4;
}

.job-card h3 {
    margin: 0 0 .45rem;
    color: #333;
    font-size: 1.25rem;
}

.job-card p {
    margin: 0 0 .85rem;
    color: var(--cl-anthracite);
    font-size: 1rem;
}

.job-card a {
    color: var(--cl-green);
    font-weight: 700;
    text-decoration: none;
}

.job-card a:hover,
.job-card a:focus-visible {
    text-decoration: underline;
}

.site-footer {
    min-height: 30vh;
    background: var(--cl-anthracite);
    color: var(--cl-white);
}

.footer-main {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(280px, 1.25fr);
    gap: 2rem;
}

.footer-widget h2 {
    margin: 0 0 1rem;
    color: var(--cl-white);
    font-size: 1.25rem;
}

.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-widget li + li {
    margin-top: .5rem;
}

.footer-widget a {
    color: var(--cl-white);
    text-decoration: none;
}

.footer-widget a:hover,
.footer-widget a:focus-visible {
    color: #bff0e4;
}

.footer-contact {
    justify-self: end;
    text-align: left;
}

.footer-contact address,
.footer-contact p {
    margin: 0 0 1rem;
    font-style: normal;
    line-height: 1.55;
}

.sub-footer {
    background: #3f3f3f;
    color: var(--cl-white);
}

.sub-footer p {
    margin: 0;
    padding: 1rem 0;
}

.error-section {
    min-height: calc(70vh - var(--header-height));
    display: grid;
    align-items: center;
}

.error-panel {
    max-width: 720px;
}

.error-panel h1 {
    margin: 0 0 1rem;
    color: #333;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1;
}

.error-panel p:not(.kicker) {
    margin: 0 0 1.5rem;
    color: var(--cl-anthracite);
    font-size: 1.18rem;
    line-height: 1.5;
}

@media (min-width: 1160px) {
    .slider-controls {
        right: calc((100% - 1120px) / 2);
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 82px;
    }

    .header-main {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;
    }

    .header-actions {
        display: block;
        min-width: 0;
    }

    .desktop-language-switch {
        display: none;
    }

    .brand img {
        width: 178px;
        max-height: 54px;
    }

    .menu-toggle {
        display: grid;
    }

    .primary-nav {
        position: fixed;
        z-index: 80;
        inset: var(--header-height) 0 0 0;
        width: auto;
        height: calc(100dvh - var(--header-height));
        max-height: none;
        display: none;
        overflow-y: auto;
        justify-self: auto;
        justify-content: stretch;
        align-content: start;
        align-items: start;
        grid-template-columns: minmax(0, 1fr);
        grid-auto-rows: auto;
        padding: .85rem 20px 1.1rem;
        background: rgba(255, 255, 255, .98);
        border-top: 1px solid var(--cl-line);
        border-radius: 0;
        box-shadow: 0 18px 32px rgba(0, 0, 0, .18);
        -webkit-overflow-scrolling: touch;
    }

    .primary-nav.is-open {
        display: grid;
        gap: .45rem;
    }

    .mobile-menu-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        min-height: 46px;
        margin-bottom: .2rem;
        padding: .7rem .9rem;
        border-radius: 6px;
        background: var(--cl-anthracite);
        color: var(--cl-white);
        font-weight: 700;
    }

    .mobile-language-switch {
        display: flex;
        align-items: center;
        gap: .85rem;
        color: rgba(255, 255, 255, .78);
        font-weight: 400;
        white-space: nowrap;
    }

    .mobile-language-switch a {
        color: var(--cl-white);
        text-decoration: none;
    }

    .nav-item,
    .nav-link-row,
    .nav-link-row > a,
    a.nav-item {
        display: flex;
        width: 100%;
    }

    .nav-item {
        display: block;
        border: 1px solid var(--cl-line);
        border-radius: 6px;
        overflow: hidden;
        background: var(--cl-white);
    }

    a.nav-item {
        min-height: 52px;
        align-items: center;
        border: 1px solid var(--cl-line);
        border-radius: 6px;
        background: var(--cl-white);
    }

    .nav-link-row {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 52px;
    }

    .nav-link-row > a,
    a.nav-item {
        min-height: 52px;
        padding: .95rem 1rem;
        border-right: 0;
        color: #333;
        font-size: 1.08rem;
        line-height: 1.2;
    }

    .nav-item:hover .nav-link-row > a,
    .nav-item:focus-within .nav-link-row > a,
    a.nav-item:hover,
    a.nav-item:focus-visible {
        background: var(--cl-light);
    }

    .submenu-toggle {
        display: grid;
        place-items: center;
        min-height: 52px;
        border: 0;
        border-left: 1px solid var(--cl-line);
        background: rgba(0, 137, 105, .08);
        color: var(--cl-green);
        cursor: pointer;
    }

    .submenu-toggle::before {
        content: "";
        width: .6rem;
        height: .6rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: translateY(-2px) rotate(45deg);
        transition: transform .18s ease;
    }

    .has-submenu.is-submenu-open .submenu-toggle::before {
        transform: translateY(2px) rotate(225deg);
    }

    .submenu {
        position: static;
        display: none;
        min-width: 0;
        padding: .25rem 0 .5rem;
        box-shadow: none;
        background: var(--cl-light);
    }

    .has-submenu:hover .submenu,
    .has-submenu:focus-within .submenu {
        display: none;
    }

    .has-submenu.is-submenu-open .submenu {
        display: grid;
    }

    .submenu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: .75rem 1rem .75rem 1.5rem;
        border-top: 1px solid var(--cl-line);
        color: #333;
        line-height: 1.25;
    }

    .submenu a:hover,
    .submenu a:focus-visible {
        background: var(--cl-white);
        color: var(--cl-green);
    }

    body.nav-open {
        overflow: hidden;
    }

    .teaser-grid,
    .product-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section-intro,
    .split-layout {
        grid-template-columns: 1fr;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        justify-items: start;
    }

    .footer-contact {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 74px;
    }

    .container,
    .header-inner,
    .hero-content {
        width: calc(100% - 28px);
        max-width: 1120px;
    }

    .language-switch {
        font-size: .82rem;
    }

    .brand img {
        width: 160px;
        max-height: 48px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(1.95rem, 8vw, 2.35rem);
        line-height: 1.06;
    }

    .hero-content p {
        max-width: 100%;
        font-size: 1.05rem;
    }

    .hero-content .button {
        max-width: 100%;
        text-align: center;
    }

    .slider-controls {
        right: 14px;
    }

    .teaser-grid,
    .product-grid,
    .footer-grid,
    .fact-grid {
        grid-template-columns: 1fr;
    }

    .site-header {
        min-height: var(--header-height);
    }

    .header-inner {
        min-height: var(--header-height);
    }

    .teaser-card p {
        min-height: 0;
    }

    .contact-panel {
        padding: 1.5rem;
    }

    .contact-button,
    .contact-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .button-small {
        width: 100%;
    }

    .primary-nav {
        padding-right: 14px;
        padding-left: 14px;
    }

    .mobile-menu-top {
        align-items: flex-start;
        flex-direction: column;
        gap: .4rem;
    }
}

@media (max-width: 420px) {
    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(1.8rem, 8.5vw, 2.08rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero-slide,
    .product-card img,
    .button,
    .teaser-card,
    .product-card,
    .job-card {
        transition: none;
    }

    .button:hover,
    .button:focus-visible,
    .teaser-card:hover,
    .teaser-card:focus-within,
    .product-card:hover,
    .product-card:focus-within,
    .job-card:hover,
    .job-card:focus-within {
        transform: none;
    }
}
