.productItemPage .pageTitle {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.productItem__title {
    font-size: var(--txtSize-2);
}

.productItem__image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.pb-gt2-nav {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .productItem {
        display: grid;
        grid-template-areas:
            'images text';
        grid-template-columns: minmax(300px, auto) minmax(16em, 32em);
        grid-gap: 4rem;
    }

    .productItem__image {
        grid-area: images;
    }

    .productItem__text {
        grid-area: text;
    }
}

/**
 * Specs list
 */

.productItem__specs {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center
}

.productItem__specs dt,
.productItem__specs dd {
    margin-bottom: 1rem;
}

.productItem__specs dt {
    width: 8rem;
    font-size: var(--txtSize-7);
}

.productItem__specs dd {
    width: calc(100% - 8rem);
}
