.callout-tip {
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--ink);
    padding: var(--wp--custom--layout--block-gap);
}

.tip-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    margin: 0 0 var(--wp--custom--layout--block-gap-small);
    padding: 0 0 var(--wp--custom--layout--block-gap-small);
    border-bottom: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--ink);
}

.tip-header svg {
    fill: var(--wp--preset--color--ink);
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.tip-header .section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    margin: 0;
}

.tip-header .section-title {
    color: var(--wp--preset--color--ink);
    font-family: var(--wp--preset--font-family--custom-serif);
    font-weight: 700;
    text-transform: none;
    font-size: var(--wp--preset--font-size--xlarge);
}

.callout-tip ul li::marker {
    color: var(--wp--preset--color--ink);
}

.callout-tip ol > li::before {
    color: var(--wp--preset--color--white);
    background: var(--wp--preset--color--ink);
}

/*--------------------------------------------------------------
Style: Solid
--------------------------------------------------------------*/
.is-style-bg-solid.callout-tip {
    border: 0;
}

.is-style-bg-solid.callout-tip .tip-header {
    padding: 0;
    border-bottom: 0;
}

/*--------------------------------------------------------------
Style: Border
--------------------------------------------------------------*/
.is-style-bg-border.callout-tip {
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--grey);
}

.is-style-bg-border.callout-tip .tip-header {
    border-bottom: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--grey);
}

/*--------------------------------------------------------------
Style: Red
--------------------------------------------------------------*/
.is-style-bg-red.callout-tip {
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--red);
    color: var(--wp--preset--color--red);
}

.is-style-bg-red.callout-tip .tip-header {
    border-bottom: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--red);
}

.is-style-bg-red.callout-tip .tip-header .section-title {
    color: var(--wp--preset--color--red);
}

.is-style-bg-red.callout-tip .tip-header svg {
    fill: var(--wp--preset--color--red);
}

.is-style-bg-red.callout-tip ul li::marker {
    color: var(--wp--preset--color--red-light);
}

.is-style-bg-red.callout-tip ol > li::before {
    color: var(--wp--preset--color--red-dark);
    background: var(--wp--preset--color--red-light);
}

/*--------------------------------------------------------------
Style: Blue
--------------------------------------------------------------*/
.is-style-bg-blue.callout-tip {
    border: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--blue);
    color: var(--wp--preset--color--blue-dark);
}

.is-style-bg-red.callout-tip .tip-header {
    border-bottom: var(--wp--custom--border-width--xsmall) solid var(--wp--preset--color--red);
}

.is-style-bg-blue.callout-tip .tip-header .section-title {
    color: var(--wp--preset--color--blue-dark);
}

.is-style-bg-blue.callout-tip .tip-header svg {
    fill: var(--wp--preset--color--blue);
}

.is-style-bg-blue.callout-tip ul li::marker {
    color: var(--wp--preset--color--blue-light);
}

.is-style-bg-blue.callout-tip ol > li::before {
    color: var(--wp--preset--color--blue-dark);
    background: var(--wp--preset--color--blue-light);
}