.opd-dashboard-connected-products {
    .opd-product-list {
        display: grid;
        grid-template-columns: repeat(auto-fill,minmax(350px, 1fr));
        gap: 30px;

        &.ops-box-size-max {
            max-width: calc(1120px + 30px);
        }

        .opd-product-list-item {
            width: 100%;
            min-height: 350px;
            background-color: white;
            padding: 30px;
            display: flex;
            border: 1px solid var(--opui--gray200);
            border-radius: var(--opui--border-radius);
            box-shadow: var(--opui--box-shadow);
            overflow: hidden;

            .opd-product-info {
                width: 100%;

                .opd-product-name {
                    margin-bottom: 20px;

                    .opd-product-icon-container > * {
                        font-family: "ops-font" !important;
                        font-style: normal !important;
                        font-weight: normal !important;
                        font-variant: normal !important;
                        text-transform: none !important;
                        speak: none;
                        -webkit-font-smoothing: antialiased;
                        -moz-osx-font-smoothing: grayscale;
                        margin: 5px 20px 0 0;
                        font-size: 50px;
                        line-height: 50px;
                        color: $color__ops-blue;
                    }

                    .opd-product-icon {
                        &:before {
                            font-family: "ops-font" !important;
                            font-style: normal !important;
                            font-weight: normal !important;
                            font-variant: normal !important;
                            text-transform: none !important;
                            speak: none;
                            -webkit-font-smoothing: antialiased;
                            -moz-osx-font-smoothing: grayscale;
                            margin: 5px 20px 0 0;
                            font-size: 50px;
                            line-height: 50px;
                            color: $color__ops-blue;
                        }
                    }

                    .opd-product-type {
                        color: $color__ops-blue;
                        font-size: 11px;
                        letter-spacing: 1px;
                        text-transform: uppercase;
                        line-height: 11px;
                        display: block;

                    }

                    h4 {
                        font-size: 21px;
                        font-weight: 600;
                    }
                }

                p {
                    font-size: 14px;

                    &.opd-product-description {
                        margin-bottom: 0;
                        color: #626a75;
                    }

                    &.opd-version-availability {
                        opacity: 0.5;
                        padding-top: 20px;
                        margin-top: 20px;
                        border-top: 1px solid $color__ops-borderLight;
                    }

                }
            }
        }
    }
}
