/* Galaxy Chains — product pages */
.galaxy-product-hero {
    padding: 56px 0 48px;
    background: linear-gradient(180deg, #f4f6f8 0%, #fff 100%);
}

.galaxy-product-hero .section-title h2 {
    font-size: clamp(1.45rem, 2.4vw, 1.95rem);
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.galaxy-product-hero__lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #5c677d;
    margin: 18px 0 0;
}

.galaxy-product-hero__img {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 45, 90, 0.14);
}

.galaxy-product-hero__img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.galaxy-product-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
}

@media (max-width: 991px) {
    .galaxy-product-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .galaxy-product-stats { grid-template-columns: 1fr; }
}

.galaxy-product-stat {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(26, 45, 90, 0.1);
    border-top: 4px solid var(--galaxy-red);
    box-shadow: 0 8px 24px rgba(26, 45, 90, 0.08);
}

.galaxy-product-stat__value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--galaxy-red);
    line-height: 1.2;
    margin-bottom: 6px;
}

.galaxy-product-stat__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--galaxy-blue);
    line-height: 1.35;
}

.galaxy-product-section {
    padding: 70px 0;
}

.galaxy-product-section--gray {
    background: #f4f6f8;
}

.galaxy-product-range-section .galaxy-product-range-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 991px) {
    .galaxy-product-range-section .galaxy-product-range-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

@media (max-width: 575px) {
    .galaxy-product-range-section .galaxy-product-range-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

.galaxy-range-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(26, 45, 90, 0.1);
    box-shadow: 0 8px 28px rgba(26, 45, 90, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.galaxy-range-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(196, 30, 58, 0.4);
    box-shadow: 0 20px 48px rgba(26, 45, 90, 0.16);
    color: inherit;
}

.galaxy-range-tile__visual {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.galaxy-range-tile__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(15, 26, 51, 0.75) 0%, rgba(15, 26, 51, 0.15) 5%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.galaxy-range-tile__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.galaxy-range-tile__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galaxy-range-tile:hover .galaxy-range-tile__visual img {
    transform: scale(1.1);
}

.galaxy-range-tile:hover .galaxy-range-tile__visual {
    background: linear-gradient(145deg, var(--galaxy-red) 0%, #8b1528 40%, var(--galaxy-blue) 100%);
}

.galaxy-range-tile__icon {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.25rem;
    transition: background 0.3s ease, transform 0.3s ease;
}

.galaxy-range-tile:hover .galaxy-range-tile__icon {
    background: var(--galaxy-red);
    border-color: var(--galaxy-red);
    transform: scale(1.08);
}

.galaxy-range-tile__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px 18px;
    background: #fff;
}

.galaxy-range-tile__name {
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--galaxy-blue);
    transition: color 0.25s ease;
}

.galaxy-range-tile:hover .galaxy-range-tile__name {
    color: var(--galaxy-red);
}

.galaxy-range-tile__go {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(26, 45, 90, 0.08);
    color: var(--galaxy-blue);
    font-size: 0.8rem;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.galaxy-range-tile:hover .galaxy-range-tile__go {
    background: var(--galaxy-red);
    color: #fff;
    transform: translateX(3px);
}

.galaxy-product-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.galaxy-product-why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #444;
}

.galaxy-product-why-list li i {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--galaxy-red);
    color: #fff;
    font-size: 0.65rem;
    margin-top: 2px;
}

.galaxy-product-seo p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #555;
    margin: 0;
}

.galaxy-product-cta {
    padding: 0 0 90px;
}

.galaxy-product-cta__box {
    background: linear-gradient(135deg, var(--galaxy-blue) 0%, #2a4070 100%);
    color: #fff;
    text-align: center;
    padding: 52px 40px;
    border-radius: 16px;
    border-top: 4px solid var(--galaxy-red);
    box-shadow: 0 16px 48px rgba(26, 45, 90, 0.2);
}

.galaxy-product-cta__box h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff !important;
    margin: 0 0 12px;
}

.galaxy-product-cta__box p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 560px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.galaxy-product-cta__btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.galaxy-product-cta__btns .btn-default.btn-highlighted {
    margin-left: 0;
}

/* Roller chains sub-page */
.galaxy-roller-config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .galaxy-roller-config-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

.galaxy-roller-config-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 767px) {
    .galaxy-roller-config-grid--two { grid-template-columns: 1fr; max-width: 400px; }
}

.galaxy-inquiry-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin: 28px auto 8px;
}

.galaxy-inquiry-btns .btn-default i {
    margin-right: 8px;
}

.galaxy-roller-spec-cta .galaxy-inquiry-btns {
    margin: 0;
    justify-content: flex-end;
}

.galaxy-roller-spec-cta__text p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--galaxy-blue);
    font-weight: 600;
}

.galaxy-product-custom {
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px;
    border: 1px solid rgba(26, 45, 90, 0.1);
    box-shadow: 0 8px 28px rgba(26, 45, 90, 0.08);
}

.galaxy-product-custom__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 28px;
}

.galaxy-product-custom__cta .btn-default.btn-highlighted {
    margin-left: 0;
}

.galaxy-pin-features-grid h3 {
    margin: 0 0 14px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--galaxy-navy, #1a2d5a);
}

.galaxy-pin-features-grid .galaxy-product-why-list {
    margin: 0;
}

.galaxy-roller-config-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(26, 45, 90, 0.1);
    box-shadow: 0 8px 28px rgba(26, 45, 90, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galaxy-roller-config-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26, 45, 90, 0.14);
}

.galaxy-roller-config-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.galaxy-roller-config-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.galaxy-roller-config-card:hover .galaxy-roller-config-card__media img {
    transform: scale(1.06);
}

.galaxy-roller-config-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: var(--galaxy-red);
    padding: 4px 10px;
    border-radius: 4px;
}

.galaxy-roller-config-card__body {
    padding: 16px 18px 18px;
}

.galaxy-roller-config-card__body h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--galaxy-blue);
    line-height: 1.35;
}

.galaxy-roller-config-card__desc {
    margin: 6px 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: #5c677d;
    font-weight: 400;
}

.galaxy-spec-table--leaf {
    min-width: 880px;
}

.galaxy-bs-specs-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.galaxy-bs-specs-actions .btn-default.btn-highlighted {
    margin-left: 0;
}

.galaxy-roller-spec-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    padding: 28px 32px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 45, 90, 0.1);
    border-left: 4px solid var(--galaxy-red);
    box-shadow: 0 8px 24px rgba(26, 45, 90, 0.08);
}

.galaxy-roller-spec-cta__text {
    flex: 1;
    min-width: 240px;
}

.galaxy-roller-spec-cta__text h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: var(--galaxy-blue);
    line-height: 1.35;
}

.galaxy-roller-spec-cta__text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5c677d;
}

.galaxy-roller-features-box {
    height: 100%;
    padding: 28px 26px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 45, 90, 0.1);
    border-top: 4px solid var(--galaxy-red);
    box-shadow: 0 8px 24px rgba(26, 45, 90, 0.06);
}

.galaxy-roller-features-box h3 {
    margin: 0 0 18px;
    font-size: 1.1rem;
    color: var(--galaxy-blue);
}

.galaxy-roller-apps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
}

@media (max-width: 575px) {
    .galaxy-roller-apps { grid-template-columns: 1fr; }
}

.galaxy-roller-apps li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #444;
}

.galaxy-roller-apps li i {
    flex-shrink: 0;
    color: var(--galaxy-red);
    margin-top: 3px;
    font-size: 0.85rem;
}

/* British Standard roller chains specs page */
.galaxy-bs-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.galaxy-bs-standards__tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--galaxy-blue);
    background: rgba(26, 45, 90, 0.08);
    border: 1px solid rgba(26, 45, 90, 0.15);
    padding: 6px 12px;
    border-radius: 6px;
}

.galaxy-bs-specs-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: #5c677d;
    margin-bottom: 32px;
}

/* Tabbed specifications panel */
.galaxy-spec-panel {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 45, 90, 0.12);
    box-shadow: 0 10px 40px rgba(26, 45, 90, 0.1);
    overflow: hidden;
    margin-bottom: 24px;
}

.galaxy-spec-tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    border-bottom: 2px solid #e2e6ec;
    background: #eef1f5;
}

.galaxy-spec-tabs__btn {
    position: relative;
    flex: 1;
    min-width: 120px;
    margin: 0;
    padding: 14px 28px 14px 22px;
    border: none;
    background: #e8ebf0;
    color: #333;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%, 14px 50%);
}

.galaxy-spec-tabs__btn:first-child {
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 0 100%);
    padding-left: 20px;
}

.galaxy-spec-tabs__btn:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 14px 50%);
    padding-right: 20px;
}

.galaxy-spec-tabs__btn:not(:first-child) {
    margin-left: -8px;
}

.galaxy-spec-tabs__btn:hover {
    background: #dce2eb;
    color: var(--galaxy-blue);
}

.galaxy-spec-tabs__btn.is-active {
    background: var(--galaxy-blue);
    color: #fff;
    z-index: 2;
}

.galaxy-spec-panel__body {
    display: none;
    padding: 28px 24px 24px;
}

.galaxy-spec-panel__body.is-active {
    display: block;
}

.galaxy-spec-tab-banner {
    margin: 0 0 20px;
    padding: 12px 16px;
    background: var(--galaxy-blue);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.5;
    border-radius: 8px;
}

.galaxy-spec-visuals {
    margin-bottom: 24px;
}

.galaxy-spec-visuals > [class*="col-"] {
    display: flex;
}

.galaxy-spec-visuals__product,
.galaxy-spec-visuals__drawing {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 300px;
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(26, 45, 90, 0.1);
    border-radius: 10px;
    box-sizing: border-box;
}

.galaxy-spec-visuals__product img,
.galaxy-spec-visuals__drawing img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 320px;
    display: block;
    object-fit: contain;
    object-position: center;
}

.galaxy-spec-drawing {
    text-align: center;
    padding: 16px 12px 24px;
    background: #fafbfc;
    border-radius: 10px;
    border: 1px solid rgba(26, 45, 90, 0.08);
    margin-bottom: 24px;
}

.galaxy-spec-drawing img {
    max-width: 100%;
    height: auto;
    max-height: 280px;
    display: inline-block;
}

.galaxy-spec-th-sub {
    display: block;
    margin-top: 4px;
    font-size: 0.68rem;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0.9;
}

.galaxy-spec-chain-iso,
.galaxy-spec-desc-mm {
    font-size: 0.72rem;
    color: #5c677d;
}

.galaxy-spec-table--bs {
    min-width: 1280px;
}

.galaxy-spec-table--bs thead th {
    white-space: normal;
    vertical-align: bottom;
    min-width: 88px;
}

.galaxy-spec-table--bs thead th:first-child,
.galaxy-spec-table--bs tbody td:first-child {
    min-width: 100px;
}

.galaxy-spec-table--bs thead th:nth-child(2),
.galaxy-spec-table--bs tbody td:nth-child(2) {
    min-width: 120px;
    white-space: normal;
}

.galaxy-spec-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    border: 1px solid rgba(26, 45, 90, 0.1);
}

.galaxy-spec-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
    font-size: 0.78rem;
    background: #fff;
}

.galaxy-spec-table thead th {
    background: var(--galaxy-blue);
    color: #fff;
    font-weight: 700;
    text-align: center;
    padding: 12px 10px;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1.3;
}

.galaxy-spec-table thead th:last-child {
    border-right: none;
}

.galaxy-spec-table tbody td {
    padding: 10px 10px;
    text-align: center;
    color: #333;
    border-bottom: 1px solid #e8ebf0;
    border-right: 1px solid #eef1f5;
    white-space: nowrap;
}

.galaxy-spec-table tbody tr:nth-child(even) td {
    background: #f8f9fb;
}

.galaxy-spec-table tbody tr:hover td {
    background: rgba(196, 30, 58, 0.06);
}

.galaxy-spec-table tbody td:last-child {
    border-right: none;
}

.galaxy-spec-table-note {
    font-size: 0.88rem;
    color: #5c677d;
    margin: 0 0 28px;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .galaxy-spec-tabs__btn {
        flex: 1 1 100%;
        clip-path: none !important;
        margin-left: 0 !important;
        padding: 12px 16px !important;
        border-bottom: 1px solid #d5dae3;
    }

    .galaxy-spec-tabs__btn.is-active {
        border-bottom-color: var(--galaxy-blue);
    }

    .galaxy-spec-panel__body {
        padding: 20px 14px;
    }

    .galaxy-spec-visuals__product,
    .galaxy-spec-visuals__drawing {
        min-height: 220px;
    }

    .galaxy-spec-tab-banner {
        font-size: 0.7rem;
    }
}

.galaxy-bs-specs-ref {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 36px;
}

.galaxy-bs-specs-ref a {
    color: var(--galaxy-blue);
    text-decoration: underline;
}

.galaxy-bs-config-list {
    max-width: 640px;
    margin: 0 auto;
    padding: 28px 32px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(26, 45, 90, 0.1);
    border-left: 4px solid var(--galaxy-red);
    box-shadow: 0 8px 24px rgba(26, 45, 90, 0.06);
}

.galaxy-bs-config-list h3 {
    margin: 0 0 16px;
    font-size: 1.1rem;
    color: var(--galaxy-blue);
}

.galaxy-bs-config-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: grid;
    gap: 10px;
}

.galaxy-bs-config-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
}

.galaxy-bs-config-list li i {
    color: var(--galaxy-red);
    font-size: 0.8rem;
}

.galaxy-bs-config-list__note {
    margin: 0;
    font-size: 0.88rem;
    color: #5c677d;
    line-height: 1.5;
}

.galaxy-other-chains-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1199px) {
    .galaxy-other-chains-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
    .galaxy-other-chains-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .galaxy-other-chains-gallery { grid-template-columns: 1fr; }
}

.galaxy-other-chains-gallery__item {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(26, 45, 90, 0.1);
    box-shadow: 0 8px 24px rgba(26, 45, 90, 0.08);
}

.galaxy-other-chains-gallery__item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.galaxy-other-chains-gallery__link {
    display: block;
}

.galaxy-other-chains-gallery__item:hover img {
    transform: scale(1.04);
}

.galaxy-other-chains-gallery__item figcaption {
    padding: 12px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--galaxy-blue);
    line-height: 1.4;
}

.galaxy-other-chains-category-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .galaxy-other-chains-category-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .galaxy-other-chains-category-gallery { grid-template-columns: 1fr; }
}

.galaxy-other-chains-category-gallery__item {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(26, 45, 90, 0.1);
    box-shadow: 0 8px 24px rgba(26, 45, 90, 0.08);
}

.galaxy-other-chains-category-gallery__link {
    display: block;
}

.galaxy-other-chains-category-gallery__item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.galaxy-other-chains-category-gallery__item:hover img {
    transform: scale(1.04);
}

.galaxy-industry-products-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .galaxy-industry-products-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575px) {
    .galaxy-industry-products-gallery { grid-template-columns: 1fr; }
}

.galaxy-industry-products-gallery__item {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(26, 45, 90, 0.1);
    box-shadow: 0 8px 24px rgba(26, 45, 90, 0.08);
}

.galaxy-industry-products-gallery__link {
    display: block;
}

.galaxy-industry-products-gallery__item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.galaxy-industry-products-gallery__item:hover img {
    transform: scale(1.04);
}

.galaxy-industry-products-gallery__item figcaption {
    display: none;
}
