.kowal-trustedus-product {
    margin: 24px 0;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
}

.kowal-trustedus-product__title {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
}

.kowal-trustedus-product__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kowal-trustedus-product__item {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #edf0f3;
    border-radius: 10px;
    background: #fafafa;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, max-height .25s ease;
}

.kowal-trustedus-product__item.has-toggle {
    align-items: flex-start;
}

.kowal-trustedus-product__item.has-toggle.is-collapsed {
    max-height: 300px;
    overflow: hidden;
}

.kowal-trustedus-product__item.has-toggle.is-collapsed::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    height: 86px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0), #fafafa 76%);
}

.kowal-trustedus-product__item.has-toggle.is-expanded {
    max-height: none;
    overflow: visible;
    padding-bottom: 64px;
}

.kowal-trustedus-product__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    border-color: #d9dee5;
}

.kowal-trustedus-product__left {
    width: 150px;
    min-width: 150px;
    max-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kowal-trustedus-product__item.has-toggle .kowal-trustedus-product__left {
    height: 270px;
    align-self: flex-start;
}

.kowal-trustedus-product__logo {
    display: block;
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.kowal-trustedus-product__logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.kowal-trustedus-product__right {
    min-width: 0;
}

.kowal-trustedus-product__name {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #111827;
}

.kowal-trustedus-product__name a {
    color: inherit;
    text-decoration: none;
}

.kowal-trustedus-product__name a:hover {
    text-decoration: underline;
}

.kowal-trustedus-product__project {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    color: #4b5563;
}

.kowal-trustedus-product__desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.kowal-trustedus-product__toggle {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    min-width: 104px;
    min-height: 38px;
    padding: 9px 18px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: #111827;
    box-shadow: 0 10px 22px rgba(17, 24, 39, .18);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kowal-trustedus-product__toggle:hover,
.kowal-trustedus-product__toggle:focus {
    background: #1f2937;
    border-color: #1f2937;
    box-shadow: 0 12px 26px rgba(17, 24, 39, .24);
    transform: translateY(-1px);
}

.kowal-trustedus-product__toggle:focus {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

.kowal-trustedus-product__toggle[hidden] {
    display: none;
}

@media (max-width: 768px) {
    .kowal-trustedus-product {
        padding: 18px;
    }

    .kowal-trustedus-product__title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .kowal-trustedus-product__item {
        grid-template-columns: 1fr;
        gap: 16px;
        align-items: flex-start;
        padding: 14px;
    }

    .kowal-trustedus-product__left {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        justify-content: flex-start;
    }

    .kowal-trustedus-product__logo {
        max-height: 50px;
    }

    .kowal-trustedus-product__toggle {
        right: 12px;
        bottom: 12px;
    }
}

.kowal-trustedus-product__desc { overflow-wrap: anywhere; }
.kowal-trustedus-product__desc img { max-width: 100%; height: auto; }
.kowal-trustedus-product__desc p { margin-bottom: 1em; }
.kowal-trustedus-product__desc ul { list-style: disc; padding-left: 1.5em; }
.kowal-trustedus-product__desc ol { list-style: decimal; padding-left: 1.5em; }
@media (max-width: 768px) {
    .kowal-trustedus-product__item.has-toggle .kowal-trustedus-product__left {
        height: auto;
    }
}
@media (prefers-reduced-motion: reduce) {
    .kowal-trustedus-product__item,
    .kowal-trustedus-product__toggle { transition: none; }
}
