.container {
    width: 100%;
    display: flex;
    border: var(--border-width-sm) solid var(--border-color-light);
    border-radius: var(--border-radius-xs);
    background: linear-gradient(95deg, var(--color-neutral-100) 0.09%, #ececec 93.88%);
    overflow: hidden;
    justify-content: space-between;
}

.plainFeaturesGroup {
    /* Shrinkable (not flex-shrink: 0) so long copy wraps on narrow viewports instead of
       overflowing past the container edge (QA: mobile copy clipped). */
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 16px 16px 32px;
}

.logo {
    position: relative;
    height: 200px;
    width: 300px;
    margin-top: -13px;
    margin-right: -37px;
    margin-bottom: -200px;
    flex-shrink: 0;
    z-index: 0;
    opacity: 0.6;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.featureIcon {
    margin-top: -1px;
    color: var(--color-text-secondary);
    width: 16px;
    height: 16px;
    /* Keep the icon at 16px when the row's text wraps on narrow viewports. */
    flex-shrink: 0;
}

.featureText {
    color: var(--color-text-secondary);
}

@media (width <= 1200px) {
    .logo {
        margin-right: -180px;
    }
}

@media (width <= 768px) {
    .logo {
        margin-right: -220px;
        margin-top: -30px;
    }
}
