.wp-block-headless-story-benefits {
    background: #ffffff;
    border-radius: 32px;
    padding: 108px 64px;
}

.story-benefits__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.story-benefits__eyebrow {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: #365072;
    margin: 0;
}

.story-benefits__divider {
    display: block;
    width: 151px;
    height: 5px;
    background: #fa700d;
    border-radius: 3px;
}

.story-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.story-benefits__card {
    background: #263850;
    border-left: 1px solid #9ebcca;
    border-right: 1px solid #9ebcca;
    border-radius: 32px;
    padding: 44px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.story-benefits__card-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-benefits__card-value {
    font-family: 'Urbanist', sans-serif;
    font-weight: 600;
    font-size: 52px;
    line-height: 1.1;
    color: #ffffff;
    margin: 0;
}

.story-benefits__card-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

.story-benefits__card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(60, 141, 199, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-benefits__card-icon i {
    font-size: 20px;
    line-height: 1;
}

.story-benefits__card-icon span {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-benefits__card-icon span svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 1100px) {
    .story-benefits__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .wp-block-headless-story-benefits {
        padding: 48px 32px;
    }

    .story-benefits__grid {
        grid-template-columns: 1fr;
    }

    .story-benefits__card {
        padding: 32px;
    }

    .story-benefits__card-value {
        font-size: 36px;
    }
}
