.wp-block-headless-statement {
    /*padding: clamp(46px, 4.4vw, 68px) clamp(34px, 4vw, 54px);*/
    padding: clamp(46px, 9.5vw, 150px) clamp(34px, 4vw, 60px);
    border-radius: 34px;
    background: #f0f4f7;
    box-shadow: 0 16px 42px rgba(52, 83, 112, 0.05);
}

.statement-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(52px, 6vw, 112px);
    align-items: start;
}

.statement-headline-wrap::before {
    content: "";
    display: block;
    width: 208px;
    height: 12px;
    margin-bottom: 34px;
    border-radius: 999px;
    background: #fa700d;
    box-shadow: 0 10px 18px rgba(250, 112, 13, 0.14);
}

.statement-headline {
    margin: 0;
    color: #365072;
    font-size: clamp(2.8rem, 3.4vw, 6.2rem);
    line-height: 0.95;
    letter-spacing: 0.005em;
    font-weight: 600;
}

.statement-copy-wrap {
    /*padding-top: clamp(12px, 1.6vw, 22px);*/
}

.statement-copy-paragraph {
    margin: 0 0 10px;
    color: #666d74;
    font-size: clamp(1.24rem, 1.3vw, 1.72rem);
    line-height: 1.56;
}

.statement-copy-paragraph:last-of-type {
    margin-bottom: 0;
}

.statement-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin-top: 32px;
    padding: 0 44px;
    border-radius: 999px;
    background: #fa700d;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 18px 36px rgba(250, 112, 13, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.statement-button:hover {
    transform: translateY(-2px);
    background: #e06400;
    box-shadow: 0 22px 42px rgba(250, 112, 13, 0.28);
}

@media (max-width: 900px) {
    .statement-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .wp-block-headless-statement {
        padding: 24px;
        border-radius: 28px;
    }

    .statement-headline-wrap::before {
        width: 120px;
        height: 9px;
        margin-bottom: 22px;
    }

    .statement-copy-wrap {
        padding-top: 0;
    }

    .statement-button {
        min-height: 64px;
        padding: 0 28px;
        margin-top: 34px;
    }
}
