.sjwh-features-block__heading {
    margin-bottom: 1rem;
}

.sjwh-features-block__heading h2 {
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.sjwh-features-block__container {
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
}

@media (min-width: 640px) {
    .sjwh-features-block__container {
        padding: 1.25rem;
    }
}

.sjwh-features-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sjwh-features-block__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .sjwh-features-block__grid {
        gap-x: 8rem;
    }
}

.sjwh-features-block__item {
    display: flex;
    align-items: center;
    width: 100%;
}

.sjwh-features-block__item-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.sjwh-features-block__icon {
    margin-right: 0.5rem;
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.sjwh-features-block__title {
    font-size: 0.875rem;
    white-space: nowrap;
    color: #4b5563;
}

@media (min-width: 640px) {
    .sjwh-features-block__title {
        font-size: 1.125rem;
    }
}

.sjwh-features-block__value {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.sjwh-features-block__check-icon,
.sjwh-features-block__cross-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    min-height: 24px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid;
    font-weight: 500;
    font-size: 0.875rem;
    margin-top: 2px;
}

@media (min-width: 640px) {
    .sjwh-features-block__check-icon,
    .sjwh-features-block__cross-icon {
        min-width: 28px;
        min-height: 28px;
        width: 28px;
        height: 28px;
        margin-right: 0.25rem;
    }
}

.sjwh-features-block__check-icon {
    border-color: #10b981;
    color: #4b5563;
}

.sjwh-features-block__check-icon svg {
    width: 12px;
    height: 9px;
}

.sjwh-features-block__cross-icon {
    border-color: #F96767;
    color: #4b5563;
}

.sjwh-features-block__cross-icon svg {
    width: 10px;
    height: 10px;
}

.sjwh-features-block__text-value {
    font-size: 0.875rem;
    color: #4b5563;
    margin-left: 0.5rem;
}

@media (min-width: 640px) {
    .sjwh-features-block__text-value {
        font-size: 1rem;
    }
}

