.product-commentary-lead {
    border-left: 3px solid var(--primary, #0079a8);
    background: var(--gray-100, #f8f9fa);
    color: var(--gray-700, #495057);
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 1.5rem;
    line-height: 1.65;
}

.product-commentary-lead__label,
.product-commentary__label {
    color: var(--primary, #0079a8);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 1.5;
    text-transform: uppercase;
}

.product-commentary-lead p,
.product-commentary__copy {
    white-space: pre-line;
    overflow-wrap: anywhere;
}

.product-commentary {
    border-top: 1px solid var(--gray-200, #e9ecef);
    margin: 2.5rem 0 3rem;
    padding-top: 1.75rem;
    scroll-margin-top: 8rem;
}

.product-commentary__heading {
    color: var(--gray-900, #212529);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.75rem;
}

.product-commentary__body {
    gap: 2.5rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    align-items: start;
}

.product-commentary__item {
    min-width: 0;
}

.product-commentary__item + .product-commentary__item {
    border-left: 1px solid var(--gray-200, #e9ecef);
    padding-left: 2.5rem;
}

.product-commentary__item:only-child {
    grid-column: 1 / -1;
}

.product-commentary__label {
    margin: 0 0 .75rem;
}

.product-commentary__copy {
    color: var(--gray-700, #495057);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 72ch;
    margin: 0;
}

.product-commentary__copy + .product-commentary__copy {
    margin-top: 1rem;
}

.product-commentary__toggle {
    align-items: center;
    background: var(--gray-100, #f8f9fa);
    border: 1px solid var(--gray-200, #e9ecef);
    color: var(--gray-900, #212529);
    display: flex;
    font: inherit;
    font-weight: 700;
    gap: 1rem;
    justify-content: space-between;
    min-height: 48px;
    padding: .875rem 1rem;
    text-align: left;
    width: 100%;
    cursor: pointer;
}

.product-commentary__toggle:hover {
    border-color: var(--primary, #0079a8);
}

.product-commentary__toggle:focus-visible {
    outline: 2px solid var(--primary, #0079a8);
    outline-offset: 3px;
}

.product-commentary__toggle i {
    color: var(--primary, #0079a8);
    flex-shrink: 0;
    transition: transform .2s ease;
}

.product-commentary__toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    /* Keep the desktop grid visible without Bootstrap display utilities. */
    .product-commentary__body.collapse {
        display: grid;
    }
}

@media (max-width: 767.98px) {
    .product-commentary {
        margin: 2rem 0;
        padding-top: 1.5rem;
    }

    .product-commentary__heading {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .product-commentary__item {
        padding-top: 1.25rem;
    }

    .product-commentary__item + .product-commentary__item {
        border-left: 0;
        border-top: 1px solid var(--gray-200, #e9ecef);
        margin-top: 1.25rem;
        padding-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-commentary__toggle i {
        transition: none;
    }
}
