1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991
|
<!doctype html>
<html lang="en-US" class="no-js" itemtype="https://schema.org/Blog" itemscope>
<head><meta charset="UTF-8"><script>if(navigator.userAgent.match(/MSIE|Internet Explorer/i)||navigator.userAgent.match(/Trident\/7\..*?rv:11/i)){var href=document.location.href;if(!href.match(/[?&]nowprocket/)){if(href.indexOf("?")==-1){if(href.indexOf("#")==-1){document.location.href=href+"?nowprocket=1"}else{document.location.href=href.replace("#","?nowprocket=1#")}}else{if(href.indexOf("#")==-1){document.location.href=href+"&nowprocket=1"}else{document.location.href=href.replace("#","&nowprocket=1#")}}}}</script><script>(()=>{class RocketLazyLoadScripts{constructor(){this.v="2.0.4",this.userEvents=["keydown","keyup","mousedown","mouseup","mousemove","mouseover","mouseout","touchmove","touchstart","touchend","touchcancel","wheel","click","dblclick","input"],this.attributeEvents=["onblur","onclick","oncontextmenu","ondblclick","onfocus","onmousedown","onmouseenter","onmouseleave","onmousemove","onmouseout","onmouseover","onmouseup","onmousewheel","onscroll","onsubmit"]}async t(){this.i(),this.o(),/iP(ad|hone)/.test(navigator.userAgent)&&this.h(),this.u(),this.l(this),this.m(),this.k(this),this.p(this),this._(),await Promise.all([this.R(),this.L()]),this.lastBreath=Date.now(),this.S(this),this.P(),this.D(),this.O(),this.M(),await this.C(this.delayedScripts.normal),await this.C(this.delayedScripts.defer),await this.C(this.delayedScripts.async),await this.T(),await this.F(),await this.j(),await this.A(),window.dispatchEvent(new Event("rocket-allScriptsLoaded")),this.everythingLoaded=!0,this.lastTouchEnd&&await new Promise(t=>setTimeout(t,500-Date.now()+this.lastTouchEnd)),this.I(),this.H(),this.U(),this.W()}i(){this.CSPIssue=sessionStorage.getItem("rocketCSPIssue"),document.addEventListener("securitypolicyviolation",t=>{this.CSPIssue||"script-src-elem"!==t.violatedDirective||"data"!==t.blockedURI||(this.CSPIssue=!0,sessionStorage.setItem("rocketCSPIssue",!0))},{isRocket:!0})}o(){window.addEventListener("pageshow",t=>{this.persisted=t.persisted,this.realWindowLoadedFired=!0},{isRocket:!0}),window.addEventListener("pagehide",()=>{this.onFirstUserAction=null},{isRocket:!0})}h(){let t;function e(e){t=e}window.addEventListener("touchstart",e,{isRocket:!0}),window.addEventListener("touchend",function i(o){o.changedTouches[0]&&t.changedTouches[0]&&Math.abs(o.changedTouches[0].pageX-t.changedTouches[0].pageX)<10&&Math.abs(o.changedTouches[0].pageY-t.changedTouches[0].pageY)<10&&o.timeStamp-t.timeStamp<200&&(window.removeEventListener("touchstart",e,{isRocket:!0}),window.removeEventListener("touchend",i,{isRocket:!0}),"INPUT"===o.target.tagName&&"text"===o.target.type||(o.target.dispatchEvent(new TouchEvent("touchend",{target:o.target,bubbles:!0})),o.target.dispatchEvent(new MouseEvent("mouseover",{target:o.target,bubbles:!0})),o.target.dispatchEvent(new PointerEvent("click",{target:o.target,bubbles:!0,cancelable:!0,detail:1,clientX:o.changedTouches[0].clientX,clientY:o.changedTouches[0].clientY})),event.preventDefault()))},{isRocket:!0})}q(t){this.userActionTriggered||("mousemove"!==t.type||this.firstMousemoveIgnored?"keyup"===t.type||"mouseover"===t.type||"mouseout"===t.type||(this.userActionTriggered=!0,this.onFirstUserAction&&this.onFirstUserAction()):this.firstMousemoveIgnored=!0),"click"===t.type&&t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),"touchstart"===this.lastEvent&&"touchend"===t.type&&(this.lastTouchEnd=Date.now()),"click"===t.type&&(this.lastTouchEnd=0),this.lastEvent=t.type,t.composedPath&&t.composedPath()[0].getRootNode()instanceof ShadowRoot&&(t.rocketTarget=t.composedPath()[0]),this.savedUserEvents.push(t)}u(){this.savedUserEvents=[],this.userEventHandler=this.q.bind(this),this.userEvents.forEach(t=>window.addEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0})),document.addEventListener("visibilitychange",this.userEventHandler,{isRocket:!0})}U(){this.userEvents.forEach(t=>window.removeEventListener(t,this.userEventHandler,{passive:!1,isRocket:!0})),document.removeEventListener("visibilitychange",this.userEventHandler,{isRocket:!0}),this.savedUserEvents.forEach(t=>{(t.rocketTarget||t.target).dispatchEvent(new window[t.constructor.name](t.type,t))})}m(){const t="return false",e=Array.from(this.attributeEvents,t=>"data-rocket-"+t),i="["+this.attributeEvents.join("],[")+"]",o="[data-rocket-"+this.attributeEvents.join("],[data-rocket-")+"]",s=(e,i,o)=>{o&&o!==t&&(e.setAttribute("data-rocket-"+i,o),e["rocket"+i]=new Function("event",o),e.setAttribute(i,t))};new MutationObserver(t=>{for(const n of t)"attributes"===n.type&&(n.attributeName.startsWith("data-rocket-")||this.everythingLoaded?n.attributeName.startsWith("data-rocket-")&&this.everythingLoaded&&this.N(n.target,n.attributeName.substring(12)):s(n.target,n.attributeName,n.target.getAttribute(n.attributeName))),"childList"===n.type&&n.addedNodes.forEach(t=>{if(t.nodeType===Node.ELEMENT_NODE)if(this.everythingLoaded)for(const i of[t,...t.querySelectorAll(o)])for(const t of i.getAttributeNames())e.includes(t)&&this.N(i,t.substring(12));else for(const e of[t,...t.querySelectorAll(i)])for(const t of e.getAttributeNames())this.attributeEvents.includes(t)&&s(e,t,e.getAttribute(t))})}).observe(document,{subtree:!0,childList:!0,attributeFilter:[...this.attributeEvents,...e]})}I(){this.attributeEvents.forEach(t=>{document.querySelectorAll("[data-rocket-"+t+"]").forEach(e=>{this.N(e,t)})})}N(t,e){const i=t.getAttribute("data-rocket-"+e);i&&(t.setAttribute(e,i),t.removeAttribute("data-rocket-"+e))}k(t){Object.defineProperty(HTMLElement.prototype,"onclick",{get(){return this.rocketonclick||null},set(e){this.rocketonclick=e,this.setAttribute(t.everythingLoaded?"onclick":"data-rocket-onclick","this.rocketonclick(event)")}})}S(t){function e(e,i){let o=e[i];e[i]=null,Object.defineProperty(e,i,{get:()=>o,set(s){t.everythingLoaded?o=s:e["rocket"+i]=o=s}})}e(document,"onreadystatechange"),e(window,"onload"),e(window,"onpageshow");try{Object.defineProperty(document,"readyState",{get:()=>t.rocketReadyState,set(e){t.rocketReadyState=e},configurable:!0}),document.readyState="loading"}catch(t){console.log("WPRocket DJE readyState conflict, bypassing")}}l(t){this.originalAddEventListener=EventTarget.prototype.addEventListener,this.originalRemoveEventListener=EventTarget.prototype.removeEventListener,this.savedEventListeners=[],EventTarget.prototype.addEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")||t.everythingLoaded?t.originalAddEventListener.call(this,e,i,o):(t.savedEventListeners.push({target:this,remove:!1,type:e,func:i,options:o}),"mouseenter"!==e&&"mouseleave"!==e||t.originalAddEventListener.call(this,e,t.savedUserEvents.push,o))},EventTarget.prototype.removeEventListener=function(e,i,o){o&&o.isRocket||!t.B(e,this)&&!t.userEvents.includes(e)||t.B(e,this)&&!t.userActionTriggered||e.startsWith("rocket-")||t.everythingLoaded?t.originalRemoveEventListener.call(this,e,i,o):t.savedEventListeners.push({target:this,remove:!0,type:e,func:i,options:o})}}J(t,e){this.savedEventListeners=this.savedEventListeners.filter(i=>{let o=i.type,s=i.target||window;return e!==o||t!==s||(this.B(o,s)&&(i.type="rocket-"+o),this.$(i),!1)})}H(){EventTarget.prototype.addEventListener=this.originalAddEventListener,EventTarget.prototype.removeEventListener=this.originalRemoveEventListener,this.savedEventListeners.forEach(t=>this.$(t))}$(t){t.remove?this.originalRemoveEventListener.call(t.target,t.type,t.func,t.options):this.originalAddEventListener.call(t.target,t.type,t.func,t.options)}p(t){let e;function i(e){return t.everythingLoaded?e:e.split(" ").map(t=>"load"===t||t.startsWith("load.")?"rocket-jquery-load":t).join(" ")}function o(o){function s(e){const s=o.fn[e];o.fn[e]=o.fn.init.prototype[e]=function(){return this[0]===window&&t.userActionTriggered&&("string"==typeof arguments[0]||arguments[0]instanceof String?arguments[0]=i(arguments[0]):"object"==typeof arguments[0]&&Object.keys(arguments[0]).forEach(t=>{const e=arguments[0][t];delete arguments[0][t],arguments[0][i(t)]=e})),s.apply(this,arguments),this}}if(o&&o.fn&&!t.allJQueries.includes(o)){const e={DOMContentLoaded:[],"rocket-DOMContentLoaded":[]};for(const t in e)document.addEventListener(t,()=>{e[t].forEach(t=>t())},{isRocket:!0});o.fn.ready=o.fn.init.prototype.ready=function(i){function s(){parseInt(o.fn.jquery)>2?setTimeout(()=>i.bind(document)(o)):i.bind(document)(o)}return"function"==typeof i&&(t.realDomReadyFired?!t.userActionTriggered||t.fauxDomReadyFired?s():e["rocket-DOMContentLoaded"].push(s):e.DOMContentLoaded.push(s)),o([])},s("on"),s("one"),s("off"),t.allJQueries.push(o)}e=o}t.allJQueries=[],o(window.jQuery),Object.defineProperty(window,"jQuery",{get:()=>e,set(t){o(t)}})}P(){const t=new Map;document.write=document.writeln=function(e){const i=document.currentScript,o=document.createRange(),s=i.parentElement;let n=t.get(i);void 0===n&&(n=i.nextSibling,t.set(i,n));const c=document.createDocumentFragment();o.setStart(c,0),c.appendChild(o.createContextualFragment(e)),s.insertBefore(c,n)}}async R(){return new Promise(t=>{this.userActionTriggered?t():this.onFirstUserAction=t})}async L(){return new Promise(t=>{document.addEventListener("DOMContentLoaded",()=>{this.realDomReadyFired=!0,t()},{isRocket:!0})})}async j(){return this.realWindowLoadedFired?Promise.resolve():new Promise(t=>{window.addEventListener("load",t,{isRocket:!0})})}M(){this.pendingScripts=[];this.scriptsMutationObserver=new MutationObserver(t=>{for(const e of t)e.addedNodes.forEach(t=>{"SCRIPT"!==t.tagName||t.noModule||t.isWPRocket||this.pendingScripts.push({script:t,promise:new Promise(e=>{const i=()=>{const i=this.pendingScripts.findIndex(e=>e.script===t);i>=0&&this.pendingScripts.splice(i,1),e()};t.addEventListener("load",i,{isRocket:!0}),t.addEventListener("error",i,{isRocket:!0}),setTimeout(i,1e3)})})})}),this.scriptsMutationObserver.observe(document,{childList:!0,subtree:!0})}async F(){await this.X(),this.pendingScripts.length?(await this.pendingScripts[0].promise,await this.F()):this.scriptsMutationObserver.disconnect()}D(){this.delayedScripts={normal:[],async:[],defer:[]},document.querySelectorAll("script[type$=rocketlazyloadscript]").forEach(t=>{t.hasAttribute("data-rocket-src")?t.hasAttribute("async")&&!1!==t.async?this.delayedScripts.async.push(t):t.hasAttribute("defer")&&!1!==t.defer||"module"===t.getAttribute("data-rocket-type")?this.delayedScripts.defer.push(t):this.delayedScripts.normal.push(t):this.delayedScripts.normal.push(t)})}async _(){await this.L();let t=[];document.querySelectorAll("script[type$=rocketlazyloadscript][data-rocket-src]").forEach(e=>{let i=e.getAttribute("data-rocket-src");if(i&&!i.startsWith("data:")){i.startsWith("//")&&(i=location.protocol+i);try{const o=new URL(i).origin;o!==location.origin&&t.push({src:o,crossOrigin:e.crossOrigin||"module"===e.getAttribute("data-rocket-type")})}catch(t){}}}),t=[...new Map(t.map(t=>[JSON.stringify(t),t])).values()],this.Y(t,"preconnect")}async G(t){if(await this.K(),!0!==t.noModule||!("noModule"in HTMLScriptElement.prototype))return new Promise(e=>{let i;function o(){(i||t).setAttribute("data-rocket-status","executed"),e()}try{if(navigator.userAgent.includes("Firefox/")||""===navigator.vendor||this.CSPIssue)i=document.createElement("script"),[...t.attributes].forEach(t=>{let e=t.nodeName;"type"!==e&&("data-rocket-type"===e&&(e="type"),"data-rocket-src"===e&&(e="src"),i.setAttribute(e,t.nodeValue))}),t.text&&(i.text=t.text),t.nonce&&(i.nonce=t.nonce),i.hasAttribute("src")?(i.addEventListener("load",o,{isRocket:!0}),i.addEventListener("error",()=>{i.setAttribute("data-rocket-status","failed-network"),e()},{isRocket:!0}),setTimeout(()=>{i.isConnected||e()},1)):(i.text=t.text,o()),i.isWPRocket=!0,t.parentNode.replaceChild(i,t);else{const i=t.getAttribute("data-rocket-type"),s=t.getAttribute("data-rocket-src");i?(t.type=i,t.removeAttribute("data-rocket-type")):t.removeAttribute("type"),t.addEventListener("load",o,{isRocket:!0}),t.addEventListener("error",i=>{this.CSPIssue&&i.target.src.startsWith("data:")?(console.log("WPRocket: CSP fallback activated"),t.removeAttribute("src"),this.G(t).then(e)):(t.setAttribute("data-rocket-status","failed-network"),e())},{isRocket:!0}),s?(t.fetchPriority="high",t.removeAttribute("data-rocket-src"),t.src=s):t.src="data:text/javascript;base64,"+window.btoa(unescape(encodeURIComponent(t.text)))}}catch(i){t.setAttribute("data-rocket-status","failed-transform"),e()}});t.setAttribute("data-rocket-status","skipped")}async C(t){const e=t.shift();return e?(e.isConnected&&await this.G(e),this.C(t)):Promise.resolve()}O(){this.Y([...this.delayedScripts.normal,...this.delayedScripts.defer,...this.delayedScripts.async],"preload")}Y(t,e){this.trash=this.trash||[];let i=!0;var o=document.createDocumentFragment();t.forEach(t=>{const s=t.getAttribute&&t.getAttribute("data-rocket-src")||t.src;if(s&&!s.startsWith("data:")){const n=document.createElement("link");n.href=s,n.rel=e,"preconnect"!==e&&(n.as="script",n.fetchPriority=i?"high":"low"),t.getAttribute&&"module"===t.getAttribute("data-rocket-type")&&(n.crossOrigin=!0),t.crossOrigin&&(n.crossOrigin=t.crossOrigin),t.integrity&&(n.integrity=t.integrity),t.nonce&&(n.nonce=t.nonce),o.appendChild(n),this.trash.push(n),i=!1}}),document.head.appendChild(o)}W(){this.trash.forEach(t=>t.remove())}async T(){try{document.readyState="interactive"}catch(t){}this.fauxDomReadyFired=!0;try{await this.K(),this.J(document,"readystatechange"),document.dispatchEvent(new Event("rocket-readystatechange")),await this.K(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.K(),this.J(document,"DOMContentLoaded"),document.dispatchEvent(new Event("rocket-DOMContentLoaded")),await this.K(),this.J(window,"DOMContentLoaded"),window.dispatchEvent(new Event("rocket-DOMContentLoaded"))}catch(t){console.error(t)}}async A(){try{document.readyState="complete"}catch(t){}try{await this.K(),this.J(document,"readystatechange"),document.dispatchEvent(new Event("rocket-readystatechange")),await this.K(),document.rocketonreadystatechange&&document.rocketonreadystatechange(),await this.K(),this.J(window,"load"),window.dispatchEvent(new Event("rocket-load")),await this.K(),window.rocketonload&&window.rocketonload(),await this.K(),this.allJQueries.forEach(t=>t(window).trigger("rocket-jquery-load")),await this.K(),this.J(window,"pageshow");const t=new Event("rocket-pageshow");t.persisted=this.persisted,window.dispatchEvent(t),await this.K(),window.rocketonpageshow&&window.rocketonpageshow({persisted:this.persisted})}catch(t){console.error(t)}}async K(){Date.now()-this.lastBreath>45&&(await this.X(),this.lastBreath=Date.now())}async X(){return document.hidden?new Promise(t=>setTimeout(t)):new Promise(t=>requestAnimationFrame(t))}B(t,e){return e===document&&"readystatechange"===t||(e===document&&"DOMContentLoaded"===t||(e===window&&"DOMContentLoaded"===t||(e===window&&"load"===t||e===window&&"pageshow"===t)))}static run(){(new RocketLazyLoadScripts).t()}}RocketLazyLoadScripts.run()})();</script>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<style></style>
<!-- This site is optimized with the Yoast SEO plugin v26.3 - https://yoast.com/wordpress/plugins/seo/ -->
<title>Fresh Berries and Cream Cake Recipe - The Fig Jar</title>
<link data-rocket-prefetch href="https://faves.grow.me" rel="dns-prefetch">
<link data-rocket-prefetch href="https://exchange.mediavine.com" rel="dns-prefetch">
<link data-rocket-prefetch href="https://scripts.mediavine.com" rel="dns-prefetch">
<link data-rocket-prefetch href="https://www.googletagmanager.com" rel="dns-prefetch">
<link data-rocket-prefetch href="https://wp.me" rel="dns-prefetch">
<link data-rocket-prefetch href="https://securepubads.g.doubleclick.net" rel="dns-prefetch">
<link data-rocket-prefetch href="https://0.gravatar.com" rel="dns-prefetch">
<link data-rocket-prefetch href="https://the-fig-jar.kit.com" rel="dns-prefetch">
<link data-rocket-prefetch href="https://secure.gravatar.com" rel="dns-prefetch">
<link data-rocket-prefetch href="https://f.convertkit.com" rel="dns-prefetch">
<link data-rocket-prefetch href="https://stats.wp.com" rel="dns-prefetch">
<link crossorigin data-rocket-preload as="font" href="https://www.figjar.com/wp-content/cache/fonts/1/google-fonts/fonts/s/sen/v12/6xKjdSxYI9_3nPWN.woff2" rel="preload">
<link crossorigin data-rocket-preload as="font" href="https://www.figjar.com/wp-content/cache/fonts/1/google-fonts/fonts/s/zillaslab/v12/dFa5ZfeM_74wlPZtksIFYpEY6HOpWw.woff2" rel="preload">
<link crossorigin data-rocket-preload as="font" href="https://www.figjar.com/wp-content/cache/fonts/1/google-fonts/fonts/s/zillaslab/v12/dFa6ZfeM_74wlPZtksIFajo6_Q.woff2" rel="preload">
<style id="wpr-usedcss">img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}img.emoji{display:inline!important;border:none!important;box-shadow:none!important;height:1em!important;width:1em!important;margin:0 .07em!important;vertical-align:-.1em!important;background:0 0!important;padding:0!important}:where(.wp-block-button__link){border-radius:9999px;box-shadow:none;padding:calc(.667em + 2px) calc(1.333em + 2px);text-decoration:none}:root :where(.wp-block-button .wp-block-button__link.is-style-outline),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link){border:2px solid;padding:.667em 1.333em}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-text-color)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-text-color)){color:currentColor}:root :where(.wp-block-button .wp-block-button__link.is-style-outline:not(.has-background)),:root :where(.wp-block-button.is-style-outline>.wp-block-button__link:not(.has-background)){background-color:initial;background-image:none}:where(.wp-block-calendar table:not(.has-background) th){background:#ddd}.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}:where(.wp-block-post-comments input[type=submit]){border:none}:where(.wp-block-cover-image:not(.has-text-color)),:where(.wp-block-cover:not(.has-text-color)){color:#fff}:where(.wp-block-cover-image.is-light:not(.has-text-color)),:where(.wp-block-cover.is-light:not(.has-text-color)){color:#000}:root :where(.wp-block-cover h1:not(.has-text-color)),:root :where(.wp-block-cover h2:not(.has-text-color)),:root :where(.wp-block-cover h3:not(.has-text-color)),:root :where(.wp-block-cover h4:not(.has-text-color)),:root :where(.wp-block-cover h5:not(.has-text-color)),:root :where(.wp-block-cover h6:not(.has-text-color)),:root :where(.wp-block-cover p:not(.has-text-color)){color:inherit}:where(.wp-block-file){margin-bottom:1.5em}:where(.wp-block-file__button){border-radius:2em;display:inline-block;padding:.5em 1em}:where(.wp-block-file__button):is(a):active,:where(.wp-block-file__button):is(a):focus,:where(.wp-block-file__button):is(a):hover,:where(.wp-block-file__button):is(a):visited{box-shadow:none;color:#fff;opacity:.85;text-decoration:none}.wp-block-gallery:not(.has-nested-images){display:flex;flex-wrap:wrap;list-style-type:none;margin:0;padding:0}figure.wp-block-gallery.has-nested-images{align-items:normal}.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image){margin:0;width:calc(50% - var(--wp--style--unstable-gallery-gap,16px)/ 2)}.wp-block-gallery.has-nested-images figure.wp-block-image{box-sizing:border-box;display:flex;flex-direction:column;flex-grow:1;justify-content:center;max-width:100%;position:relative}.wp-block-gallery.has-nested-images figure.wp-block-image>a,.wp-block-gallery.has-nested-images figure.wp-block-image>div{flex-direction:column;flex-grow:1;margin:0}.wp-block-gallery.has-nested-images figure.wp-block-image img{display:block;height:auto;max-width:100%!important;width:auto}.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{bottom:0;left:0;max-height:100%;position:absolute;right:0}.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{-webkit-backdrop-filter:blur(3px);backdrop-filter:blur(3px);content:"";height:100%;-webkit-mask-image:linear-gradient(0deg,#000 20%,#0000);mask-image:linear-gradient(0deg,#000 20%,#0000);max-height:40%}.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image){margin-bottom:auto;margin-top:0}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image){align-self:inherit}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image)>div:not(.components-drop-zone){display:flex}.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) a,.wp-block-gallery.has-nested-images.is-cropped figure.wp-block-image:not(#individual-image) img{flex:1 0 0%;height:100%;object-fit:cover;width:100%}@media (min-width:600px){.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image){width:calc(33.33% - var(--wp--style--unstable-gallery-gap,16px)*.66667)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2),.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2)~figure.wp-block-image:not(#individual-image){width:calc(50% - var(--wp--style--unstable-gallery-gap,16px)*.5)}.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:last-child{width:100%}}:where(.wp-block-group.wp-block-group-is-layout-constrained){position:relative}h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}.wp-block-image>a,.wp-block-image>figure>a{display:inline-block}.wp-block-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom}@media not (prefers-reduced-motion){.wp-block-image img.hide{visibility:hidden}.wp-block-image img.show{animation:.4s show-content-image}}.wp-block-image[style*=border-radius] img,.wp-block-image[style*=border-radius]>a{border-radius:inherit}.wp-block-image :where(figcaption){margin-bottom:1em;margin-top:.5em}:root :where(.wp-block-image.is-style-rounded img,.wp-block-image .is-style-rounded img){border-radius:9999px}.wp-block-image figure{margin:0}@keyframes show-content-image{0%{visibility:hidden}99%{visibility:hidden}to{visibility:visible}}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment)){line-height:1.1}:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:1.8}:root :where(.wp-block-latest-posts.is-grid){padding:0}:root :where(.wp-block-latest-posts.wp-block-latest-posts__list){padding-left:0}ol,ul{box-sizing:border-box}:root :where(.wp-block-list.has-background){padding:1.25em 2.375em}:where(.wp-block-navigation.has-background .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation.has-background .wp-block-navigation-submenu a:not(.wp-element-button)){padding:.5em 1em}:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu a:not(.wp-element-button)),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-submenu button.wp-block-navigation-item__content),:where(.wp-block-navigation .wp-block-navigation__submenu-container .wp-block-pages-list__item button.wp-block-navigation-item__content){padding:.5em 1em}:root :where(p.has-background){padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}:where(.wp-block-post-comments-form) input:not([type=submit]),:where(.wp-block-post-comments-form) textarea{border:1px solid #949494;font-family:inherit;font-size:1em}:where(.wp-block-post-comments-form) input:where(:not([type=submit]):not([type=checkbox])),:where(.wp-block-post-comments-form) textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-excerpt){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(.wp-block-preformatted.has-background){padding:1.25em 2.375em}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}:where(.wp-block-search__input){font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;text-transform:inherit}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:0}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}:root :where(.wp-block-separator.is-style-dots){height:auto;line-height:1;text-align:center}:root :where(.wp-block-separator.is-style-dots):before{color:currentColor;content:"···";font-family:serif;font-size:1.5em;letter-spacing:2em;padding-left:2em}:root :where(.wp-block-site-logo.is-style-rounded){border-radius:9999px}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link{background-color:#f0f0f0;color:#444}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-amazon{background-color:#f90;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bandcamp{background-color:#1ea0c3;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-behance{background-color:#0757fe;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-bluesky{background-color:#0a7aff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-codepen{background-color:#1e1f26;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-deviantart{background-color:#02e49b;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-discord{background-color:#5865f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dribbble{background-color:#e94c89;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-dropbox{background-color:#4280ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-etsy{background-color:#f45800;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-facebook{background-color:#0866ff;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-fivehundredpx{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-flickr{background-color:#0461dd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-foursquare{background-color:#e65678;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-github{background-color:#24292d;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-goodreads{background-color:#eceadd;color:#382110}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-google{background-color:#ea4434;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-gravatar{background-color:#1d4fc4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-instagram{background-color:#f00075;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-lastfm{background-color:#e21b24;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-linkedin{background-color:#0d66c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-mastodon{background-color:#3288d4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-medium{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-meetup{background-color:#f6405f;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-patreon{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pinterest{background-color:#e60122;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-pocket{background-color:#ef4155;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-reddit{background-color:#ff4500;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-skype{background-color:#0478d7;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-snapchat{background-color:#fefc00;color:#fff;stroke:#000}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-soundcloud{background-color:#ff5600;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-spotify{background-color:#1bd760;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-telegram{background-color:#2aabee;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-threads{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tiktok{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-tumblr{background-color:#011835;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitch{background-color:#6440a4;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-twitter{background-color:#1da1f2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vimeo{background-color:#1eb7ea;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-vk{background-color:#4680c2;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-wordpress{background-color:#3499cd;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-whatsapp{background-color:#25d366;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-x{background-color:#000;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-yelp{background-color:#d32422;color:#fff}:where(.wp-block-social-links:not(.is-style-logos-only)) .wp-social-link-youtube{background-color:red;color:#fff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link{background:0 0}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link svg{height:1.25em;width:1.25em}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-amazon{color:#f90}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bandcamp{color:#1ea0c3}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-behance{color:#0757fe}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-bluesky{color:#0a7aff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-codepen{color:#1e1f26}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-deviantart{color:#02e49b}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-discord{color:#5865f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dribbble{color:#e94c89}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-dropbox{color:#4280ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-etsy{color:#f45800}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-facebook{color:#0866ff}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-fivehundredpx{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-flickr{color:#0461dd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-foursquare{color:#e65678}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-github{color:#24292d}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-goodreads{color:#382110}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-google{color:#ea4434}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-gravatar{color:#1d4fc4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-instagram{color:#f00075}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-lastfm{color:#e21b24}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-linkedin{color:#0d66c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-mastodon{color:#3288d4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-medium{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-meetup{color:#f6405f}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-patreon{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pinterest{color:#e60122}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-pocket{color:#ef4155}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-reddit{color:#ff4500}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-skype{color:#0478d7}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-snapchat{color:#fff;stroke:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-soundcloud{color:#ff5600}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-spotify{color:#1bd760}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-telegram{color:#2aabee}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-threads{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tiktok{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-tumblr{color:#011835}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitch{color:#6440a4}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-twitter{color:#1da1f2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vimeo{color:#1eb7ea}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-vk{color:#4680c2}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-whatsapp{color:#25d366}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-wordpress{color:#3499cd}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-x{color:#000}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-yelp{color:#d32422}:where(.wp-block-social-links.is-style-logos-only) .wp-social-link-youtube{color:red}:root :where(.wp-block-social-links .wp-social-link a){padding:.25em}:root :where(.wp-block-social-links.is-style-logos-only .wp-social-link a){padding:0}:root :where(.wp-block-social-links.is-style-pill-shape .wp-social-link a){padding-left:.6666666667em;padding-right:.6666666667em}:root :where(.wp-block-tag-cloud.is-style-outline){display:flex;flex-wrap:wrap;gap:1ch}:root :where(.wp-block-tag-cloud.is-style-outline a){border:1px solid;font-size:unset!important;margin-right:0;padding:1ch 2ch;text-decoration:none!important}:root :where(.wp-block-table-of-contents){box-sizing:border-box}:where(.wp-block-term-description){box-sizing:border-box;margin-bottom:var(--wp--style--block-gap);margin-top:var(--wp--style--block-gap)}:where(pre.wp-block-verse){font-family:inherit}.entry-content{counter-reset:footnotes}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-text-align-center{text-align:center}.screen-reader-text{border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}html{scroll-behavior:auto!important}.ib-toc-container .ib-toc-header{padding:10px 20px;display:flex;flex-direction:row;justify-content:space-between;align-items:center;cursor:pointer}.ib-toc-container .ib-toc-body{padding:20px}.ib-toc-container .ib-toc-anchors{margin:0;padding:0}.ib-toc-container .ib-toc-anchors ol,.ib-toc-container .ib-toc-anchors ul{padding-left:45px}.ib-toc-container .ib-toc-anchors li{margin-top:var(--listSpacing)}.ib-toc-container .ib-toc-anchors>li:first-of-type{margin-top:0}.ib-toc-container .ib-toc-anchors a{color:var(--linkColor)}.ib-toc-container ol{list-style:none!important;counter-reset:item}.ib-toc-container ol li{counter-increment:item}.ib-toc-container ol li:before{content:counters(item, ".") " ";display:inline-block;margin-right:.5em;text-align:right}.ib-toc-container ol.ib-toc-anchors>li:before{content:counters(item, ".") ". "}.convertkit-button a,.convertkit-button span{display:block;padding:calc(.667em + 2px) calc(1.333em + 2px);cursor:pointer;text-align:center;text-decoration:none;word-break:break-word;box-sizing:border-box}.convertkit-button{margin-bottom:20px}form.formkit-form[data-format=inline]{margin-left:auto;margin-right:auto;margin-bottom:20px}@media only screen and (min-width:482px){.convertkit-button{margin-bottom:30px}form.formkit-form[data-format=inline]{margin-bottom:30px}}:root{--wp--preset--aspect-ratio--square:1;--wp--preset--aspect-ratio--4-3:4/3;--wp--preset--aspect-ratio--3-4:3/4;--wp--preset--aspect-ratio--3-2:3/2;--wp--preset--aspect-ratio--2-3:2/3;--wp--preset--aspect-ratio--16-9:16/9;--wp--preset--aspect-ratio--9-16:9/16;--wp--preset--color--black:#000000;--wp--preset--color--cyan-bluish-gray:#abb8c3;--wp--preset--color--white:#ffffff;--wp--preset--color--pale-pink:#f78da7;--wp--preset--color--vivid-red:#cf2e2e;--wp--preset--color--luminous-vivid-orange:#ff6900;--wp--preset--color--luminous-vivid-amber:#fcb900;--wp--preset--color--light-green-cyan:#7bdcb5;--wp--preset--color--vivid-green-cyan:#00d084;--wp--preset--color--pale-cyan-blue:#8ed1fc;--wp--preset--color--vivid-cyan-blue:#0693e3;--wp--preset--color--vivid-purple:#9b51e0;--wp--preset--color--theme-palette-1:var(--global-palette1);--wp--preset--color--theme-palette-2:var(--global-palette2);--wp--preset--color--theme-palette-3:var(--global-palette3);--wp--preset--color--theme-palette-4:var(--global-palette4);--wp--preset--color--theme-palette-5:var(--global-palette5);--wp--preset--color--theme-palette-6:var(--global-palette6);--wp--preset--color--theme-palette-7:var(--global-palette7);--wp--preset--color--theme-palette-8:var(--global-palette8);--wp--preset--color--theme-palette-9:var(--global-palette9);--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple:linear-gradient(135deg,rgba(6, 147, 227, 1) 0%,rgb(155, 81, 224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan:linear-gradient(135deg,rgb(122, 220, 180) 0%,rgb(0, 208, 130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange:linear-gradient(135deg,rgba(252, 185, 0, 1) 0%,rgba(255, 105, 0, 1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red:linear-gradient(135deg,rgba(255, 105, 0, 1) 0%,rgb(207, 46, 46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray:linear-gradient(135deg,rgb(238, 238, 238) 0%,rgb(169, 184, 195) 100%);--wp--preset--gradient--cool-to-warm-spectrum:linear-gradient(135deg,rgb(74, 234, 220) 0%,rgb(151, 120, 209) 20%,rgb(207, 42, 186) 40%,rgb(238, 44, 130) 60%,rgb(251, 105, 98) 80%,rgb(254, 248, 76) 100%);--wp--preset--gradient--blush-light-purple:linear-gradient(135deg,rgb(255, 206, 236) 0%,rgb(152, 150, 240) 100%);--wp--preset--gradient--blush-bordeaux:linear-gradient(135deg,rgb(254, 205, 165) 0%,rgb(254, 45, 45) 50%,rgb(107, 0, 62) 100%);--wp--preset--gradient--luminous-dusk:linear-gradient(135deg,rgb(255, 203, 112) 0%,rgb(199, 81, 192) 50%,rgb(65, 88, 208) 100%);--wp--preset--gradient--pale-ocean:linear-gradient(135deg,rgb(255, 245, 203) 0%,rgb(182, 227, 212) 50%,rgb(51, 167, 181) 100%);--wp--preset--gradient--electric-grass:linear-gradient(135deg,rgb(202, 248, 128) 0%,rgb(113, 206, 126) 100%);--wp--preset--gradient--midnight:linear-gradient(135deg,rgb(2, 3, 129) 0%,rgb(40, 116, 252) 100%);--wp--preset--font-size--small:var(--global-font-size-small);--wp--preset--font-size--medium:var(--global-font-size-medium);--wp--preset--font-size--large:var(--global-font-size-large);--wp--preset--font-size--x-large:42px;--wp--preset--font-size--larger:var(--global-font-size-larger);--wp--preset--font-size--xxlarge:var(--global-font-size-xxlarge);--wp--preset--spacing--20:0.44rem;--wp--preset--spacing--30:0.67rem;--wp--preset--spacing--40:1rem;--wp--preset--spacing--50:1.5rem;--wp--preset--spacing--60:2.25rem;--wp--preset--spacing--70:3.38rem;--wp--preset--spacing--80:5.06rem;--wp--preset--shadow--natural:6px 6px 9px rgba(0, 0, 0, .2);--wp--preset--shadow--deep:12px 12px 50px rgba(0, 0, 0, .4);--wp--preset--shadow--sharp:6px 6px 0px rgba(0, 0, 0, .2);--wp--preset--shadow--outlined:6px 6px 0px -3px rgba(255, 255, 255, 1),6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp:6px 6px 0px rgba(0, 0, 0, 1)}:where(.is-layout-flex){gap:.5em}:where(.is-layout-grid){gap:.5em}body .is-layout-flex{display:flex}.is-layout-flex{flex-wrap:wrap;align-items:center}.is-layout-flex>:is(*,div){margin:0}.has-medium-font-size{font-size:var(--wp--preset--font-size--medium)!important}:where(.wp-block-post-template.is-layout-flex){gap:1.25em}:where(.wp-block-post-template.is-layout-grid){gap:1.25em}:where(.wp-block-columns.is-layout-flex){gap:2em}:where(.wp-block-columns.is-layout-grid){gap:2em}:root :where(.wp-block-pullquote){font-size:1.5em;line-height:1.6}#ez-toc-container{background:#f9f9f9;border:1px solid #aaa;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05);display:table;margin-bottom:1em;padding:10px 20px 10px 10px;position:relative;width:auto}div.ez-toc-widget-container{padding:0;position:relative}div.ez-toc-widget-container ul{display:block}div.ez-toc-widget-container li{border:none;padding:0}div.ez-toc-widget-container ul.ez-toc-list{padding:10px}#ez-toc-container ul ul{margin-left:1.5em}#ez-toc-container li,#ez-toc-container ul{padding:0}#ez-toc-container li,#ez-toc-container ul,#ez-toc-container ul li,div.ez-toc-widget-container,div.ez-toc-widget-container li{background:0 0;list-style:none;line-height:1.6;margin:0;overflow:hidden;z-index:1}#ez-toc-container .ez-toc-title{text-align:left;line-height:1.45;margin:0;padding:0}.ez-toc-title-container{display:table;width:100%}.ez-toc-title,.ez-toc-title-toggle{display:inline;text-align:left;vertical-align:middle}.ez-toc-btn{display:inline-block;font-weight:400}#ez-toc-container div.ez-toc-title-container+ul.ez-toc-list{margin-top:1em}#ez-toc-container a{color:#444;box-shadow:none;text-decoration:none;text-shadow:none;display:inline-flex;align-items:stretch;flex-wrap:nowrap}#ez-toc-container a:visited{color:#9f9f9f}#ez-toc-container a:hover{text-decoration:underline}#ez-toc-container a.ez-toc-toggle{display:flex;align-items:center}.ez-toc-widget-container ul.ez-toc-list li::before{content:' ';position:absolute;left:0;right:0;height:30px;line-height:30px;z-index:-1}.ez-toc-widget-container ul.ez-toc-list li.active{background-color:#ededed}.ez-toc-widget-container li.active>a{font-weight:900}.ez-toc-btn{padding:6px 12px;margin-bottom:0;font-size:14px;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.ez-toc-btn:focus{outline:#333 dotted thin;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}.ez-toc-btn:focus,.ez-toc-btn:hover{color:#333;text-decoration:none}.ez-toc-btn.active,.ez-toc-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.ez-toc-btn-default{color:#333;background-color:#fff;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);text-shadow:0 1px 0 #fff;background-image:-webkit-gradient(linear,left 0,left 100%,from(#fff),to(#e0e0e0));background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-moz-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);background-repeat:repeat-x;border-color:#ccc}.ez-toc-btn-default.active,.ez-toc-btn-default:active,.ez-toc-btn-default:focus,.ez-toc-btn-default:hover{color:#333;background-color:#ebebeb;border-color:#adadad}.ez-toc-btn-default.active,.ez-toc-btn-default:active{background-image:none;background-color:#e0e0e0;border-color:#dbdbdb}.ez-toc-btn-xs{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.ez-toc-btn-xs{padding:1px 5px}.ez-toc-btn-default:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.ez-toc-btn:active{background-image:none}.ez-toc-btn-default:focus,.ez-toc-btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.ez-toc-pull-right{float:right!important;margin-left:10px}#ez-toc-container input,.ez-toc-toggle #item{position:absolute;left:-999em}#ez-toc-container input[type=checkbox]:checked+nav,#ez-toc-widget-container input[type=checkbox]:checked+nav{opacity:0;max-height:0;border:none;display:none}#ez-toc-container .ez-toc-js-icon-con,#ez-toc-container label{position:relative;cursor:pointer;display:initial}#ez-toc-container .ez-toc-js-icon-con,#ez-toc-container .ez-toc-toggle label{float:right;position:relative;font-size:16px;padding:0;border:1px solid #999191;border-radius:5px;cursor:pointer;left:10px;width:35px}div#ez-toc-container .ez-toc-title{display:initial}#ez-toc-container a.ez-toc-toggle{color:#444;background:inherit;border:inherit}#ez-toc-container .eztoc-toggle-hide-by-default,.eztoc-hide{display:none}.ez-toc-widget-container ul li a{padding-left:10px;display:inline-flex;align-items:stretch;flex-wrap:nowrap}.ez-toc-widget-container ul.ez-toc-list li{height:auto!important}.ez-toc-icon-toggle-span{display:flex;align-items:center;width:35px;height:30px;justify-content:center;direction:ltr}div#ez-toc-container .ez-toc-title{font-size:120%}div#ez-toc-container .ez-toc-title{font-weight:500}div#ez-toc-container ul li,div#ez-toc-container ul li a{font-size:95%}div#ez-toc-container ul li,div#ez-toc-container ul li a{font-weight:500}div#ez-toc-container nav ul ul li{font-size:90%}div#ez-toc-container{background:#fffcf2;border:1px solid #ddd}div#ez-toc-container p.ez-toc-title{color:#000}div#ez-toc-container ul.ez-toc-list a{color:#000}div#ez-toc-container ul.ez-toc-list a:hover{color:#000}div#ez-toc-container ul.ez-toc-list a:visited{color:#000}.ez-toc-container-direction{direction:ltr}.ez-toc-counter ul{counter-reset:item}.ez-toc-counter nav ul li a::before{content:counters(item, '.', decimal) '. ';display:inline-block;counter-increment:item;flex-grow:0;flex-shrink:0;margin-right:.2em;float:left}.ez-toc-widget-container ul{counter-reset:item}.ez-toc-widget-container nav ul li a::before{content:counters(item, '.', decimal) '. ';display:inline-block;counter-increment:item;flex-grow:0;flex-shrink:0;margin-right:.2em;float:left}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block;min-width:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:700}code{font-family:monospace,monospace;font-size:1em}small{font-size:80%}img{border-style:none}button,input,optgroup,select,textarea{font-size:100%;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}:root{--global-gray-400:#CBD5E0;--global-gray-500:#A0AEC0;--global-xs-spacing:1em;--global-sm-spacing:1.5rem;--global-md-spacing:2rem;--global-lg-spacing:2.5em;--global-xl-spacing:3.5em;--global-xxl-spacing:5rem;--global-edge-spacing:1.5rem;--global-boxed-spacing:2rem;--global-font-size-small:clamp(0.8rem, 0.73rem + 0.217vw, 0.9rem);--global-font-size-medium:clamp(1.1rem, 0.995rem + 0.326vw, 1.25rem);--global-font-size-large:clamp(1.75rem, 1.576rem + 0.543vw, 2rem);--global-font-size-larger:clamp(2rem, 1.6rem + 1vw, 2.5rem);--global-font-size-xxlarge:clamp(2.25rem, 1.728rem + 1.63vw, 3rem)}h1,h2,h3,h4,h5,h6{padding:0;margin:0}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;text-decoration:none}cite,em,i{font-style:italic}blockquote{padding-left:1em;border-left:4px solid var(--global-palette4)}.entry-content blockquote{margin:0 0 var(--global-md-spacing)}address{margin:0 0 1.5em}code,tt,var{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;font-size:.8rem}abbr{border-bottom:1px dotted var(--global-palette4);cursor:help}ins,mark{text-decoration:none}html{box-sizing:border-box}*,::after,::before{box-sizing:inherit}hr{height:0;border:0;border-bottom:2px solid var(--global-gray-400)}ol,ul{margin:0 0 1.5em 1.5em;padding:0}ul{list-style:disc}ol{list-style:decimal}li>ol,li>ul{margin-bottom:0;margin-left:1.5em}dt{font-weight:700}dd{margin:0 1.5em 1.5em}img{display:block;height:auto;max-width:100%}figure{margin:.5em 0}table{margin:0 0 1.5em;width:100%}a{color:var(--global-palette-highlight);transition:all .1s linear}a:active,a:focus,a:hover{color:var(--global-palette-highlight-alt)}a:active,a:hover{outline:0}.inner-link-style-plain a:not(.button),.widget-area.inner-link-style-plain a:not(.button){text-decoration:none}.inner-link-style-normal a:not(.button),.widget-area.inner-link-style-normal a:not(.button){text-decoration:underline}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden;word-wrap:normal!important}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}:where(html:not(.no-js)) .hide-focus-outline :focus{outline:0}#primary[tabindex="-1"]:focus{outline:0}textarea{width:100%}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=range],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],textarea{-webkit-appearance:none;color:var(--global-palette5);border:1px solid var(--global-gray-400);border-radius:3px;padding:.4em .5em;max-width:100%;background:var(--global-palette9);box-shadow:0 0 0 -7px transparent}::-webkit-input-placeholder{color:var(--global-palette6)}::-moz-placeholder{color:var(--global-palette6);opacity:1}::placeholder{color:var(--global-palette6)}input[type=color]:focus,input[type=date]:focus,input[type=datetime-local]:focus,input[type=datetime]:focus,input[type=email]:focus,input[type=month]:focus,input[type=number]:focus,input[type=password]:focus,input[type=range]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=text]:focus,input[type=time]:focus,input[type=url]:focus,input[type=week]:focus,textarea:focus{color:var(--global-palette3);border-color:var(--global-palette6);outline:0;box-shadow:0 5px 15px -7px rgba(0,0,0,.1)}select{border:1px solid var(--global-gray-400);background-size:16px 100%;padding:.2em 35px .2em .5em;background:var(--global-palette9) url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNSIgaGVpZ2h0PSIyNSIgZmlsbD0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2U9IiNiYmIiPjxwYXRoIGQ9Ik02IDlsNiA2IDYtNiIvPjwvc3ZnPg==) no-repeat 98% 50%;-moz-appearance:none;-webkit-appearance:none;appearance:none;box-shadow:none;outline:0;box-shadow:0 0 0 -7px transparent}select::-ms-expand{display:none}select:focus{color:var(--global-palette3);border-color:var(--global-palette6);background-color:var(--global-palette9);box-shadow:0 5px 15px -7px rgba(0,0,0,.1);outline:0}select:focus option{color:#333}.search-form{position:relative}.search-form input.search-field,.search-form input[type=search]{padding-right:60px;width:100%}.search-form .search-submit[type=submit]{top:0;right:0;bottom:0;position:absolute;color:transparent;background:0 0;z-index:2;width:50px;border:0;padding:8px 12px 7px;border-radius:0;box-shadow:none;overflow:hidden}.search-form .search-submit[type=submit]:focus,.search-form .search-submit[type=submit]:hover{color:transparent;background:0 0;box-shadow:none}.search-form .kadence-search-icon-wrap{position:absolute;right:0;top:0;height:100%;width:50px;padding:0;text-align:center;background:0 0;z-index:3;cursor:pointer;pointer-events:none;color:var(--global-palette6);text-shadow:none;display:flex;align-items:center;justify-content:center}.search-form .search-submit[type=submit]:hover~.kadence-search-icon-wrap{color:var(--global-palette4)}body.rtl .search-form .button[type=submit],body.rtl .search-form .kadence-search-icon-wrap{left:0;right:auto}body.rtl .search-form input.search-field,body.rtl .search-form input[type=search]{padding-right:.5em;padding-left:60px}fieldset{padding:.625em 1.425em;border:1px solid var(--global-gray-500);margin-top:1.2em;margin-bottom:1.2em}legend{font-weight:700}.button,button,input[type=button],input[type=reset],input[type=submit]{border-radius:3px;background:var(--global-palette-btn-bg);color:var(--global-palette-btn);padding:.4em 1em;border:0;font-size:1.125rem;line-height:1.6;display:inline-block;font-family:inherit;cursor:pointer;text-decoration:none;transition:all .2s ease;box-shadow:0 0 0 -7px transparent}.button:visited,button:visited,input[type=button]:visited,input[type=reset]:visited,input[type=submit]:visited{background:var(--global-palette-btn-bg);color:var(--global-palette-btn)}.button:active,.button:focus,.button:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{color:var(--global-palette-btn-hover);background:var(--global-palette-btn-bg-hover);box-shadow:0 15px 25px -7px rgba(0,0,0,.1)}.button.disabled,.button:disabled,button.disabled,button:disabled,input[type=button].disabled,input[type=button]:disabled,input[type=reset].disabled,input[type=reset]:disabled,input[type=submit].disabled,input[type=submit]:disabled{cursor:not-allowed;opacity:.5}.kadence-svg-iconset{display:inline-flex;align-self:center}.kadence-svg-iconset svg{height:1em;width:1em}.kadence-svg-iconset.svg-baseline svg{top:.125em;position:relative}.kt-clear::after,.kt-clear::before{content:' ';display:table}.kt-clear::after{clear:both}#wpadminbar{position:fixed!important}.content-area{margin:var(--global-xxl-spacing) 0}.entry-content{word-break:break-word}.entry-content table{word-break:normal}.body{overflow-x:hidden}.scroll a *,a.scroll *{pointer-events:none}.site-container,.site-header-row-layout-contained{margin:0 auto;padding:0 var(--global-content-edge-padding)}.content-bg{background:#fff}.content-style-unboxed .entry:not(.loop-entry)>.entry-content-wrap{padding:0}.content-style-unboxed .content-bg:not(.loop-entry){background:0 0}.content-style-unboxed .entry:not(.loop-entry){box-shadow:none;border-radius:0}@media screen and (min-width:1025px){.has-sidebar .content-container{display:grid;grid-template-columns:5fr 2fr;grid-gap:var(--global-xl-spacing);justify-content:center}#secondary{grid-column:2;grid-row:1;min-width:0}}#kt-scroll-up,#kt-scroll-up-reader{position:fixed;-webkit-transform:translateY(40px);transform:translateY(40px);transition:all .2s ease;opacity:0;z-index:1000;display:flex;cursor:pointer}#kt-scroll-up *,#kt-scroll-up-reader *{pointer-events:none}#kt-scroll-up-reader.scroll-up-style-outline,#kt-scroll-up.scroll-up-style-outline{background:0 0}.scroll-up-style-outline,.scroll-up-wrap.scroll-up-style-outline{border-width:2px;border-style:solid;border-color:currentColor;color:var(--global-palette4)}.scroll-up-style-outline:hover{color:var(--global-palette5)}#kt-scroll-up.scroll-visible{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}#kt-scroll-up-reader{-webkit-transform:translateY(0);transform:translateY(0);transition:all 0s ease}#kt-scroll-up-reader:not(:focus){clip:rect(1px,1px,1px,1px);height:1px;width:1px;overflow:hidden;word-wrap:normal!important}#kt-scroll-up-reader:focus{-webkit-transform:translateY(0);transform:translateY(0);opacity:1;box-shadow:none;z-index:1001}#wrapper{overflow:hidden;overflow:clip}.kadence-scrollbar-fixer{margin-right:var(--scrollbar-offset,unset)}.kadence-scrollbar-fixer .item-is-fixed{right:var(--scrollbar-offset,0)}:root{--global-palette1:#d6b152;--global-palette2:#446549;--global-palette3:#333333;--global-palette4:#555555;--global-palette5:#888888;--global-palette6:#b77247;--global-palette7:#f4d7c9;--global-palette8:#fffcf2;--global-palette9:#ffffff;--global-palette9rgb:255,255,255;--global-palette-highlight:var(--global-palette1);--global-palette-highlight-alt:var(--global-palette6);--global-palette-highlight-alt2:var(--global-palette9);--global-palette-btn-bg:var(--global-palette1);--global-palette-btn-bg-hover:var(--global-palette6);--global-palette-btn:var(--global-palette9);--global-palette-btn-hover:var(--global-palette9);--global-body-font-family:Sen,sans-serif;--global-heading-font-family:'Zilla Slab',serif;--global-primary-nav-font-family:'Zilla Slab',serif;--global-fallback-font:sans-serif;--global-display-fallback-font:sans-serif;--global-content-width:1280px;--global-content-wide-width:calc(1280px + 230px);--global-content-narrow-width:842px;--global-content-edge-padding:1.5rem;--global-content-boxed-padding:2rem;--global-calc-content-width:calc(1280px - var(--global-content-edge-padding) - var(--global-content-edge-padding) );--wp--style--global--content-size:var(--global-calc-content-width)}.wp-site-blocks{--global-vw:calc( 100vw - ( 0.5 * var(--scrollbar-offset)))}body{background:var(--global-palette8)}body,input,optgroup,select,textarea{font-style:normal;font-weight:400;font-size:19px;line-height:1.6;letter-spacing:.02em;font-family:var(--global-body-font-family);text-transform:none;color:var(--global-palette4)}.content-bg,body.content-style-unboxed .site{background:var(--global-palette9)}@media all and (max-width:767px){body{font-size:19px}}h1,h2,h3,h4,h5,h6{font-family:var(--global-heading-font-family)}h1{font-style:normal;font-weight:300;font-size:40px;line-height:1.5;color:var(--global-palette3)}h2{font-style:normal;font-weight:400;font-size:32px;line-height:1.5;color:var(--global-palette3)}h3{font-style:normal;font-weight:400;font-size:24px;line-height:1.5;color:var(--global-palette3)}h4{font-style:normal;font-weight:400;font-size:22px;line-height:1.5;color:var(--global-palette4)}h5{font-style:normal;font-weight:700;font-size:16px;line-height:1.5;letter-spacing:1.5px;font-family:Sen,sans-serif;text-transform:uppercase;color:var(--global-palette4)}h6{font-style:normal;font-weight:300;font-size:18px;line-height:1.5;color:var(--global-palette5)}.comments-area,.site-container,.site-header-row-layout-contained{max-width:var(--global-content-width)}.content-area{margin-top:5rem;margin-bottom:5rem}.entry-content-wrap{padding:2rem}@media all and (max-width:1024px){.content-area{margin-top:3rem;margin-bottom:3rem}:root{--global-content-boxed-padding:2rem}.entry-content-wrap{padding:2rem}}@media all and (max-width:767px){h5{font-size:15px;letter-spacing:2px}.content-area{margin-top:2rem;margin-bottom:2rem}:root{--global-content-boxed-padding:1.5rem}.entry-content-wrap{padding:1.5rem}}.entry.single-entry{box-shadow:0 0 0 0 rgba(51,51,51,.16);border-radius:0 0 0 0}.has-sidebar:not(.has-left-sidebar) .content-container{grid-template-columns:1fr 360px}.primary-sidebar.widget-area .widget{margin-bottom:1em;color:var(--global-palette4)}.primary-sidebar.widget-area .sidebar-inner-wrap a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)){color:var(--global-palette6)}.primary-sidebar.widget-area .sidebar-inner-wrap a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)):hover{color:var(--global-palette4)}.primary-sidebar.widget-area{background:var(--global-palette9);padding:0}.button,button,input[type=button],input[type=reset],input[type=submit]{font-style:normal;font-weight:700;font-size:16px;letter-spacing:2px;font-family:Sen,sans-serif;text-transform:uppercase;border-radius:50px;padding:15px 25px;box-shadow:0 0 0 -7px transparent}.button:active,.button:focus,.button:hover,button:active,button:focus,button:hover,input[type=button]:active,input[type=button]:focus,input[type=button]:hover,input[type=reset]:active,input[type=reset]:focus,input[type=reset]:hover,input[type=submit]:active,input[type=submit]:focus,input[type=submit]:hover{box-shadow:0 15px 25px -7px rgba(0,0,0,.1)}#kt-scroll-up,#kt-scroll-up-reader{border-radius:0 0 0 0;color:var(--global-palette4);border-color:var(--global-palette4);bottom:100px;font-size:1em;padding:.4em}#kt-scroll-up-reader.scroll-up-side-right,#kt-scroll-up.scroll-up-side-right{right:30px}.post-title .entry-meta{font-style:normal;font-size:18px}.post-title .kadence-breadcrumbs{color:var(--global-palette1)}.post-title .kadence-breadcrumbs a:hover{color:var(--global-palette6)}@media all and (max-width:1024px){.mobile-transparent-header #masthead{position:absolute;left:0;right:0;z-index:100}.kadence-scrollbar-fixer.mobile-transparent-header #masthead{right:var(--scrollbar-offset,0)}.mobile-transparent-header #masthead,.mobile-transparent-header .site-bottom-header-wrap .site-header-row-container-inner,.mobile-transparent-header .site-main-header-wrap .site-header-row-container-inner,.mobile-transparent-header .site-top-header-wrap .site-header-row-container-inner{background:0 0}}@media all and (min-width:1025px){.transparent-header #masthead{position:absolute;left:0;right:0;z-index:100}.transparent-header.kadence-scrollbar-fixer #masthead{right:var(--scrollbar-offset,0)}.transparent-header #masthead,.transparent-header .site-bottom-header-wrap .site-header-row-container-inner,.transparent-header .site-main-header-wrap .site-header-row-container-inner,.transparent-header .site-top-header-wrap .site-header-row-container-inner{background:0 0}}.site-branding a.brand img{max-width:350px}@media all and (max-width:767px){.button,button,input[type=button],input[type=reset],input[type=submit]{font-size:15px}.site-branding a.brand img{max-width:200px}}.site-branding{padding:10px 0}#masthead,#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start):not(.site-header-row-container):not(.site-main-header-wrap),#masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start)>.site-header-row-container-inner{background:#fff}.site-main-header-wrap .site-header-row-container-inner{border-bottom:3px none var(--global-palette7)}.site-main-header-inner-wrap{min-height:100px}.site-top-header-wrap .site-header-row-container-inner{background:linear-gradient(135deg,var(--global-palette1,#d6b152) 0%,var(--global-palette9,#fff) 45%,var(--global-palette1,#d6b152) 100%);border-bottom:1px solid var(--global-palette8)}.site-top-header-inner-wrap{min-height:50px}.site-bottom-header-wrap .site-header-row-container-inner{border-top:1px solid var(--global-palette7);border-bottom:1px solid var(--global-palette7)}.main-navigation .primary-menu-container>ul>li.menu-item>a{padding-left:calc(3em / 2);padding-right:calc(3em / 2);padding-top:1em;padding-bottom:1em;color:var(--global-palette4)}.main-navigation .primary-menu-container>ul>li.menu-item .dropdown-nav-special-toggle{right:calc(3em / 2)}.main-navigation .primary-menu-container>ul li.menu-item>a{font-style:normal;font-weight:400;font-size:20px;letter-spacing:0;font-family:var(--global-primary-nav-font-family);text-transform:lowercase}.main-navigation .primary-menu-container>ul>li.menu-item>a:hover{color:var(--global-palette-highlight)}.main-navigation .primary-menu-container>ul>li.menu-item.current-menu-item>a{color:var(--global-palette3)}.header-navigation .header-menu-container ul ul.sub-menu{background:var(--global-palette8);box-shadow:inset 0 0 0 0 var(--global-palette1)}.header-menu-container ul.menu>li.kadence-menu-mega-enabled>ul>li.menu-item>a,.header-navigation .header-menu-container ul ul li.menu-item{border-bottom:0 solid rgba(255,255,255,.1)}.header-navigation .header-menu-container ul ul li.menu-item>a{width:225px;padding-top:1em;padding-bottom:1em;color:var(--global-palette4);font-style:normal;font-weight:400;font-size:14px;font-family:Sen,sans-serif}.header-navigation .header-menu-container ul ul li.menu-item>a:hover{color:var(--global-palette9);background:var(--global-palette1)}.header-navigation .header-menu-container ul ul li.menu-item.current-menu-item>a{color:var(--global-palette9);background:var(--global-palette1)}.mobile-toggle-open-container .menu-toggle-open,.mobile-toggle-open-container .menu-toggle-open:focus{color:var(--global-palette4);padding:.4em .6em;font-size:14px}.mobile-toggle-open-container .menu-toggle-open .menu-toggle-icon{font-size:20px}.mobile-toggle-open-container .menu-toggle-open:focus-visible,.mobile-toggle-open-container .menu-toggle-open:hover{color:var(--global-palette1)}.mobile-navigation ul li{font-style:normal;font-weight:600;font-size:12px;letter-spacing:3px;text-transform:uppercase}.mobile-navigation ul li a{padding-top:1.5em;padding-bottom:1.5em}.mobile-navigation ul li.menu-item-has-children>.drawer-nav-drop-wrap,.mobile-navigation ul li>a{color:var(--global-palette4)}.mobile-navigation ul li.menu-item-has-children>.drawer-nav-drop-wrap:hover,.mobile-navigation ul li>a:hover{color:var(--global-palette1)}.mobile-navigation ul li.current-menu-item.menu-item-has-children>.drawer-nav-drop-wrap,.mobile-navigation ul li.current-menu-item>a{color:var(--global-palette-highlight)}.mobile-navigation ul li.menu-item-has-children .drawer-nav-drop-wrap,.mobile-navigation ul li:not(.menu-item-has-children) a{border-bottom:1px solid var(--global-palette7)}.mobile-navigation:not(.drawer-navigation-parent-toggle-true) ul li.menu-item-has-children .drawer-nav-drop-wrap button{border-left:1px solid var(--global-palette7)}#mobile-drawer .drawer-inner{background:var(--global-palette8)}#mobile-drawer .drawer-header .drawer-toggle{padding:.6em .15em;font-size:24px}#mobile-drawer .drawer-header .drawer-toggle,#mobile-drawer .drawer-header .drawer-toggle:focus{color:var(--global-palette4)}#mobile-drawer .drawer-header .drawer-toggle:focus:hover,#mobile-drawer .drawer-header .drawer-toggle:hover{color:var(--global-palette1)}.header-html{font-style:normal;font-weight:400;font-size:16px;color:var(--global-palette4)}.header-html a{color:var(--global-palette8)}.header-html a:hover{color:var(--global-palette3)}.header-social-wrap .header-social-inner-wrap{font-size:1em;gap:.47em}.header-social-wrap .header-social-inner-wrap .social-button{color:var(--global-palette9);background:var(--global-palette9);border:0 solid currentColor;border-radius:100px}.header-social-wrap .header-social-inner-wrap .social-button:hover{color:var(--global-palette6);background:var(--global-palette9)}.header-mobile-social-wrap .header-mobile-social-inner-wrap{font-size:1em;gap:.3em}.header-mobile-social-wrap .header-mobile-social-inner-wrap .social-button{color:var(--global-palette3);border:2px transparent;border-radius:3px}.header-mobile-social-wrap .header-mobile-social-inner-wrap .social-button:hover{color:var(--global-palette6)}.search-toggle-open-container .search-toggle-open{color:var(--global-palette4)}.search-toggle-open-container .search-toggle-open .search-toggle-icon{font-size:1.5em}.search-toggle-open-container .search-toggle-open:focus,.search-toggle-open-container .search-toggle-open:hover{color:var(--global-palette9)}#search-drawer .drawer-header,#search-drawer .drawer-inner .drawer-content form .kadence-search-icon-wrap,#search-drawer .drawer-inner .drawer-content form input.search-field{color:var(--global-palette3)}#search-drawer .drawer-inner .drawer-content form button[type=submit]:hover~.kadence-search-icon-wrap,#search-drawer .drawer-inner .drawer-content form input.search-field:focus,#search-drawer .drawer-inner .drawer-content form input.search-submit:hover~.kadence-search-icon-wrap{color:var(--global-palette4)}#search-drawer .drawer-inner{background:rgba(255,245,239,.8)}#colophon{background:var(--global-palette1)}.site-bottom-footer-wrap .site-footer-row-container-inner{background:var(--global-palette1);border-top:3px none var(--global-palette7)}.site-bottom-footer-inner-wrap{padding-top:10px;padding-bottom:10px;grid-column-gap:30px}.site-bottom-footer-inner-wrap .widget{margin-bottom:30px}.site-bottom-footer-inner-wrap .site-footer-section:not(:last-child):after{border-right:0px transparent;right:calc(-30px / 2)}@media all and (max-width:767px){.site-bottom-footer-wrap .site-footer-row-container-inner{background:linear-gradient(135deg,var(--global-palette1) 0%,var(--global-palette6) 100%)}}.footer-social-wrap .footer-social-inner-wrap{font-size:1em;gap:.3em}.site-footer .site-footer-wrap .site-footer-section .footer-social-wrap .footer-social-inner-wrap .social-button{color:var(--global-palette1);border:2px transparent;border-radius:3px}.site-footer .site-footer-wrap .site-footer-section .footer-social-wrap .footer-social-inner-wrap .social-button:hover{color:var(--global-palette6)}#colophon .footer-html{font-style:normal;color:var(--global-palette9)}#colophon .site-footer-row-container .site-footer-row .footer-html a{color:var(--global-palette8)}#colophon .site-footer-row-container .site-footer-row .footer-html a:hover{color:var(--global-palette3)}#colophon .footer-navigation .footer-menu-container>ul>li>a{padding-left:calc(3em / 2);padding-right:calc(3em / 2);padding-top:calc(.6em / 2);padding-bottom:calc(.6em / 2);color:var(--global-palette9)}#colophon .footer-navigation .footer-menu-container>ul li a{font-style:normal;font-weight:600;font-size:16px;letter-spacing:2px;text-transform:uppercase}#colophon .footer-navigation .footer-menu-container>ul li a:hover{color:var(--global-palette3)}#colophon .footer-navigation .footer-menu-container>ul li.current-menu-item>a{color:var(--global-palette9)}.site-branding{max-height:inherit}.site-branding a.brand{display:flex;gap:1em;flex-direction:row;align-items:center;text-decoration:none;color:inherit;max-height:inherit}.site-branding a.brand img{display:block}@media screen and (max-width:719px){.vs-sm-false{display:none!important}.site-branding.branding-mobile-layout-standard:not(.site-brand-logo-only) a.brand{flex-direction:row}}.header-navigation ul ul.sub-menu{display:none;position:absolute;top:100%;flex-direction:column;background:#fff;margin-left:0;box-shadow:0 2px 13px rgba(0,0,0,.1);z-index:1000}body:not(.hide-focus-outline) .header-navigation li.menu-item--has-toggle>a:focus .dropdown-nav-toggle{opacity:.2}.header-navigation ul ul.sub-menu>li:last-child{border-bottom:0}.header-navigation ul ul.sub-menu.sub-menu-edge{left:auto;right:0}.header-navigation ul ul ul.sub-menu.sub-menu-edge{left:auto;right:100%}.header-navigation[class*=header-navigation-dropdown-animation-fade] ul ul.sub-menu{opacity:0;visibility:hidden;transform:translate3d(0,0,0);transition:all .2s ease;display:block;clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden}.header-navigation[class*=header-navigation-dropdown-animation-fade]:not(.click-to-open) ul li.menu-item--toggled-on>ul,.header-navigation[class*=header-navigation-dropdown-animation-fade]:not(.click-to-open) ul li:hover>ul,.header-navigation[class*=header-navigation-dropdown-animation-fade]:not(.click-to-open) ul li:not(.menu-item--has-toggle):focus>ul{opacity:1;visibility:visible;transform:translate3d(0,0,0);clip:auto;height:auto;overflow:visible}.header-navigation.header-navigation-dropdown-animation-fade-up ul ul.sub-menu{transform:translate3d(0,10px,0)}.wp-site-blocks .nav--toggle-sub .dropdown-nav-special-toggle{position:absolute!important;overflow:hidden;padding:0!important;margin:0!important;margin-right:-.1em!important;border:0!important;width:.9em;top:0;bottom:0;height:auto;border-radius:0;box-shadow:none!important;background:0 0!important;display:block;left:auto;right:.7em;pointer-events:none}.wp-site-blocks .nav--toggle-sub .sub-menu .dropdown-nav-special-toggle{width:2.6em;margin:0!important;right:0}.nav--toggle-sub .dropdown-nav-special-toggle:focus{z-index:10}.nav--toggle-sub .dropdown-nav-toggle{display:block;background:0 0;position:absolute;right:0;top:50%;width:.7em;height:.7em;font-size:inherit;width:.9em;height:.9em;font-size:.9em;display:inline-flex;line-height:inherit;margin:0;padding:0;border:none;border-radius:0;transform:translateY(-50%);overflow:visible;transition:opacity .2s ease}.nav--toggle-sub ul ul .dropdown-nav-toggle{right:.2em}.nav--toggle-sub ul ul .dropdown-nav-toggle .kadence-svg-iconset{transform:rotate(-90deg)}.nav--toggle-sub li.menu-item-has-children{position:relative}.nav-drop-title-wrap{position:relative;padding-right:1em;display:block}.nav--toggle-sub li.menu-item--toggled-on>ul,.nav--toggle-sub li:not(.menu-item--has-toggle):focus>ul,.nav--toggle-sub:not(.click-to-open) li:hover>ul{display:block}.nav--toggle-sub li:not(.menu-item--has-toggle):focus-within>ul{display:block}@media (hover:none){.wp-site-blocks .nav--toggle-sub .menu-item--has-toggle:not(.menu-item--toggled-on) .dropdown-nav-special-toggle{left:0;right:0!important;margin-right:0!important;width:100%;pointer-events:all}.wp-site-blocks .nav--toggle-sub .menu-item--has-toggle:not(.menu-item--toggled-on)>a{pointer-events:none}}.rtl .nav--toggle-sub .dropdown-nav-toggle{right:auto;left:0}.rtl .primary-menu-container>ul>li.menu-item .dropdown-nav-special-toggle{right:auto;left:.7em}.rtl .wp-site-blocks .nav--toggle-sub .sub-menu .dropdown-nav-special-toggle{left:0;right:auto}.rtl .nav--toggle-sub ul ul .dropdown-nav-toggle .kadence-svg-iconset{transform:rotate(-270deg)}.rtl .header-navigation ul ul ul.sub-menu{right:100%;left:auto}.rtl .nav-drop-title-wrap{padding-left:1em;padding-right:0}.wp-site-blocks .nav--toggle-sub .kadence-menu-mega-enabled .sub-menu .dropdown-nav-special-toggle{display:none}.header-menu-container,.header-navigation{display:flex}.header-navigation li.menu-item>a{display:block;width:100%;text-decoration:none;color:var(--global-palette4);transition:all .2s ease-in-out;transform:translate3d(0,0,0)}.header-navigation li.menu-item>a:focus,.header-navigation li.menu-item>a:hover{color:var(--global-palette-highlight)}.header-navigation ul.sub-menu{display:block;list-style:none;margin:0;padding:0}.header-navigation ul li.menu-item>a{padding:.6em .5em}.header-navigation ul ul li.menu-item>a{padding:1em}.header-navigation ul ul li.menu-item>a{width:200px}.header-navigation ul ul ul.sub-menu{top:0;left:100%;right:auto;min-height:100%}.header-navigation .menu{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;list-style:none;margin:0;padding:0}.menu-toggle-open{display:flex;background:0 0;align-items:center;box-shadow:none}.menu-toggle-open .menu-toggle-icon{display:flex}.menu-toggle-open:focus,.menu-toggle-open:hover{border-color:currentColor;background:0 0;box-shadow:none}.menu-toggle-open.menu-toggle-style-default{border:0}.wp-site-blocks .menu-toggle-open{box-shadow:none}.mobile-navigation{width:100%}.mobile-navigation a{display:block;width:100%;text-decoration:none;padding:.6em .5em}.mobile-navigation ul{display:block;list-style:none;margin:0;padding:0}.drawer-nav-drop-wrap{display:flex;position:relative}.drawer-nav-drop-wrap a{color:inherit}.drawer-nav-drop-wrap .drawer-sub-toggle{background:0 0;color:inherit;padding:.5em .7em;display:flex;border:0;border-radius:0;box-shadow:none;line-height:normal}.drawer-nav-drop-wrap .drawer-sub-toggle[aria-expanded=true] svg{transform:rotate(180deg)}.mobile-navigation ul ul{padding-left:1em;transition:all .2s ease-in-out}.mobile-navigation ul.has-collapse-sub-nav ul.sub-menu{display:none}.mobile-navigation ul ul ul ul ul ul{padding-left:0}.mobile-navigation ul.has-collapse-sub-nav .sub-menu.show-drawer{display:block}.popup-drawer{position:fixed;display:none;top:0;bottom:0;left:-99999rem;right:99999rem;transition:opacity .25s ease-in,left 0s .25s,right 0s .25s;z-index:100000}.popup-drawer .drawer-overlay{background-color:rgba(0,0,0,.4);position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .2s ease-in-out}.popup-drawer .drawer-inner{width:100%;transform:translateX(100%);max-width:90%;right:0;top:0;overflow:auto;background:#090c10;color:#fff;bottom:0;opacity:0;position:fixed;box-shadow:0 0 2rem 0 rgba(0,0,0,.1);display:flex;flex-direction:column;transition:transform .3s cubic-bezier(.77,.2,.05,1),opacity .25s cubic-bezier(.77,.2,.05,1)}.popup-drawer .drawer-header{padding:0 1.5em;display:flex;justify-content:flex-end;min-height:calc(1.2em + 24px)}.popup-drawer .drawer-header .drawer-toggle{background:0 0;border:0;font-size:24px;line-height:1;padding:.6em .15em;color:inherit;display:flex;box-shadow:none;border-radius:0}.popup-drawer .drawer-header .drawer-toggle:hover{box-shadow:none}.popup-drawer .drawer-content{padding:0 1.5em 1.5em}.popup-drawer .drawer-header .drawer-toggle{width:1em;position:relative;height:1em;box-sizing:content-box;font-size:24px}.drawer-toggle .toggle-close-bar{width:.75em;height:.08em;background:currentColor;transform-origin:center center;position:absolute;margin-top:-.04em;opacity:0;border-radius:.08em;left:50%;margin-left:-.375em;top:50%;transform:rotate(45deg) translateX(-50%);transition:transform .3s cubic-bezier(.77,.2,.05,1),opacity .3s cubic-bezier(.77,.2,.05,1);transition-delay:.2s}.drawer-toggle .toggle-close-bar:last-child{transform:rotate(-45deg) translateX(50%)}.popup-drawer.active .drawer-toggle .toggle-close-bar{transform:rotate(45deg);opacity:1}.popup-drawer.active .drawer-toggle .toggle-close-bar:last-child{transform:rotate(-45deg);opacity:1}.popup-drawer .drawer-content.content-valign-middle{min-height:calc(100% - (1.2em + 24px));display:flex;justify-content:center;flex-direction:column;padding-bottom:calc(1.2em + 24px);max-height:calc(100% - (1.2em + 24px));overflow:auto}.popup-drawer .drawer-content.content-align-center{text-align:center}.popup-drawer .drawer-content.content-align-center .site-header-item{justify-content:center}.popup-drawer .drawer-content.content-align-right{text-align:right}.popup-drawer .drawer-content.content-align-right .site-header-item{justify-content:flex-end}body.admin-bar .popup-drawer{top:46px}body.admin-bar .popup-drawer .drawer-inner{top:46px}@media screen and (min-width:783px){body.admin-bar .popup-drawer{top:32px}body.admin-bar .popup-drawer .drawer-inner{top:32px}}.popup-drawer.show-drawer{display:block}.popup-drawer.active{left:0;opacity:1;right:0;transition:opacity .25s ease-out}.popup-drawer.active .drawer-inner{opacity:1;transform:translateX(0)}.popup-drawer.active .drawer-overlay{opacity:1;cursor:pointer}body[class*=showing-popup-drawer-]{overflow:hidden}#main-header{display:none}#masthead{position:relative;z-index:11}.site-header-row{display:grid;grid-template-columns:auto auto}.site-header-row.site-header-row-center-column{grid-template-columns:1fr auto 1fr}.site-header-row.site-header-row-only-center-column{display:flex;justify-content:center}.site-header-row.site-header-row-only-center-column .site-header-section-center{flex-grow:1}.site-header-upper-inner-wrap.child-is-fixed{display:flex;align-items:flex-end}.site-header-upper-inner-wrap.child-is-fixed .site-main-header-wrap{width:100%}.site-header-section{display:flex;max-height:inherit}.site-header-item{display:flex;align-items:center;margin-right:10px;max-height:inherit}.rtl .site-header-item{margin-left:10px;margin-right:0}.site-header-section>.site-header-item:last-child{margin-right:0}.rtl .site-header-section>.site-header-item:last-child{margin-left:0}.drawer-content .site-header-item{margin-right:0;margin-bottom:10px}.drawer-content .site-header-item:last-child{margin-bottom:0}.site-header-section-right{justify-content:flex-end}.site-header-section-center{justify-content:center}.header-html-inner p:first-child{margin-top:0}.header-html-inner p:last-child{margin-bottom:0}.element-social-inner-wrap{display:flex;flex-wrap:wrap;align-items:center;gap:.3em}a.social-button{width:2em;text-decoration:none;height:2em;display:inline-flex;justify-content:center;align-items:center;margin:0;color:var(--global-palette4);background:var(--global-palette7);border-radius:3px;transition:all .2s ease-in-out}a.social-button:hover{color:var(--global-palette-btn);background:var(--global-palette-btn-bg)}.social-style-outline .social-button{background:0 0!important;border:2px solid var(--global-palette7)}.social-style-outline .social-button:hover{color:var(--global-palette-highlight);border-color:currentColor}.search-toggle-open{display:flex;background:0 0;align-items:center;padding:.5em;box-shadow:none}.search-toggle-open .search-toggle-icon{display:flex}.search-toggle-open .search-toggle-icon svg.kadence-svg-icon{top:-.05em;position:relative}.search-toggle-open:focus,.search-toggle-open:hover{border-color:currentColor;background:0 0;box-shadow:none}.search-toggle-open.search-toggle-style-default{border:0}.popup-drawer-layout-fullwidth .drawer-inner{max-width:none;background:rgba(9,12,16,.97);transition:transform 0s ease-in,opacity .2s ease-in}.popup-drawer-layout-fullwidth .drawer-inner .drawer-overlay{background-color:transparent}#search-drawer .drawer-inner .drawer-header{position:relative;z-index:100}#search-drawer .drawer-inner .drawer-content{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;padding:2em}#search-drawer .drawer-inner form{max-width:800px;width:100%;margin:0 auto;display:flex}#search-drawer .drawer-inner form label{flex-grow:2}#search-drawer .drawer-inner form ::-webkit-input-placeholder{color:currentColor;opacity:.5}#search-drawer .drawer-inner form ::-moz-placeholder{color:currentColor;opacity:.5}#search-drawer .drawer-inner form :-ms-input-placeholder{color:currentColor;opacity:.5}#search-drawer .drawer-inner form :-moz-placeholder{color:currentColor;opacity:.5}#search-drawer .drawer-inner input.search-field{width:100%;background:0 0;color:var(--global-palette6);padding:.8em 80px .8em .8em;font-size:20px;border:1px solid currentColor}#search-drawer .drawer-inner input.search-field:focus{color:#fff;box-shadow:5px 5px 0 0 currentColor}#search-drawer .drawer-inner .search-submit[type=submit]{width:70px}#search-drawer .drawer-inner .kadence-search-icon-wrap{color:var(--global-palette6);width:70px}#search-drawer .drawer-inner .search-submit[type=submit]:hover~.kadence-search-icon-wrap{color:#fff}#search-drawer .drawer-inner button[type=submit]:hover~.kadence-search-icon-wrap{color:#fff}.site-header-upper-inner-wrap.child-is-fixed .site-top-header-wrap:not(.item-is-fixed){align-self:flex-start;flex-grow:1}.kadence-sticky-header{position:relative;z-index:1}.item-is-fixed{position:fixed;left:0;right:0;z-index:1200}.kadence-sticky-header.item-is-fixed:not(.item-at-start) .site-branding a.brand img:not(.svg-logo-image){width:auto}.kadence-sticky-header.item-is-fixed:not(.item-at-start)[data-shrink=true] .site-branding a.brand picture img{max-height:inherit}#mobile-drawer{z-index:99999}#mobile-header .mobile-navigation>.mobile-menu-container.drawer-menu-container>ul.menu{display:flex;flex-wrap:wrap}#mobile-header .mobile-navigation:not(.drawer-navigation-parent-toggle-true) ul li.menu-item-has-children .drawer-nav-drop-wrap button{border:0}#mobile-header .mobile-navigation ul li.menu-item-has-children .drawer-nav-drop-wrap,#mobile-header .mobile-navigation ul li:not(.menu-item-has-children) a{border:0}.wp-block-image{margin-bottom:0}.single-content .wp-block-columns{margin-bottom:var(--global-md-spacing);margin-top:0}figure.wp-block-gallery ul{padding:0}embed,iframe,object{max-width:100%}.post-navigation{margin:var(--global-lg-spacing) auto}.post-navigation a{text-decoration:none;color:inherit;display:block}.post-navigation a:hover{color:var(--global-palette-highlight)}.post-navigation .nav-links{display:grid;grid-template-columns:repeat(2,1fr)}.post-navigation .nav-previous{position:relative}.post-navigation .nav-previous .kadence-svg-iconset{padding-right:.5em}.post-navigation .nav-previous a{padding-right:var(--global-xs-spacing)}.post-navigation .nav-previous:after{position:absolute;content:'';top:25%;right:0;width:1px;height:50%;background:var(--global-gray-500)}.post-navigation .nav-next{grid-column-start:2;text-align:right}.post-navigation .nav-next a{padding-left:var(--global-xs-spacing)}.post-navigation .nav-next .kadence-svg-iconset{padding-left:.5em}.post-navigation-sub{margin-bottom:.5em}.post-navigation-sub small{text-transform:uppercase;display:inline-block;font-weight:700;letter-spacing:.05em}.widget{margin-top:0;margin-bottom:1.5em}.widget-area .widget:last-child{margin-bottom:0}.widget-area ul{padding-left:.5em}.widget-area a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)){color:var(--global-palette3);text-decoration:none}.widget-area a:where(:not(.button):not(.wp-block-button__link):not(.wp-element-button)):hover{color:var(--global-palette-highlight);text-decoration:underline}.widget-area .widget{margin-left:0;margin-right:0}.widget li:not(.kb-table-of-content-list li){line-height:1.8}.widget select{max-width:100%;text-overflow:ellipsis}article.sticky{font-size:inherit}.entry{box-shadow:0 15px 25px -10px rgba(0,0,0,.05);border-radius:.25rem}.content-wrap{position:relative}@media screen and (max-width:719px){.primary-sidebar{padding-left:0;padding-right:0}}.blog.content-style-unboxed .entry-content-wrap{padding:0}.blog.content-style-unboxed .entry{box-shadow:none}.single-content{margin:var(--global-md-spacing) 0 0}.single-content address,.single-content figure,.single-content form,.single-content hr,.single-content p,.single-content table{margin-top:0;margin-bottom:var(--global-md-spacing)}.single-content p>img{display:inline-block}.single-content li>img{display:inline-block}.single-content h1,.single-content h2,.single-content h3,.single-content h4,.single-content h5,.single-content h6{margin:1.5em 0 .5em}.single-content h1:first-child,.single-content h2:first-child,.single-content h3:first-child,.single-content h4:first-child,.single-content h5:first-child,.single-content h6:first-child{margin-top:0}.single-content h1+*,.single-content h2+*,.single-content h3+*,.single-content h4+*,.single-content h5+*,.single-content h6+*{margin-top:0}.single-content ol,.single-content ul{margin:0 0 var(--global-md-spacing);padding-left:2em}.single-content li>ol,.single-content li>ul{margin:0}.single-content address:last-child,.single-content figure:last-child,.single-content form:last-child,.single-content h1:last-child,.single-content h2:last-child,.single-content h3:last-child,.single-content h4:last-child,.single-content h5:last-child,.single-content h6:last-child,.single-content hr:last-child,.single-content ol:last-child,.single-content p:last-child,.single-content table:last-child,.single-content ul:last-child{margin-bottom:0}.single-content .wp-block-image{margin-top:0;margin-bottom:0}.single-content .wp-block-image figure{margin-bottom:var(--global-md-spacing)}.single-content .wp-block-image:last-child figure{margin-bottom:0}.single-content figure.wp-block-image{margin-bottom:var(--global-md-spacing)}.single-content figure.wp-block-image:last-child{margin-bottom:0}.entry-content:after{display:table;clear:both;content:''}.kadence-breadcrumbs{margin:1em 0;font-size:85%;color:var(--global-palette5)}.kadence-breadcrumbs a{color:inherit}.kadence-breadcrumbs p{margin:0}.entry-content-wrap .entry-header .kadence-breadcrumbs:first-child{margin-top:0}.entry-meta{font-size:80%;margin:1em 0;display:flex;flex-wrap:wrap}.entry-meta>*{display:inline-flex;align-items:center;flex-wrap:wrap}.entry-meta>* time{white-space:nowrap}.entry-meta a{color:inherit;text-decoration:none}.entry-meta .meta-label{margin-right:.2rem}.entry-meta>:after{margin-left:.5rem;margin-right:.5rem;content:"";display:inline-block;background-color:currentColor;height:.25rem;width:.25rem;opacity:.8;border-radius:9999px;vertical-align:.1875em}.entry-meta.entry-meta-divider-slash>:after{content:'/';height:auto;background:0 0}.entry-meta>:last-child:after{display:none}.updated:not(.published){display:none}.updated-on .updated:not(.published){display:inline-block}.entry-hero-container-inner{background:var(--global-palette7)}.entry-hero-container-inner .entry-header{min-height:200px;display:flex;align-items:center;text-align:center;justify-content:center;flex-direction:column;margin-bottom:0}.entry-hero-container-inner .entry-header>div{width:100%}.title-align-left{text-align:left}.title-align-left .entry-meta{justify-content:flex-start}.entry-header{margin-bottom:1em}.comments-area.entry-content-wrap{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.entry-title{word-wrap:break-word}.comments-area{margin-top:var(--global-xl-spacing);margin-left:auto;margin-right:auto}.comments-area .comment .avatar{position:absolute;left:-70px;width:50px;height:50px;border-radius:50px}.bypostauthor{display:block}.comment-reply-title,.comments-title{margin-bottom:1em}.comment-list{padding:0;margin:0;list-style-type:none}.comment-list ol{list-style-type:none}.children{margin-left:1em;padding-left:0}.rtl .children{margin-left:0;margin-right:1em}#cancel-comment-reply-link{margin-left:.8em}@media screen and (min-width:768px){.children{margin-left:2em}.rtl .children{margin-left:0;margin-right:2em}}.comment-body{position:relative;border-bottom:1px solid var(--global-gray-500);margin-bottom:3em}.comment-author .fn a{color:inherit}.comment-meta{position:relative;margin-left:70px;font-size:80%}.comment-form a,.comment-meta a{text-decoration:none;border:none;color:inherit}.comment-form a:focus,.comment-form a:hover,.comment-meta a:focus,.comment-meta a:hover{text-decoration:underline}.bypostauthor .avatar{box-sizing:content-box;border:5px solid var(--global-palette7);margin-top:-5px;margin-left:-5px}.comment-author{font-size:1.4em;line-height:1.3}.says{font-size:80%}.comment-metadata{padding-bottom:.5em}.comment-content a{word-wrap:break-word}.comment-content ol,.comment-content ul{margin:0;padding-right:3em;padding-left:3em}.comment-content ol{list-style-type:decimal}.comment-content ol ol,.comment-content ul ul{margin-right:0;margin-left:0}.comment-content blockquote{margin-bottom:.75em;font-size:1.6em;line-height:1.25}.comment-content cite{font-size:1.2em}.comment-content{margin-bottom:2rem;padding-top:.3em}.reply{margin-bottom:2em;margin-top:-.5em}.comment-reply-link{display:inline-block;padding:.5em 1em;font-size:85%;color:var(--global-palette5);line-height:1;text-decoration:none;background:0 0;border:1px solid var(--global-palette7);border-radius:0}.comment-reply-link:focus,.comment-reply-link:hover{border-color:var(--global-palette4);color:var(--global-palette4);cursor:pointer}.comment-form{line-height:1.3}.comment-form p{margin:1.5em 0}.comment-form .comment-notes{margin-top:-.5em;font-size:80%;font-style:italic}.comment-form .comment-input-wrap p{margin:0 0 1.5em}.comment-input-wrap input{width:100%}@media screen and (min-width:767px){.reply{position:absolute;top:0;right:0;margin:0}.comment-form .comment-input-wrap{display:grid;grid-template-columns:repeat(3,1fr);grid-gap:1.5em;margin-top:-1em}.comment-form .comment-input-wrap p{margin:0}}#respond+.comments-title{margin-top:3em}.comment-form a{font-weight:500}.comment-form label{display:block;padding-bottom:.4em}.comment-form .required{color:#d54e21}.comment-form .comment-input-wrap p,.comment-form p.comment-form-float-label{display:flex;flex-direction:column-reverse;align-items:flex-start}.comment-form .comment-input-wrap p label,.comment-form p.comment-form-float-label label{-webkit-transform-origin:left bottom;transform-origin:left bottom;color:var(--global-palette6)}.comment-form p.comment-form-float-label{margin-top:-1em}.comment-form input,.comment-form label{transition:all .2s}.comment-form input:-moz-placeholder-shown+label,.comment-form textarea:-moz-placeholder-shown+label{white-space:nowrap;overflow:hidden;max-width:90%;text-overflow:ellipsis;cursor:text;transform:translate(.5em,2.35em) scale(1)}.comment-form input:placeholder-shown+label,.comment-form textarea:placeholder-shown+label{white-space:nowrap;overflow:hidden;max-width:90%;text-overflow:ellipsis;cursor:text;-webkit-transform:translate(.5em,2.35em) scale(1);transform:translate(.5em,2.35em) scale(1)}.comment-form ::-webkit-input-placeholder{-webkit-transition:inherit;transition:inherit;opacity:0}.comment-form ::-moz-placeholder{-moz-transition:inherit;transition:inherit;opacity:0}.comment-form ::placeholder{transition:inherit;opacity:0}.comment-form input:focus::-webkit-input-placeholder,.comment-form textarea:focus::-webkit-input-placeholder{opacity:1}.comment-form input:focus::-moz-placeholder,.comment-form textarea:focus::-moz-placeholder{opacity:1}.comment-form input:focus::placeholder,.comment-form textarea:focus::placeholder{opacity:1}.comment-form input:not(:-moz-placeholder-shown)+label,.comment-form textarea:not(:-moz-placeholder-shown)+label{transform:translate(0,0) scale(.75);cursor:pointer}.comment-form input:focus+label,.comment-form input:not(:placeholder-shown)+label,.comment-form textarea:focus+label,.comment-form textarea:not(:placeholder-shown)+label{-webkit-transform:translate(0,0) scale(.75);transform:translate(0,0) scale(.75);cursor:pointer}.comment-form input[type=checkbox]+label{display:inline-block;padding-bottom:0;-webkit-transform:none;transform:none;padding-left:.2em}.primary-sidebar{padding-top:1.5rem;padding-bottom:1.5rem;margin-left:auto;margin-right:auto}@media screen and (min-width:768px){.comment-content ol,.comment-content ul{padding-right:1.5em;padding-left:1.5em}.primary-sidebar{padding-left:0;padding-right:0}}@media screen and (min-width:1025px){#main-header{display:block}#mobile-header{display:none}.primary-sidebar{padding:0;margin:0}.has-sticky-sidebar #wrapper,.has-sticky-sidebar-widget #wrapper{overflow:visible}.has-sticky-sidebar .sidebar-inner-wrap,.has-sticky-sidebar-widget .primary-sidebar .widget:last-child{position:-webkit-sticky;position:sticky;top:20px;overflow-y:auto}.has-sticky-sidebar-widget .sidebar-inner-wrap{height:100%}}.site-footer-row{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}.site-footer-row.site-footer-row-columns-3{grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr)}.site-footer-row.site-footer-row-columns-3.site-footer-row-column-layout-left-half{grid-template-columns:minmax(0,2fr) minmax(0,1fr) minmax(0,1fr)}.site-footer-row-layout-fullwidth>.site-footer-row-container-inner>.site-container{max-width:none}@media screen and (min-width:720px) and (max-width:1024px){.site-footer-row-container-inner .site-footer-row.site-footer-row-tablet-column-layout-default{grid-template-columns:minmax(0,1fr)}}.site-footer-section{display:flex;max-height:inherit}.footer-widget-area{flex:1;min-width:0;display:flex}.footer-widget-area>*{flex:1;min-width:0}.footer-widget-area.content-valign-middle{align-items:center}.footer-widget-area.content-valign-top{align-items:flex-start}.footer-widget-area.content-align-center{text-align:center}.footer-widget-area.content-align-center .footer-navigation{justify-content:center}.footer-widget-area.content-align-center .widget_media_image img{margin:0 auto}.footer-widget-area.content-align-center .footer-social-inner-wrap{justify-content:center}.footer-widget-area.content-align-right{text-align:right}.footer-widget-area.content-align-right .footer-navigation{justify-content:flex-end}.footer-widget-area.content-align-right .footer-navigation .menu{justify-content:flex-end}.footer-widget-area.content-align-right .footer-social-inner-wrap{justify-content:flex-end}.footer-widget-area.content-align-right .widget_media_image img{margin:0 0 0 auto}.footer-widget-area.content-align-left{text-align:left}.footer-widget-area.content-align-left .footer-navigation{justify-content:flex-start}.footer-widget-area.content-align-left .footer-navigation .menu{justify-content:flex-start}.footer-widget-area.content-align-left .footer-social-inner-wrap{justify-content:flex-start}@media screen and (max-width:1024px){.has-sticky-sidebar .sidebar-inner-wrap,.has-sticky-sidebar-widget .primary-sidebar .widget:last-child{max-height:none!important;overflow-y:auto}.footer-widget-area.content-tablet-align-center{text-align:center}.footer-widget-area.content-tablet-align-center .footer-navigation{justify-content:center}.footer-widget-area.content-tablet-align-center .footer-navigation .menu{justify-content:center}.footer-widget-area.content-tablet-align-center .footer-social-inner-wrap{justify-content:center}.footer-widget-area.content-tablet-align-center .widget_media_image img{margin:0 auto}}@media screen and (max-width:719px){.site-footer-row-container-inner .site-footer-row.site-footer-row-mobile-column-layout-row{grid-template-columns:minmax(0,1fr)}.footer-widget-area.content-mobile-align-center{text-align:center}.footer-widget-area.content-mobile-align-center .footer-navigation{justify-content:center}.footer-widget-area.content-mobile-align-center .footer-navigation .menu{justify-content:center}.footer-widget-area.content-mobile-align-center .footer-social-inner-wrap{justify-content:center}.footer-widget-area.content-mobile-align-center .widget_media_image img{margin:0 auto}}.rtl .footer-widget-area.content-align-right .footer-social-inner-wrap{justify-content:flex-start}.rtl .footer-widget-area.content-align-left .footer-social-inner-wrap{justify-content:flex-end}.footer-menu-container,.footer-navigation{display:flex}.footer-navigation a{display:block;width:100%;text-decoration:none;color:var(--global-palette4);transition:all .2s ease-in-out}.footer-navigation a:focus,.footer-navigation a:hover{color:var(--global-palette-highlight)}.footer-navigation ul{display:block;list-style:none;margin:0;padding:0}.footer-navigation ul li a{padding:.6em .5em}.footer-navigation .menu{display:flex;flex-wrap:wrap;justify-content:center}.site-footer-wrap .footer-navigation .footer-menu-container>ul li a:hover{text-decoration:none}.site-footer-wrap .social-button{color:var(--global-palette4);background:var(--global-palette7)}.site-footer-wrap .social-button:hover{text-decoration:none;color:var(--global-palette-btn);background:var(--global-palette-btn-bg)}.social-style-outline .social-button:hover{color:var(--global-palette3)}.site-footer-section{position:relative}.site-footer-section:not(:last-child):after{content:'';position:absolute;top:0;bottom:0;height:auto;width:0;right:-15px;-webkit-transform:translateX(50%);transform:translateX(50%)}.footer-html{margin:1em 0}.footer-html p:last-child{margin-bottom:0}.footer-html p:first-child{margin-top:0}a{cursor:pointer}.popup-drawer .drawer-overlay{background-color:none}.blog .entry{text-align:center}.blog .entry-meta{display:block}.main-navigation .menu>.menu-item>a{position:relative;padding:6px 0;overflow:hidden}.main-navigation .menu>.menu-item>a::after{content:"";position:absolute;top:0;left:calc(37%);width:22px;height:11px;background-image:url(https://www.figjar.com/wp-content/themes/restored316-create/images/above-nav.svg);background-repeat:no-repeat;opacity:0;transition:all .5s ease}.main-navigation .menu>.menu-item>a:active::after,.main-navigation .menu>.menu-item>a:hover::after{opacity:1;animation:1s ease-in-out infinite alternate pulse}@keyframes pulse{from{transform:scale(.8)}to{transform:scale(1.2)}}ul.menu .left ul li.menu-item>a,ul.menu .right ul li.menu-item>a{border:none}blockquote{quotes:'“' '”'}blockquote{font-style:italic;padding-left:0;border-left:0}.entry-content blockquote{margin:var(--global-md-spacing) 0 0}blockquote cite{color:var(--global-palette5);font-size:13px;margin-top:1em;position:relative;font-style:normal;display:block}.rotate img{transition:transform .7s ease-in-out}.rotate img:hover{transform:rotate(3deg)}.comment-body{border-bottom:1px solid var(--global-palette8)}.comment .avatar{height:75px;left:-95px;width:75px}.comment-meta{margin-left:95px}input[type=color],input[type=date],input[type=datetime-local],input[type=datetime],input[type=email],input[type=month],input[type=number],input[type=password],input[type=range],input[type=search],input[type=tel],input[type=text],input[type=time],input[type=url],input[type=week],select,textarea{border:1px solid var(--global-palette7);border-radius:0}.popup-drawer .drawer-overlay{background-color:transparent}:root{--global-kb-font-size-sm:clamp(0.8rem, 0.73rem + 0.217vw, 0.9rem);--global-kb-font-size-md:clamp(1.1rem, 0.995rem + 0.326vw, 1.25rem);--global-kb-font-size-lg:clamp(1.75rem, 1.576rem + 0.543vw, 2rem);--global-kb-font-size-xl:clamp(2.25rem, 1.728rem + 1.63vw, 3rem);--global-kb-font-size-xxl:clamp(2.5rem, 1.456rem + 3.26vw, 4rem);--global-kb-font-size-xxxl:clamp(2.75rem, 0.489rem + 7.065vw, 6rem)}body{--tr-star-color:#F2B955;--tr-button-color:#E9E9E9;--tr-button-text-color:rgba(0, 0, 0, .69);--tr-radius:2px}.tasty-recipes-rating-solid{display:inline-block;line-height:1}.tasty-recipes-rating-solid svg{fill:currentColor;height:var(--tr-star-size,18px);width:var(--tr-star-size,18px)}.tasty-recipes-rating-solid[data-tr-clip="10"] svg{fill:url(#tasty-recipes-clip-10)}.tasty-recipes-rating-solid[data-tr-clip="20"] svg{fill:url(#tasty-recipes-clip-20)}.tasty-recipes-rating-solid[data-tr-clip="30"] svg{fill:url(#tasty-recipes-clip-30)}.tasty-recipes-rating-solid[data-tr-clip="40"] svg{fill:url(#tasty-recipes-clip-40)}.tasty-recipes-rating-solid[data-tr-clip="50"] svg{fill:url(#tasty-recipes-clip-50)}.tasty-recipes-rating-solid[data-tr-clip="60"] svg{fill:url(#tasty-recipes-clip-60)}.tasty-recipes-rating-solid[data-tr-clip="70"] svg{fill:url(#tasty-recipes-clip-70)}.tasty-recipes-rating-solid[data-tr-clip="80"] svg{fill:url(#tasty-recipes-clip-80)}.tasty-recipes-rating-solid[data-tr-clip="90"] svg{fill:url(#tasty-recipes-clip-90)}.tasty-recipes-rating-solid{--tr-star-opacity:.4}.tasty-recipes-rating-solid[data-tr-clip="0"] svg{opacity:var(--tr-star-opacity)}[data-tr-default-rating]>span:not([data-tr-checked]) .tasty-recipes-rating-solid svg{--tr-star-opacity:.4;opacity:var(--tr-star-opacity)}[data-tr-default-rating] span[data-tr-checked]~span .tasty-recipes-rating-solid svg{fill:currentColor;--tr-star-opacity:1}input.tasty-recipes-rating:checked~span .tasty-recipes-rating-solid svg{fill:currentColor;--tr-star-opacity:1}@media only screen and (min-width:1024px){.tasty-recipes-ratings-buttons:hover span .tasty-recipes-rating-solid svg{--tr-star-opacity:.4!important;opacity:var(--tr-star-opacity)}.tasty-recipes-ratings-buttons:hover>:hover .tasty-recipes-rating-solid svg,.tasty-recipes-ratings-buttons:not(:hover)>input:checked~span .tasty-recipes-rating-solid svg,.tasty-recipes-ratings-buttons>:hover .tasty-recipes-rating-solid svg,.tasty-recipes-ratings-buttons>:hover~span .tasty-recipes-rating-solid svg{fill:currentColor!important;--tr-star-opacity:1!important}}.tasty-recipes-static-tooltip{background-color:#000;border-radius:4px;color:#fff;font-size:.9rem;opacity:0;padding:5px 10px;position:absolute;text-align:center;transition:opacity .5s ease-in-out,visibility .5s ease-in-out,transform .5s cubic-bezier(.71,1.7,.77,1.24);vertical-align:middle;visibility:hidden;width:230px;z-index:9}.tasty-recipes-static-tooltip.opened{opacity:1;transform:translateY(-4px);visibility:visible}.tasty-recipes-static-tooltip a{color:#f7d578;display:block}.tasty-recipes-static-tooltip:after{border-left:6px solid transparent;border-right:6px solid transparent;border-top:6px solid #000;bottom:-6px;content:"";font-size:0;left:calc(50% - 4px);line-height:0;pointer-events:none;position:absolute;transform:translateZ(0);transition:opacity .2s ease-in-out,visibility .2s ease-in-out,transform .2s cubic-bezier(.71,1.7,.77,1.24);width:0;z-index:99}.tasty-recipes-static-tooltip.tr-hide-tail:after{display:none}.tasty-recipes,.tasty-recipes-quick-links,.tasty-recipes-ratings,.wp-admin .tasty-recipes-comment-form{--tr-star-size:18px;--tr-star-margin:3px}.tasty-recipes-rating,.tasty-recipes-ratings-buttons{color:#f2b955;color:var(--tr-star-color,#f2b955)}.tasty-recipes-comment-form{border:none;margin:0;padding:0}.tasty-recipes-comment-form.tasty-recipes-ratings{display:block}.tasty-recipes-ratings,.tasty-recipes-ratings-buttons{display:inline-flex}.tasty-recipes-ratings span.tasty-recipes-rating,.tasty-recipes-ratings-buttons span.tasty-recipes-rating{cursor:pointer;display:inline-block;font-size:var(--tr-star-size,1.1em);margin:0;padding-right:var(--tr-star-margin,.3em)}.tasty-recipes-ratings span.tasty-recipes-rating:first-child[data-rating="5"],.tasty-recipes-ratings-buttons span.tasty-recipes-rating:first-child[data-rating="5"]{padding-right:0}.tasty-recipes-rating p{margin:4px 0}.tasty-recipes-ratings-buttons{flex-direction:row-reverse}.tasty-recipes-ratings-buttons input[type=radio]{clip:auto;cursor:pointer;display:inline-block!important;height:auto;margin:0;margin-left:calc((var(--tr-star-size,1.1em) + var(--tr-star-margin))*-1);opacity:0;position:relative;width:1.1em!important;width:calc(var(--tr-star-size,1.1em) + var(--tr-star-margin))!important;z-index:2}.tasty-recipes-ratings-buttons>span{position:relative}.tasty-recipes-ratings-buttons>span i{font-style:normal}.tasty-recipes-ratings-buttons>span:first-child{padding-right:0!important}.tasty-recipes-rating a,.tasty-recipes-rating a:link{background:0 0;outline:0;text-decoration:none}.tasty-recipes-screen-reader{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.tasty-recipes-rating-link{align-items:center;display:inline-flex}.tasty-recipes-rating-link .rating-label{font-size:80%;padding-left:.4em}.tasty-recipes-selected-minimum-rating .comment-form-comment label .required{display:none}.tasty-recipes-has-ratings{text-decoration:none!important}.tasty-recipes-print-button{background-color:#667;border:none;display:inline-block;padding:.5em 1em;text-decoration:none}body:not(.tasty-recipes-print-view) .tasty-recipes-print-button.tasty-recipes-print-above-card{color:#fff;display:none}body:not(.tasty-recipes-print-view) .tasty-recipes-print-button.tasty-recipes-print-above-card:hover{background-color:#b2b2bb;color:#fff;display:inline-block;padding:.5em 1em;text-decoration:none}.tasty-recipes-image-button-container{display:flex;flex-direction:column;flex-wrap:wrap;float:right;margin-left:10px}.tasty-recipes-image-button-container .tasty-recipes-buttons{margin-bottom:10px;margin-top:10px}.tasty-recipes-image-button-container .tasty-recipes-button-wrap{box-sizing:border-box;margin-bottom:10px}.tasty-recipes a.button,.tasty-recipes-image-button-container .tasty-recipes-buttons a,.tasty-recipes-quick-links a.button{background-color:#f9f9f9;background-color:var(--tr-button-color,#f9f9f9);border:1px solid #aaa;border-color:var(--tr-button-color,#aaa);border-radius:var(--tr-radius,0);color:#aaa;color:var(--tr-button-text-color,#aaa);cursor:pointer;display:block;font-size:16px;font-weight:700;line-height:16px;margin-top:0;padding:8px;text-align:center;text-decoration:none;text-transform:uppercase}.tasty-recipes-quick-links{align-items:center;display:flex;gap:.625em;justify-content:center;margin-bottom:1em}.tasty-recipes-quick-links a.button{display:inline-block;margin:0}.tasty-recipes-quick-links a.button+span{display:none}.tasty-recipes-buttons a.button:hover,.tasty-recipes-image-button-container .tasty-recipes-buttons .button:hover,.tasty-recipes-quick-links a.button:hover{background-color:var(--tr-button-text-color,#aaa);border-color:var(--tr-button-color,#f9f9f9);color:var(--tr-button-color,#f9f9f9);text-decoration:none}.tasty-recipes-image-button-container .tasty-recipes-buttons .button:hover{opacity:1}.tasty-recipes-image-button-container .tasty-recipes-buttons a:hover{background-color:#979599;text-decoration:none}.tasty-recipes-image-button-container .tasty-recipes-buttons svg{display:none}.tasty-recipes-convert-container{padding:0 1em 1em 0}.tasty-recipes-convert-container .tasty-recipes-convert-label{align-self:center;color:#979599;font-size:.6rem;text-transform:uppercase}.tasty-recipes-convert-container button{background:0 0;border:1px solid #353547;border-radius:var(--tr-radius,2px);color:#353547;letter-spacing:0;margin-left:5px;min-width:34px;padding:2px 4px;text-align:center}.tasty-recipes-convert-container button.tasty-recipes-convert-button-active{background-color:#000;border-color:#000;color:#fff}.tasty-recipes-convert-container button:focus{outline:0}.tasty-recipes-hide-video iframe{display:none}@media print{.tasty-recipes-no-print,.tasty-recipes-no-print *{display:none!important}}.tasty-recipes-display{border:1px solid #ededed;margin-bottom:1em}.tasty-recipes-header{padding:20px}.tasty-recipes-display::after{content:' ';display:block;clear:both}.tasty-recipes-display h2{font-weight:400;margin-top:0;padding-top:0}.tasty-recipes-rating a{text-decoration:none}.tasty-recipes-rating p{margin-bottom:1rem;display:inline-block}.tasty-recipes-rating .rating-label,.tasty-recipes-rating-link .rating-label{font-style:italic;font-size:.8em}.tasty-recipes-description p{font-size:.8em;font-style:italic}.tasty-recipes-details{font-size:.8em}.tasty-recipes-details ul{padding-left:0}.tasty-recipes-details ul li{list-style-type:none;margin-left:0}.tasty-recipes-label{color:#797b7c}.cook-time,.prep-time,.total-time{display:inline-block;margin-right:1em!important;vertical-align:top}.tasty-recipe-ingredients h3,.tasty-recipe-instructions h3,.tasty-recipes-ingredients h3,.tasty-recipes-instructions h3{font-weight:400;margin-top:0;text-transform:lowercase}.tasty-recipes-ingredients-clipboard-container{display:flex;align-items:baseline;background:#ededed;position:relative}.tasty-recipes-convert-container,.tasty-recipes-scale-container{float:none;margin:10px 0 5px;padding:0 0 0 20px;display:block}.tasty-recipe-ingredients h4,.tasty-recipe-ingredients ol,.tasty-recipe-ingredients p,.tasty-recipe-ingredients ul{padding-right:1em;padding-left:0}.tasty-recipes-display .tasty-recipe-ingredients ol li,.tasty-recipes-display .tasty-recipe-ingredients ul li,.tasty-recipes-display .tasty-recipe-instructions ol li,.tasty-recipes-display .tasty-recipe-instructions ul li{margin-left:1em}.tasty-recipes-content{display:flex;align-items:stretch;flex-wrap:wrap}.tasty-recipe-ingredients{width:100%}.tasty-recipes-ingredients-body,.tasty-recipes-instructions-body{padding:10px 20px}.tasty-recipe-instructions{width:100%}.tasty-recipe-ingredients h3,.tasty-recipe-instructions h3{padding:1em 0 1em 1em;margin-bottom:0;background:#ededed}.tasty-recipe-ingredients h4,.tasty-recipe-instructions h4,.tasty-recipes-ingredients h4,.tasty-recipes-instructions h4{font-size:1.1em;font-weight:700}.tasty-recipes-entry-footer{text-align:center;padding:1rem}@media (min-width:500px){.tasty-recipe-ingredients{width:calc(40% - 1px);border-right:1px solid #ededed}.tasty-recipe-instructions{width:60%}.tasty-recipe-ingredients h4,.tasty-recipe-ingredients ol,.tasty-recipe-ingredients p,.tasty-recipe-ingredients ul{margin-left:0;margin-top:0;margin-bottom:0;margin-left:0;padding-bottom:1em}.tasty-recipe-instructions h3{border-left:1px solid #fff}.tasty-recipe-instructions h4,.tasty-recipe-instructions ol,.tasty-recipe-instructions p,.tasty-recipe-instructions ul{margin-top:0;margin-bottom:0;margin-left:0;padding-bottom:1em}}.tasty-recipes-cook-mode{padding:0 20px 10px}.tasty-recipes-cook-mode__container label:last-child{flex:1}.tasty-recipes-cook-mode__helper,.tasty-recipes-cook-mode__label{font-size:.8em}.tasty-recipes-cook-mode__label{color:#797b7c;display:block}img#wpstats{display:none}@font-face{font-family:Sen;font-style:normal;font-weight:400;font-display:swap;src:url(https://www.figjar.com/wp-content/cache/fonts/1/google-fonts/fonts/s/sen/v12/6xKjdSxYI9_3nPWN.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Sen;font-style:normal;font-weight:600;font-display:swap;src:url(https://www.figjar.com/wp-content/cache/fonts/1/google-fonts/fonts/s/sen/v12/6xKjdSxYI9_3nPWN.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Sen;font-style:normal;font-weight:700;font-display:swap;src:url(https://www.figjar.com/wp-content/cache/fonts/1/google-fonts/fonts/s/sen/v12/6xKjdSxYI9_3nPWN.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Zilla Slab';font-style:normal;font-weight:300;font-display:swap;src:url(https://www.figjar.com/wp-content/cache/fonts/1/google-fonts/fonts/s/zillaslab/v12/dFa5ZfeM_74wlPZtksIFYpEY6HOpWw.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:'Zilla Slab';font-style:normal;font-weight:400;font-display:swap;src:url(https://www.figjar.com/wp-content/cache/fonts/1/google-fonts/fonts/s/zillaslab/v12/dFa6ZfeM_74wlPZtksIFajo6_Q.woff2) format('woff2');unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}.menu .right a{border-right:1px solid var(--global-palette7)}.menu .left a{border-left:1px solid var(--global-palette7)}.tasty-recipes-convert-container,.tasty-recipes-scale-container{padding-left:20px!important}.gravatar-hovercard{color:#000;display:inline-block;font-family:'SF Pro Text',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;font-size:14px;line-height:1.5;z-index:10000000}.gravatar-hovercard,.gravatar-hovercard:after,.gravatar-hovercard:before{box-sizing:border-box}.gravatar-hovercard *{appearance:none;-webkit-appearance:none;-moz-appearance:none;background:0 0;border:0;box-sizing:inherit;color:inherit;font:inherit;line-height:inherit;list-style:none;margin:0;padding:0;vertical-align:baseline}.gravatar-hovercard a{cursor:pointer;text-decoration:none}.gravatar-hovercard button{background:0 0;border:none;cursor:pointer;padding:0}.gravatar-hovercard img,.gravatar-hovercard svg{display:block;height:auto;max-width:100%}.gravatar-hovercard a:focus-visible,.gravatar-hovercard button:focus-visible{outline:revert solid 2px}.gravatar-hovercard .gravatar-hovercard__inner{background-color:#fff;border:1px solid #d8dbdd;border-radius:4px;box-shadow:0 2px 6px rgba(0,0,0,.08);display:flex;flex-direction:column;justify-content:space-between;min-height:273px;overflow:hidden;padding:24px 24px 16px;position:relative;width:336px}.gravatar-hovercard .gravatar-hovercard__header-image{height:75px;left:50%;overflow-y:hidden;position:absolute;top:0;transform:translateX(-50%);width:100%}.gravatar-hovercard .gravatar-hovercard__header{display:flex;flex-direction:column;gap:8px;z-index:1}.gravatar-hovercard .gravatar-hovercard__avatar-link{width:-moz-fit-content;width:fit-content}.gravatar-hovercard .gravatar-hovercard__avatar{background-color:#eee;border-radius:50%}.gravatar-hovercard .gravatar-hovercard__name{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-family:'SF Pro Text',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;font-size:32px;font-weight:700;line-height:38px;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.gravatar-hovercard .gravatar-hovercard__job,.gravatar-hovercard .gravatar-hovercard__location{display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;color:#707070;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.gravatar-hovercard .gravatar-hovercard__body{margin-top:8px}.gravatar-hovercard .gravatar-hovercard__description{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;word-break:break-word}.gravatar-hovercard .gravatar-hovercard__social-links{align-items:center;display:flex;gap:4px;margin-top:16px}.gravatar-hovercard .gravatar-hovercard__buttons{display:flex;gap:16px;margin-top:16px}.gravatar-hovercard .gravatar-hovercard__button{border:1px solid rgba(29,79,196,.3);border-radius:4px;color:#1d4fc4;font-family:'SF Pro Text',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Oxygen-Sans,Ubuntu,Cantarell,'Helvetica Neue',sans-serif;font-size:15px;font-weight:600;line-height:21px;min-height:42px;padding:8px;width:100%}.gravatar-hovercard .gravatar-hovercard__button:hover{border:1px solid rgba(29,79,196,.6)}.gravatar-hovercard .gravatar-hovercard__footer{align-items:center;display:flex;gap:12px;justify-content:space-between;margin-top:12px}.gravatar-hovercard .gravatar-hovercard__profile-url{display:-webkit-box;-webkit-line-clamp:1;-webkit-box-orient:vertical;color:#707070;overflow:hidden;text-overflow:ellipsis;word-break:break-word;word-break:break-all}.gravatar-hovercard .gravatar-hovercard__profile-link{color:#707070;flex-shrink:0}.gravatar-hovercard .gravatar-hovercard__profile-color{bottom:0;height:4px;left:0;position:absolute;width:100%}.gravatar-hovercard--skeleton .gravatar-hovercard__avatar-link,.gravatar-hovercard--skeleton .gravatar-hovercard__personal-info-link,.gravatar-hovercard--skeleton .gravatar-hovercard__profile-link,.gravatar-hovercard--skeleton .gravatar-hovercard__profile-url,.gravatar-hovercard--skeleton .gravatar-hovercard__social-link{background-color:#eee}.gravatar-hovercard--skeleton .gravatar-hovercard__avatar-link{border-radius:50%;height:104px;width:104px}.gravatar-hovercard--skeleton .gravatar-hovercard__personal-info-link{height:38px;width:70%}.gravatar-hovercard--skeleton .gravatar-hovercard__social-link{border-radius:50%;height:32px;width:32px}.gravatar-hovercard--skeleton .gravatar-hovercard__profile-url{height:21px;width:50%}.gravatar-hovercard--skeleton .gravatar-hovercard__profile-link{height:21px;width:96px}.gravatar-hovercard--error .gravatar-hovercard__inner{align-items:center;gap:34px;justify-content:center}.gravatar-hovercard--error .gravatar-hovercard__error-message-wrapper{align-items:center;display:flex;flex-direction:column}.gravatar-hovercard--error .gravatar-hovercard__error-message{color:#707070}.wp-hovercard .gravatar-hovercard__avatar{max-width:104px}.wp-hovercard-attachment{cursor:default}.wp-block-kadence-advancedheading mark{background:0 0;border-style:solid;border-width:0}.wp-block-kadence-advancedheading.kt-adv-headingblock-5_098b74-2f,.wp-block-kadence-advancedheading.kt-adv-headingblock-5_098b74-2f[data-kb-block=kb-adv-headingblock-5_098b74-2f]{text-align:center;font-style:normal}.tasty-pinit-button{background:#e60023;background-image:none;border:0;box-shadow:none;color:#fff;cursor:pointer;display:inline-block;font-family:Arial;font-size:11px;font-weight:700;height:28px;line-height:28px;position:absolute;text-decoration:none;transition:opacity .25s ease-in-out;vertical-align:middle;width:auto;z-index:10000000}.tasty-pinit-button:active,.tasty-pinit-button:hover{color:#fff}.tasty-pinit-overlay{background:#000;bottom:0;box-sizing:border-box;left:0;opacity:.1;padding:6px;pointer-events:none;position:absolute;right:0;top:0;width:100%;z-index:1000000}.tasty-pinit-label{padding-right:7px}.formkit-form[data-uid=d8ec346f78] *{box-sizing:border-box}.formkit-form[data-uid=d8ec346f78]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.formkit-form[data-uid=d8ec346f78] legend{border:none;font-size:inherit;margin-bottom:10px;padding:0;position:relative;display:table}.formkit-form[data-uid=d8ec346f78] fieldset{border:0;padding:.01em 0 0;margin:0;min-width:0}.formkit-form[data-uid=d8ec346f78] body:not(:-moz-handler-blocked) fieldset{display:table-cell}.formkit-form[data-uid=d8ec346f78] h1,.formkit-form[data-uid=d8ec346f78] h2,.formkit-form[data-uid=d8ec346f78] h3,.formkit-form[data-uid=d8ec346f78] h4,.formkit-form[data-uid=d8ec346f78] h5,.formkit-form[data-uid=d8ec346f78] h6{color:inherit;font-size:inherit;font-weight:inherit}.formkit-form[data-uid=d8ec346f78] h2{font-size:1.5em;margin:1em 0}.formkit-form[data-uid=d8ec346f78] h3{font-size:1.17em;margin:1em 0}.formkit-form[data-uid=d8ec346f78] p{color:inherit;font-size:inherit;font-weight:inherit}.formkit-form[data-uid=d8ec346f78] blockquote:not([template-default]),.formkit-form[data-uid=d8ec346f78] ol:not([template-default]),.formkit-form[data-uid=d8ec346f78] ul:not([template-default]){text-align:left}.formkit-form[data-uid=d8ec346f78] blockquote:not([template-default]),.formkit-form[data-uid=d8ec346f78] hr:not([template-default]),.formkit-form[data-uid=d8ec346f78] ol:not([template-default]),.formkit-form[data-uid=d8ec346f78] p:not([template-default]),.formkit-form[data-uid=d8ec346f78] ul:not([template-default]){color:inherit;font-style:initial}.formkit-form[data-uid=d8ec346f78][data-format=modal]{display:none}.formkit-form[data-uid=d8ec346f78] .formkit-input{width:100%}.formkit-form[data-uid=d8ec346f78] .formkit-button,.formkit-form[data-uid=d8ec346f78] .formkit-submit{border:0;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;text-align:center;font-size:15px;font-weight:500;cursor:pointer;margin-bottom:15px;overflow:hidden;padding:0;position:relative;vertical-align:middle}.formkit-form[data-uid=d8ec346f78] .formkit-button:focus,.formkit-form[data-uid=d8ec346f78] .formkit-button:hover,.formkit-form[data-uid=d8ec346f78] .formkit-submit:focus,.formkit-form[data-uid=d8ec346f78] .formkit-submit:hover{outline:0}.formkit-form[data-uid=d8ec346f78] .formkit-button:focus>span,.formkit-form[data-uid=d8ec346f78] .formkit-button:hover>span,.formkit-form[data-uid=d8ec346f78] .formkit-submit:focus>span,.formkit-form[data-uid=d8ec346f78] .formkit-submit:hover>span{background-color:rgba(0,0,0,.1)}.formkit-form[data-uid=d8ec346f78] .formkit-button>span,.formkit-form[data-uid=d8ec346f78] .formkit-submit>span{display:block;-webkit-transition:.3s ease-in-out;transition:all .3s ease-in-out;padding:12px 24px}.formkit-form[data-uid=d8ec346f78] .formkit-input{background:#fff;font-size:15px;padding:12px;border:1px solid #e3e3e3;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;line-height:1.4;margin:0;-webkit-transition:border-color .3s ease-out;transition:border-color ease-out .3s}.formkit-form[data-uid=d8ec346f78] .formkit-input:focus{outline:0;border-color:#1677be;-webkit-transition:border-color .3s;transition:border-color ease .3s}.formkit-form[data-uid=d8ec346f78] .formkit-input::-webkit-input-placeholder{color:inherit;opacity:.8}.formkit-form[data-uid=d8ec346f78] .formkit-input::-moz-placeholder{color:inherit;opacity:.8}.formkit-form[data-uid=d8ec346f78] .formkit-input:-ms-input-placeholder{color:inherit;opacity:.8}.formkit-form[data-uid=d8ec346f78] .formkit-input::placeholder{color:inherit;opacity:.8}.formkit-form[data-uid=d8ec346f78] .formkit-alert{background:#f9fafb;border:1px solid #e3e3e3;border-radius:5px;-webkit-flex:1 0 auto;-ms-flex:1 0 auto;flex:1 0 auto;list-style:none;margin:25px auto;padding:12px;text-align:center;width:100%}.formkit-form[data-uid=d8ec346f78] .formkit-alert:empty{display:none}.formkit-form[data-uid=d8ec346f78] .formkit-alert-error{background:#fde8e2;border-color:#f2643b;color:#ea4110}.formkit-form[data-uid=d8ec346f78] .formkit-spinner{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;height:0;width:0;margin:0 auto;position:absolute;top:0;left:0;right:0;width:0;overflow:hidden;text-align:center;-webkit-transition:.3s ease-in-out;transition:all .3s ease-in-out}.formkit-form[data-uid=d8ec346f78] .formkit-spinner>div{margin:auto;width:12px;height:12px;background-color:#fff;opacity:.3;border-radius:100%;display:inline-block;-webkit-animation:1.4s ease-in-out infinite both formkit-bouncedelay-formkit-form-data-uid-d8ec346f78-;animation:1.4s ease-in-out infinite both formkit-bouncedelay-formkit-form-data-uid-d8ec346f78-}.formkit-form[data-uid=d8ec346f78] .formkit-spinner>div:first-child{-webkit-animation-delay:-.32s;animation-delay:-.32s}.formkit-form[data-uid=d8ec346f78] .formkit-spinner>div:nth-child(2){-webkit-animation-delay:-.16s;animation-delay:-.16s}.formkit-form[data-uid=d8ec346f78] .formkit-submit[data-active] .formkit-spinner{opacity:1;height:100%;width:50px}.formkit-form[data-uid=d8ec346f78] .formkit-submit[data-active] .formkit-spinner~span{opacity:0}@-webkit-keyframes formkit-bouncedelay-formkit-form-data-uid-d8ec346f78-{0%,100%,80%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}@keyframes formkit-bouncedelay-formkit-form-data-uid-d8ec346f78-{0%,100%,80%{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}40%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.formkit-form[data-uid=d8ec346f78] blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #e1e1e1}.formkit-form[data-uid=d8ec346f78]{box-shadow:0 4px 8px rgba(105,113,119,.2);max-width:740px!important;overflow:hidden}.formkit-form[data-uid=d8ec346f78] [data-style=full]{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.formkit-form[data-uid=d8ec346f78] .formkit-background{background-position:center center;background-size:cover;height:280px;margin:20px;border-radius:var(--bg-border-radius)!important}.formkit-form[data-uid=d8ec346f78] .formkit-column{padding:20px;position:relative;-webkit-order:2;-ms-flex-order:2;order:2}.formkit-form[data-uid=d8ec346f78] .formkit-header{margin-top:0;margin-bottom:24px;font-weight:700;font-size:calc(30px + (36 - 30) * ((100vw - 400px) / (600 - 400)))}@media all and (min-width:800px){.formkit-form[data-uid=d8ec346f78] .formkit-header{font-size:36px}}.formkit-form[data-uid=d8ec346f78] .formkit-header h2{line-height:1.2;margin-top:0}.formkit-form[data-uid=d8ec346f78] .formkit-content{margin-bottom:45px;font-size:16px}.formkit-form[data-uid=d8ec346f78] .formkit-fields{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap}.formkit-form[data-uid=d8ec346f78] .formkit-field{margin:0 0 10px}.formkit-form[data-uid=d8ec346f78] .formkit-input{width:100%;border:0;padding-left:12px;padding-right:0;height:47px;font-size:14px}.formkit-form[data-uid=d8ec346f78] .formkit-fields .formkit-submit{margin-top:8px;font-size:12px;height:47px}.formkit-form[data-uid=d8ec346f78] .formkit-fields .formkit-submit span{padding:15px 14px}.formkit-form[data-uid=d8ec346f78] .formkit-fields[data-stacked=false]{margin-left:-4px;margin-right:-4px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.formkit-form[data-uid=d8ec346f78] .formkit-fields[data-stacked=false] .formkit-submit{-webkit-flex:1 1 auto!important;-ms-flex:1 1 auto!important;flex:1 1 auto!important;margin:0!important;min-width:90px}.formkit-form[data-uid=d8ec346f78] .formkit-fields[data-stacked=false] .formkit-field,.formkit-form[data-uid=d8ec346f78] .formkit-fields[data-stacked=false] .formkit-submit{margin:0 4px 8px!important}.formkit-form[data-uid=d8ec346f78] .formkit-fields[data-stacked=false] .formkit-field{-webkit-flex:100 1 auto!important;-ms-flex:100 1 auto!important;flex:100 1 auto!important;margin:0}.formkit-form[data-uid=d8ec346f78] .formkit-disclaimer{font-size:12px;opacity:.6;margin-top:6px}.formkit-form[data-uid=d8ec346f78] .formkit-field,.formkit-form[data-uid=d8ec346f78] .formkit-submit{margin:0 0 8px;-webkit-flex:1 0 100%;-ms-flex:1 0 100%;flex:1 0 100%}@media screen and (min-width:600px){.formkit-form[data-uid=d8ec346f78] [data-style=full]{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.formkit-form[data-uid=d8ec346f78] [data-style=full] .formkit-column{width:57%}.formkit-form[data-uid=d8ec346f78] [data-style=full] .formkit-background{width:44%;height:auto;margin-left:0;-webkit-order:2;-ms-flex-order:2;order:2}.formkit-form[data-uid=d8ec346f78] .formkit-column{padding:55px 60px 55px 45px}}.tasty-recipes-yield-scale{border:1px solid #979599;border-radius:2px;color:#979599;font-size:.7rem;margin-left:3px;padding:0 4px}.tasty-recipes-units-scale-container{display:flex;flex-wrap:wrap}.tasty-recipes-scale-container{display:flex;padding:0 0 1em}.tasty-recipes-scale-container .tasty-recipes-scale-label{align-self:center;color:#979599;font-size:.6rem;text-transform:uppercase}.tasty-recipes-scale-container button{background:0 0;border:1px solid #353547;border-radius:2px;color:#353547;cursor:pointer;letter-spacing:0;margin-left:5px;min-width:34px;padding:2px 4px}.tasty-recipes-scale-container button.tasty-recipes-scale-button-active{background-color:#000;border-color:#000;color:#fff}.tasty-recipes-scale-container button:focus{outline:0}.tasty-recipes-entry-footer p{font-size:.75em;margin:0}.tasty-recipes-entry-footer p a{border-bottom:none;box-shadow:none;text-decoration:underline}[data-tr-ingredient-checkbox]{cursor:pointer;list-style-position:outside;list-style-type:none!important;margin-left:0!important}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container{position:relative}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]+label{display:inline-block;position:relative;vertical-align:middle}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]{height:1px;overflow:hidden;position:absolute!important;width:1px;clip:rect(1px 1px 1px 1px);clip:rect(1px,1px,1px,1px)}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]+label:before{border:1px solid;border-radius:2px;content:"";display:inline-block;height:20px;margin-right:10px;position:relative;width:20px}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]:checked+label:after{border-bottom:2px solid;border-left:2px solid;content:"";display:inline-block;height:6px;left:4px;position:absolute;top:4px;transform:rotate(-45deg);width:12px}[data-tr-ingredient-checkbox] .tr-ingredient-checkbox-container input[type=checkbox]:focus+label:before{box-shadow:0 0 8px #5e9ed6;outline:#5d9dd5 solid 1px}[data-tr-ingredient-checkbox=checked]{opacity:.8;text-decoration:line-through}.tasty-recipes-cook-mode__container{align-items:center;display:flex;line-height:100%}.tasty-recipes-cook-mode__container label{font-size:inherit}.tasty-recipes-cook-mode__switch{display:inline-block;height:17px;margin-right:10px;position:relative;width:30px}.tasty-recipes-cook-mode__switch-slider{background-color:#737373;bottom:0;cursor:pointer;display:block;left:0;opacity:.4;position:absolute;right:0;top:0;transition:.4s}.tasty-recipes-cook-mode__switch-slider:before{background-color:#fff;bottom:2px;content:"";height:13px;left:2px;position:absolute;transition:.4s;width:13px}.tasty-recipes-cook-mode__switch input{display:none}.tasty-recipes-cook-mode__switch input:checked+span{opacity:1}.tasty-recipes-cook-mode__switch input:checked+span:before{transform:translateX(13px)}.tasty-recipes-cook-mode__switch-round{border-radius:34px}.tasty-recipes-cook-mode__switch-round:before{border-radius:50%}.tasty-recipes-cook-mode__label{font-weight:700}.wp-container-core-columns-is-layout-9d6595d7{flex-wrap:nowrap}.wp-block-gallery.wp-block-gallery-5{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var(--wp--style--gallery-gap-default,var(--gallery-block--gutter-size,var(--wp--style--block-gap,.5em)))}.wp-block-gallery.wp-block-gallery-6{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var(--wp--style--gallery-gap-default,var(--gallery-block--gutter-size,var(--wp--style--block-gap,.5em)))}.wp-block-gallery.wp-block-gallery-7{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var(--wp--style--gallery-gap-default,var(--gallery-block--gutter-size,var(--wp--style--block-gap,.5em)))}.wp-block-gallery.wp-block-gallery-8{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var(--wp--style--gallery-gap-default,var(--gallery-block--gutter-size,var(--wp--style--block-gap,.5em)))}</style><link rel="preload" data-rocket-preload as="image" href="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-683x1024.jpg.avif" imagesrcset="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake.jpg.avif 1280w" imagesizes="auto, (max-width: 683px) 100vw, 683px" fetchpriority="high">
<meta name="description" content="Berries and Cream Cake made with easy fluffy white cake, fresh honey whipped cream and strawberries, blueberries and raspberries." />
<link rel="canonical" href="https://www.figjar.com/berries-and-cream-cake/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Fresh Berries and Cream Cake Recipe - The Fig Jar" />
<meta property="og:description" content="Berries and Cream Cake made with easy fluffy white cake, fresh honey whipped cream and strawberries, blueberries and raspberries." />
<meta property="og:url" content="https://www.figjar.com/berries-and-cream-cake/" />
<meta property="og:site_name" content="The Fig Jar" />
<meta property="article:published_time" content="2024-07-03T07:00:00+00:00" />
<meta property="article:modified_time" content="2025-05-28T16:29:19+00:00" />
<meta property="og:image" content="https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake.jpg" />
<meta property="og:image:width" content="1280" />
<meta property="og:image:height" content="1920" />
<meta property="og:image:type" content="image/jpeg" />
<meta name="author" content="Becky Schmieg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:label1" content="Written by" />
<meta name="twitter:data1" content="Becky Schmieg" />
<meta name="twitter:label2" content="Est. reading time" />
<meta name="twitter:data2" content="7 minutes" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"Article","@id":"https://www.figjar.com/berries-and-cream-cake/#article","isPartOf":{"@id":"https://www.figjar.com/berries-and-cream-cake/"},"author":{"name":"Becky Schmieg","@id":"https://www.figjar.com/#/schema/person/46f2bad94c7121ada6ac74e2f1c199dd"},"headline":"Fresh Berries and Cream Cake Recipe","datePublished":"2024-07-03T07:00:00+00:00","dateModified":"2025-05-28T16:29:19+00:00","wordCount":709,"commentCount":2,"publisher":{"@id":"https://www.figjar.com/#organization"},"image":{"@id":"https://www.figjar.com/berries-and-cream-cake/#primaryimage"},"thumbnailUrl":"https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake.jpg","articleSection":["Cake Recipes","Dessert Recipes"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https://www.figjar.com/berries-and-cream-cake/#respond"]}]},{"@type":"WebPage","@id":"https://www.figjar.com/berries-and-cream-cake/","url":"https://www.figjar.com/berries-and-cream-cake/","name":"Fresh Berries and Cream Cake Recipe - The Fig Jar","isPartOf":{"@id":"https://www.figjar.com/#website"},"primaryImageOfPage":{"@id":"https://www.figjar.com/berries-and-cream-cake/#primaryimage"},"image":{"@id":"https://www.figjar.com/berries-and-cream-cake/#primaryimage"},"thumbnailUrl":"https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake.jpg","datePublished":"2024-07-03T07:00:00+00:00","dateModified":"2025-05-28T16:29:19+00:00","description":"Berries and Cream Cake made with easy fluffy white cake, fresh honey whipped cream and strawberries, blueberries and raspberries.","breadcrumb":{"@id":"https://www.figjar.com/berries-and-cream-cake/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://www.figjar.com/berries-and-cream-cake/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.figjar.com/berries-and-cream-cake/#primaryimage","url":"https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake.jpg","contentUrl":"https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake.jpg","width":1280,"height":1920,"caption":"Desserts"},{"@type":"BreadcrumbList","@id":"https://www.figjar.com/berries-and-cream-cake/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://www.figjar.com/"},{"@type":"ListItem","position":2,"name":"Recipes","item":"https://www.figjar.com/recipes/"},{"@type":"ListItem","position":3,"name":"Dessert Recipes","item":"https://www.figjar.com/category/dessert-recipes/"},{"@type":"ListItem","position":4,"name":"Fresh Berries and Cream Cake Recipe"}]},{"@type":"WebSite","@id":"https://www.figjar.com/#website","url":"https://www.figjar.com/","name":"The Fig Jar","description":"Simple recipes for everyday cooking","publisher":{"@id":"https://www.figjar.com/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://www.figjar.com/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https://www.figjar.com/#organization","name":"The Fig Jar","alternateName":"Fig Jar","url":"https://www.figjar.com/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.figjar.com/#/schema/logo/image/","url":"https://www.figjar.com/wp-content/uploads/2023/04/the-fig-jar-logo-NP.png","contentUrl":"https://www.figjar.com/wp-content/uploads/2023/04/the-fig-jar-logo-NP.png","width":696,"height":696,"caption":"The Fig Jar"},"image":{"@id":"https://www.figjar.com/#/schema/logo/image/"},"sameAs":["https://www.pinterest.com/beckykoko/","https://www.instagram.com/thefigjar/"]},{"@type":"Person","@id":"https://www.figjar.com/#/schema/person/46f2bad94c7121ada6ac74e2f1c199dd","name":"Becky Schmieg","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https://www.figjar.com/#/schema/person/image/","url":"https://secure.gravatar.com/avatar/6bd597a5e5ed38851e0d3a6fb93a97914efdc1870fea24853fe77f68aa804033?s=96&r=g","contentUrl":"https://secure.gravatar.com/avatar/6bd597a5e5ed38851e0d3a6fb93a97914efdc1870fea24853fe77f68aa804033?s=96&r=g","caption":"Becky Schmieg"},"description":"My name is Becky and I love food. This blog is where I share tasty recipes for the food I like to eat. You will find simple main dishes, lots of baking recipes and a few drinks. Enjoy!","sameAs":["https://www.figjar.com/about-me/"]},{"@context":"https://schema.org/","@type":"Recipe","name":"Fresh Berries and Cream Cake Recipe","description":"This berries and cream cake is perfect for summer! And with its festive colors, it's also perfect for Fourth of July celebrations. ","author":{"@type":"Person","name":"Becky Schmieg","url":"https://www.figjar.com/about-me/"},"keywords":"berries and cream cake","image":["https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-225x225.jpg","https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-260x195.jpg","https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-320x180.jpg","https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake.jpg"],"url":"https://www.figjar.com/berries-and-cream-cake/","recipeIngredient":["1 cup salted butter, 2 sticks softened to room temperature","1 cup granulated sugar","1 tsp vanilla","1 egg","1 cup milk (whole or 2%)","1 1/2 cups all-purpose flour","1 1/2 tsp baking powder ","1 1/2 tsp baking soda","1/2 tsp salt","1 cup heavy whipping cream","1 tbsp honey + 2 tsp","1 cup each: blueberries, raspberries, strawberries (halved or quartered depending on size)","fresh mint, for topping"],"recipeInstructions":[{"@type":"HowToStep","text":"Preheat oven to 350F.","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-1"},{"@type":"HowToStep","text":"Grease a 9-inch baking pan with butter and cut a circle of parchment paper to fit in the bottom of the pan.","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-2"},{"@type":"HowToStep","text":"In a medium mixing bowl, combine flour, baking powder, baking soda and salt. Stir to combine and set aside.","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-3"},{"@type":"HowToStep","text":"Add softened butter and sugar to the bowl of a stand mixer, start on medium speed and increase to medium-high as it comes together and beat for 3-5 minutes, until lightened in color. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-4"},{"@type":"HowToStep","text":"Add the egg and vanilla and beat on medium speed again until combined. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-5"},{"@type":"HowToStep","text":"With the mixer on medium-low, add the milk and dry ingredient mixture by alternating between both in 3 additions (add 1/3 of dry ingredients, then 1/3 milk, etc). Mix until fully combined. Remove the stand mixer bowl and use a rubber spatula to scrape down the edges and stir if necessary. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-6"},{"@type":"HowToStep","text":"Scrape the batter into the cake pan and use the spatula to spread in an even layer. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-7"},{"@type":"HowToStep","text":"Bake 35-45 minutes, until slightly golden around the edges and a toothpick inserted in the center comes out clean. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-8"},{"@type":"HowToStep","text":"Allow cake to cool at least 30 minutes before inverting cake onto a cooling rack. Allow cake to cool fully before topping with whipped cream and berries. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-9"},{"@type":"HowToStep","text":"Wash berries and add to a medium-sized mixing bowl. Drizzle with 2 tsp of honey, stir and set aside. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-10"},{"@type":"HowToStep","text":"Add whipping cream and 1 tbsp honey to the bowl of the stand mixer and beat until stiff peaks form. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-11"},{"@type":"HowToStep","text":"When the cake is cooled, top with whipped cream, then berries and garnish with fresh mint. ","url":"https://www.figjar.com/berries-and-cream-cake/#instruction-step-12"}],"prepTime":"PT40M","cookTime":"PT45M","totalTime":"PT1H25M","recipeYield":"8","recipeCategory":"dessert","aggregateRating":{"@type":"AggregateRating","reviewCount":"1","ratingValue":"5"},"review":[{"@type":"Review","reviewRating":{"@type":"Rating","ratingValue":"5"},"author":{"@type":"Person","name":"Gma covey"},"datePublished":"2024-07-04","reviewBody":"Do you think frozen mixed berries would work?\r\nI love the simplicity of this dessert and it's so pretty."}],"datePublished":"2024-07-03","@id":"https://www.figjar.com/berries-and-cream-cake/#recipe","isPartOf":{"@id":"https://www.figjar.com/berries-and-cream-cake/#article"},"mainEntityOfPage":"https://www.figjar.com/berries-and-cream-cake/"}]}</script>
<!-- / Yoast SEO plugin. -->
<link rel='dns-prefetch' href='//the-fig-jar.kit.com' />
<link rel='dns-prefetch' href='//scripts.mediavine.com' />
<link rel='dns-prefetch' href='//secure.gravatar.com' />
<link rel='dns-prefetch' href='//www.googletagmanager.com' />
<link rel='dns-prefetch' href='//stats.wp.com' />
<link rel='dns-prefetch' href='//v0.wordpress.com' />
<link rel='dns-prefetch' href='//widgets.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//0.gravatar.com' />
<link rel='dns-prefetch' href='//1.gravatar.com' />
<link rel='dns-prefetch' href='//2.gravatar.com' />
<link href='https://fonts.gstatic.com' crossorigin rel='preconnect' />
<link rel="alternate" type="application/rss+xml" title="The Fig Jar » Feed" href="https://www.figjar.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="The Fig Jar » Comments Feed" href="https://www.figjar.com/comments/feed/" />
<script type="rocketlazyloadscript">document.documentElement.classList.remove( 'no-js' );</script>
<link rel="alternate" type="application/rss+xml" title="The Fig Jar » Fresh Berries and Cream Cake Recipe Comments Feed" href="https://www.figjar.com/berries-and-cream-cake/feed/" />
<link rel="alternate" type="application/rss+xml" title="The Fig Jar » Stories Feed" href="https://www.figjar.com/web-stories/feed/"><style id='wp-emoji-styles-inline-css'></style>
<style id='classic-theme-styles-inline-css'></style>
<style id='ideabox-toc-style-inline-css'></style>
<style id='jetpack-sharing-buttons-style-inline-css'></style>
<style id='global-styles-inline-css'></style>
<style id='ez-toc-inline-css'></style>
<style id='kadence-global-inline-css'></style>
<style id='kadence-blocks-global-variables-inline-css'></style>
<style id='rocket-lazyload-inline-css'>
.rll-youtube-player{position:relative;padding-bottom:56.23%;height:0;overflow:hidden;max-width:100%;}.rll-youtube-player:focus-within{outline: 2px solid currentColor;outline-offset: 5px;}.rll-youtube-player iframe{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;background:0 0}.rll-youtube-player img{bottom:0;display:block;left:0;margin:auto;max-width:100%;width:100%;position:absolute;right:0;top:0;border:none;height:auto;-webkit-transition:.4s all;-moz-transition:.4s all;transition:.4s all}.rll-youtube-player img:hover{-webkit-filter:brightness(75%)}.rll-youtube-player .play{height:100%;width:100%;left:0;top:0;position:absolute;background:url(https://www.figjar.com/wp-content/plugins/wp-rocket/assets/img/youtube.png) no-repeat center;background-color: transparent !important;cursor:pointer;border:none;}.wp-embed-responsive .wp-has-aspect-ratio .rll-youtube-player{position:absolute;padding-bottom:0;width:100%;height:100%;top:0;bottom:0;left:0;right:0}
</style>
<style id='tasty-recipes-before-inline-css'></style>
<style id='tasty-recipes-main-inline-css'></style>
<script src="https://www.figjar.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/table-of-contents/assets/js/frontend.js?ver=1762960071" id="ideabox-toc-script-js" data-rocket-defer defer></script>
<script async="async" fetchpriority="high" data-noptimize="1" data-cfasync="false" src="https://scripts.mediavine.com/tags/the-fig-jar.js?ver=6.8.3" id="mv-script-wrapper-js"></script>
<!-- Google tag (gtag.js) snippet added by Site Kit -->
<!-- Google Analytics snippet added by Site Kit -->
<script src="https://www.googletagmanager.com/gtag/js?id=GT-NS926CG" id="google_gtagjs-js" async></script>
<script id="google_gtagjs-js-after">
window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}
gtag("set","linker",{"domains":["www.figjar.com"]});
gtag("js", new Date());
gtag("set", "developer_id.dZTNiMT", true);
gtag("config", "GT-NS926CG", {"googlesitekit_post_date":"20240703"});
</script>
<link rel="https://api.w.org/" href="https://www.figjar.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.figjar.com/wp-json/wp/v2/posts/20830" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.figjar.com/xmlrpc.php?rsd" />
<link rel='shortlink' href='https://wp.me/pa12ky-5pY' />
<link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://www.figjar.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.figjar.com%2Fberries-and-cream-cake%2F" />
<link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://www.figjar.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.figjar.com%2Fberries-and-cream-cake%2F&format=xml" />
<meta name="generator" content="Site Kit by Google 1.165.0" /><meta name="p:domain_verify" content="5b771d6a2dfc2bee3e1d7e1541bb96c0"/> <style>img#wpstats{display:none}</style>
<link rel="icon" href="https://www.figjar.com/wp-content/uploads/2023/07/cropped-f-3-32x32.png" sizes="32x32" />
<link rel="icon" href="https://www.figjar.com/wp-content/smush-avif/2023/07/cropped-f-3-192x192.png.avif" sizes="192x192" data-smush-avif-fallback="{"href":"https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/07\/cropped-f-3-192x192.png"}" />
<link rel="apple-touch-icon" href="https://www.figjar.com/wp-content/smush-avif/2023/07/cropped-f-3-180x180.png.avif" data-smush-avif-fallback="{"href":"https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/07\/cropped-f-3-180x180.png"}" />
<meta name="msapplication-TileImage" content="https://www.figjar.com/wp-content/uploads/2023/07/cropped-f-3-270x270.png" />
<style id="wp-custom-css"></style>
<noscript><style id="rocket-lazyload-nojs-css">.rll-youtube-player, [data-lazy-src]{display:none !important;}</style></noscript><meta name="generator" content="WP Rocket 3.20.1.1" data-wpr-features="wpr_remove_unused_css wpr_delay_js wpr_defer_js wpr_minify_js wpr_lazyload_images wpr_lazyload_iframes wpr_preconnect_external_domains wpr_oci wpr_minify_css wpr_preload_links wpr_host_fonts_locally wpr_desktop" /></head>
<body class="wp-singular post-template-default single single-post postid-20830 single-format-standard wp-custom-logo wp-embed-responsive wp-theme-kadence wp-child-theme-restored316-create no-anchor-scroll hide-focus-outline link-style-standard has-sidebar content-title-style-normal content-width-normal content-style-unboxed content-vertical-padding-show non-transparent-header mobile-non-transparent-header grow-content-body">
<div id="wrapper" class="site wp-site-blocks">
<a class="skip-link screen-reader-text scroll-ignore" href="#main">Skip to content</a>
<header id="masthead" class="site-header" role="banner" itemtype="https://schema.org/WPHeader" itemscope>
<div id="main-header" class="site-header-wrap">
<div class="site-header-inner-wrap">
<div class="site-header-upper-wrap">
<div class="site-header-upper-inner-wrap">
<div class="site-top-header-wrap site-header-row-container site-header-focus-item site-header-row-layout-standard" data-section="kadence_customizer_header_top">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-top-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
<div class="site-header-top-section-left site-header-section site-header-section-left">
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_social">
<div class="header-social-wrap"><div class="header-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-outline"><a href="https://www.instagram.com/thefigjar/" aria-label="Instagram" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Instagram</title><path d="M7 1c-1.657 0-3.158 0.673-4.243 1.757s-1.757 2.586-1.757 4.243v10c0 1.657 0.673 3.158 1.757 4.243s2.586 1.757 4.243 1.757h10c1.657 0 3.158-0.673 4.243-1.757s1.757-2.586 1.757-4.243v-10c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757zM7 3h10c1.105 0 2.103 0.447 2.828 1.172s1.172 1.723 1.172 2.828v10c0 1.105-0.447 2.103-1.172 2.828s-1.723 1.172-2.828 1.172h-10c-1.105 0-2.103-0.447-2.828-1.172s-1.172-1.723-1.172-2.828v-10c0-1.105 0.447-2.103 1.172-2.828s1.723-1.172 2.828-1.172zM16.989 11.223c-0.15-0.972-0.571-1.857-1.194-2.567-0.754-0.861-1.804-1.465-3.009-1.644-0.464-0.074-0.97-0.077-1.477-0.002-1.366 0.202-2.521 0.941-3.282 1.967s-1.133 2.347-0.93 3.712 0.941 2.521 1.967 3.282 2.347 1.133 3.712 0.93 2.521-0.941 3.282-1.967 1.133-2.347 0.93-3.712zM15.011 11.517c0.122 0.82-0.1 1.609-0.558 2.227s-1.15 1.059-1.969 1.18-1.609-0.1-2.227-0.558-1.059-1.15-1.18-1.969 0.1-1.609 0.558-2.227 1.15-1.059 1.969-1.18c0.313-0.046 0.615-0.042 0.87-0.002 0.74 0.11 1.366 0.47 1.818 0.986 0.375 0.428 0.63 0.963 0.72 1.543zM17.5 7.5c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z"></path>
</svg></span></a><a href="https://www.pinterest.com/thefigjar/" aria-label="Pinterest" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-pinterest"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-pinterest-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="28" viewBox="0 0 24 28"><title>Pinterest</title><path d="M19.5 2c2.484 0 4.5 2.016 4.5 4.5v15c0 2.484-2.016 4.5-4.5 4.5h-11.328c0.516-0.734 1.359-2 1.687-3.281 0 0 0.141-0.531 0.828-3.266 0.422 0.797 1.625 1.484 2.906 1.484 3.813 0 6.406-3.484 6.406-8.141 0-3.516-2.984-6.797-7.516-6.797-5.641 0-8.484 4.047-8.484 7.422 0 2.031 0.781 3.844 2.438 4.531 0.266 0.109 0.516 0 0.594-0.297 0.047-0.203 0.172-0.734 0.234-0.953 0.078-0.297 0.047-0.406-0.172-0.656-0.469-0.578-0.781-1.297-0.781-2.344 0-3 2.25-5.672 5.844-5.672 3.187 0 4.937 1.937 4.937 4.547 0 3.422-1.516 6.312-3.766 6.312-1.234 0-2.172-1.031-1.875-2.297 0.359-1.5 1.047-3.125 1.047-4.203 0-0.969-0.516-1.781-1.594-1.781-1.266 0-2.281 1.313-2.281 3.063 0 0 0 1.125 0.375 1.891-1.297 5.5-1.531 6.469-1.531 6.469-0.344 1.437-0.203 3.109-0.109 3.969h-2.859c-2.484 0-4.5-2.016-4.5-4.5v-15c0-2.484 2.016-4.5 4.5-4.5h15z"></path>
</svg></span></a><a href="mailto:becky@figjar.com" aria-label="Email" class="social-button header-social-item social-link-email"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-email-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><title>Email</title><path d="M15 2h-14c-0.55 0-1 0.45-1 1v10c0 0.55 0.45 1 1 1h14c0.55 0 1-0.45 1-1v-10c0-0.55-0.45-1-1-1zM5.831 9.773l-3 2.182c-0.1 0.073-0.216 0.108-0.33 0.108-0.174 0-0.345-0.080-0.455-0.232-0.183-0.251-0.127-0.603 0.124-0.786l3-2.182c0.251-0.183 0.603-0.127 0.786 0.124s0.127 0.603-0.124 0.786zM13.955 11.831c-0.11 0.151-0.282 0.232-0.455 0.232-0.115 0-0.23-0.035-0.33-0.108l-3-2.182c-0.251-0.183-0.307-0.534-0.124-0.786s0.535-0.307 0.786-0.124l3 2.182c0.251 0.183 0.307 0.535 0.124 0.786zM13.831 4.955l-5.5 4c-0.099 0.072-0.215 0.108-0.331 0.108s-0.232-0.036-0.331-0.108l-5.5-4c-0.251-0.183-0.307-0.534-0.124-0.786s0.535-0.307 0.786-0.124l5.169 3.759 5.169-3.759c0.251-0.183 0.603-0.127 0.786 0.124s0.127 0.603-0.124 0.786z"></path>
</svg></span></a></div></div></div><!-- data-section="header_social" -->
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_search">
<div class="search-toggle-open-container">
<button class="search-toggle-open drawer-toggle search-toggle-style-default" aria-label="View Search Form" data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus="#search-drawer .search-field"
>
<span class="search-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Search</title><path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path>
</svg></span></span>
</button>
</div>
</div><!-- data-section="header_search" -->
</div>
<div class="site-header-top-section-right site-header-section site-header-section-right">
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_html">
<div class="header-html inner-link-style-normal"><div class="header-html-inner"><p><strong>Trending Post</strong>: <a href="https://www.figjar.com/easy-butternut-squash-lasagna/">Butternut Squash Lasagna</a></p>
</div></div></div><!-- data-section="header_html" -->
</div>
</div>
</div>
</div>
</div>
<div class="site-main-header-wrap site-header-row-container site-header-focus-item site-header-row-layout-standard" data-section="kadence_customizer_header_main">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-main-header-inner-wrap site-header-row site-header-row-only-center-column site-header-row-center-column">
<div class="site-header-main-section-center site-header-section site-header-section-center">
<div class="site-header-item site-header-focus-item" data-section="title_tagline">
<div class="site-branding branding-layout-standard site-brand-logo-only"><a class="brand has-logo-image" href="https://www.figjar.com/" rel="home"><img width="700" height="206" src="https://www.figjar.com/wp-content/uploads/2021/11/cropped-logo-fig-jar-1-e1751865167713.png" class="custom-logo" alt="figjar.com logo" decoding="async" data-pin-nopin="nopin" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=81479" /></a></div></div><!-- data-section="title_tagline" -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="site-bottom-header-wrap site-header-row-container site-header-focus-item site-header-row-layout-contained" data-section="kadence_customizer_header_bottom">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-bottom-header-inner-wrap site-header-row site-header-row-only-center-column site-header-row-center-column">
<div class="site-header-bottom-section-center site-header-section site-header-section-center">
<div class="site-header-item site-header-focus-item site-header-item-main-navigation header-navigation-layout-stretch-false header-navigation-layout-fill-stretch-false" data-section="kadence_customizer_primary_navigation">
<nav id="site-navigation" class="main-navigation header-navigation hover-to-open nav--toggle-sub header-navigation-style-standard header-navigation-dropdown-animation-fade-up" role="navigation" aria-label="Primary Navigation">
<div class="primary-menu-container header-menu-container">
<ul id="primary-menu" class="menu"><li id="menu-item-4052" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-4052"><a href="https://www.figjar.com/">Home</a></li>
<li id="menu-item-20656" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-20656"><a href="https://www.figjar.com/about-me/"><span class="nav-drop-title-wrap">About<span class="dropdown-nav-toggle"><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
</svg></span></span></span></a>
<ul class="sub-menu">
<li id="menu-item-81595" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81595"><a href="https://www.figjar.com/contact-us/">Contact me</a></li>
<li id="menu-item-7318" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7318"><a href="https://www.figjar.com/portfolio/">Portfolio</a></li>
<li id="menu-item-17233" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17233"><a href="https://www.figjar.com/privacy-policy/">Privacy Policy</a></li>
</ul>
</li>
<li id="menu-item-840" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-840"><a href="https://www.figjar.com/recipes/">Recipes</a></li>
<li id="menu-item-81656" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81656"><a href="https://www.figjar.com/blogging-resources/">Blogging Resources</a></li>
<li id="menu-item-21830" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21830"><a href="https://www.figjar.com/free-download-library/">Freebies!</a></li>
</ul> </div>
</nav><!-- #site-navigation -->
</div><!-- data-section="primary_navigation" -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="mobile-header" class="site-mobile-header-wrap">
<div class="site-header-inner-wrap">
<div class="site-header-upper-wrap">
<div class="site-header-upper-inner-wrap">
<div class="site-top-header-wrap site-header-focus-item site-header-row-layout-standard site-header-row-tablet-layout-default site-header-row-mobile-layout-default ">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-top-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
<div class="site-header-top-section-left site-header-section site-header-section-left">
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_mobile_social">
<div class="header-mobile-social-wrap"><div class="header-mobile-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-outline"><a href="https://facebook.com" aria-label="Facebook" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-facebook"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-facebook-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Facebook</title><path d="M31.997 15.999c0-8.836-7.163-15.999-15.999-15.999s-15.999 7.163-15.999 15.999c0 7.985 5.851 14.604 13.499 15.804v-11.18h-4.062v-4.625h4.062v-3.525c0-4.010 2.389-6.225 6.043-6.225 1.75 0 3.581 0.313 3.581 0.313v3.937h-2.017c-1.987 0-2.607 1.233-2.607 2.498v3.001h4.437l-0.709 4.625h-3.728v11.18c7.649-1.2 13.499-7.819 13.499-15.804z"></path>
</svg></span></a><a href="https://twitter.com" aria-label="X" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-twitter"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-twitter-x-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="23" height="24" viewBox="0 0 23 24"><title>X</title><path d="M13.969 10.157l8.738-10.157h-2.071l-7.587 8.819-6.060-8.819h-6.989l9.164 13.336-9.164 10.651h2.071l8.012-9.313 6.4 9.313h6.989l-9.503-13.831zM11.133 13.454l-8.316-11.895h3.181l14.64 20.941h-3.181l-6.324-9.046z"></path>
</svg></span></a><a href="https://www.instagram.com/thefigjar/" aria-label="Instagram" target="_blank" rel="noopener noreferrer" class="social-button header-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Instagram</title><path d="M7 1c-1.657 0-3.158 0.673-4.243 1.757s-1.757 2.586-1.757 4.243v10c0 1.657 0.673 3.158 1.757 4.243s2.586 1.757 4.243 1.757h10c1.657 0 3.158-0.673 4.243-1.757s1.757-2.586 1.757-4.243v-10c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757zM7 3h10c1.105 0 2.103 0.447 2.828 1.172s1.172 1.723 1.172 2.828v10c0 1.105-0.447 2.103-1.172 2.828s-1.723 1.172-2.828 1.172h-10c-1.105 0-2.103-0.447-2.828-1.172s-1.172-1.723-1.172-2.828v-10c0-1.105 0.447-2.103 1.172-2.828s1.723-1.172 2.828-1.172zM16.989 11.223c-0.15-0.972-0.571-1.857-1.194-2.567-0.754-0.861-1.804-1.465-3.009-1.644-0.464-0.074-0.97-0.077-1.477-0.002-1.366 0.202-2.521 0.941-3.282 1.967s-1.133 2.347-0.93 3.712 0.941 2.521 1.967 3.282 2.347 1.133 3.712 0.93 2.521-0.941 3.282-1.967 1.133-2.347 0.93-3.712zM15.011 11.517c0.122 0.82-0.1 1.609-0.558 2.227s-1.15 1.059-1.969 1.18-1.609-0.1-2.227-0.558-1.059-1.15-1.18-1.969 0.1-1.609 0.558-2.227 1.15-1.059 1.969-1.18c0.313-0.046 0.615-0.042 0.87-0.002 0.74 0.11 1.366 0.47 1.818 0.986 0.375 0.428 0.63 0.963 0.72 1.543zM17.5 7.5c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z"></path>
</svg></span></a></div></div></div><!-- data-section="mobile_social" -->
</div>
<div class="site-header-top-section-right site-header-section site-header-section-right">
<div class="site-header-item site-header-focus-item" data-section="kadence_customizer_header_search">
<div class="search-toggle-open-container">
<button class="search-toggle-open drawer-toggle search-toggle-style-default" aria-label="View Search Form" data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus="#search-drawer .search-field"
>
<span class="search-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Search</title><path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path>
</svg></span></span>
</button>
</div>
</div><!-- data-section="header_search" -->
</div>
</div>
</div>
</div>
</div>
<div class="site-main-header-wrap site-header-focus-item site-header-row-layout-standard site-header-row-tablet-layout-default site-header-row-mobile-layout-default ">
<div class="site-header-row-container-inner">
<div class="site-container">
<div class="site-main-header-inner-wrap site-header-row site-header-row-has-sides site-header-row-no-center">
<div class="site-header-main-section-left site-header-section site-header-section-left">
<div class="site-header-item site-header-focus-item" data-section="title_tagline">
<div class="site-branding mobile-site-branding branding-layout-standard branding-tablet-layout-standard site-brand-logo-only branding-mobile-layout-standard site-brand-logo-only"><a class="brand has-logo-image" href="https://www.figjar.com/" rel="home"><img width="700" height="206" src="https://www.figjar.com/wp-content/uploads/2021/11/cropped-logo-fig-jar-1-e1751865167713.png" class="custom-logo" alt="figjar.com logo" decoding="async" data-pin-nopin="nopin" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=81479" /></a></div></div><!-- data-section="title_tagline" -->
</div>
<div class="site-header-main-section-right site-header-section site-header-section-right">
<div class="site-header-item site-header-focus-item site-header-item-navgation-popup-toggle" data-section="kadence_customizer_mobile_trigger">
<div class="mobile-toggle-open-container">
<button id="mobile-toggle" class="menu-toggle-open drawer-toggle menu-toggle-style-default" aria-label="Open menu" data-toggle-target="#mobile-drawer" data-toggle-body-class="showing-popup-drawer-from-right" aria-expanded="false" data-set-focus=".menu-toggle-close"
>
<span class="menu-toggle-icon"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-menu-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Toggle Menu</title><path d="M3 13h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 7h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 19h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1z"></path>
</svg></span></span>
</button>
</div>
</div><!-- data-section="mobile_trigger" -->
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</header><!-- #masthead -->
<div id="inner-wrap" class="wrap kt-clear">
<div id="primary" class="content-area">
<div class="content-container site-container">
<main id="main" class="site-main" role="main">
<div class="content-wrap">
<article id="post-20830" class="entry content-bg single-entry post-20830 post type-post status-publish format-standard has-post-thumbnail hentry category-cake category-dessert-recipes mv-content-wrapper grow-content-main">
<div class="entry-content-wrap">
<header class="entry-header post-title title-align-left title-tablet-align-inherit title-mobile-align-inherit">
<div class="kadence-breadcrumbs yoast-bc-wrap"><span><span><a href="https://www.figjar.com/">Home</a></span> » <span><a href="https://www.figjar.com/recipes/">Recipes</a></span> » <span><a href="https://www.figjar.com/category/dessert-recipes/">Dessert Recipes</a></span></span></div><h1 class="entry-title">Fresh Berries and Cream Cake Recipe</h1><div class="entry-meta entry-meta-divider-slash">
<span class="posted-by"><span class="meta-label">Author:</span><span class="author vcard"><a class="url fn n" href="https://www.figjar.com/about-me/">Becky Schmieg</a></span></span> <span class="posted-on">
<span class="meta-label">Published:</span><time class="entry-date published" datetime="2024-07-03T00:00:00-07:00" itemprop="datePublished">July 3, 2024</time><time class="updated" datetime="2025-05-28T09:29:19-07:00" itemprop="dateModified">May 28, 2025</time> </span>
<span class="updated-on">
<span class="meta-label">Updated:</span><time class="entry-date published updated" datetime="2025-05-28T09:29:19-07:00" itemprop="dateModified">May 28, 2025</time> </span>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="entry-content single-content">
<svg aria-hidden="true" style="position: absolute;width: 0;height: 0;overflow: hidden" xmlns="http://www.w3.org/2000/svg">
<defs>
<symbol viewbox="9 9 46 42" id="wpt-star-full">
<path d="m46.3 52-14.4-9.5-14.4 9.4L22 35.3 8.7 24.5l17.1-.9 6.2-16 6 16 17.2 1-13.4 10.7z" />
</symbol>
</defs>
</svg>
<div class="tasty-recipes-quick-links"><a class="tasty-recipes-jump-link tasty-recipes-scrollto button" href="#tasty-recipes-20923-jump-target">Jump to Recipe</a><span>·</span><a class="tasty-recipes-rating-link tasty-recipes-scrollto tasty-recipes-has-ratings" href="#respond"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg></span><span data-tasty-recipes-customization="detail-label-color.color" class="rating-label"><span class="average">5</span> from <span class="count">1</span> review</span></a></div>
<p><strong><em><strong><em>This berries and cream cake is perfect for special occasions! A moist cake topped with fresh whipped cream and juicy berries is also perfect for Fourth of July celebrations and other summer holidays! </em></strong></em></strong></p>
<figure class="wp-block-image size-large"><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20904" data-pin-description="Simple berries and cream cake recipe for summer! Super moist white cake topped with honey whipped cream and a mix of blueberries, raspberries and strawberries sweetened with honey. " data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="berries and cream cake on a white cake plate" class="wp-image-20904" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake.jpg.avif 1280w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-683x1024.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-683x1024.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-683x1024.jpg 683w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-200x300.jpg 200w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-768x1152.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-1024x1536.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-150x225.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake.jpg 1280w"}" /><noscript><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20904" data-pin-description="Simple berries and cream cake recipe for summer! Super moist white cake topped with honey whipped cream and a mix of blueberries, raspberries and strawberries sweetened with honey. " data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-683x1024.jpg" alt="berries and cream cake on a white cake plate" class="wp-image-20904" srcset="https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-683x1024.jpg 683w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-200x300.jpg 200w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-768x1152.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-1024x1536.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-150x225.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake.jpg 1280w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure><div id="ez-toc-container" class="ez-toc-v2_0_76 counter-hierarchy ez-toc-counter ez-toc-custom ez-toc-container-direction">
<div class="ez-toc-title-container">
<p class="ez-toc-title" style="cursor:inherit">Table of Contents</p>
<span class="ez-toc-title-toggle"><a href="#" class="ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle" aria-label="Toggle Table of Content"><span class="ez-toc-js-icon-con"><span class=""><span class="eztoc-hide" style="display:none;">Toggle</span><span class="ez-toc-icon-toggle-span"><svg style="fill: #000000;color:#000000" xmlns="http://www.w3.org/2000/svg" class="list-377408" width="20px" height="20px" viewBox="0 0 24 24" fill="none"><path d="M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z" fill="currentColor"></path></svg><svg style="fill: #000000;color:#000000" class="arrow-unsorted-368013" xmlns="http://www.w3.org/2000/svg" width="10px" height="10px" viewBox="0 0 24 24" version="1.2" baseProfile="tiny"><path d="M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z"/></svg></span></span></span></a></span></div>
<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-1" href="#Ingredients_for_berries_and_cream_cake" >Ingredients for berries and cream cake</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-2" href="#How_to_make_a_berries_and_cream_cake" >How to make a berries and cream cake</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-3" href="#Storage_Instructions" >Storage Instructions</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-4" href="#Tried_this_recipe" >Tried this recipe?</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-5" href="#More_Tasty_Cake_Recipes" >More Tasty Cake Recipes</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-6" href="#Fresh_Berries_and_Cream_Cake_Recipe" >Fresh Berries and Cream Cake Recipe</a></li></ul></nav></div>
<p>White cake with summer berries and cream is nothing new but I’m doing one little twist by sweetening the whipped cream with honey. I’m actually a little obsessed with honey whipped cream after making this cake. Honey adds the perfect light sweetness to the whipped cream! I also think topping it with mint is a must! It makes the berry colors really pop and mint is the perfect complement for fresh fruit. Let’s make it!</p>
<span id="more-20830"></span>
<p><em>Disclaimer: This post may contain affiliate links, which means if you decide to purchase any of the items linked in this post, I should earn a small commission. This creates <strong>no additional cost</strong> to you and helps support the work that goes into running The Fig Jar. Thank you! -Becky </em></p>
<h2 class="wp-block-heading"><span class="ez-toc-section" id="Ingredients_for_berries_and_cream_cake"></span>Ingredients for berries and cream cake<span class="ez-toc-section-end"></span></h2>
<h3 class="wp-block-heading"><em>Cake ingredients</em></h3>
<figure class="wp-block-image size-large"><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20903" data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="berries and cream cake ingredients" class="wp-image-20903" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-ingredients-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-ingredients-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-ingredients-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-ingredients-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-ingredients-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-ingredients.jpg.avif 1280w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-ingredients-683x1024.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-ingredients-683x1024.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-ingredients-683x1024.jpg 683w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-ingredients-200x300.jpg 200w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-ingredients-768x1152.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-ingredients-1024x1536.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-ingredients-150x225.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-ingredients.jpg 1280w"}" /><noscript><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20903" data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-ingredients-683x1024.jpg" alt="berries and cream cake ingredients" class="wp-image-20903" srcset="https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-ingredients-683x1024.jpg 683w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-ingredients-200x300.jpg 200w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-ingredients-768x1152.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-ingredients-1024x1536.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-ingredients-150x225.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-ingredients.jpg 1280w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure>
<ul id="isPasted" class="wp-block-list">
<li>butter</li>
<li>granulated sugar</li>
<li>all-purpose flour</li>
<li>baking powder and baking soda</li>
<li>salt</li>
<li>milk</li>
<li>eggs</li>
<li>vanilla extract</li>
</ul>
<h3 class="wp-block-heading"><em>Berries and cream topping</em></h3>
<ul class="wp-block-list">
<li>fresh blueberries</li>
<li>fresh strawberries</li>
<li>fresh raspberries</li>
<li>heavy cream or heavy whipping cream </li>
<li>honey</li>
<li>fresh mint – for topping</li>
</ul>
<h2 class="wp-block-heading"><span class="ez-toc-section" id="How_to_make_a_berries_and_cream_cake"></span>How to make a berries and cream cake<span class="ez-toc-section-end"></span></h2>
<h3 class="wp-block-heading"><em>Making the cake</em></h3>
<p>This is a basic white cake recipe that I use for simple desserts like my <strong><a href="https://www.figjar.com/kumquat-upside-cake/">kumquat upside-down cake</a></strong>. It’s a butter-based cake with a yummy buttery texture and it’s about as basic as you can get. If you want to skip making your own cake from scratch, you totally can! Just use your favorite boxed-mix cake.</p>
<p>However, if you’re still with me on making your own cake– keep reading!</p>
<p>Step 1: Start by <strong>preheating your oven to 350F.</strong></p>
<p>Step 2: Next, g<strong>rease a 9-inch baking pan</strong> with butter and cut a circle of parchment paper to fit in the bottom of the pan.</p>
<p>Step 3: <strong>Whisk together the dry ingredients</strong> in a medium bowl.</p>
<p>Step 4: Then <strong>add softened butter</strong> to the bowl of a stand mixer with the sugar. Start on medium speed and increase to medium-high speed as it comes together. Beat for 3-5 minutes until lightened in color and fluffy, <strong>about 3-5 minutes</strong>.</p>
<p>Step 5: Then <strong>add the egg and vanilla. </strong>Beat at medium mixer speed again until combined. </p>
<p>Step 6: Add the flour mixture and milk in about 3 parts each, <strong>alternating between the</strong> flour mixture and the milk. Have the mixer on low speed and mix until the mixture is combined. You will want to use a rubber spatula to scrape down the sides of the bowl and may want to give a few stirs to make sure its all mixed in. The <strong>batter will be thick</strong>.</p>
<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-5 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20906" data-id="20906" data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20683'%3E%3C/svg%3E" alt="egg added to cake batter in a stand mixer" class="wp-image-20906" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/cake-in-stand-mixer-1024x683.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/cake-in-stand-mixer-300x200.jpg.avif 300w, https://www.figjar.com/wp-content/smush-avif/2024/07/cake-in-stand-mixer-768x512.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/cake-in-stand-mixer-1536x1024.jpg.avif 1536w, https://www.figjar.com/wp-content/smush-avif/2024/07/cake-in-stand-mixer-150x100.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/cake-in-stand-mixer.jpg.avif 1920w" data-lazy-sizes="(max-width: 1024px) 100vw, 1024px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/cake-in-stand-mixer-1024x683.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/cake-in-stand-mixer-1024x683.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/cake-in-stand-mixer-1024x683.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/cake-in-stand-mixer-300x200.jpg 300w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/cake-in-stand-mixer-768x512.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/cake-in-stand-mixer-1536x1024.jpg 1536w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/cake-in-stand-mixer-150x100.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/cake-in-stand-mixer.jpg 1920w"}" /><noscript><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20906" data-id="20906" data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/cake-in-stand-mixer-1024x683.jpg" alt="egg added to cake batter in a stand mixer" class="wp-image-20906" srcset="https://www.figjar.com/wp-content/uploads/2024/07/cake-in-stand-mixer-1024x683.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/cake-in-stand-mixer-300x200.jpg 300w, https://www.figjar.com/wp-content/uploads/2024/07/cake-in-stand-mixer-768x512.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/cake-in-stand-mixer-1536x1024.jpg 1536w, https://www.figjar.com/wp-content/uploads/2024/07/cake-in-stand-mixer-150x100.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/cake-in-stand-mixer.jpg 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></noscript></figure>
<figure class="wp-block-image size-large"><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20912" data-id="20912" data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="thick cake batter being spread in a cake pan" class="wp-image-20912" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/thick-cake-batter-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2024/07/thick-cake-batter-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2024/07/thick-cake-batter-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/thick-cake-batter-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/thick-cake-batter-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/thick-cake-batter.jpg.avif 1280w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/thick-cake-batter-683x1024.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/thick-cake-batter-683x1024.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/thick-cake-batter-683x1024.jpg 683w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/thick-cake-batter-200x300.jpg 200w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/thick-cake-batter-768x1152.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/thick-cake-batter-1024x1536.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/thick-cake-batter-150x225.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/thick-cake-batter.jpg 1280w"}" /><noscript><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20912" data-id="20912" data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/thick-cake-batter-683x1024.jpg" alt="thick cake batter being spread in a cake pan" class="wp-image-20912" srcset="https://www.figjar.com/wp-content/uploads/2024/07/thick-cake-batter-683x1024.jpg 683w, https://www.figjar.com/wp-content/uploads/2024/07/thick-cake-batter-200x300.jpg 200w, https://www.figjar.com/wp-content/uploads/2024/07/thick-cake-batter-768x1152.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/thick-cake-batter-1024x1536.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/thick-cake-batter-150x225.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/thick-cake-batter.jpg 1280w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure>
</figure>
<p id="isPasted">Step 7: Pour the batter into your prepared cake pan and <strong>bake the cake at 350F for 35-45 minutes</strong>, until the top is golden and a toothpick inserted in the center of the cake comes out clean. Allow the cake to cool for at least 30 minutes before inverting it onto a wire rack to cool further. </p>
<p>Step 8: Make sure the cake is at room temperature before adding the topping. <strong>Top with whipped cream and berries</strong> (see below for how to prep berries and whipped cream). This is great to do the night before you plan to serve. If you want to make the cake even more in advance, I recommend freezing it until ready to assemble.</p>
<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-6 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20907" data-id="20907" data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20683'%3E%3C/svg%3E" alt="honey added to heavy cream before beating into whipped cream" class="wp-image-20907" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/honey-added-to-whipped-cream-1024x683.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-added-to-whipped-cream-300x200.jpg.avif 300w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-added-to-whipped-cream-768x512.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-added-to-whipped-cream-1536x1024.jpg.avif 1536w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-added-to-whipped-cream-150x100.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-added-to-whipped-cream.jpg.avif 1920w" data-lazy-sizes="(max-width: 1024px) 100vw, 1024px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/honey-added-to-whipped-cream-1024x683.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-added-to-whipped-cream-1024x683.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-added-to-whipped-cream-1024x683.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-added-to-whipped-cream-300x200.jpg 300w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-added-to-whipped-cream-768x512.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-added-to-whipped-cream-1536x1024.jpg 1536w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-added-to-whipped-cream-150x100.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-added-to-whipped-cream.jpg 1920w"}" /><noscript><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20907" data-id="20907" data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/honey-added-to-whipped-cream-1024x683.jpg" alt="honey added to heavy cream before beating into whipped cream" class="wp-image-20907" srcset="https://www.figjar.com/wp-content/uploads/2024/07/honey-added-to-whipped-cream-1024x683.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/honey-added-to-whipped-cream-300x200.jpg 300w, https://www.figjar.com/wp-content/uploads/2024/07/honey-added-to-whipped-cream-768x512.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/honey-added-to-whipped-cream-1536x1024.jpg 1536w, https://www.figjar.com/wp-content/uploads/2024/07/honey-added-to-whipped-cream-150x100.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/honey-added-to-whipped-cream.jpg 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></noscript></figure>
<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20914" data-id="20914" data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20683'%3E%3C/svg%3E" alt="whipped cream spread on top of cake" class="wp-image-20914" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/whipped-cream-on-cake-1024x683.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/whipped-cream-on-cake-300x200.jpg.avif 300w, https://www.figjar.com/wp-content/smush-avif/2024/07/whipped-cream-on-cake-768x512.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/whipped-cream-on-cake-1536x1024.jpg.avif 1536w, https://www.figjar.com/wp-content/smush-avif/2024/07/whipped-cream-on-cake-150x100.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/whipped-cream-on-cake.jpg.avif 1920w" data-lazy-sizes="(max-width: 1024px) 100vw, 1024px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/whipped-cream-on-cake-1024x683.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/whipped-cream-on-cake-1024x683.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/whipped-cream-on-cake-1024x683.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/whipped-cream-on-cake-300x200.jpg 300w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/whipped-cream-on-cake-768x512.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/whipped-cream-on-cake-1536x1024.jpg 1536w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/whipped-cream-on-cake-150x100.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/whipped-cream-on-cake.jpg 1920w"}" /><noscript><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20914" data-id="20914" data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/whipped-cream-on-cake-1024x683.jpg" alt="whipped cream spread on top of cake" class="wp-image-20914" srcset="https://www.figjar.com/wp-content/uploads/2024/07/whipped-cream-on-cake-1024x683.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/whipped-cream-on-cake-300x200.jpg 300w, https://www.figjar.com/wp-content/uploads/2024/07/whipped-cream-on-cake-768x512.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/whipped-cream-on-cake-1536x1024.jpg 1536w, https://www.figjar.com/wp-content/uploads/2024/07/whipped-cream-on-cake-150x100.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/whipped-cream-on-cake.jpg 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></noscript></figure>
</figure>
<h3 class="wp-block-heading" id="isPasted"><em>Prepping the berries and whipped cream frosting</em></h3>
<p>If you plan to serve the cake the same day or the following day, prep the berries and honey whipped cream while the cake is baking. This topping is super basic but I think it makes for a beautiful cake!</p>
<p>Step 1: Simply wash the berries and add them to a medium-sized mixing bowl. <strong>Drizzle them with 2 tsp of honey, stir,</strong> and set aside. </p>
<p>Step 2: Add whipping cream and 1 tbsp honey to the bowl of the stand mixer and beat <strong>until stiff peaks form. </strong></p>
<p>Step 3: <strong>When the cake is cooled</strong>, add whipped cream to the top of the cake and spread to the edges, then add berries and garnish with fresh mint. </p>
<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-7 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20908" data-id="20908" data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20683'%3E%3C/svg%3E" alt="honey being drizzled over berries" class="wp-image-20908" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/honey-sweetened-berries-1024x683.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-sweetened-berries-300x200.jpg.avif 300w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-sweetened-berries-768x512.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-sweetened-berries-1536x1024.jpg.avif 1536w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-sweetened-berries-150x100.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/honey-sweetened-berries.jpg.avif 1920w" data-lazy-sizes="(max-width: 1024px) 100vw, 1024px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/honey-sweetened-berries-1024x683.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-sweetened-berries-1024x683.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-sweetened-berries-1024x683.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-sweetened-berries-300x200.jpg 300w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-sweetened-berries-768x512.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-sweetened-berries-1536x1024.jpg 1536w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-sweetened-berries-150x100.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/honey-sweetened-berries.jpg 1920w"}" /><noscript><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20908" data-id="20908" data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/honey-sweetened-berries-1024x683.jpg" alt="honey being drizzled over berries" class="wp-image-20908" srcset="https://www.figjar.com/wp-content/uploads/2024/07/honey-sweetened-berries-1024x683.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/honey-sweetened-berries-300x200.jpg 300w, https://www.figjar.com/wp-content/uploads/2024/07/honey-sweetened-berries-768x512.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/honey-sweetened-berries-1536x1024.jpg 1536w, https://www.figjar.com/wp-content/uploads/2024/07/honey-sweetened-berries-150x100.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/honey-sweetened-berries.jpg 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></noscript></figure>
<figure class="wp-block-image size-large"><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20910" data-id="20910" data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%201024%20683'%3E%3C/svg%3E" alt="blueberries, strawberries and raspberries in a mixing bowl" class="wp-image-20910" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/mixed-berries-for-cake-1024x683.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/mixed-berries-for-cake-300x200.jpg.avif 300w, https://www.figjar.com/wp-content/smush-avif/2024/07/mixed-berries-for-cake-768x512.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/mixed-berries-for-cake-1536x1024.jpg.avif 1536w, https://www.figjar.com/wp-content/smush-avif/2024/07/mixed-berries-for-cake-150x100.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/mixed-berries-for-cake.jpg.avif 1920w" data-lazy-sizes="(max-width: 1024px) 100vw, 1024px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/mixed-berries-for-cake-1024x683.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/mixed-berries-for-cake-1024x683.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/mixed-berries-for-cake-1024x683.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/mixed-berries-for-cake-300x200.jpg 300w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/mixed-berries-for-cake-768x512.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/mixed-berries-for-cake-1536x1024.jpg 1536w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/mixed-berries-for-cake-150x100.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/mixed-berries-for-cake.jpg 1920w"}" /><noscript><img decoding="async" width="1024" height="683" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20910" data-id="20910" data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/mixed-berries-for-cake-1024x683.jpg" alt="blueberries, strawberries and raspberries in a mixing bowl" class="wp-image-20910" srcset="https://www.figjar.com/wp-content/uploads/2024/07/mixed-berries-for-cake-1024x683.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/mixed-berries-for-cake-300x200.jpg 300w, https://www.figjar.com/wp-content/uploads/2024/07/mixed-berries-for-cake-768x512.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/mixed-berries-for-cake-1536x1024.jpg 1536w, https://www.figjar.com/wp-content/uploads/2024/07/mixed-berries-for-cake-150x100.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/mixed-berries-for-cake.jpg 1920w" sizes="(max-width: 1024px) 100vw, 1024px" /></noscript></figure>
</figure>
<h2 class="wp-block-heading"><span class="ez-toc-section" id="Storage_Instructions"></span>Storage Instructions<span class="ez-toc-section-end"></span></h2>
<p>Allow to cool to room temperature, then cover with plastic wrap or place in an airtight container. Store in the fridge for up to 3 days. </p>
<h2 class="wp-block-heading"><span class="ez-toc-section" id="Tried_this_recipe"></span>Tried this recipe?<span class="ez-toc-section-end"></span></h2>
<figure class="wp-block-image size-large"><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20905" data-pin-title="Fresh Berries and Cream Cake Recipe" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="white cake topped with whipped cream and berries on a cake stand" class="wp-image-20905" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-whipped-cream-cake-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-whipped-cream-cake-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-whipped-cream-cake-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-whipped-cream-cake-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-whipped-cream-cake-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-whipped-cream-cake.jpg.avif 1280w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-whipped-cream-cake-683x1024.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-whipped-cream-cake-683x1024.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-whipped-cream-cake-683x1024.jpg 683w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-whipped-cream-cake-200x300.jpg 200w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-whipped-cream-cake-768x1152.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-whipped-cream-cake-1024x1536.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-whipped-cream-cake-150x225.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-whipped-cream-cake.jpg 1280w"}" /><noscript><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20905" data-pin-title="Fresh Berries and Cream Cake Recipe" src="https://www.figjar.com/wp-content/uploads/2024/07/berries-and-whipped-cream-cake-683x1024.jpg" alt="white cake topped with whipped cream and berries on a cake stand" class="wp-image-20905" srcset="https://www.figjar.com/wp-content/uploads/2024/07/berries-and-whipped-cream-cake-683x1024.jpg 683w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-whipped-cream-cake-200x300.jpg 200w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-whipped-cream-cake-768x1152.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-whipped-cream-cake-1024x1536.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-whipped-cream-cake-150x225.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/07/berries-and-whipped-cream-cake.jpg 1280w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure>
<p class="has-text-align-center has-background has-medium-font-size" style="background-color:#f2f2f2">If you try this recipe, please leave a <strong>star rating</strong> below and let me know how it went. I’d love to hear from you! You can also find me on <strong><a href="https://www.pinterest.com/thefigjar/_created/" target="_blank" rel="noreferrer noopener">Pinterest</a></strong>!</p>
<h2 class="wp-block-heading"><span class="ez-toc-section" id="More_Tasty_Cake_Recipes"></span>More Tasty Cake Recipes<span class="ez-toc-section-end"></span></h2>
<figure class="wp-block-gallery has-nested-images columns-default is-cropped wp-block-gallery-8 is-layout-flex wp-block-gallery-is-layout-flex">
<figure class="wp-block-image size-large"><a href="https://www.figjar.com/blackberry-chocolate-cake-with-cream-cheese-frosting/" target="_blank" rel="noreferrer noopener"><img decoding="async" width="683" height="1024" data-pin-description="This delicious cake recipe is chocolate-y, rich with blackberry flavor woven throughout, and all topped off with a luscious blackberry cream cheese frosting." data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=17924" data-id="17924" data-pin-title="Blackberry Chocolate Cake with Blackberry Cream Cheese Frosting" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="slice of blackberry chocolate cake with blackberry cream cheese frosting on a white plate" class="wp-image-17924" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/03/blackberry-chocolate-cake-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2024/03/blackberry-chocolate-cake-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2024/03/blackberry-chocolate-cake-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/03/blackberry-chocolate-cake-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/03/blackberry-chocolate-cake-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/03/blackberry-chocolate-cake.jpg.avif 1246w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/03/blackberry-chocolate-cake-683x1024.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/03\/blackberry-chocolate-cake-683x1024.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/03\/blackberry-chocolate-cake-683x1024.jpg 683w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/03\/blackberry-chocolate-cake-200x300.jpg 200w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/03\/blackberry-chocolate-cake-768x1152.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/03\/blackberry-chocolate-cake-1024x1536.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/03\/blackberry-chocolate-cake-150x225.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/03\/blackberry-chocolate-cake.jpg 1246w"}" /><noscript><img decoding="async" width="683" height="1024" data-pin-description="This delicious cake recipe is chocolate-y, rich with blackberry flavor woven throughout, and all topped off with a luscious blackberry cream cheese frosting." data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=17924" data-id="17924" data-pin-title="Blackberry Chocolate Cake with Blackberry Cream Cheese Frosting" src="https://www.figjar.com/wp-content/uploads/2024/03/blackberry-chocolate-cake-683x1024.jpg" alt="slice of blackberry chocolate cake with blackberry cream cheese frosting on a white plate" class="wp-image-17924" srcset="https://www.figjar.com/wp-content/uploads/2024/03/blackberry-chocolate-cake-683x1024.jpg 683w, https://www.figjar.com/wp-content/uploads/2024/03/blackberry-chocolate-cake-200x300.jpg 200w, https://www.figjar.com/wp-content/uploads/2024/03/blackberry-chocolate-cake-768x1152.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/03/blackberry-chocolate-cake-1024x1536.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/03/blackberry-chocolate-cake-150x225.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/03/blackberry-chocolate-cake.jpg 1246w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></a></figure>
<figure class="wp-block-image size-large"><a href="https://www.figjar.com/kumquat-upside-cake/" target="_blank" rel="noreferrer noopener"><img decoding="async" width="683" height="1024" data-pin-description="A delicious twist on pineapple upside-down cake - Kumquat Upside-down Cake! It's crazy good. #kumquats #upsidedowncake" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=11903" data-id="11903" data-pin-title="Kumquat Upside Down Cake" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="kumquat upside down cake on a gray plate with a cake server resting on the plate" class="wp-image-11903" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2023/05/kumquat-upside-down-cake-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2023/05/kumquat-upside-down-cake-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2023/05/kumquat-upside-down-cake-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2023/05/kumquat-upside-down-cake-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2023/05/kumquat-upside-down-cake-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2023/05/kumquat-upside-down-cake.jpg.avif 1280w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2023/05/kumquat-upside-down-cake-683x1024.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/05\/kumquat-upside-down-cake-683x1024.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/05\/kumquat-upside-down-cake-683x1024.jpg 683w, https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/05\/kumquat-upside-down-cake-200x300.jpg 200w, https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/05\/kumquat-upside-down-cake-768x1152.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/05\/kumquat-upside-down-cake-1024x1536.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/05\/kumquat-upside-down-cake-150x225.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2023\/05\/kumquat-upside-down-cake.jpg 1280w"}" /><noscript><img decoding="async" width="683" height="1024" data-pin-description="A delicious twist on pineapple upside-down cake - Kumquat Upside-down Cake! It's crazy good. #kumquats #upsidedowncake" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=11903" data-id="11903" data-pin-title="Kumquat Upside Down Cake" src="https://www.figjar.com/wp-content/uploads/2023/05/kumquat-upside-down-cake-683x1024.jpg" alt="kumquat upside down cake on a gray plate with a cake server resting on the plate" class="wp-image-11903" srcset="https://www.figjar.com/wp-content/uploads/2023/05/kumquat-upside-down-cake-683x1024.jpg 683w, https://www.figjar.com/wp-content/uploads/2023/05/kumquat-upside-down-cake-200x300.jpg 200w, https://www.figjar.com/wp-content/uploads/2023/05/kumquat-upside-down-cake-768x1152.jpg 768w, https://www.figjar.com/wp-content/uploads/2023/05/kumquat-upside-down-cake-1024x1536.jpg 1024w, https://www.figjar.com/wp-content/uploads/2023/05/kumquat-upside-down-cake-150x225.jpg 150w, https://www.figjar.com/wp-content/uploads/2023/05/kumquat-upside-down-cake.jpg 1280w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></a></figure>
<figure class="wp-block-image size-large"><img decoding="async" width="683" height="1024" data-pin-description="No Bake Cheesecake with a homemade blueberry topping. Easy, delicious and no bake!" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=10351" data-id="10351" data-pin-title="No Bake Blueberry Cheesecake" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="no bake cheesecake with homemade blueberry topping" class="wp-image-10351" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2022/04/No-Bake-Blueberry-Cheesecake-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2022/04/No-Bake-Blueberry-Cheesecake-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2022/04/No-Bake-Blueberry-Cheesecake-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2022/04/No-Bake-Blueberry-Cheesecake-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2022/04/No-Bake-Blueberry-Cheesecake-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2022/04/No-Bake-Blueberry-Cheesecake.jpg.avif 1280w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2022/04/No-Bake-Blueberry-Cheesecake-683x1024.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2022\/04\/No-Bake-Blueberry-Cheesecake-683x1024.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2022\/04\/No-Bake-Blueberry-Cheesecake-683x1024.jpg 683w, https:\/\/www.figjar.com\/wp-content\/uploads\/2022\/04\/No-Bake-Blueberry-Cheesecake-200x300.jpg 200w, https:\/\/www.figjar.com\/wp-content\/uploads\/2022\/04\/No-Bake-Blueberry-Cheesecake-768x1152.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2022\/04\/No-Bake-Blueberry-Cheesecake-1024x1536.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2022\/04\/No-Bake-Blueberry-Cheesecake-150x225.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2022\/04\/No-Bake-Blueberry-Cheesecake.jpg 1280w"}" /><noscript><img decoding="async" width="683" height="1024" data-pin-description="No Bake Cheesecake with a homemade blueberry topping. Easy, delicious and no bake!" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=10351" data-id="10351" data-pin-title="No Bake Blueberry Cheesecake" src="https://www.figjar.com/wp-content/uploads/2022/04/No-Bake-Blueberry-Cheesecake-683x1024.jpg" alt="no bake cheesecake with homemade blueberry topping" class="wp-image-10351" srcset="https://www.figjar.com/wp-content/uploads/2022/04/No-Bake-Blueberry-Cheesecake-683x1024.jpg 683w, https://www.figjar.com/wp-content/uploads/2022/04/No-Bake-Blueberry-Cheesecake-200x300.jpg 200w, https://www.figjar.com/wp-content/uploads/2022/04/No-Bake-Blueberry-Cheesecake-768x1152.jpg 768w, https://www.figjar.com/wp-content/uploads/2022/04/No-Bake-Blueberry-Cheesecake-1024x1536.jpg 1024w, https://www.figjar.com/wp-content/uploads/2022/04/No-Bake-Blueberry-Cheesecake-150x225.jpg 150w, https://www.figjar.com/wp-content/uploads/2022/04/No-Bake-Blueberry-Cheesecake.jpg 1280w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure>
</figure>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-9d6595d7 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center"><strong><a href="https://www.figjar.com/blackberry-chocolate-cake-with-cream-cheese-frosting/">BLACKBERRY CAKE WITH CREAM CHEESE FROSTING</a></strong></p>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center"><strong><a href="https://www.figjar.com/kumquat-upside-cake/">KUMQUAT UPSIDE-DOWN CAKE</a></strong></p>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p class="has-text-align-center"><strong><a href="https://www.figjar.com/no-bake-blueberry-cheesecake/">NO-BAKE BLUEBERRY CHEESECAKE</a></strong></p>
</div>
</div>
<a class="button tasty-recipes-print-button tasty-recipes-no-print tasty-recipes-print-above-card" href="https://www.figjar.com/berries-and-cream-cake/print/20923/">Print</a><span class="tasty-recipes-jump-target" id="tasty-recipes-20923-jump-target" style="display:block;padding-top:2px;margin-top:-2px;"></span><div id="tasty-recipes-20923" data-tr-id="20923" class="tasty-recipes tasty-recipes-20923 tasty-recipes-display tasty-recipes-has-image" style="border-color: #E9E9E9 !important;" data-tasty-recipes-customization="primary-color.background-color secondary-color.border-color">
<div class="tasty-recipes-header">
<h2 class="tasty-recipes-title" style="text-transform: uppercase !important;" data-tasty-recipes-customization="h2-color.color h2-transform.text-transform"><span class="ez-toc-section" id="Fresh_Berries_and_Cream_Cake_Recipe"></span>Fresh Berries and Cream Cake Recipe<span class="ez-toc-section-end"></span></h2>
<div class="tasty-recipes-image-button-container">
<div class="tasty-recipes-image">
<img decoding="async" width="150" height="150" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20150%20150'%3E%3C/svg%3E" class="attachment-thumbnail size-thumbnail" alt="berries and cream cake on a white cake plate" data-pin-nopin="true" data-pin-description="Simple berries and cream cake recipe for summer! Super moist white cake topped with honey whipped cream and a mix of blueberries, raspberries and strawberries sweetened with honey." data-pin-title="Berries and Cream Cake" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20904" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/07/berries-and-cream-cake-150x150.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/07\/berries-and-cream-cake-150x150.jpg"}" /><noscript><img decoding="async" width="150" height="150" src="https://www.figjar.com/wp-content/uploads/2024/07/berries-and-cream-cake-150x150.jpg" class="attachment-thumbnail size-thumbnail" alt="berries and cream cake on a white cake plate" data-pin-nopin="true" data-pin-description="Simple berries and cream cake recipe for summer! Super moist white cake topped with honey whipped cream and a mix of blueberries, raspberries and strawberries sweetened with honey." data-pin-title="Berries and Cream Cake" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20904" /></noscript> </div>
<div class="tasty-recipes-buttons">
<div class="tasty-recipes-button-wrap">
<a class="button tasty-recipes-print-button tasty-recipes-no-print" href="https://www.figjar.com/berries-and-cream-cake/print/20923/" target="_blank" data-tasty-recipes-customization="">
<svg viewBox="0 0 24 24" class="svg-print" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-print"></use></svg>
Print Recipe</a>
</div>
<div class="tasty-recipes-button-wrap">
<a class="share-pin button" data-pin-custom="true" data-href="https://www.pinterest.com/pin/create/bookmarklet/?url=https%3A%2F%2Fwww.figjar.com%2Fberries-and-cream-cake%2F" data-tasty-recipes-customization="">
<svg viewBox="0 0 24 24" class="svg-print" aria-hidden="true"><use xlink:href="#tasty-recipes-icon-pinterest"></use></svg>
Pin Recipe</a>
</div>
</div>
</div>
<div class="tasty-recipes-rating">
<p><span class="tasty-recipes-ratings-buttons tasty-recipes-no-ratings-buttons" data-tr-default-rating="5" > <span class="tasty-recipes-rating" data-tr-checked="1"> <i class="checked" data-rating="5"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 5 Stars </span> </i> </span> <span class="tasty-recipes-rating" > <i class="checked" data-rating="4"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 4 Stars </span> </i> </span> <span class="tasty-recipes-rating" > <i class="checked" data-rating="3"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 3 Stars </span> </i> </span> <span class="tasty-recipes-rating" > <i class="checked" data-rating="2"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 2 Stars </span> </i> </span> <span class="tasty-recipes-rating" > <i class="checked" data-rating="1"> <span class="tasty-recipes-rating-solid" data-tr-clip="100"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 1 Star </span> </i> </span></span></p>
<p><span data-tasty-recipes-customization="detail-label-color.color" class="rating-label"><span class="average">5</span> from <span class="count">1</span> review</span></p>
</div>
<div class="tasty-recipes-description" data-tasty-recipes-customization="body-color.color">
<p><strong><em>This berries and cream cake is perfect for summer! And with its festive colors, it’s also perfect for Fourth of July celebrations. </em></strong></p>
</div>
<div class="tasty-recipes-details">
<ul>
<li class="author"><strong data-tasty-recipes-customization="detail-label-color.color" class="tasty-recipes-label">Author:</strong> <a data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-author-name" href="https://www.figjar.com/about-me/">Becky Schmieg</a></li>
<li class="prep-time"><strong data-tasty-recipes-customization="detail-label-color.color" class="tasty-recipes-label">Prep Time:</strong> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-prep-time">40</span></li>
<li class="cook-time"><strong data-tasty-recipes-customization="detail-label-color.color" class="tasty-recipes-label">Cook Time:</strong> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-cook-time">45</span></li>
<li class="total-time"><strong data-tasty-recipes-customization="detail-label-color.color" class="tasty-recipes-label">Total Time:</strong> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-total-time">1 hour 25 minutes</span></li>
<li class="yield"><strong data-tasty-recipes-customization="detail-label-color.color" class="tasty-recipes-label">Yield:</strong> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-yield"><span data-amount="8">8</span> <span class="tasty-recipes-yield-scale"><span data-amount="1">1</span>x</span></span></li>
<li class="category"><strong data-tasty-recipes-customization="detail-label-color.color" class="tasty-recipes-label">Category:</strong> <span data-tasty-recipes-customization="detail-value-color.color" class="tasty-recipes-category">dessert</span></li>
</ul>
</div>
</div>
<div class="tasty-recipes-content tasty-recipes-modern-compact-content">
<div class="tasty-recipe-ingredients" style="border-color: #E9E9E9 !important;" data-tasty-recipes-customization="secondary-color.border-color">
<div class="tasty-recipes-ingredients-clipboard-container" style="background-color: #E9E9E9 !important;" data-tasty-recipes-customization="secondary-color.background-color">
<h3 style="background-color: #E9E9E9 !important; text-transform: uppercase !important;" data-tasty-recipes-customization="secondary-color.background-color h3-color.color h3-transform.text-transform">Ingredients</h3>
</div>
<div class="tasty-recipes-units-scale-container"><span class="tasty-recipes-convert-container">
<span class="tasty-recipes-convert-label">Units</span>
<button class="tasty-recipes-convert-button tasty-recipes-convert-button-active" data-unit-type="usc" type="button">US</button><button class="tasty-recipes-convert-button" data-unit-type="metric" type="button">M</button>
</span><span class="tasty-recipes-scale-container">
<span class="tasty-recipes-scale-label">Scale</span>
<button class="tasty-recipes-scale-button tasty-recipes-scale-button-active" data-amount="1" type="button">1x</button><button class="tasty-recipes-scale-button" data-amount="2" type="button">2x</button><button class="tasty-recipes-scale-button" data-amount="3" type="button">3x</button>
</span>
</span></div> <div class="tasty-recipes-ingredients-body" data-tasty-recipes-customization="body-color.color">
<p><strong>cake</strong></p>
<ul>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d17d" id="ingredient_checkbox_6915c6776d17d" aria-label="1 cup salted butter, 2 sticks softened to room temperature"><label for="ingredient_checkbox_6915c6776d17d"></label></span><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="1" data-nf-metric="227" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="gram" data-nf-food-id="1" data-nf-food-description="Butter, salted" data-amount="1">1</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="gram" data-nf-food-id="1" data-nf-food-description="Butter, salted">cup</span> <span class="nutrifox-name">salted butter</span>, <em>2 sticks softened to room temperature</em></li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d199" id="ingredient_checkbox_6915c6776d199" aria-label="1 cup granulated sugar"><label for="ingredient_checkbox_6915c6776d199"></label></span><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="1" data-nf-metric="200" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="gram" data-nf-food-id="6319" data-nf-food-description="Sugars, granulated" data-amount="1">1</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="gram" data-nf-food-id="6319" data-nf-food-description="Sugars, granulated">cup</span> <span class="nutrifox-name">granulated sugar</span></li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d1a5" id="ingredient_checkbox_6915c6776d1a5" aria-label="1 tsp vanilla"><label for="ingredient_checkbox_6915c6776d1a5"></label></span><span data-amount="1" data-unit="tsp">1 tsp</span> vanilla</li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d1af" id="ingredient_checkbox_6915c6776d1af" aria-label="1 egg"><label for="ingredient_checkbox_6915c6776d1af"></label></span><span data-amount="1">1</span> egg</li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d1c6" id="ingredient_checkbox_6915c6776d1c6" aria-label="1 cup milk (whole or 2%)"><label for="ingredient_checkbox_6915c6776d1c6"></label></span><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="1" data-nf-metric="237" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="ml" data-nf-food-id="134" data-nf-food-description="Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)" data-amount="1">1</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="ml" data-nf-food-id="134" data-nf-food-description="Milk, nonfat, fluid, without added vitamin A and vitamin D (fat free or skim)">cup</span> <span class="nutrifox-name">milk</span> (<em>whole or 2%</em>)</li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d1e3" id="ingredient_checkbox_6915c6776d1e3" aria-label="1 1/2 cups all-purpose flour"><label for="ingredient_checkbox_6915c6776d1e3"></label></span><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="1.5" data-nf-metric="187.5" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="gram" data-nf-food-id="6544" data-nf-food-description="Wheat flour, white, all-purpose, enriched, bleached" data-amount="1.5">1 1/2</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="gram" data-nf-food-id="6544" data-nf-food-description="Wheat flour, white, all-purpose, enriched, bleached">cups</span> <span class="nutrifox-name">all-purpose flour</span></li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d1ef" id="ingredient_checkbox_6915c6776d1ef" aria-label="1 1/2 tsp baking powder"><label for="ingredient_checkbox_6915c6776d1ef"></label></span><span data-amount="1.5" data-unit="tsp">1 1/2 tsp</span> baking powder </li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d1f9" id="ingredient_checkbox_6915c6776d1f9" aria-label="1 1/2 tsp baking soda"><label for="ingredient_checkbox_6915c6776d1f9"></label></span><span data-amount="1.5" data-unit="tsp">1 1/2 tsp</span> baking soda</li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d202" id="ingredient_checkbox_6915c6776d202" aria-label="1/2 tsp salt"><label for="ingredient_checkbox_6915c6776d202"></label></span><span data-amount="0.5" data-unit="tsp">1/2 tsp</span> salt</li>
</ul>
<p><strong>topping</strong></p>
<ul>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d215" id="ingredient_checkbox_6915c6776d215" aria-label="1 cup heavy whipping cream"><label for="ingredient_checkbox_6915c6776d215"></label></span><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="1" data-nf-metric="237" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="ml" data-nf-food-id="52" data-nf-food-description="Cream, fluid, heavy whipping" data-amount="1">1</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="ml" data-nf-food-id="52" data-nf-food-description="Cream, fluid, heavy whipping">cup</span> <span class="nutrifox-name">heavy whipping cream</span></li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d221" id="ingredient_checkbox_6915c6776d221" aria-label="1 tbsp honey + 2 tsp"><label for="ingredient_checkbox_6915c6776d221"></label></span><span data-amount="1" data-unit="tbsp">1 tbsp</span> honey + <span data-amount="2" data-unit="tsp">2 tsp</span></li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d236" id="ingredient_checkbox_6915c6776d236" aria-label="1 cup each: blueberries, raspberries, strawberries (halved or quartered depending on size)"><label for="ingredient_checkbox_6915c6776d236"></label></span><span class="nutrifox-quantity" data-nf-original="usc" data-nf-usc="1" data-nf-metric="320" data-unit="cup" data-nf-usc-unit="cup" data-nf-metric-unit="gram" data-nf-food-id="6288" data-nf-food-description="Jams and preserves" data-amount="1">1</span> <span class="nutrifox-unit" data-nf-original="usc" data-nf-usc="cup" data-nf-metric="gram" data-nf-food-id="6288" data-nf-food-description="Jams and preserves">cup</span> each: <span class="nutrifox-name">blueberries, raspberries, strawberries</span> (<em>halved or quartered depending on size</em>)</li>
<li data-tr-ingredient-checkbox=""><span class="tr-ingredient-checkbox-container"><input type="checkbox" name="ingredient_checkbox_6915c6776d23f" id="ingredient_checkbox_6915c6776d23f" aria-label="fresh mint, for topping"><label for="ingredient_checkbox_6915c6776d23f"></label></span>fresh mint, <em>for topping</em></li>
</ul> </div>
<div class="tasty-recipes-cook-mode">
<div class="tasty-recipes-cook-mode__container">
<label class="tasty-recipes-cook-mode__switch">
<input type="checkbox" id="tasty_recipes_6915c6776d973_cookmode">
<span class="tasty-recipes-cook-mode__switch-slider tasty-recipes-cook-mode__switch-round"
data-tasty-recipes-customization="button-color.background button-text-color.color"></span>
</label>
<label for="tasty_recipes_6915c6776d973_cookmode">
<span class="tasty-recipes-cook-mode__label">Cook Mode</span>
<span class="tasty-recipes-cook-mode__helper">
Prevent your screen from going dark </span>
</label>
</div>
</div>
</div>
<div class="tasty-recipe-instructions" style="border-color: #E9E9E9 !important;" data-tasty-recipes-customization="secondary-color.border-color">
<h3 style="background-color: #E9E9E9 !important; text-transform: uppercase !important;" data-tasty-recipes-customization="secondary-color.background-color h3-color.color h3-transform.text-transform" >
Instructions </h3>
<div class="tasty-recipes-instructions-body" data-tasty-recipes-customization="body-color.color">
<ol>
<li id="instruction-step-1">Preheat oven to 350F.</li>
<li id="instruction-step-2">Grease a 9-inch baking pan with butter and cut a circle of parchment paper to fit in the bottom of the pan.</li>
<li id="instruction-step-3">In a medium mixing bowl, combine flour, baking powder, baking soda and salt. Stir to combine and set aside.</li>
<li id="instruction-step-4">Add softened butter and sugar to the bowl of a stand mixer, start on medium speed and increase to medium-high as it comes together and beat for 3-5 minutes, until lightened in color. </li>
<li id="instruction-step-5">Add the egg and vanilla and beat on medium speed again until combined. </li>
<li id="instruction-step-6">With the mixer on medium-low, add the milk and dry ingredient mixture by alternating between both in 3 additions (add 1/3 of dry ingredients, then 1/3 milk, etc). Mix until fully combined. Remove the stand mixer bowl and use a rubber spatula to scrape down the edges and stir if necessary. </li>
<li id="instruction-step-7">Scrape the batter into the cake pan and use the spatula to spread in an even layer. </li>
<li id="instruction-step-8">Bake 35-45 minutes, until slightly golden around the edges and a toothpick inserted in the center comes out clean. </li>
<li id="instruction-step-9">Allow cake to cool at least 30 minutes before inverting cake onto a cooling rack. Allow cake to cool fully before topping with whipped cream and berries. </li>
<li id="instruction-step-10">Wash berries and add to a medium-sized mixing bowl. Drizzle with 2 tsp of honey, stir and set aside. </li>
<li id="instruction-step-11">Add whipping cream and 1 tbsp honey to the bowl of the stand mixer and beat until stiff peaks form. </li>
<li id="instruction-step-12">When the cake is cooled, top with whipped cream, then berries and garnish with fresh mint. </li>
</ol>
</div>
</div>
</div>
<footer class="tasty-recipes-entry-footer">
<h3 style="text-transform: uppercase !important;" data-tasty-recipes-customization="footer-heading-color.color h3-transform.text-transform footer-heading.innerText">Did you make this recipe?</h3>
<div data-tasty-recipes-customization="footer-description-color.color footer-description.innerHTML"><p>Share a photo and tag us on Instagram <a href="https://www.instagram.com/thefigjar/">@thefigjar</a>. We can’t wait to see what you’ve made!</p>
</div>
</footer>
</div></div><!-- .entry-content -->
</div>
</article><!-- #post-20830 -->
<nav class="navigation post-navigation" aria-label="Posts">
<h2 class="screen-reader-text">Post navigation</h2>
<div class="nav-links"><div class="nav-previous"><a href="https://www.figjar.com/spicy-pasta-salad/" rel="prev"><div class="post-navigation-sub"><small><span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-left-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="29" height="28" viewBox="0 0 29 28"><title>Previous</title><path d="M28 12.5v3c0 0.281-0.219 0.5-0.5 0.5h-19.5v3.5c0 0.203-0.109 0.375-0.297 0.453s-0.391 0.047-0.547-0.078l-6-5.469c-0.094-0.094-0.156-0.219-0.156-0.359v0c0-0.141 0.063-0.281 0.156-0.375l6-5.531c0.156-0.141 0.359-0.172 0.547-0.094 0.172 0.078 0.297 0.25 0.297 0.453v3.5h19.5c0.281 0 0.5 0.219 0.5 0.5z"></path>
</svg></span>Previous</small></div>Spicy Pasta Salad with Cotija, Corn and Cilantro</a></div><div class="nav-next"><a href="https://www.figjar.com/easy-greek-grilled-chicken-salad/" rel="next"><div class="post-navigation-sub"><small>Next<span class="kadence-svg-iconset svg-baseline"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-right-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="27" height="28" viewBox="0 0 27 28"><title>Continue</title><path d="M27 13.953c0 0.141-0.063 0.281-0.156 0.375l-6 5.531c-0.156 0.141-0.359 0.172-0.547 0.094-0.172-0.078-0.297-0.25-0.297-0.453v-3.5h-19.5c-0.281 0-0.5-0.219-0.5-0.5v-3c0-0.281 0.219-0.5 0.5-0.5h19.5v-3.5c0-0.203 0.109-0.375 0.297-0.453s0.391-0.047 0.547 0.078l6 5.469c0.094 0.094 0.156 0.219 0.156 0.359v0z"></path>
</svg></span></small></div>Easy Greek Grilled Chicken Salad Recipe</a></div></div>
</nav><div id="comments" class="comments-area">
<h2 class="comments-title">2 Comments</h2><!-- .comments-title --> <ol class="comment-list">
<li id="comment-4049" class="comment even thread-even depth-1 parent">
<article id="div-comment-4049" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img data-pin-nopin="nopin" alt='' src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-lazy-srcset='https://secure.gravatar.com/avatar/2628f459695acbb67fca1b48f2a46e98628702685935d726d4491f9d51633338?s=120&r=g 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async' data-lazy-src="https://secure.gravatar.com/avatar/2628f459695acbb67fca1b48f2a46e98628702685935d726d4491f9d51633338?s=60&r=g"/><noscript><img data-pin-nopin="nopin" alt='' src='https://secure.gravatar.com/avatar/2628f459695acbb67fca1b48f2a46e98628702685935d726d4491f9d51633338?s=60&r=g' srcset='https://secure.gravatar.com/avatar/2628f459695acbb67fca1b48f2a46e98628702685935d726d4491f9d51633338?s=120&r=g 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async'/></noscript> <b class="fn">Gma covey</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.figjar.com/berries-and-cream-cake/#comment-4049"><time datetime="2024-07-04T07:20:27-07:00">July 4, 2024 at 7:20 AM</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Do you think frozen mixed berries would work?<br />
I love the simplicity of this dessert and it’s so pretty.</p>
<p class="tasty-recipes-ratings"><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="1"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="2"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="3"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="4"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span><span class="tasty-recipes-rating tasty-recipes-rating-solid" data-tr-clip="100" data-rating="5"><svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full"></use></svg></span></p>
</div><!-- .comment-content -->
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="#comment-4049" data-commentid="4049" data-postid="20830" data-belowelement="div-comment-4049" data-respondelement="respond" data-replyto="Reply to Gma covey" aria-label="Reply to Gma covey">Reply</a></div> </article><!-- .comment-body -->
<ol class="children">
<li id="comment-4050" class="comment byuser comment-author-becky bypostauthor odd alt depth-2">
<article id="div-comment-4050" class="comment-body">
<footer class="comment-meta">
<div class="comment-author vcard">
<img data-pin-nopin="nopin" alt='' src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-lazy-srcset='https://secure.gravatar.com/avatar/6bd597a5e5ed38851e0d3a6fb93a97914efdc1870fea24853fe77f68aa804033?s=120&r=g 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async' data-lazy-src="https://secure.gravatar.com/avatar/6bd597a5e5ed38851e0d3a6fb93a97914efdc1870fea24853fe77f68aa804033?s=60&r=g"/><noscript><img data-pin-nopin="nopin" alt='' src='https://secure.gravatar.com/avatar/6bd597a5e5ed38851e0d3a6fb93a97914efdc1870fea24853fe77f68aa804033?s=60&r=g' srcset='https://secure.gravatar.com/avatar/6bd597a5e5ed38851e0d3a6fb93a97914efdc1870fea24853fe77f68aa804033?s=120&r=g 2x' class='avatar avatar-60 photo' height='60' width='60' decoding='async'/></noscript> <b class="fn">Becky Schmieg</b> <span class="says">says:</span> </div><!-- .comment-author -->
<div class="comment-metadata">
<a href="https://www.figjar.com/berries-and-cream-cake/#comment-4050"><time datetime="2024-07-04T12:53:27-07:00">July 4, 2024 at 12:53 PM</time></a> </div><!-- .comment-metadata -->
</footer><!-- .comment-meta -->
<div class="comment-content">
<p>Hi Grandma! I’m not 100% sure, but it would probably by okay if you fully thaw the berries and maybe put them in a colander to let the liquid drain out first? The berries also might not look as nice but should still taste yummy. You can also just use a box mix cake to make it even easier!</p>
</div><!-- .comment-content -->
<div class="reply"><a rel="nofollow" class="comment-reply-link" href="#comment-4050" data-commentid="4050" data-postid="20830" data-belowelement="div-comment-4050" data-respondelement="respond" data-replyto="Reply to Becky Schmieg" aria-label="Reply to Becky Schmieg">Reply</a></div> </article><!-- .comment-body -->
</li><!-- #comment-## -->
</ol><!-- .children -->
</li><!-- #comment-## -->
</ol><!-- .comment-list -->
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/berries-and-cream-cake/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://www.figjar.com/wp-comments-post.php" method="post" id="commentform" class="comment-form"><p class="comment-notes"><span id="email-notes">Your email address will not be published.</span> <span class="required-field-message">Required fields are marked <span class="required">*</span></span></p> <fieldset class="tasty-recipes-ratings tasty-recipes-comment-form">
<legend>Recipe rating</legend>
<span class="tasty-recipes-ratings-buttons " data-tr-default-rating="0" > <input aria-label="Rate this recipe 5 stars" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_6915c6778004d" value="5"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="5"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 5 Stars </span> </i> </span> <input aria-label="Rate this recipe 4 stars" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_6915c677800e7" value="4"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="4"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 4 Stars </span> </i> </span> <input aria-label="Rate this recipe 3 stars" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_6915c6778013a" value="3"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="3"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 3 Stars </span> </i> </span> <input aria-label="Rate this recipe 2 stars" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_6915c67780182" value="2"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="2"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 2 Stars </span> </i> </span> <input aria-label="Rate this recipe 1 star" type="radio" name="tasty-recipes-rating" class="tasty-recipes-rating" id="tasty_recipes_rating_input_6915c677801c7" value="1"> <span class="tasty-recipes-rating" > <i class="checked" data-rating="1"> <span class="tasty-recipes-rating-solid" data-tr-clip="0"> <svg class="tasty-recipes-svg" width="18" height="17"><use href="#wpt-star-full" /></svg> </span> <span class="tasty-recipes-screen-reader"> 1 Star </span> </i> </span></span> </fieldset>
<p class="comment-form-comment comment-form-float-label"><textarea id="comment" name="comment" placeholder="Leave a comment..." cols="45" rows="8" maxlength="65525" aria-required="true" required="required"></textarea><label class="float-label" for="comment">Comment <span class="required">*</span></label></p><div class="comment-input-wrap has-url-field"><p class="comment-form-author"><input aria-label="Name" id="author" name="author" type="text" placeholder="John Doe" value="" size="30" maxlength="245" aria-required='true' required='required' /><label class="float-label" for="author">Name <span class="required">*</span></label></p>
<p class="comment-form-email"><input aria-label="Email" id="email" name="email" type="email" placeholder="john@example.com" value="" size="30" maxlength="100" aria-describedby="email-notes" aria-required='true' required='required' /><label class="float-label" for="email">Email <span class="required">*</span></label></p>
<p class="comment-form-url"><input aria-label="Website" id="url" name="url" type="url" placeholder="https://www.example.com" value="" size="30" maxlength="200" /><label class="float-label" for="url">Website</label></p></div>
<p class="form-submit"><input name="submit" type="submit" id="submit" class="submit" value="Post Comment" /> <input type='hidden' name='comment_post_ID' value='20830' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="476bca8cc5" /></p><p style="display: none !important;" class="akismet-fields-container" data-prefix="ak_"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="36"/><script type="rocketlazyloadscript">document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form> </div><!-- #respond -->
</div><!-- #comments -->
</div>
</main><!-- #main -->
<aside id="secondary" role="complementary" class="primary-sidebar widget-area sidebar-slug-sidebar-primary sidebar-link-style-normal">
<div class="sidebar-inner-wrap">
<section id="block-25" class="widget widget_block widget_media_image">
<figure class="wp-block-image size-large"><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20635" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%20683%201024'%3E%3C/svg%3E" alt="profile picture of the author of figjar.com" class="wp-image-20635" data-lazy-srcset="https://www.figjar.com/wp-content/smush-avif/2024/06/becky-fig-jar-main-683x1024.jpg.avif 683w, https://www.figjar.com/wp-content/smush-avif/2024/06/becky-fig-jar-main-200x300.jpg.avif 200w, https://www.figjar.com/wp-content/smush-avif/2024/06/becky-fig-jar-main-768x1152.jpg.avif 768w, https://www.figjar.com/wp-content/smush-avif/2024/06/becky-fig-jar-main-1024x1536.jpg.avif 1024w, https://www.figjar.com/wp-content/smush-avif/2024/06/becky-fig-jar-main-150x225.jpg.avif 150w, https://www.figjar.com/wp-content/smush-avif/2024/06/becky-fig-jar-main.jpg.avif 1280w" data-lazy-sizes="(max-width: 683px) 100vw, 683px" data-lazy-src="https://www.figjar.com/wp-content/smush-avif/2024/06/becky-fig-jar-main-683x1024.jpg.avif" data-smush-avif-fallback="{"data-lazy-src":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/06\/becky-fig-jar-main-683x1024.jpg","data-lazy-srcset":"https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/06\/becky-fig-jar-main-683x1024.jpg 683w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/06\/becky-fig-jar-main-200x300.jpg 200w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/06\/becky-fig-jar-main-768x1152.jpg 768w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/06\/becky-fig-jar-main-1024x1536.jpg 1024w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/06\/becky-fig-jar-main-150x225.jpg 150w, https:\/\/www.figjar.com\/wp-content\/uploads\/2024\/06\/becky-fig-jar-main.jpg 1280w"}" /><noscript><img decoding="async" width="683" height="1024" data-pin-url="https://www.figjar.com/berries-and-cream-cake/?tp_image_id=20635" src="https://www.figjar.com/wp-content/uploads/2024/06/becky-fig-jar-main-683x1024.jpg" alt="profile picture of the author of figjar.com" class="wp-image-20635" srcset="https://www.figjar.com/wp-content/uploads/2024/06/becky-fig-jar-main-683x1024.jpg 683w, https://www.figjar.com/wp-content/uploads/2024/06/becky-fig-jar-main-200x300.jpg 200w, https://www.figjar.com/wp-content/uploads/2024/06/becky-fig-jar-main-768x1152.jpg 768w, https://www.figjar.com/wp-content/uploads/2024/06/becky-fig-jar-main-1024x1536.jpg 1024w, https://www.figjar.com/wp-content/uploads/2024/06/becky-fig-jar-main-150x225.jpg 150w, https://www.figjar.com/wp-content/uploads/2024/06/becky-fig-jar-main.jpg 1280w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure>
</section><section id="block-5" class="widget widget_block"><style id='kadence-blocks-advancedheading-inline-css'></style>
<style></style>
<h2 class="kt-adv-headingblock-5_098b74-2f wp-block-kadence-advancedheading" data-kb-block="kb-adv-headingblock-5_098b74-2f">Hi, I'm Becky!</h2>
</section><section id="block-26" class="widget widget_block widget_text">
<p class="has-text-align-center">Thank you for visiting! Here you will find simple recipes that make every day feel special without long ingredient lists or prep time. Whether you’re looking for breakfast, lunch, afternoon coffee (a personal fave!), weeknight dinners, or dessert, I hope you find something you love <3.</p>
</section><section id="block-27" class="widget widget_block widget_text">
<p class="has-text-align-center"><a href="https://www.figjar.com/about-me/">Read More</a></p>
</section> </div>
</aside><!-- #secondary -->
</div>
</div><!-- #primary -->
</div><!-- #inner-wrap -->
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-footer-wrap">
<div class="site-bottom-footer-wrap site-footer-row-container site-footer-focus-item site-footer-row-layout-fullwidth site-footer-row-tablet-layout-default site-footer-row-mobile-layout-default" data-section="kadence_customizer_footer_bottom">
<div class="site-footer-row-container-inner">
<div class="site-container">
<div class="site-bottom-footer-inner-wrap site-footer-row site-footer-row-columns-3 site-footer-row-column-layout-left-half site-footer-row-tablet-column-layout-default site-footer-row-mobile-column-layout-row ft-ro-dir-row ft-ro-collapse-normal ft-ro-t-dir-default ft-ro-m-dir-default ft-ro-lstyle-plain">
<div class="site-footer-bottom-section-1 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area widget-area site-footer-focus-item footer-navigation-wrap content-align-standard content-tablet-align-center content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default footer-navigation-layout-stretch-false" data-section="kadence_customizer_footer_navigation">
<div class="footer-widget-area-inner footer-navigation-inner">
<nav id="footer-navigation" class="footer-navigation" role="navigation" aria-label="Footer Navigation">
<div class="footer-menu-container">
<ul id="footer-menu" class="menu"><li id="menu-item-81044" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-81044"><a href="https://www.figjar.com/">Home</a></li>
<li id="menu-item-81576" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81576"><a href="https://www.figjar.com/about-me/">About</a></li>
<li id="menu-item-81284" class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-81284"><a href="https://www.figjar.com/all-recipes/">Recipe Index</a></li>
<li id="menu-item-81574" class="menu-item menu-item-type-post_type_archive menu-item-object-web-story menu-item-81574"><a href="https://www.figjar.com/web-stories/">Web Stories</a></li>
<li id="menu-item-81575" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81575"><a href="https://www.figjar.com/free-download-library/">Free Download Library</a></li>
<li id="menu-item-81577" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81577"><a href="https://www.figjar.com/blogging-resources/">Blogging Resources</a></li>
<li id="menu-item-81579" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81579"><a href="https://www.figjar.com/contact-us/">Contact me</a></li>
<li id="menu-item-81578" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81578"><a href="https://www.figjar.com/portfolio/">Portfolio</a></li>
<li id="menu-item-81655" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81655"><a href="https://www.figjar.com/privacy-policy/">Privacy Policy</a></li>
</ul> </div>
</nav><!-- #footer-navigation -->
</div>
</div><!-- data-section="footer_navigation" -->
</div>
<div class="site-footer-bottom-section-2 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area widget-area site-footer-focus-item footer-social content-align-center content-tablet-align-default content-mobile-align-default content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="kadence_customizer_footer_social">
<div class="footer-widget-area-inner footer-social-inner">
<div class="footer-social-wrap"><div class="footer-social-inner-wrap element-social-inner-wrap social-show-label-false social-style-outline"><a href="https://facebook.com" aria-label="Facebook" target="_blank" rel="noopener noreferrer" class="social-button footer-social-item social-link-facebook"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-facebook-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><title>Facebook</title><path d="M31.997 15.999c0-8.836-7.163-15.999-15.999-15.999s-15.999 7.163-15.999 15.999c0 7.985 5.851 14.604 13.499 15.804v-11.18h-4.062v-4.625h4.062v-3.525c0-4.010 2.389-6.225 6.043-6.225 1.75 0 3.581 0.313 3.581 0.313v3.937h-2.017c-1.987 0-2.607 1.233-2.607 2.498v3.001h4.437l-0.709 4.625h-3.728v11.18c7.649-1.2 13.499-7.819 13.499-15.804z"></path>
</svg></span></a><a href="https://www.instagram.com/thefigjar/" aria-label="Instagram" target="_blank" rel="noopener noreferrer" class="social-button footer-social-item social-link-instagram"><span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-instagram-alt-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Instagram</title><path d="M7 1c-1.657 0-3.158 0.673-4.243 1.757s-1.757 2.586-1.757 4.243v10c0 1.657 0.673 3.158 1.757 4.243s2.586 1.757 4.243 1.757h10c1.657 0 3.158-0.673 4.243-1.757s1.757-2.586 1.757-4.243v-10c0-1.657-0.673-3.158-1.757-4.243s-2.586-1.757-4.243-1.757zM7 3h10c1.105 0 2.103 0.447 2.828 1.172s1.172 1.723 1.172 2.828v10c0 1.105-0.447 2.103-1.172 2.828s-1.723 1.172-2.828 1.172h-10c-1.105 0-2.103-0.447-2.828-1.172s-1.172-1.723-1.172-2.828v-10c0-1.105 0.447-2.103 1.172-2.828s1.723-1.172 2.828-1.172zM16.989 11.223c-0.15-0.972-0.571-1.857-1.194-2.567-0.754-0.861-1.804-1.465-3.009-1.644-0.464-0.074-0.97-0.077-1.477-0.002-1.366 0.202-2.521 0.941-3.282 1.967s-1.133 2.347-0.93 3.712 0.941 2.521 1.967 3.282 2.347 1.133 3.712 0.93 2.521-0.941 3.282-1.967 1.133-2.347 0.93-3.712zM15.011 11.517c0.122 0.82-0.1 1.609-0.558 2.227s-1.15 1.059-1.969 1.18-1.609-0.1-2.227-0.558-1.059-1.15-1.18-1.969 0.1-1.609 0.558-2.227 1.15-1.059 1.969-1.18c0.313-0.046 0.615-0.042 0.87-0.002 0.74 0.11 1.366 0.47 1.818 0.986 0.375 0.428 0.63 0.963 0.72 1.543zM17.5 7.5c0.552 0 1-0.448 1-1s-0.448-1-1-1-1 0.448-1 1 0.448 1 1 1z"></path>
</svg></span></a></div></div> </div>
</div><!-- data-section="footer_social" -->
</div>
<div class="site-footer-bottom-section-3 site-footer-section footer-section-inner-items-1">
<div class="footer-widget-area site-info site-footer-focus-item content-align-right content-tablet-align-center content-mobile-align-center content-valign-middle content-tablet-valign-default content-mobile-valign-default" data-section="kadence_customizer_footer_html">
<div class="footer-widget-area-inner site-info-inner">
<div class="footer-html inner-link-style-plain"><div class="footer-html-inner"><p>© 2025 The Fig Jar • Create Theme by <a href="https://restored316designs.com/" target="_blank" rel="noopener">Restored 316</a></p>
</div></div> </div>
</div><!-- .site-info -->
</div>
</div>
</div>
</div>
</div>
</div>
</footer><!-- #colophon -->
</div><!-- #wrapper -->
<script type="rocketlazyloadscript">document.documentElement.style.setProperty('--scrollbar-offset', window.innerWidth - document.documentElement.clientWidth + 'px' );</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-type='text/javascript' data-rocket-src='https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/tasty-pins/assets/dist/tasty-pinit.build.js?ver=1762960071' data-rocket-defer defer></script>
<script type="rocketlazyloadscript">window.tastyPinitSettings = {"hover_button_position":"top-left","hover_button_shape":"square","hover_button_color":"#D19F23","image_overlay_enabled":"yes","custom_button_label_enabled":"yes","custom_button_label_text":"Pin this","button_visibility":"hover","mobile_button_visibility":"off","ignored_selectors":""}</script><style style="display: none !important;"></style><div id="grow-wp-data" data-grow='{"content":{"ID":20830,"categories":[{"ID":12},{"ID":2}]}}'></div><a id="kt-scroll-up" tabindex="-1" aria-hidden="true" aria-label="Scroll to top" href="#wrapper" class="kadence-scroll-to-top scroll-up-wrap scroll-ignore scroll-up-side-right scroll-up-style-outline vs-lg-true vs-md-true vs-sm-false"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-up-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Scroll to top</title><path d="M5.707 12.707l5.293-5.293v11.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-11.586l5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-7-7c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076c-0.256 0-0.512 0.098-0.707 0.293l-7 7c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z"></path>
</svg></span></a><button id="kt-scroll-up-reader" href="#wrapper" aria-label="Scroll to top" class="kadence-scroll-to-top scroll-up-wrap scroll-ignore scroll-up-side-right scroll-up-style-outline vs-lg-true vs-md-true vs-sm-false"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-up-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Scroll to top</title><path d="M5.707 12.707l5.293-5.293v11.586c0 0.552 0.448 1 1 1s1-0.448 1-1v-11.586l5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-7-7c-0.092-0.092-0.202-0.166-0.324-0.217s-0.253-0.076-0.383-0.076c-0.256 0-0.512 0.098-0.707 0.293l-7 7c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0z"></path>
</svg></span></button> <div style="display:none">
<div class="grofile-hash-map-92b01f306ecaecac4c2929f0efc81ba2">
</div>
<div class="grofile-hash-map-af0de3e3a32b6bd66ee0b9aa602b5718">
</div>
</div>
<script async data-uid="d8ec346f78" src="https://the-fig-jar.kit.com/d8ec346f78/index.js" data-kit-limit-per-session data-jetpack-boost="ignore" data-no-defer="1" nowprocket></script>
<div id="mobile-drawer" class="popup-drawer popup-drawer-layout-sidepanel popup-drawer-animation-fade popup-drawer-side-right" data-drawer-target-string="#mobile-drawer"
>
<div class="drawer-overlay" data-drawer-target-string="#mobile-drawer"></div>
<div class="drawer-inner">
<div class="drawer-header">
<button class="menu-toggle-close drawer-toggle" aria-label="Close menu" data-toggle-target="#mobile-drawer" data-toggle-body-class="showing-popup-drawer-from-right" aria-expanded="false" data-set-focus=".menu-toggle-open"
>
<span class="toggle-close-bar"></span>
<span class="toggle-close-bar"></span>
</button>
</div>
<div class="drawer-content mobile-drawer-content content-align-left content-valign-top">
<div class="site-header-item site-header-focus-item site-header-item-mobile-navigation mobile-navigation-layout-stretch-false" data-section="kadence_customizer_mobile_navigation">
<nav id="mobile-site-navigation" class="mobile-navigation drawer-navigation drawer-navigation-parent-toggle-false" role="navigation" aria-label="Primary Mobile Navigation">
<div class="mobile-menu-container drawer-menu-container">
<ul id="mobile-menu" class="menu has-collapse-sub-nav"><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-4052"><a href="https://www.figjar.com/">Home</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-20656"><div class="drawer-nav-drop-wrap"><a href="https://www.figjar.com/about-me/">About</a><button class="drawer-sub-toggle" data-toggle-duration="10" data-toggle-target="#mobile-menu .menu-item-20656 > .sub-menu" aria-expanded="false"><span class="screen-reader-text">Toggle child menu</span><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-arrow-down-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Expand</title><path d="M5.293 9.707l6 6c0.391 0.391 1.024 0.391 1.414 0l6-6c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
</svg></span></button></div>
<ul class="sub-menu">
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81595"><a href="https://www.figjar.com/contact-us/">Contact me</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7318"><a href="https://www.figjar.com/portfolio/">Portfolio</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17233"><a href="https://www.figjar.com/privacy-policy/">Privacy Policy</a></li>
</ul>
</li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-840"><a href="https://www.figjar.com/recipes/">Recipes</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-81656"><a href="https://www.figjar.com/blogging-resources/">Blogging Resources</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21830"><a href="https://www.figjar.com/free-download-library/">Freebies!</a></li>
</ul> </div>
</nav><!-- #site-navigation -->
</div><!-- data-section="mobile_navigation" -->
</div>
</div>
</div>
<style id='core-block-supports-inline-css'>
.wp-block-gallery.wp-block-gallery-1{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-2{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-3{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-4{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-container-core-columns-is-layout-9d6595d7{flex-wrap:nowrap;}.wp-block-gallery.wp-block-gallery-5{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-6{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-7{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-8{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-9{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-10{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-11{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}.wp-block-gallery.wp-block-gallery-12{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}
</style>
<script id="convertkit-broadcasts-js-extra">
var convertkit_broadcasts = {"ajax_url":"https:\/\/www.figjar.com\/wp-admin\/admin-ajax.php","action":"convertkit_broadcasts_render","debug":""};
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/convertkit/resources/frontend/js/broadcasts.js?ver=1762960071" id="convertkit-broadcasts-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://the-fig-jar.kit.com/commerce.js?ver=6.8.3" id="convertkit-commerce-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/simple-share-buttons-adder/js/ssba.js?ver=1762960071" id="simple-share-buttons-adder-ssba-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" id="simple-share-buttons-adder-ssba-js-after">
Main.boot( [] );
</script>
<script id="ez-toc-scroll-scriptjs-js-extra">
var eztoc_smooth_local = {"scroll_offset":"30","add_request_uri":"","add_self_reference_link":""};
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-content/plugins/easy-table-of-contents/assets/js/smooth_scroll.min.js?ver=2.0.76" id="ez-toc-scroll-scriptjs-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-content/plugins/easy-table-of-contents/vendor/js-cookie/js.cookie.min.js?ver=2.2.1" id="ez-toc-js-cookie-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-content/plugins/easy-table-of-contents/vendor/sticky-kit/jquery.sticky-kit.min.js?ver=1.9.2" id="ez-toc-jquery-sticky-kit-js" data-rocket-defer defer></script>
<script id="ez-toc-js-js-extra">
var ezTOC = {"smooth_scroll":"1","visibility_hide_by_default":"","scroll_offset":"30","fallbackIcon":"<span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #000000;color:#000000\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #000000;color:#000000\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span>","chamomile_theme_is_on":""};
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js?ver=2.0.76-1760912557" id="ez-toc-js-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/assets/js/cook-mode.js?ver=1762960071" id="tasty-recipes-cook-mode-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" id="rocket-browser-checker-js-after">
"use strict";var _createClass=function(){function defineProperties(target,props){for(var i=0;i<props.length;i++){var descriptor=props[i];descriptor.enumerable=descriptor.enumerable||!1,descriptor.configurable=!0,"value"in descriptor&&(descriptor.writable=!0),Object.defineProperty(target,descriptor.key,descriptor)}}return function(Constructor,protoProps,staticProps){return protoProps&&defineProperties(Constructor.prototype,protoProps),staticProps&&defineProperties(Constructor,staticProps),Constructor}}();function _classCallCheck(instance,Constructor){if(!(instance instanceof Constructor))throw new TypeError("Cannot call a class as a function")}var RocketBrowserCompatibilityChecker=function(){function RocketBrowserCompatibilityChecker(options){_classCallCheck(this,RocketBrowserCompatibilityChecker),this.passiveSupported=!1,this._checkPassiveOption(this),this.options=!!this.passiveSupported&&options}return _createClass(RocketBrowserCompatibilityChecker,[{key:"_checkPassiveOption",value:function(self){try{var options={get passive(){return!(self.passiveSupported=!0)}};window.addEventListener("test",null,options),window.removeEventListener("test",null,options)}catch(err){self.passiveSupported=!1}}},{key:"initRequestIdleCallback",value:function(){!1 in window&&(window.requestIdleCallback=function(cb){var start=Date.now();return setTimeout(function(){cb({didTimeout:!1,timeRemaining:function(){return Math.max(0,50-(Date.now()-start))}})},1)}),!1 in window&&(window.cancelIdleCallback=function(id){return clearTimeout(id)})}},{key:"isDataSaverModeOn",value:function(){return"connection"in navigator&&!0===navigator.connection.saveData}},{key:"supportsLinkPrefetch",value:function(){var elem=document.createElement("link");return elem.relList&&elem.relList.supports&&elem.relList.supports("prefetch")&&window.IntersectionObserver&&"isIntersecting"in IntersectionObserverEntry.prototype}},{key:"isSlowConnection",value:function(){return"connection"in navigator&&"effectiveType"in navigator.connection&&("2g"===navigator.connection.effectiveType||"slow-2g"===navigator.connection.effectiveType)}}]),RocketBrowserCompatibilityChecker}();
</script>
<script id="rocket-preload-links-js-extra">
var RocketPreloadLinksConfig = {"excludeUris":"\/(?:.+\/)?feed(?:\/(?:.+\/?)?)?$|\/(?:.+\/)?embed\/|\/(index.php\/)?(.*)wp-json(\/.*|$)|\/refer\/|\/go\/|\/recommend\/|\/recommends\/","usesTrailingSlash":"1","imageExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php","fileExt":"jpg|jpeg|gif|png|tiff|bmp|webp|avif|pdf|doc|docx|xls|xlsx|php|html|htm","siteUrl":"https:\/\/www.figjar.com","onHoverDelay":"100","rateThrottle":"3"};
</script>
<script type="rocketlazyloadscript" id="rocket-preload-links-js-after">
(function() {
"use strict";var r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},e=function(){function i(e,t){for(var n=0;n<t.length;n++){var i=t[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),Object.defineProperty(e,i.key,i)}}return function(e,t,n){return t&&i(e.prototype,t),n&&i(e,n),e}}();function i(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}var t=function(){function n(e,t){i(this,n),this.browser=e,this.config=t,this.options=this.browser.options,this.prefetched=new Set,this.eventTime=null,this.threshold=1111,this.numOnHover=0}return e(n,[{key:"init",value:function(){!this.browser.supportsLinkPrefetch()||this.browser.isDataSaverModeOn()||this.browser.isSlowConnection()||(this.regex={excludeUris:RegExp(this.config.excludeUris,"i"),images:RegExp(".("+this.config.imageExt+")$","i"),fileExt:RegExp(".("+this.config.fileExt+")$","i")},this._initListeners(this))}},{key:"_initListeners",value:function(e){-1<this.config.onHoverDelay&&document.addEventListener("mouseover",e.listener.bind(e),e.listenerOptions),document.addEventListener("mousedown",e.listener.bind(e),e.listenerOptions),document.addEventListener("touchstart",e.listener.bind(e),e.listenerOptions)}},{key:"listener",value:function(e){var t=e.target.closest("a"),n=this._prepareUrl(t);if(null!==n)switch(e.type){case"mousedown":case"touchstart":this._addPrefetchLink(n);break;case"mouseover":this._earlyPrefetch(t,n,"mouseout")}}},{key:"_earlyPrefetch",value:function(t,e,n){var i=this,r=setTimeout(function(){if(r=null,0===i.numOnHover)setTimeout(function(){return i.numOnHover=0},1e3);else if(i.numOnHover>i.config.rateThrottle)return;i.numOnHover++,i._addPrefetchLink(e)},this.config.onHoverDelay);t.addEventListener(n,function e(){t.removeEventListener(n,e,{passive:!0}),null!==r&&(clearTimeout(r),r=null)},{passive:!0})}},{key:"_addPrefetchLink",value:function(i){return this.prefetched.add(i.href),new Promise(function(e,t){var n=document.createElement("link");n.rel="prefetch",n.href=i.href,n.onload=e,n.onerror=t,document.head.appendChild(n)}).catch(function(){})}},{key:"_prepareUrl",value:function(e){if(null===e||"object"!==(void 0===e?"undefined":r(e))||!1 in e||-1===["http:","https:"].indexOf(e.protocol))return null;var t=e.href.substring(0,this.config.siteUrl.length),n=this._getPathname(e.href,t),i={original:e.href,protocol:e.protocol,origin:t,pathname:n,href:t+n};return this._isLinkOk(i)?i:null}},{key:"_getPathname",value:function(e,t){var n=t?e.substring(this.config.siteUrl.length):e;return n.startsWith("/")||(n="/"+n),this._shouldAddTrailingSlash(n)?n+"/":n}},{key:"_shouldAddTrailingSlash",value:function(e){return this.config.usesTrailingSlash&&!e.endsWith("/")&&!this.regex.fileExt.test(e)}},{key:"_isLinkOk",value:function(e){return null!==e&&"object"===(void 0===e?"undefined":r(e))&&(!this.prefetched.has(e.href)&&e.origin===this.config.siteUrl&&-1===e.href.indexOf("?")&&-1===e.href.indexOf("#")&&!this.regex.excludeUris.test(e.href)&&!this.regex.images.test(e.href))}}],[{key:"run",value:function(){"undefined"!=typeof RocketPreloadLinksConfig&&new n(new RocketBrowserCompatibilityChecker({capture:!0,passive:!0}),RocketPreloadLinksConfig).init()}}]),n}();t.run();
}());
</script>
<script id="smush-nextgen-fallback-js-extra">
var wp_smushit_nextgen_data = {"mode":"avif"};
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-content/plugins/wp-smush-pro/app/assets/js/smush-nextgen-fallback.min.js?ver=3.22.1" id="smush-nextgen-fallback-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/comment-reply.min.js?ver=6.8.3" id="comment-reply-js" async data-wp-strategy="async"></script>
<script id="kadence-navigation-js-extra">
var kadenceConfig = {"screenReader":{"expand":"Child menu","expandOf":"Child menu of","collapse":"Child menu","collapseOf":"Child menu of"},"breakPoints":{"desktop":"1024","tablet":768},"scrollOffset":"0"};
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-content/themes/kadence/assets/js/navigation.min.js?ver=1.2.25" id="kadence-navigation-js" async></script>
<script type="rocketlazyloadscript" data-rocket-src="https://secure.gravatar.com/js/gprofiles.js?ver=202546" id="grofiles-cards-js" data-rocket-defer defer></script>
<script id="wpgroho-js-extra">
var WPGroHo = {"my_hash":""};
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/jetpack/modules/wpgroho.js?ver=1762960071" id="wpgroho-js" data-rocket-defer defer></script>
<script id="convertkit-js-js-extra">
var convertkit = {"ajaxurl":"https:\/\/www.figjar.com\/wp-admin\/admin-ajax.php","debug":"","nonce":"e51f99fd80","subscriber_id":""};
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/convertkit/resources/frontend/js/convertkit.js?ver=1762960071" id="convertkit-js-js" data-rocket-defer defer></script>
<script id="jetpack-stats-js-before">
_stq = window._stq || [];
_stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"148010650\",\"post\":\"20830\",\"tz\":\"-8\",\"srv\":\"www.figjar.com\",\"j\":\"1:15.2\"}") ]);
_stq.push([ "clickTrackerInit", "148010650", "20830" ]);
</script>
<script src="https://stats.wp.com/e-202546.js" id="jetpack-stats-js" defer data-wp-strategy="defer"></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/assets/js/pin-button.js?ver=1762960071" id="tasty-recipes-pin-button-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" id="tasty-recipes-js-before">
window.trCommon={"ajaxurl":"https:\/\/www.figjar.com\/wp-admin\/admin-ajax.php","ratingNonce":"","postId":20830};
</script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes-lite/assets/dist/recipe-js.build.js?ver=1762960071" id="tasty-recipes-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/assets/js/frac.js?ver=1762960071" id="tasty-recipes-fraction-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/assets/js/convert-buttons.js?ver=1762960071" id="tasty-recipes-convert-buttons-js" data-rocket-defer defer></script>
<script data-minify="1" src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/assets/js/scale-buttons.js?ver=1762960071" id="tasty-recipes-scale-buttons-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/vendor/react.min.js?ver=18.3.1.1" id="react-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/vendor/react-jsx-runtime.min.js?ver=18.3.1" id="react-jsx-runtime-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/vendor/react-dom.min.js?ver=18.3.1.1" id="react-dom-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/dom-ready.min.js?ver=f77871ff7694fffea381" id="wp-dom-ready-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script>
<script type="rocketlazyloadscript" id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/a11y.min.js?ver=3156534cc54473497e14" id="wp-a11y-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/deprecated.min.js?ver=e1f84915c5e8ae38964c" id="wp-deprecated-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/dom.min.js?ver=80bd57c84b45cf04f4ce" id="wp-dom-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/escape-html.min.js?ver=6561a406d2d232a6fbd2" id="wp-escape-html-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/element.min.js?ver=a4eeeadd23c0d7ab1d2d" id="wp-element-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/is-shallow-equal.min.js?ver=e0f9f1d78d83f5196979" id="wp-is-shallow-equal-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/keycodes.min.js?ver=034ff647a54b018581d3" id="wp-keycodes-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/priority-queue.min.js?ver=9c21c957c7e50ffdbf48" id="wp-priority-queue-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/compose.min.js?ver=84bcf832a5c99203f3db" id="wp-compose-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/vendor/moment.min.js?ver=2.30.1" id="moment-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" id="moment-js-after">
moment.updateLocale( 'en_US', {"months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"week":{"dow":1},"longDateFormat":{"LT":"g:i A","LTS":null,"L":null,"LL":"F j, Y","LLL":"F j, Y g:i a","LLLL":null}} );
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/date.min.js?ver=85ff222add187a4e358f" id="wp-date-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" id="wp-date-js-after">
wp.date.setSettings( {"l10n":{"locale":"en_US","months":["January","February","March","April","May","June","July","August","September","October","November","December"],"monthsShort":["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"weekdays":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"weekdaysShort":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"meridiem":{"am":"am","pm":"pm","AM":"AM","PM":"PM"},"relative":{"future":"%s from now","past":"%s ago","s":"a second","ss":"%d seconds","m":"a minute","mm":"%d minutes","h":"an hour","hh":"%d hours","d":"a day","dd":"%d days","M":"a month","MM":"%d months","y":"a year","yy":"%d years"},"startOfWeek":1},"formats":{"time":"g:i A","date":"F j, Y","datetime":"F j, Y g:i a","datetimeAbbreviated":"M j, Y g:i a"},"timezone":{"offset":-8,"offsetFormatted":"-8","string":"America\/Los_Angeles","abbr":"PST"}} );
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/html-entities.min.js?ver=2cd3358363e0675638fb" id="wp-html-entities-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/primitives.min.js?ver=aef2543ab60c8c9bb609" id="wp-primitives-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/private-apis.min.js?ver=0f8478f1ba7e0eea562b" id="wp-private-apis-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/redux-routine.min.js?ver=8bb92d45458b29590f53" id="wp-redux-routine-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/data.min.js?ver=fe6c4835cd00e12493c3" id="wp-data-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" id="wp-data-js-after">
( function() {
var userId = 0;
var storageKey = "WP_DATA_USER_" + userId;
wp.data
.use( wp.data.plugins.persistence, { storageKey: storageKey } );
} )();
</script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/rich-text.min.js?ver=74178fc8c4d67d66f1a8" id="wp-rich-text-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/warning.min.js?ver=ed7c8b0940914f4fe44b" id="wp-warning-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-rocket-src="https://www.figjar.com/wp-includes/js/dist/components.min.js?ver=865f2ec3b5f5195705e0" id="wp-components-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-minify="1" data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/tasty-recipes/assets/dist/block-editor.build.js?ver=1762960071" id="tasty-recipes-pro-block-editor-js" data-rocket-defer defer></script>
<script type="rocketlazyloadscript" data-minify="1" defer data-rocket-src="https://www.figjar.com/wp-content/cache/min/1/wp-content/plugins/akismet/_inc/akismet-frontend.js?ver=1762960071" id="akismet-frontend-js"></script>
<script data-grow-initializer="">!(function(){window.growMe||((window.growMe=function(e){window.growMe._.push(e);}),(window.growMe._=[]));var e=document.createElement("script");(e.type="text/javascript"),(e.src="https://faves.grow.me/main.js"),(e.defer=!0),e.setAttribute("data-grow-faves-site-id","U2l0ZTo2NDg5ODYxNy04NTk3LTRiZjgtODVhYy05MzQ2NjBiOGEwY2I=");var t=document.getElementsByTagName("script")[0];t.parentNode.insertBefore(e,t);})();</script> <div id="search-drawer" class="popup-drawer popup-drawer-layout-fullwidth" data-drawer-target-string="#search-drawer"
>
<div class="drawer-overlay" data-drawer-target-string="#search-drawer"></div>
<div class="drawer-inner">
<div class="drawer-header">
<button class="search-toggle-close drawer-toggle" aria-label="Close search" data-toggle-target="#search-drawer" data-toggle-body-class="showing-popup-drawer-from-full" aria-expanded="false" data-set-focus=".search-toggle-open"
>
<span class="kadence-svg-iconset"><svg class="kadence-svg-icon kadence-close-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><title>Toggle Menu Close</title><path d="M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z"></path>
</svg></span> </button>
</div>
<div class="drawer-content">
<form role="search" method="get" class="search-form" action="https://www.figjar.com/">
<label>
<span class="screen-reader-text">Search for:</span>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" />
</label>
<input type="submit" class="search-submit" value="Search" />
<div class="kadence-search-icon-wrap"><span class="kadence-svg-iconset"><svg aria-hidden="true" class="kadence-svg-icon kadence-search-svg" fill="currentColor" version="1.1" xmlns="http://www.w3.org/2000/svg" width="26" height="28" viewBox="0 0 26 28"><title>Search</title><path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path>
</svg></span></div></form> </div>
</div>
</div>
<script>window.lazyLoadOptions=[{elements_selector:"img[data-lazy-src],.rocket-lazyload,iframe[data-lazy-src]",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,callback_loaded:function(element){if(element.tagName==="IFRAME"&&element.dataset.rocketLazyload=="fitvidscompatible"){if(element.classList.contains("lazyloaded")){if(typeof window.jQuery!="undefined"){if(jQuery.fn.fitVids){jQuery(element).parent().fitVids()}}}}}},{elements_selector:".rocket-lazyload",data_src:"lazy-src",data_srcset:"lazy-srcset",data_sizes:"lazy-sizes",class_loading:"lazyloading",class_loaded:"lazyloaded",threshold:300,}];window.addEventListener('LazyLoad::Initialized',function(e){var lazyLoadInstance=e.detail.instance;if(window.MutationObserver){var observer=new MutationObserver(function(mutations){var image_count=0;var iframe_count=0;var rocketlazy_count=0;mutations.forEach(function(mutation){for(var i=0;i<mutation.addedNodes.length;i++){if(typeof mutation.addedNodes[i].getElementsByTagName!=='function'){continue}
if(typeof mutation.addedNodes[i].getElementsByClassName!=='function'){continue}
images=mutation.addedNodes[i].getElementsByTagName('img');is_image=mutation.addedNodes[i].tagName=="IMG";iframes=mutation.addedNodes[i].getElementsByTagName('iframe');is_iframe=mutation.addedNodes[i].tagName=="IFRAME";rocket_lazy=mutation.addedNodes[i].getElementsByClassName('rocket-lazyload');image_count+=images.length;iframe_count+=iframes.length;rocketlazy_count+=rocket_lazy.length;if(is_image){image_count+=1}
if(is_iframe){iframe_count+=1}}});if(image_count>0||iframe_count>0||rocketlazy_count>0){lazyLoadInstance.update()}});var b=document.getElementsByTagName("body")[0];var config={childList:!0,subtree:!0};observer.observe(b,config)}},!1)</script><script data-no-minify="1" async src="https://www.figjar.com/wp-content/plugins/wp-rocket/assets/js/lazyload/17.8.3/lazyload.min.js"></script><script>function lazyLoadThumb(e,alt,l){var t='<img data-lazy-src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"><noscript><img src="https://i.ytimg.com/vi/ID/hqdefault.jpg" alt="" width="480" height="360"></noscript>',a='<button class="play" aria-label="Play Youtube video"></button>';if(l){t=t.replace('data-lazy-','');t=t.replace('loading="lazy"','');t=t.replace(/<noscript>.*?<\/noscript>/g,'');}t=t.replace('alt=""','alt="'+alt+'"');return t.replace("ID",e)+a}function lazyLoadYoutubeIframe(){var e=document.createElement("iframe"),t="ID?autoplay=1";t+=0===this.parentNode.dataset.query.length?"":"&"+this.parentNode.dataset.query;e.setAttribute("src",t.replace("ID",this.parentNode.dataset.src)),e.setAttribute("frameborder","0"),e.setAttribute("allowfullscreen","1"),e.setAttribute("allow","accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"),this.parentNode.parentNode.replaceChild(e,this.parentNode)}document.addEventListener("DOMContentLoaded",function(){var exclusions=["logo-fig-jar-1.png"];var e,t,p,u,l,a=document.getElementsByClassName("rll-youtube-player");for(t=0;t<a.length;t++)(e=document.createElement("div")),(u='https://i.ytimg.com/vi/ID/hqdefault.jpg'),(u=u.replace('ID',a[t].dataset.id)),(l=exclusions.some(exclusion=>u.includes(exclusion))),e.setAttribute("data-id",a[t].dataset.id),e.setAttribute("data-query",a[t].dataset.query),e.setAttribute("data-src",a[t].dataset.src),(e.innerHTML=lazyLoadThumb(a[t].dataset.id,a[t].dataset.alt,l)),a[t].appendChild(e),(p=e.querySelector(".play")),(p.onclick=lazyLoadYoutubeIframe)});</script></body>
</html>
<!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1763034743 -->
|