/* kuka product page layout helpers (moved from inline styles) */
.kuka-intro {
    display: block !important;
    max-width: 100% !important;
    margin-top: 100px;
}

.kuka-center {
    display: flex;
    justify-content: center;
}


.kuka-inner {
    width: 100%;
    max-width: 1100px;
    padding: 0 20px;
    margin-top: 10px;
}

.kuka-title-custom {
    font-family: 'Gtek Technology', Sans-serif;
    color: #00FFFF;
    font-size: 32px !important;
    letter-spacing: 0.1em;
    margin-bottom: 40px !important;
    text-align: center;
}

.kuka-copy {
    max-width: 700px;
    margin: 0 auto 32px;
    text-align: justify;
    color: #fff;
    font-size: 16px !important;
}

.kuka-image-row {
    display: block !important;
    max-width: 100% !important;
}

.kuka-hero-img {
    /* width: 100%; */
    max-width: 900px;
    display: block;
    margin-bottom: 40px !important;
}

.kuka-features-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
}

.kuka-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1100px;
}

.kuka-gallery-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Responsive tweaks */
@media only screen and (max-width: 768px) {
    .kuka-title {
        font-size: 32px !important;
        margin-bottom: 40px !important;
    }

    .kuka-copy {
        text-align: left;
        text-align-last: left;
        word-spacing: normal;
        hyphens: auto;
    }

    .kuka-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 480px) {
    .kuka-title {
        font-size: 32px !important;
        margin-bottom: 40px !important;
    }

    .kuka-gallery-grid {
        grid-template-columns: 1fr;
    }
}

.kuka-features-list ul li::before {
    content: none !important;
}