.three-block-percentage {
    width: 100%;
    padding: 20px 0 80px 0;
    margin: 0;
    position: relative;
    z-index: 10;
}
.three-block-percentage__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}
.three-block-percentage__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.three-block-percentage__card {
    background-color: #FFFFFF;
    border-radius: 16px;
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.three-block-percentage__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.three-block-percentage__icon {
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}
.three-block-percentage__icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.three-block-percentage__title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.6px;
    margin: 0;
    margin-top: 0;
    color: #EF7D00;
    word-break: break-word;
    hyphens: auto;
}
.three-block-percentage__description {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.4px;
    margin: 0;
    color: #162E44;
}
.editor-preview.three-block-percentage {
    padding: 40px 20px;
}
.editor-preview .three-block-percentage__card {
    padding: 24px 20px;
    gap: 12px;
}
.editor-preview .three-block-percentage__card:hover {
    transform: none;
    box-shadow: none;
}
.editor-preview .three-block-percentage__icon {
    width: 48px;
    height: 48px;
}
.editor-preview .three-block-percentage__title {
    font-size: 20px;
}
.editor-preview .three-block-percentage__description {
    font-size: 14px;
}
@media (max-width: 1024px) {
    .three-block-percentage {
        padding: 60px 0;
    }
    .three-block-percentage__container {
        padding: 0 32px;
    }
    .three-block-percentage__grid {
        gap: 20px;
    }
    .three-block-percentage__card {
        padding: 32px 28px;
    }
    .three-block-percentage__title {
        font-size: 22px;
        letter-spacing: -0.55px;
    }
    .three-block-percentage__description {
        font-size: 15px;
        letter-spacing: -0.38px;
    }
}
@media (max-width: 768px) {
    .three-block-percentage {
        padding: 48px 0;
    }
    .three-block-percentage__container {
        padding: 0 20px;
    }
    .three-block-percentage__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .three-block-percentage__card {
        padding: 24px 22px;
        max-width: 520px;
        margin: 0 auto;
    }
    .three-block-percentage__icon {
        width: 56px;
        height: 56px;
    }
    .three-block-percentage__title {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    .three-block-percentage__description {
        font-size: 14px;
        letter-spacing: -0.35px;
    }
}
@media (max-width: 480px) {
    .three-block-percentage {
        padding: 40px 0;
    }
    .three-block-percentage__container {
        padding: 0 22px;
    }
    .three-block-percentage__grid {
        gap: 12px;
    }
    .three-block-percentage__card {
        padding: 20px 18px;
        gap: 12px;
        max-width: 420px;
        margin: 0 auto;
    }
    .three-block-percentage__icon {
        width: 52px;
        height: 52px;
    }
    .three-block-percentage__title {
        font-size: 18px;
        letter-spacing: -0.45px;
    }
    .three-block-percentage__description {
        font-size: 13px;
        letter-spacing: -0.33px;
    }
}
.alignfull.three-block-percentage {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.alignwide.three-block-percentage .three-block-percentage__container {
    max-width: 1280px;
}

