.julius-product-selling-points {
    margin: 22px 0 0;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e6e9ee;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.julius-product-selling-points__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.julius-product-selling-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
    padding: 13px;
    background: #f8fafc;
    border: 1px solid #eaecf0;
    border-radius: 12px;
}

.julius-product-selling-point__icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #c79a4b;
    background: #fff8e9;
    border: 1px solid #ead7ae;
    border-radius: 50%;
}

.julius-product-selling-point__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.julius-product-selling-point__content {
    display: block;
    min-width: 0;
    padding-top: 1px;
}

.julius-product-selling-point__title {
    display: block;
    margin-bottom: 3px;
    color: #101828;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.julius-product-selling-point__description {
    display: block;
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 767px) {
    .julius-product-selling-points {
        padding: 14px;
        border-radius: 14px;
    }

    .julius-product-selling-points__grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .julius-product-selling-point {
        padding: 12px;
    }
}