:root {
    --fixpoint-gallery-page: #050505;
    --fixpoint-gallery-surface: #0d0d0d;
    --fixpoint-gallery-surface-2: #141414;
    --fixpoint-gallery-border: rgba(255, 255, 255, 0.12);
    --fixpoint-gallery-orange: #ff7a00;
    --fixpoint-gallery-orange-soft: #ff9a3d;
    --fixpoint-gallery-text: #f5f5f5;
    --fixpoint-gallery-muted: #a7a7a7;
    --fixpoint-gallery-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.fixpoint-gallery-body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 78% 14%, rgba(255, 122, 0, 0.08), transparent 28%),
        linear-gradient(180deg, #030303 0%, #070707 55%, #030303 100%);
    color: var(--fixpoint-gallery-text);
    font-family: "Segoe UI", Arial, sans-serif;
}

body.fixpoint-gallery-lightbox-open {
    overflow: hidden;
}

.fixpoint-gallery-page {
    position: relative;
    padding: calc(var(--fixpoint-header-height, 78px) + 30px) 0 42px;
}

.fixpoint-gallery-page::before {
    content: "";
    position: absolute;
    top: 70px;
    right: -10%;
    width: 70%;
    height: 480px;
    pointer-events: none;
    opacity: 0.2;
    background:
        linear-gradient(90deg, transparent 0 18%, rgba(255, 122, 0, 0.12) 18% 18.2%, transparent 18.2% 100%),
        linear-gradient(0deg, transparent 0 60%, rgba(255, 122, 0, 0.1) 60% 60.3%, transparent 60.3% 100%);
    mask-image: linear-gradient(to left, #000, transparent 88%);
}

.fixpoint-gallery-shell {
    position: relative;
    z-index: 1;
    width: min(1500px, calc(100% - 56px));
    margin: 0 auto;
}

.fixpoint-gallery-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #8d8d8d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fixpoint-gallery-breadcrumb a {
    color: #c5c5c5;
    text-decoration: none;
}

.fixpoint-gallery-breadcrumb a:hover,
.fixpoint-gallery-breadcrumb a:focus-visible,
.fixpoint-gallery-breadcrumb span[aria-current="page"] {
    color: var(--fixpoint-gallery-orange);
}

.fixpoint-gallery-heading {
    max-width: 820px;
    margin-bottom: 24px;
}

.fixpoint-gallery-heading h1 {
    margin: 0;
    font-size: clamp(42px, 5.2vw, 70px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.fixpoint-gallery-heading h1 span {
    color: #fff;
    font-weight: 650;
}

.fixpoint-gallery-heading h1 strong {
    margin-left: 10px;
    color: var(--fixpoint-gallery-orange);
    font-weight: 700;
}

.fixpoint-gallery-heading p {
    position: relative;
    max-width: 700px;
    margin: 18px 0 0;
    padding-left: 18px;
    color: #b8b8b8;
    font-size: 15px;
    line-height: 1.65;
}

.fixpoint-gallery-heading p::before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 0;
    width: 2px;
    background: var(--fixpoint-gallery-orange);
    box-shadow: 0 0 14px rgba(255, 122, 0, 0.5);
}

.fixpoint-gallery-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.fixpoint-gallery-filter {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(13, 13, 13, 0.98));
    color: #d8d8d8;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.fixpoint-gallery-filter:hover,
.fixpoint-gallery-filter:focus-visible {
    border-color: rgba(255, 122, 0, 0.5);
    color: #fff;
}

.fixpoint-gallery-filter.is-active {
    border-color: var(--fixpoint-gallery-orange);
    background: linear-gradient(180deg, #ff850a, #e96600);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.2);
}

.fixpoint-gallery-filter-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.fixpoint-gallery-filter-icon svg,
.fixpoint-workshop-feature-icon svg,
.fixpoint-gallery-cta-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fixpoint-gallery-layout {
    display: grid;
    grid-template-columns: minmax(0, 3.15fr) minmax(300px, 1fr);
    gap: 22px;
    align-items: stretch;
}

.fixpoint-gallery-main {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    grid-auto-rows: 218px;
    gap: 12px;
    min-width: 0;
}

.fixpoint-gallery-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 13px;
    background: #0d0d0d;
    color: inherit;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.fixpoint-gallery-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.fixpoint-gallery-card[hidden] {
    display: none !important;
}

.fixpoint-gallery-card:hover,
.fixpoint-gallery-card:focus-visible {
    border-color: rgba(255, 122, 0, 0.62);
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 122, 0, 0.08);
}

.fixpoint-gallery-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: #111;
}

.fixpoint-gallery-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.18) 52%, rgba(0, 0, 0, 0.94) 100%);
}

.fixpoint-gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 260ms ease, filter 260ms ease;
}

.fixpoint-gallery-card:hover .fixpoint-gallery-media img,
.fixpoint-gallery-card:focus-visible .fixpoint-gallery-media img {
    transform: scale(1.025);
    filter: brightness(1.05);
}

.fixpoint-gallery-featured-label {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 10px;
    border: 1px solid rgba(255, 122, 0, 0.3);
    border-radius: 7px;
    background: rgba(4, 4, 4, 0.78);
    color: var(--fixpoint-gallery-orange-soft);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.fixpoint-gallery-card-copy {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: auto;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.fixpoint-gallery-card--featured .fixpoint-gallery-card-copy {
    grid-template-columns: 44px minmax(0, 1fr) 22px;
    padding: 20px;
}

.fixpoint-gallery-card-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 122, 0, 0.34);
    border-radius: 9px;
    background: rgba(255, 122, 0, 0.06);
    color: var(--fixpoint-gallery-orange);
    font-size: 19px;
}

.fixpoint-gallery-card--featured .fixpoint-gallery-card-icon {
    width: 42px;
    height: 42px;
}

.fixpoint-gallery-card-text {
    min-width: 0;
}

.fixpoint-gallery-card-text strong,
.fixpoint-gallery-card-text small {
    display: block;
}

.fixpoint-gallery-card-text strong {
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixpoint-gallery-card--featured .fixpoint-gallery-card-text strong {
    font-size: 16px;
    white-space: normal;
}

.fixpoint-gallery-card-text small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 5px;
    color: #b4b4b4;
    font-size: 11px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.fixpoint-gallery-card--featured .fixpoint-gallery-card-text small {
    font-size: 12px;
}

.fixpoint-gallery-card-arrow {
    justify-self: end;
    color: var(--fixpoint-gallery-orange);
    font-size: 18px;
    transition: transform 160ms ease;
}

.fixpoint-gallery-card:hover .fixpoint-gallery-card-arrow,
.fixpoint-gallery-card:focus-visible .fixpoint-gallery-card-arrow {
    transform: translateX(3px);
}

.fixpoint-gallery-main.is-filtered {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fixpoint-gallery-main.is-filtered .fixpoint-gallery-card--featured {
    grid-column: span 1;
    grid-row: span 1;
}

.fixpoint-workshop-aside {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    min-width: 0;
}

.fixpoint-workshop-panel {
    position: relative;
    overflow: hidden;
    padding: 27px 24px;
    border: 1px solid rgba(255, 122, 0, 0.72);
    border-radius: 18px;
    background:
        radial-gradient(circle at 30% 0%, rgba(255, 122, 0, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(8, 8, 8, 0.98));
    box-shadow: var(--fixpoint-gallery-shadow), inset 0 0 36px rgba(255, 122, 0, 0.025);
}

.fixpoint-workshop-panel::before,
.fixpoint-workshop-panel::after {
    content: "";
    position: absolute;
    width: 64px;
    height: 64px;
    pointer-events: none;
}

.fixpoint-workshop-panel::before {
    top: 10px;
    right: 10px;
    border-top: 2px solid var(--fixpoint-gallery-orange);
    border-right: 2px solid var(--fixpoint-gallery-orange);
}

.fixpoint-workshop-panel::after {
    bottom: 10px;
    left: 10px;
    border-bottom: 2px solid var(--fixpoint-gallery-orange);
    border-left: 2px solid var(--fixpoint-gallery-orange);
}

.fixpoint-workshop-panel-heading {
    position: relative;
    z-index: 1;
    padding: 7px 4px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.fixpoint-workshop-panel-heading p,
.fixpoint-workshop-panel-heading h2 {
    margin: 0;
}

.fixpoint-workshop-panel-heading p {
    color: #fff;
    font-size: 20px;
    font-weight: 650;
}

.fixpoint-workshop-panel-heading h2 {
    margin-top: 2px;
    color: var(--fixpoint-gallery-orange);
    font-size: 28px;
    line-height: 1.05;
}

.fixpoint-workshop-panel-heading span {
    display: block;
    margin-top: 12px;
    color: #aaa;
    font-size: 12px;
    line-height: 1.6;
}

.fixpoint-workshop-features {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding-top: 12px;
}

.fixpoint-workshop-feature {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 12px 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fixpoint-workshop-feature:last-child {
    border-bottom: 0;
}

.fixpoint-workshop-feature-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px;
    border: 1px solid rgba(255, 122, 0, 0.38);
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.045);
    color: var(--fixpoint-gallery-orange);
}

.fixpoint-workshop-feature strong,
.fixpoint-workshop-feature small {
    display: block;
}

.fixpoint-workshop-feature strong {
    color: #f6f6f6;
    font-size: 14px;
}

.fixpoint-workshop-feature small {
    margin-top: 4px;
    color: #9d9d9d;
    font-size: 11px;
    line-height: 1.5;
}

.fixpoint-gallery-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 17px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(8, 8, 8, 0.98));
}

.fixpoint-gallery-stat {
    min-width: 0;
    padding: 2px 10px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.fixpoint-gallery-stat:last-child {
    border-right: 0;
}

.fixpoint-gallery-stat strong,
.fixpoint-gallery-stat span {
    display: block;
}

.fixpoint-gallery-stat strong {
    color: var(--fixpoint-gallery-orange);
    font-size: clamp(19px, 2vw, 28px);
    line-height: 1;
}

.fixpoint-gallery-stat span {
    margin-top: 7px;
    color: #aaa;
    font-size: 10px;
    line-height: 1.35;
}

.fixpoint-gallery-cta {
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 20px 28px;
    border: 1px solid rgba(255, 122, 0, 0.72);
    border-radius: 14px;
    background:
        radial-gradient(circle at 8% 50%, rgba(255, 122, 0, 0.12), transparent 20%),
        linear-gradient(90deg, rgba(11, 11, 11, 0.98), rgba(19, 12, 6, 0.96), rgba(8, 8, 8, 0.98));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.fixpoint-gallery-cta-copy {
    min-width: 0;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.fixpoint-gallery-cta-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    padding: 14px;
    border: 1px solid rgba(255, 122, 0, 0.45);
    border-radius: 16px;
    color: var(--fixpoint-gallery-orange);
    background: rgba(255, 122, 0, 0.04);
}

.fixpoint-gallery-cta-copy strong,
.fixpoint-gallery-cta-copy small,
.fixpoint-gallery-cta-copy em {
    display: block;
}

.fixpoint-gallery-cta-copy strong {
    color: #fff;
    font-size: 18px;
}

.fixpoint-gallery-cta-copy small {
    max-width: 650px;
    margin-top: 5px;
    color: #aaa;
    font-size: 12px;
    line-height: 1.55;
}

.fixpoint-gallery-cta-copy em {
    margin-top: 5px;
    overflow: hidden;
    color: #787878;
    font-size: 10px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fixpoint-gallery-cta-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.fixpoint-gallery-cta-button {
    min-width: 220px;
    min-height: 66px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.fixpoint-gallery-cta-button:hover,
.fixpoint-gallery-cta-button:focus-visible {
    transform: translateY(-2px);
}

.fixpoint-gallery-cta-button span {
    font-size: 14px;
    font-weight: 650;
}

.fixpoint-gallery-cta-button small {
    margin-top: 3px;
    font-size: 11px;
}

.fixpoint-gallery-cta-button--primary {
    border: 1px solid #ff860d;
    background: linear-gradient(180deg, #ff8610, #e86300);
    color: #fff;
}

.fixpoint-gallery-cta-button--secondary {
    border: 1px solid rgba(255, 122, 0, 0.46);
    background: rgba(10, 10, 10, 0.88);
    color: #f4f4f4;
}

.fixpoint-gallery-cta-button--secondary small {
    color: #aaa;
}

.fixpoint-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(14px);
}

.fixpoint-gallery-lightbox.is-open {
    display: flex;
}

.fixpoint-gallery-lightbox-dialog {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 56px);
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 14px;
}

.fixpoint-gallery-lightbox-content {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 122, 0, 0.34);
    border-radius: 16px;
    background: #090909;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.fixpoint-gallery-lightbox-content img {
    width: 100%;
    max-height: min(72vh, 760px);
    object-fit: contain;
    background: #030303;
}

.fixpoint-gallery-lightbox-content figcaption {
    padding: 16px 20px 18px;
}

.fixpoint-gallery-lightbox-content strong,
.fixpoint-gallery-lightbox-content span {
    display: block;
}

.fixpoint-gallery-lightbox-content strong {
    color: #fff;
    font-size: 17px;
}

.fixpoint-gallery-lightbox-content span {
    margin-top: 6px;
    color: #aaa;
    font-size: 12px;
    line-height: 1.55;
}

.fixpoint-gallery-lightbox-close,
.fixpoint-gallery-lightbox-nav {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(15, 15, 15, 0.9);
    color: #fff;
    cursor: pointer;
}

.fixpoint-gallery-lightbox-close {
    position: absolute;
    top: -14px;
    right: 42px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
}

.fixpoint-gallery-lightbox-nav {
    width: 48px;
    height: 58px;
    border-radius: 12px;
    color: var(--fixpoint-gallery-orange);
    font-size: 34px;
}

.fixpoint-gallery-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: #030303;
}

.fixpoint-gallery-footer-inner {
    width: min(1500px, calc(100% - 56px));
    margin: 0 auto;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: #727272;
    font-size: 11px;
}

.fixpoint-gallery-footer-inner p {
    margin: 0;
}

.fixpoint-gallery-footer-inner a {
    color: #999;
    text-decoration: none;
}

.fixpoint-gallery-footer-inner a:hover,
.fixpoint-gallery-footer-inner a:focus-visible {
    color: var(--fixpoint-gallery-orange-soft);
}

@media (max-width: 1240px) {
    .fixpoint-gallery-layout {
        grid-template-columns: 1fr;
    }

    .fixpoint-workshop-aside {
        grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.7fr);
        grid-template-rows: auto;
        align-items: stretch;
    }

    .fixpoint-gallery-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 980px) {
    .fixpoint-gallery-shell,
    .fixpoint-gallery-footer-inner {
        width: min(100% - 36px, 1500px);
    }

    .fixpoint-gallery-filters {
        overflow-x: auto;
        padding-bottom: 5px;
        scrollbar-width: thin;
    }

    .fixpoint-gallery-filter {
        flex: 0 0 auto;
    }

    .fixpoint-gallery-main,
    .fixpoint-gallery-main.is-filtered {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 250px;
    }

    .fixpoint-gallery-card--featured,
    .fixpoint-gallery-main.is-filtered .fixpoint-gallery-card--featured {
        grid-column: span 2;
        grid-row: span 2;
    }

    .fixpoint-workshop-aside {
        grid-template-columns: 1fr;
    }

    .fixpoint-gallery-cta-actions {
        width: 100%;
    }

    .fixpoint-gallery-cta-button {
        flex: 1 1 0;
        min-width: 0;
    }
}

@media (max-width: 680px) {
    .fixpoint-gallery-page {
        padding-top: calc(var(--fixpoint-header-height, 78px) + 20px);
    }

    .fixpoint-gallery-shell,
    .fixpoint-gallery-footer-inner {
        width: min(100% - 28px, 1500px);
    }

    .fixpoint-gallery-heading h1 strong {
        display: block;
        margin: 4px 0 0;
    }

    .fixpoint-gallery-heading p {
        font-size: 13px;
    }

    .fixpoint-gallery-main,
    .fixpoint-gallery-main.is-filtered {
        grid-template-columns: 1fr;
        grid-auto-rows: 265px;
    }

    .fixpoint-gallery-card--featured,
    .fixpoint-gallery-main.is-filtered .fixpoint-gallery-card--featured {
        grid-column: span 1;
        grid-row: span 2;
    }

    .fixpoint-gallery-card-text strong {
        font-size: 14px;
    }

    .fixpoint-gallery-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .fixpoint-gallery-stat {
        padding: 12px 8px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .fixpoint-gallery-stat:last-child {
        border-bottom: 0;
    }

    .fixpoint-gallery-cta {
        padding: 20px;
    }

    .fixpoint-gallery-cta-copy {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 13px;
    }

    .fixpoint-gallery-cta-icon {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .fixpoint-gallery-cta-actions {
        flex-direction: column;
    }

    .fixpoint-gallery-lightbox {
        padding: 16px;
    }

    .fixpoint-gallery-lightbox-dialog {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .fixpoint-gallery-lightbox-nav {
        position: absolute;
        top: 45%;
        z-index: 2;
        width: 42px;
        height: 48px;
    }

    .fixpoint-gallery-lightbox-nav--prev {
        left: 8px;
    }

    .fixpoint-gallery-lightbox-nav--next {
        right: 8px;
    }

    .fixpoint-gallery-lightbox-close {
        top: 8px;
        right: 8px;
    }

    .fixpoint-gallery-footer-inner {
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .fixpoint-gallery-card,
    .fixpoint-gallery-media img,
    .fixpoint-gallery-card-arrow,
    .fixpoint-gallery-filter,
    .fixpoint-gallery-cta-button {
        transition: none !important;
    }

    .fixpoint-gallery-card:hover,
    .fixpoint-gallery-card:focus-visible,
    .fixpoint-gallery-cta-button:hover,
    .fixpoint-gallery-cta-button:focus-visible {
        transform: none;
    }
}
