@charset "UTF-8";
/*
Theme Name:           Revision
Theme URI:            https://revision.codesupply.co
Description:          High-Performance WordPress Personal Blog Theme
Author:               Code Supply Co.
Author URI:           https://codesupply.co
Version:              1.0.12
Tested up to:         6.7
Requires at least:    6.0
Requires PHP:         7.0
Tags:                 custom-colors, editor-style, theme-options, custom-menu, sticky-post, right-sidebar, translation-ready
License:              GNU General Public License version 3.0
License URI:          http://www.gnu.org/licenses/gpl-3.0.html
Text Domain:          revision
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Base
# Utilities
# Layout
# Elements
# Widgets
# Media
# Vendors

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
    --cs-header-initial-height: 88px;
    --cs-header-height: 88px;
    --cs-header-topbar-height: 162px;
    --cs-header-border-width: 1px;
    --cs-container-column-gap: 54px;
    --cs-offcanvas-width: 100%;
    --cs-entry-content-full: 1248px;
    --cs-entry-content-width: 878px;
    --cs-entry-content-large-width: 700px;
    --cs-entry-content-small-width: 640px;
    --cs-mobile-container: 576px;
    --cs-entry-title-max-width: 920px;
    --cs-entry-content-max-width: calc( var(--cs-entry-content-width) - var(--cs-container-column-gap) );
    --cs-layout-elements-border-radius: 8px;
    --cs-thumbnail-border-radius: 16px;
    --cs-button-border-radius: 8px;
    --cs-input-border-radius: 8px;
    --cs-tag-border-radius: 6px;
    --cs-avatar-border-radius: 50%;
    --cs-adminmbar-offset: 0px;
    --cs-underline-bg-position: left 98%;
}
@media (min-width: 576px) {
    :root {
        --cs-offcanvas-width: 432px;
    }
}

.admin-bar {
    --cs-adminmbar-offset: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar {
        --cs-adminmbar-offset: 46px;
    }
}
@media screen and (max-width: 600px) {
    .admin-bar {
        --cs-adminmbar-offset: 0px;
    }
}

:root,
html[data-scheme=light] {
    --cs-header-background: var(--cs-light-header-background, #FDFDFF);
    --cs-header-submenu-background: var(--cs-light-header-submenu-background, #FFFFFF);
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] {
        --cs-header-background: var(--cs-dark-header-background, #1C1C1C);
        --cs-header-submenu-background: var(--cs-dark-header-submenu-background, #222222);
    }
}
html[data-scheme=dark] {
    --cs-header-background: var(--cs-dark-header-background, #1C1C1C);
    --cs-header-submenu-background: var(--cs-dark-header-submenu-background, #222222);
}

:root,
html[data-scheme=light] {
    --cs-site-background: linear-gradient(180deg, var(--cs-light-site-background-start, #FDFDFF) 0%, var(--cs-light-site-background-end, #F8F7FF) 100%);
    --cs-layout-background: var(--cs-light-layout-background, #FFFFFF);
    --cs-offcanvas-background: var(--cs-light-offcanvas-background, #FFFFFF);
    --cs-color-highlight-background: var(--cs-light-header-highlight-background, #F2F2F6);
    --cs-color-primary: var(--cs-light-primary-color, #29294B);
    --cs-color-primary-contrast: #FFFFFF;
    --cs-color-secondary: var(--cs-light-secondary-color, #696981);
    --cs-color-secondary-contrast: #FFFFFF;
    --cs-color-accent: var(--cs-light-accent-color, #5955D1);
    --cs-color-border: var(--cs-light-border-color, #E1E1E8);
    --cs-color-input: var(--cs-light-input-background, #FFFFFF);
    --cs-color-input-contrast: var(--cs-light-input-color, #29294B);
    --cs-color-button: linear-gradient(180deg, var(--cs-light-button-background-start, #9895FF) 0%, var(--cs-light-button-background-end, #514DCC) 100%);
    --cs-color-button-contrast: var(--cs-light-button-color, #FFFFFF);
    --cs-color-button-hover: linear-gradient(180deg, var(--cs-light-button-hover-background-start, #8E8BFF) 0%, var(--cs-light-button-hover-background-end, #4440B4) 100%);
    --cs-color-button-hover-contrast: var(--cs-light-button-hover-color, #FFFFFF);
    --cs-color-overlay-background: var(--cs-light-overlay-background-rgb,#000000);
    --cs-color-box-shadow-rgb: 114, 114, 255;
    --cs-color-contrast-50: #f8f9fa;
    --cs-color-contrast-100: #f8f9fa;
    --cs-color-contrast-200: #E1E1E8;
    --cs-color-contrast-300: #dee2e6;
    --cs-color-contrast-400: #ced4da;
    --cs-color-contrast-500: #adb5bd;
    --cs-color-contrast-600: #6c757d;
    --cs-color-contrast-700: #495057;
    --cs-color-contrast-800: #343a40;
    --cs-color-contrast-900: #212529;
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=light] {
        --cs-site-background: linear-gradient(180deg, var(--cs-light-site-background-start, #FDFDFF) 0%, var(--cs-light-site-background-end, #F8F7FF) 100%);
        --cs-layout-background: var(--cs-light-layout-background, #FFFFFF);
        --cs-offcanvas-background: var(--cs-light-offcanvas-background, #FFFFFF);
        --cs-color-highlight-background: var(--cs-light-header-highlight-background, #F2F2F6);
        --cs-color-primary: var(--cs-light-primary-color, #29294B);
        --cs-color-primary-contrast: #FFFFFF;
        --cs-color-secondary: var(--cs-light-secondary-color, #696981);
        --cs-color-secondary-contrast: #FFFFFF;
        --cs-color-accent: var(--cs-light-accent-color, #5955D1);
        --cs-color-border: var(--cs-light-border-color, #E1E1E8);
        --cs-color-input: var(--cs-light-input-background, #FFFFFF);
        --cs-color-input-contrast: var(--cs-light-input-color, #29294B);
        --cs-color-button: linear-gradient(180deg, var(--cs-light-button-background-start, #9895FF) 0%, var(--cs-light-button-background-end, #514DCC) 100%);
        --cs-color-button-contrast: var(--cs-light-button-color, #FFFFFF);
        --cs-color-button-hover: linear-gradient(180deg, var(--cs-light-button-hover-background-start, #8E8BFF) 0%, var(--cs-light-button-hover-background-end, #4440B4) 100%);
        --cs-color-button-hover-contrast: var(--cs-light-button-hover-color, #FFFFFF);
        --cs-color-overlay-background: var(--cs-light-overlay-background-rgb,#000000);
        --cs-color-box-shadow-rgb: 114, 114, 255;
        --cs-color-contrast-50: #f8f9fa;
        --cs-color-contrast-100: #f8f9fa;
        --cs-color-contrast-200: #E1E1E8;
        --cs-color-contrast-300: #dee2e6;
        --cs-color-contrast-400: #ced4da;
        --cs-color-contrast-500: #adb5bd;
        --cs-color-contrast-600: #6c757d;
        --cs-color-contrast-700: #495057;
        --cs-color-contrast-800: #343a40;
        --cs-color-contrast-900: #212529;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=light] {
        --cs-site-background: linear-gradient(180deg, var(--cs-light-site-background-start, #FDFDFF) 0%, var(--cs-light-site-background-end, #F8F7FF) 100%);
        --cs-layout-background: var(--cs-light-layout-background, #FFFFFF);
        --cs-offcanvas-background: var(--cs-light-offcanvas-background, #FFFFFF);
        --cs-color-highlight-background: var(--cs-light-header-highlight-background, #F2F2F6);
        --cs-color-primary: var(--cs-light-primary-color, #29294B);
        --cs-color-primary-contrast: #FFFFFF;
        --cs-color-secondary: var(--cs-light-secondary-color, #696981);
        --cs-color-secondary-contrast: #FFFFFF;
        --cs-color-accent: var(--cs-light-accent-color, #5955D1);
        --cs-color-border: var(--cs-light-border-color, #E1E1E8);
        --cs-color-input: var(--cs-light-input-background, #FFFFFF);
        --cs-color-input-contrast: var(--cs-light-input-color, #29294B);
        --cs-color-button: linear-gradient(180deg, var(--cs-light-button-background-start, #9895FF) 0%, var(--cs-light-button-background-end, #514DCC) 100%);
        --cs-color-button-contrast: var(--cs-light-button-color, #FFFFFF);
        --cs-color-button-hover: linear-gradient(180deg, var(--cs-light-button-hover-background-start, #8E8BFF) 0%, var(--cs-light-button-hover-background-end, #4440B4) 100%);
        --cs-color-button-hover-contrast: var(--cs-light-button-hover-color, #FFFFFF);
        --cs-color-overlay-background: var(--cs-light-overlay-background-rgb,#000000);
        --cs-color-box-shadow-rgb: 114, 114, 255;
        --cs-color-contrast-50: #f8f9fa;
        --cs-color-contrast-100: #f8f9fa;
        --cs-color-contrast-200: #E1E1E8;
        --cs-color-contrast-300: #dee2e6;
        --cs-color-contrast-400: #ced4da;
        --cs-color-contrast-500: #adb5bd;
        --cs-color-contrast-600: #6c757d;
        --cs-color-contrast-700: #495057;
        --cs-color-contrast-800: #343a40;
        --cs-color-contrast-900: #212529;
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] {
        --cs-site-background: linear-gradient(180deg, var(--cs-dark-site-background-start, #1C1C1C) 0%, var(--cs-dark-site-background-end, #1C1C1C) 100%);
        --cs-layout-background: var(--cs-dark-layout-background, #222222);
        --cs-offcanvas-background: var(--cs-dark-offcanvas-background, #222222);
        --cs-color-highlight-background: var(--cs-dark-header-highlight-background, #3D3D3D);
        --cs-color-primary: var(--cs-dark-primary-color, #FFFFFF);
        --cs-color-primary-contrast: #222222;
        --cs-color-secondary: var(--cs-dark-secondary-color, #CDCDCD);
        --cs-color-secondary-contrast: #000000;
        --cs-color-accent: var(--cs-dark-accent-color, #FFFFFF);
        --cs-color-border: var(--cs-dark-border-color, #2E2E2E);
        --cs-color-input: var(--cs-dark-input-background, #222222);
        --cs-color-input-contrast: var(--cs-dark-input-color, #FFFFFF);
        --cs-color-button: linear-gradient(180deg, var(--cs-dark-button-background-start, #434343) 0%, var(--cs-dark-button-background-end, #0F0F0F) 100%);
        --cs-color-button-contrast: var(--cs-dark-button-color, #FFFFFF);
        --cs-color-button-hover: linear-gradient(180deg, var(--cs-dark-button-hover-background-start, #383838) 0%, var(--cs-dark-button-hover-background-end, #010101) 100%);
        --cs-color-button-hover-contrast:var(--cs-dark-button-hover-color, #FFFFFF);
        --cs-color-overlay-background: var(--cs-dark-overlay-background-rgb, #000000);
        --cs-color-box-shadow-rgb: 16, 16, 16;
        --cs-color-contrast-50: #000000;
        --cs-color-contrast-100: #333333;
        --cs-color-contrast-200: #494949;
        --cs-color-contrast-300: #606060;
        --cs-color-contrast-400: #777777;
        --cs-color-contrast-500: #8e8e8e;
        --cs-color-contrast-600: #a4a4a4;
        --cs-color-contrast-700: #bbbbbb;
        --cs-color-contrast-800: #d2d2d2;
        --cs-color-contrast-900: #e9e9e9;
    }
}
html[data-scheme=dark] {
    --cs-site-background: linear-gradient(180deg, var(--cs-dark-site-background-start, #1C1C1C) 0%, var(--cs-dark-site-background-end, #1C1C1C) 100%);
    --cs-layout-background: var(--cs-dark-layout-background, #222222);
    --cs-offcanvas-background: var(--cs-dark-offcanvas-background, #222222);
    --cs-color-highlight-background: var(--cs-dark-header-highlight-background, #3D3D3D);
    --cs-color-primary: var(--cs-dark-primary-color, #FFFFFF);
    --cs-color-primary-contrast: #222222;
    --cs-color-secondary: var(--cs-dark-secondary-color, #CDCDCD);
    --cs-color-secondary-contrast: #000000;
    --cs-color-accent: var(--cs-dark-accent-color, #FFFFFF);
    --cs-color-border: var(--cs-dark-border-color, #2E2E2E);
    --cs-color-input: var(--cs-dark-input-background, #222222);
    --cs-color-input-contrast: var(--cs-dark-input-color, #FFFFFF);
    --cs-color-button: linear-gradient(180deg, var(--cs-dark-button-background-start, #434343) 0%, var(--cs-dark-button-background-end, #0F0F0F) 100%);
    --cs-color-button-contrast: var(--cs-dark-button-color, #FFFFFF);
    --cs-color-button-hover: linear-gradient(180deg, var(--cs-dark-button-hover-background-start, #383838) 0%, var(--cs-dark-button-hover-background-end, #010101) 100%);
    --cs-color-button-hover-contrast:var(--cs-dark-button-hover-color, #FFFFFF);
    --cs-color-overlay-background: var(--cs-dark-overlay-background-rgb, #000000);
    --cs-color-box-shadow-rgb: 16, 16, 16;
    --cs-color-contrast-50: #000000;
    --cs-color-contrast-100: #333333;
    --cs-color-contrast-200: #494949;
    --cs-color-contrast-300: #606060;
    --cs-color-contrast-400: #777777;
    --cs-color-contrast-500: #8e8e8e;
    --cs-color-contrast-600: #a4a4a4;
    --cs-color-contrast-700: #bbbbbb;
    --cs-color-contrast-800: #d2d2d2;
    --cs-color-contrast-900: #e9e9e9;
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] {
        --cs-site-background: linear-gradient(180deg, var(--cs-dark-site-background-start, #1C1C1C) 0%, var(--cs-dark-site-background-end, #1C1C1C) 100%);
        --cs-layout-background: var(--cs-dark-layout-background, #222222);
        --cs-offcanvas-background: var(--cs-dark-offcanvas-background, #222222);
        --cs-color-highlight-background: var(--cs-dark-header-highlight-background, #3D3D3D);
        --cs-color-primary: var(--cs-dark-primary-color, #FFFFFF);
        --cs-color-primary-contrast: #222222;
        --cs-color-secondary: var(--cs-dark-secondary-color, #CDCDCD);
        --cs-color-secondary-contrast: #000000;
        --cs-color-accent: var(--cs-dark-accent-color, #FFFFFF);
        --cs-color-border: var(--cs-dark-border-color, #2E2E2E);
        --cs-color-input: var(--cs-dark-input-background, #222222);
        --cs-color-input-contrast: var(--cs-dark-input-color, #FFFFFF);
        --cs-color-button: linear-gradient(180deg, var(--cs-dark-button-background-start, #434343) 0%, var(--cs-dark-button-background-end, #0F0F0F) 100%);
        --cs-color-button-contrast: var(--cs-dark-button-color, #FFFFFF);
        --cs-color-button-hover: linear-gradient(180deg, var(--cs-dark-button-hover-background-start, #383838) 0%, var(--cs-dark-button-hover-background-end, #010101) 100%);
        --cs-color-button-hover-contrast:var(--cs-dark-button-hover-color, #FFFFFF);
        --cs-color-overlay-background: var(--cs-dark-overlay-background-rgb, #000000);
        --cs-color-box-shadow-rgb: 16, 16, 16;
        --cs-color-contrast-50: #000000;
        --cs-color-contrast-100: #333333;
        --cs-color-contrast-200: #494949;
        --cs-color-contrast-300: #606060;
        --cs-color-contrast-400: #777777;
        --cs-color-contrast-500: #8e8e8e;
        --cs-color-contrast-600: #a4a4a4;
        --cs-color-contrast-700: #bbbbbb;
        --cs-color-contrast-800: #d2d2d2;
        --cs-color-contrast-900: #e9e9e9;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] {
        --cs-site-background: linear-gradient(180deg, var(--cs-dark-site-background-start, #1C1C1C) 0%, var(--cs-dark-site-background-end, #1C1C1C) 100%);
        --cs-layout-background: var(--cs-dark-layout-background, #222222);
        --cs-offcanvas-background: var(--cs-dark-offcanvas-background, #222222);
        --cs-color-highlight-background: var(--cs-dark-header-highlight-background, #3D3D3D);
        --cs-color-primary: var(--cs-dark-primary-color, #FFFFFF);
        --cs-color-primary-contrast: #222222;
        --cs-color-secondary: var(--cs-dark-secondary-color, #CDCDCD);
        --cs-color-secondary-contrast: #000000;
        --cs-color-accent: var(--cs-dark-accent-color, #FFFFFF);
        --cs-color-border: var(--cs-dark-border-color, #2E2E2E);
        --cs-color-input: var(--cs-dark-input-background, #222222);
        --cs-color-input-contrast: var(--cs-dark-input-color, #FFFFFF);
        --cs-color-button: linear-gradient(180deg, var(--cs-dark-button-background-start, #434343) 0%, var(--cs-dark-button-background-end, #0F0F0F) 100%);
        --cs-color-button-contrast: var(--cs-dark-button-color, #FFFFFF);
        --cs-color-button-hover: linear-gradient(180deg, var(--cs-dark-button-hover-background-start, #383838) 0%, var(--cs-dark-button-hover-background-end, #010101) 100%);
        --cs-color-button-hover-contrast:var(--cs-dark-button-hover-color, #FFFFFF);
        --cs-color-overlay-background: var(--cs-dark-overlay-background-rgb, #000000);
        --cs-color-box-shadow-rgb: 16, 16, 16;
        --cs-color-contrast-50: #000000;
        --cs-color-contrast-100: #333333;
        --cs-color-contrast-200: #494949;
        --cs-color-contrast-300: #606060;
        --cs-color-contrast-400: #777777;
        --cs-color-contrast-500: #8e8e8e;
        --cs-color-contrast-600: #a4a4a4;
        --cs-color-contrast-700: #bbbbbb;
        --cs-color-contrast-800: #d2d2d2;
        --cs-color-contrast-900: #e9e9e9;
    }
}
html[data-scheme=inverse] {
    --cs-color-primary: #FFFFFF;
    --cs-color-primary-contrast: #222222;
    --cs-layout-background: #FFFFFF;
    --cs-color-secondary: #FFFFFF;
    --cs-color-secondary-contrast: #000000;
    --cs-color-button-secondary: linear-gradient(180deg, #FFFFFF 0%, #DEDDFF 100%);
    --cs-color-button-secondary-contrast: #5955D1;
    --cs-color-border: #2E2E2E;
    --cs-color-tag-color: var(--cs-light-primary-color, #29294B);
    --cs-color-contrast-50: rgba(255, 255, 255, 0.1);
    --cs-color-contrast-100: rgba(255, 255, 255, 0.1);
    --cs-color-contrast-200: rgba(255, 255, 255, 0.2);
    --cs-color-contrast-300: rgba(255, 255, 255, 0.3);
    --cs-color-contrast-400: rgba(255, 255, 255, 0.4);
    --cs-color-contrast-500: rgba(255, 255, 255, 0.5);
    --cs-color-contrast-600: rgba(255, 255, 255, 0.6);
    --cs-color-contrast-700: rgba(255, 255, 255, 0.7);
    --cs-color-contrast-800: rgba(255, 255, 255, 0.8);
    --cs-color-contrast-900: rgba(255, 255, 255, 0.9);
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=inverse] {
        --cs-color-primary: #FFFFFF;
        --cs-color-primary-contrast: #222222;
        --cs-layout-background: #FFFFFF;
        --cs-color-secondary: #FFFFFF;
        --cs-color-secondary-contrast: #000000;
        --cs-color-button-secondary: linear-gradient(180deg, #FFFFFF 0%, #DEDDFF 100%);
        --cs-color-button-secondary-contrast: #5955D1;
        --cs-color-border: #2E2E2E;
        --cs-color-tag-color: var(--cs-light-primary-color, #29294B);
        --cs-color-contrast-50: rgba(255, 255, 255, 0.1);
        --cs-color-contrast-100: rgba(255, 255, 255, 0.1);
        --cs-color-contrast-200: rgba(255, 255, 255, 0.2);
        --cs-color-contrast-300: rgba(255, 255, 255, 0.3);
        --cs-color-contrast-400: rgba(255, 255, 255, 0.4);
        --cs-color-contrast-500: rgba(255, 255, 255, 0.5);
        --cs-color-contrast-600: rgba(255, 255, 255, 0.6);
        --cs-color-contrast-700: rgba(255, 255, 255, 0.7);
        --cs-color-contrast-800: rgba(255, 255, 255, 0.8);
        --cs-color-contrast-900: rgba(255, 255, 255, 0.9);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=inverse] {
        --cs-color-primary: #FFFFFF;
        --cs-color-primary-contrast: #222222;
        --cs-layout-background: #FFFFFF;
        --cs-color-secondary: #FFFFFF;
        --cs-color-secondary-contrast: #000000;
        --cs-color-button-secondary: linear-gradient(180deg, #FFFFFF 0%, #DEDDFF 100%);
        --cs-color-button-secondary-contrast: #5955D1;
        --cs-color-border: #2E2E2E;
        --cs-color-tag-color: var(--cs-light-primary-color, #29294B);
        --cs-color-contrast-50: rgba(255, 255, 255, 0.1);
        --cs-color-contrast-100: rgba(255, 255, 255, 0.1);
        --cs-color-contrast-200: rgba(255, 255, 255, 0.2);
        --cs-color-contrast-300: rgba(255, 255, 255, 0.3);
        --cs-color-contrast-400: rgba(255, 255, 255, 0.4);
        --cs-color-contrast-500: rgba(255, 255, 255, 0.5);
        --cs-color-contrast-600: rgba(255, 255, 255, 0.6);
        --cs-color-contrast-700: rgba(255, 255, 255, 0.7);
        --cs-color-contrast-800: rgba(255, 255, 255, 0.8);
        --cs-color-contrast-900: rgba(255, 255, 255, 0.9);
    }
}
html[data-scheme] body {
    color: var(--cs-color-primary);
}

.cs-scheme-toggled[data-scheme] *,
.cs-scheme-toggled[data-scheme] *::after,
.cs-scheme-toggled[data-scheme] *::before {
    transition: none !important;
}

/*--------------------------------------------------------------
# Palette
--------------------------------------------------------------*/
:root,
html[data-scheme=light] {
    --cs-palette-color-blue: #59BACC;
    --cs-palette-color-green: #58AD69;
    --cs-palette-color-orange: #FFBC49;
    --cs-palette-color-red: #e32c26;
    --cs-palette-color-black: #000000;
    --cs-palette-color-white: #FFFFFF;
    --cs-palette-color-primary: #29294B;
    --cs-palette-color-secondary: #696981;
    --cs-palette-color-layout: #F1F1F1;
    --cs-palette-color-accent: #5955D1;
    --cs-palette-color-border: #E1E1E8;
    --cs-palette-color-divider: #E1E1E8;
    --cs-palette-color-gray-50: #f8f9fa;
    --cs-palette-color-gray-100: #f8f9fa;
    --cs-palette-color-gray-200: #E1E1E8;
    --wp--preset--shadow--standard: 0 5px 25px 0 rgba(114, 114, 255, 0.12);
    --wp--preset--color--accent: var(--cs-color-accent);
    --wp--preset--color--secondary: #696981;
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=light] {
        --cs-palette-color-blue: #59BACC;
        --cs-palette-color-green: #58AD69;
        --cs-palette-color-orange: #FFBC49;
        --cs-palette-color-red: #e32c26;
        --cs-palette-color-black: #000000;
        --cs-palette-color-white: #FFFFFF;
        --cs-palette-color-primary: #29294B;
        --cs-palette-color-secondary: #696981;
        --cs-palette-color-layout: #F1F1F1;
        --cs-palette-color-accent: #5955D1;
        --cs-palette-color-border: #E1E1E8;
        --cs-palette-color-divider: #E1E1E8;
        --cs-palette-color-gray-50: #f8f9fa;
        --cs-palette-color-gray-100: #f8f9fa;
        --cs-palette-color-gray-200: #E1E1E8;
        --wp--preset--shadow--standard: 0 5px 25px 0 rgba(114, 114, 255, 0.12);
        --wp--preset--color--accent: var(--cs-color-accent);
        --wp--preset--color--secondary: #696981;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=light] {
        --cs-palette-color-blue: #59BACC;
        --cs-palette-color-green: #58AD69;
        --cs-palette-color-orange: #FFBC49;
        --cs-palette-color-red: #e32c26;
        --cs-palette-color-black: #000000;
        --cs-palette-color-white: #FFFFFF;
        --cs-palette-color-primary: #29294B;
        --cs-palette-color-secondary: #696981;
        --cs-palette-color-layout: #F1F1F1;
        --cs-palette-color-accent: #5955D1;
        --cs-palette-color-border: #E1E1E8;
        --cs-palette-color-divider: #E1E1E8;
        --cs-palette-color-gray-50: #f8f9fa;
        --cs-palette-color-gray-100: #f8f9fa;
        --cs-palette-color-gray-200: #E1E1E8;
        --wp--preset--shadow--standard: 0 5px 25px 0 rgba(114, 114, 255, 0.12);
        --wp--preset--color--accent: var(--cs-color-accent);
        --wp--preset--color--secondary: #696981;
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] {
        --cs-palette-color-black: #FFFFFF;
        --cs-palette-color-white: #222222;
        --cs-palette-color-primary: #FFFFFF;
        --cs-palette-color-secondary: #CDCDCD;
        --cs-palette-color-layout: #222222;
        --cs-palette-color-accent: #FFFFFF;
        --cs-palette-color-border: #2E2E2E;
        --cs-palette-color-divider: #2E2E2E;
        --cs-palette-color-gray-50: #000000;
        --cs-palette-color-gray-100: #333333;
        --cs-palette-color-gray-200: #494949;
        --wp--preset--shadow--standard: 0 5px 25px 0 rgba(16, 16, 16, 0.12);
        --wp--preset--color--accent: var(--cs-color-accent);
    }
}
html[data-scheme=dark] {
    --cs-palette-color-black: #FFFFFF;
    --cs-palette-color-white: #222222;
    --cs-palette-color-primary: #FFFFFF;
    --cs-palette-color-secondary: #CDCDCD;
    --cs-palette-color-layout: #222222;
    --cs-palette-color-accent: #FFFFFF;
    --cs-palette-color-border: #2E2E2E;
    --cs-palette-color-divider: #2E2E2E;
    --cs-palette-color-gray-50: #000000;
    --cs-palette-color-gray-100: #333333;
    --cs-palette-color-gray-200: #494949;
    --wp--preset--shadow--standard: 0 5px 25px 0 rgba(16, 16, 16, 0.12);
    --wp--preset--color--accent: var(--cs-color-accent);
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] {
        --cs-palette-color-black: #FFFFFF;
        --cs-palette-color-white: #222222;
        --cs-palette-color-primary: #FFFFFF;
        --cs-palette-color-secondary: #CDCDCD;
        --cs-palette-color-layout: #222222;
        --cs-palette-color-accent: #FFFFFF;
        --cs-palette-color-border: #2E2E2E;
        --cs-palette-color-divider: #2E2E2E;
        --cs-palette-color-gray-50: #000000;
        --cs-palette-color-gray-100: #333333;
        --cs-palette-color-gray-200: #494949;
        --wp--preset--shadow--standard: 0 5px 25px 0 rgba(16, 16, 16, 0.12);
        --wp--preset--color--accent: var(--cs-color-accent);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] {
        --cs-palette-color-black: #FFFFFF;
        --cs-palette-color-white: #222222;
        --cs-palette-color-primary: #FFFFFF;
        --cs-palette-color-secondary: #CDCDCD;
        --cs-palette-color-layout: #222222;
        --cs-palette-color-accent: #FFFFFF;
        --cs-palette-color-border: #2E2E2E;
        --cs-palette-color-divider: #2E2E2E;
        --cs-palette-color-gray-50: #000000;
        --cs-palette-color-gray-100: #333333;
        --cs-palette-color-gray-200: #494949;
        --wp--preset--shadow--standard: 0 5px 25px 0 rgba(16, 16, 16, 0.12);
        --wp--preset--color--accent: var(--cs-color-accent);
    }
}
[data-scheme=inverse] {
    --cs-palette-color-black: #FFFFFF;
    --cs-palette-color-white: #222222;
    --cs-palette-color-primary: #FFFFFF;
    --cs-palette-color-border: #343434;
    --cs-palette-color-divider: #494949;
    --cs-palette-color-gray-50: rgba(255, 255, 255, 0.1);
    --cs-palette-color-gray-100: rgba(255, 255, 255, 0.1);
    --cs-palette-color-gray-200: rgba(255, 255, 255, 0.2);
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=inverse] {
        --cs-palette-color-black: #FFFFFF;
        --cs-palette-color-white: #222222;
        --cs-palette-color-primary: #FFFFFF;
        --cs-palette-color-border: #343434;
        --cs-palette-color-divider: #494949;
        --cs-palette-color-gray-50: rgba(255, 255, 255, 0.1);
        --cs-palette-color-gray-100: rgba(255, 255, 255, 0.1);
        --cs-palette-color-gray-200: rgba(255, 255, 255, 0.2);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=inverse] {
        --cs-palette-color-black: #FFFFFF;
        --cs-palette-color-white: #222222;
        --cs-palette-color-primary: #FFFFFF;
        --cs-palette-color-border: #343434;
        --cs-palette-color-divider: #494949;
        --cs-palette-color-gray-50: rgba(255, 255, 255, 0.1);
        --cs-palette-color-gray-100: rgba(255, 255, 255, 0.1);
        --cs-palette-color-gray-200: rgba(255, 255, 255, 0.2);
    }
}
/* Color Options
--------------------------------------------- */
.has-blue-color {
    color: var(--cs-palette-color-blue) !important;
}

.has-blue-background-color {
    background-color: var(--cs-palette-color-blue) !important;
}

.has-green-color {
    color: var(--cs-palette-color-green) !important;
}

.has-green-background-color {
    background-color: var(--cs-palette-color-green) !important;
}

.has-orange-color {
    color: var(--cs-palette-color-orange) !important;
}

.has-orange-background-color {
    background-color: var(--cs-palette-color-orange) !important;
}

.has-red-color {
    color: var(--cs-palette-color-red) !important;
}

.has-red-background-color {
    background-color: var(--cs-palette-color-red) !important;
}

.has-black-color {
    color: var(--cs-palette-color-black) !important;
}

.has-black-background-color {
    background-color: var(--cs-palette-color-black) !important;
}

.has-white-color {
    color: var(--cs-palette-color-white) !important;
}

.has-white-background-color {
    background-color: var(--cs-palette-color-white) !important;
}

.has-primary-color {
    color: var(--cs-palette-color-primary) !important;
}

.has-primary-background-color {
    background-color: var(--cs-palette-color-primary) !important;
}

.has-secondary-color {
    color: var(--cs-palette-color-secondary) !important;
}

.has-secondary-background-color {
    background-color: var(--cs-palette-color-secondary) !important;
}

.has-layout-color {
    color: var(--cs-palette-color-layout) !important;
}

.has-layout-background-color {
    background-color: var(--cs-palette-color-layout) !important;
}

.has-accent-color {
    color: var(--cs-palette-color-accent) !important;
}

.has-accent-background-color {
    background-color: var(--cs-palette-color-accent) !important;
}

.has-gray-50-color {
    color: var(--cs-palette-color-gray-50) !important;
}

.has-gray-50-background-color {
    background-color: var(--cs-palette-color-gray-50) !important;
}

.has-gray-100-color {
    color: var(--cs-palette-color-gray-100) !important;
}

.has-gray-100-background-color {
    background-color: var(--cs-palette-color-gray-100) !important;
}

.has-gray-200-color {
    color: var(--cs-palette-color-gray-200) !important;
}

.has-gray-200-background-color {
    background-color: var(--cs-palette-color-gray-200) !important;
}

/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
@font-face {
    font-family: "cs-icons";
    src: url("./assets/static/icon-fonts/icons.ttf") format("truetype"), url("./assets/static/icon-fonts/icons.woff") format("woff"), url("./assets/static/icon-fonts/icons.svg#icons") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
[class^=cs-icon-],
[class*=" cs-icon-"] {
    font-family: "cs-icons" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cs-icon-new-window:before {
    content: "\e932";
}

.cs-icon-not-found:before {
    content: "\e930";
}

.cs-icon-location-fill:before {
    content: "\e931";
}

.cs-icon-location:before {
    content: "\e92f";
}

.cs-icon-linkedIn:before {
    content: "\e92e";
}

.cs-icon-facebook:before {
    content: "\e91d";
}

.cs-icon-instagram:before {
    content: "\e91e";
}

.cs-icon-link:before {
    content: "\e920";
}

.cs-icon-pinterest:before {
    content: "\e921";
}

.cs-icon-snapchat:before {
    content: "\e923";
}

.cs-icon-tiktok:before {
    content: "\e924";
}

.cs-icon-tumblr:before {
    content: "\e925";
}

.cs-icon-vimeo:before {
    content: "\e926";
}

.cs-icon-youtube .path1:before {
    content: "\e928";
    color: rgb(68, 68, 68);
}

.cs-icon-youtube .path2:before {
    content: "\e929";
    margin-left: -1em;
    color: rgb(255, 255, 255);
}

.cs-icon-comment-o:before {
    content: "\f0e5";
}

.cs-icon-comments-o:before {
    content: "\f0e6";
}

.cs-icon-mail-reply:before {
    content: "\f112";
}

.cs-icon-reply1:before {
    content: "\f112";
}

.cs-icon-menu1:before {
    content: "\e91f";
}

.cs-icon-filter:before {
    content: "\e915";
}

.cs-icon-arrow-down:before {
    content: "\e914";
}

.cs-icon-arrow-short-left:before {
    content: "\e916";
}

.cs-icon-arrow-short-right:before {
    content: "\e919";
}

.cs-icon-alert:before {
    content: "\e901";
}

.cs-icon-cart:before {
    content: "\e902";
}

.cs-icon-dark-mode:before {
    content: "\e903";
}

.cs-icon-download:before {
    content: "\e905";
}

.cs-icon-info:before {
    content: "\e907";
}

.cs-icon-light-mode:before {
    content: "\e908";
}

.cs-icon-menu:before {
    content: "\e909";
}

.cs-icon-reference:before {
    content: "\e90b";
}

.cs-icon-reply-2:before {
    content: "\e910";
}

.cs-icon-search:before {
    content: "\e911";
}

.cs-icon-success:before {
    content: "\e912";
}

.cs-icon-twitter-x:before {
    content: "\e913";
}

.cs-icon-x:before {
    content: "\e92b";
}

.cs-icon-byuser:before {
    content: "\e942";
}

.cs-icon-reply:before {
    content: "\e940";
}

.cs-icon-arrow-long-left:before {
    content: "\e917";
}

.cs-icon-arrow-long-right:before {
    content: "\e92c";
}

.cs-icon-comments:before {
    content: "\e92d";
}

.cs-icon-timer:before {
    content: "\e91a";
}

.cs-icon-image:before {
    content: "\e92a";
}

.cs-icon-activity:before {
    content: "\e900";
}

.cs-icon-arrow-left:before {
    content: "\e904";
}

.cs-icon-arrow-right:before {
    content: "\e906";
}

.cs-icon-award:before {
    content: "\e90a";
}

.cs-icon-chevron-down:before {
    content: "\e90c";
}

.cs-icon-chevron-left:before {
    content: "\e90d";
}

.cs-icon-chevron-right:before {
    content: "\e90e";
}

.cs-icon-chevron-up:before {
    content: "\e90f";
}

.cs-icon-message-square:before {
    content: "\e918";
}

.cs-icon-music:before {
    content: "\e91b";
}

.cs-icon-play:before {
    content: "\e91c";
}

.cs-icon-watch:before {
    content: "\e922";
}

.cs-icon-zap:before {
    content: "\e927";
}

.cs-icon-eye:before {
    content: "\e9ce";
}

/*--------------------------------------------------------------
## Reboot
--------------------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    background-color: #ffffff;
    color: #000000;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr, .wp-block-separator {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 1rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    text-decoration: underline;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: var(--cs-color-secondary);
    text-decoration: underline;
    background-color: transparent;
    transition: 0.25s;
}
a:hover {
    color: var(--cs-color-primary);
    text-decoration: none;
}

a:not([href]) {
    color: inherit;
    text-decoration: none;
}
a:not([href]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

table, .wp-block-table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    border-radius: 0;
}

button:focus {
    outline: 1px dotted;
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

select {
    word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type=radio],
input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

.screen-reader-text, .sr-only {
    display: none;
}

/*--------------------------------------------------------------
## Typography
--------------------------------------------------------------*/
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-family: var(--cs-font-base-family);
}
@media (min-width: 1250px) {
    html {
        scrollbar-gutter: stable;
    }
}

body {
    font-family: var(--cs-font-base-family), sans-serif;
    font-size: var(--cs-font-base-size);
    font-weight: var(--cs-font-base-weight);
    font-style: var(--cs-font-base-style);
    line-height: var(--cs-font-base-line-height);
    letter-spacing: var(--cs-font-base-letter-spacing);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    word-wrap: break-word;
    color: var(--cs-color-primary);
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
}

@media (max-width: 767.98px) {
    h1, .h1 {
        font-size: var(--cs-heading-2-font-size);
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    h1, .h1 {
        font-size: calc(var(--cs-heading-1-font-size) - 0.5rem);
    }
}
@media (min-width: 1250px) {
    h1, .h1 {
        font-size: var(--cs-heading-1-font-size);
    }
}

@media (max-width: 767.98px) {
    h2, .h2 {
        font-size: var(--cs-heading-3-font-size);
    }
}
@media (min-width: 768px) {
    h2, .h2 {
        font-size: var(--cs-heading-2-font-size);
    }
}

@media (max-width: 767.98px) {
    h3, .h3 {
        font-size: var(--cs-heading-4-font-size);
    }
}
@media (min-width: 768px) {
    h3, .h3 {
        font-size: var(--cs-heading-3-font-size);
    }
}

@media (max-width: 767.98px) {
    h4, .h4 {
        font-size: var(--cs-heading-5-font-size);
    }
}
@media (min-width: 768px) {
    h4, .h4 {
        font-size: var(--cs-heading-4-font-size);
    }
}

@media (max-width: 767.98px) {
    h5, .h5 {
        font-size: var(--cs-heading-6-font-size);
    }
}
@media (min-width: 768px) {
    h5, .h5 {
        font-size: var(--cs-heading-5-font-size);
    }
}

@media (max-width: 767.98px) {
    h6, .h6 {
        font-size: var(0.875rem);
    }
}
@media (min-width: 768px) {
    h6, .h6 {
        font-size: var(--cs-heading-6-font-size);
    }
}

hr, .wp-block-separator {
    border: 0;
    border-top: 1px solid var(--cs-color-border);
}

small, .small {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}

mark, .mark {
    padding: 0.2em;
    background-color: #fcf8e3;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}

figcaption {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
}

cite,
caption {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
}

time {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
}

.cs-section-heading {
    margin-bottom: 0;
}
.cs-section-heading:not(:first-child) {
    margin-top: 0.5rem;
}

.cs-section-heading-styling {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}

.cs-section-heading-widget {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}

/*--------------------------------------------------------------
## Tables
--------------------------------------------------------------*/
table, .wp-block-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    text-align: left;
}
table th, .wp-block-table th,
table td,
.wp-block-table td {
    padding: 0.75rem;
    vertical-align: middle;
    border: none;
    border-top: 1px solid var(--cs-color-border);
}
table thead, .wp-block-table thead {
    border-bottom: 2px solid var(--cs-color-border);
}
table tfoot, .wp-block-table tfoot {
    border-top: 2px solid var(--cs-color-border);
}
table tbody + tbody, .wp-block-table tbody + tbody {
    border-top: 2px solid var(--cs-color-border);
}
table th, .wp-block-table th,
table td,
.wp-block-table td {
    border: 1px solid var(--cs-color-border);
}
table thead th, .wp-block-table thead th,
table thead td,
.wp-block-table thead td {
    border-bottom-width: 1px;
}
table:not(.has-small-font-size, .has-medium-font-size, .has-large-font-size, .has-x-large-font-size) th, .wp-block-table:not(.has-small-font-size, .has-medium-font-size, .has-large-font-size, .has-x-large-font-size) th {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
}
table.has-small-font-size th, .has-small-font-size.wp-block-table th, table.has-medium-font-size th, .has-medium-font-size.wp-block-table th, table.has-large-font-size th, .has-large-font-size.wp-block-table th, table.has-x-large-font-size th, .has-x-large-font-size.wp-block-table th {
    font-size: inherit;
    line-height: 1.2;
}
table[style*=font-style] th, [style*=font-style].wp-block-table th {
    font-style: inherit;
}
table[style*=font-weight] th, [style*=font-weight].wp-block-table th {
    font-weight: inherit;
}
table[style*=line-height] th, [style*=line-height].wp-block-table th {
    line-height: inherit;
}
table[style*=letter-spacing] th, [style*=letter-spacing].wp-block-table th {
    letter-spacing: inherit;
}
table[style*=text-transform] th, [style*=text-transform].wp-block-table th {
    text-transform: inherit;
}

.wp-block-table.is-style-stripes {
    border-bottom: none;
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: var(--cs-color-contrast-100);
}
.wp-block-table figcaption {
    padding: 0.75rem 0;
    color: var(--cs-color-primary);
    text-align: left;
}
.wp-block-table figcaption:not(:first-child) {
    margin-top: 0;
}

.cs-table-simple-bordered tr th,
.cs-table-simple-bordered tr td {
    border: none;
    border-top: 1px solid var(--cs-color-border);
}

.cs-table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--cs-color-contrast-100);
}

@media (max-width: 575.98px) {
    .cs-table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}
@media (max-width: 767.98px) {
    .cs-table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}
@media (max-width: 991.98px) {
    .cs-table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}
@media (max-width: 1247.98px) {
    .cs-table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}
.cs-table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

/*--------------------------------------------------------------
## Entry
--------------------------------------------------------------*/
.cs-main-content .entry-content > *:last-child:after,
.cs-main-content .entry-summary > *:last-child:after {
    content: "";
    clear: both;
    display: table;
}
.cs-main-content .entry-content > *,
.cs-main-content .entry-content .wp-block-column > *,
.cs-main-content .entry-content .wp-block-media-text__content > *,
.cs-main-content .entry-summary > *,
.cs-main-content .entry-summary .wp-block-column > *,
.cs-main-content .entry-summary .wp-block-media-text__content > * {
    margin-top: 28px;
    margin-bottom: 28px;
}
.cs-main-content .entry-content > *:first-child,
.cs-main-content .entry-content .wp-block-column > *:first-child,
.cs-main-content .entry-content .wp-block-media-text__content > *:first-child,
.cs-main-content .entry-summary > *:first-child,
.cs-main-content .entry-summary .wp-block-column > *:first-child,
.cs-main-content .entry-summary .wp-block-media-text__content > *:first-child {
    margin-top: 0;
}
.cs-main-content .entry-content > *:last-child,
.cs-main-content .entry-content .wp-block-column > *:last-child,
.cs-main-content .entry-content .wp-block-media-text__content > *:last-child,
.cs-main-content .entry-summary > *:last-child,
.cs-main-content .entry-summary .wp-block-column > *:last-child,
.cs-main-content .entry-summary .wp-block-media-text__content > *:last-child {
    margin-bottom: 0;
}
.cs-main-content .entry-content > *:has(+ ul),
.cs-main-content .entry-content .wp-block-column > *:has(+ ul),
.cs-main-content .entry-content .wp-block-media-text__content > *:has(+ ul),
.cs-main-content .entry-summary > *:has(+ ul),
.cs-main-content .entry-summary .wp-block-column > *:has(+ ul),
.cs-main-content .entry-summary .wp-block-media-text__content > *:has(+ ul) {
    margin-bottom: 0;
}
.cs-main-content .entry-content .wp-block-heading,
.cs-main-content .entry-summary .wp-block-heading {
    margin-top: 28px;
    margin-bottom: 14px;
    clear: both;
}
.cs-main-content .entry-content .wp-block-heading:first-child,
.cs-main-content .entry-summary .wp-block-heading:first-child {
    margin-top: 0;
}
.cs-main-content .entry-content .wp-block-heading + *,
.cs-main-content .entry-summary .wp-block-heading + * {
    margin-top: 14px;
}
.cs-main-content .entry-content .wp-block-heading + .wp-block-heading,
.cs-main-content .entry-summary .wp-block-heading + .wp-block-heading {
    margin-top: 14px;
}

.cs-main-content:not(:has(.woocommerce-area)) .entry-content ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list),
.cs-main-content:not(:has(.woocommerce-area)) .entry-summary ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list) {
    padding-left: 28px;
    padding-right: 16px;
    list-style-type: disc;
}
.cs-main-content:not(:has(.woocommerce-area)) .entry-content ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list) li,
.cs-main-content:not(:has(.woocommerce-area)) .entry-summary ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list) li {
    margin-bottom: 0.5rem;
}
.cs-main-content:not(:has(.woocommerce-area)) .entry-content ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list) li::marker,
.cs-main-content:not(:has(.woocommerce-area)) .entry-summary ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list) li::marker {
    font-size: 0.9375rem;
}
.cs-main-content:not(:has(.woocommerce-area)) .entry-content ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list):not(.has-text-color) li::marker,
.cs-main-content:not(:has(.woocommerce-area)) .entry-summary ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list):not(.has-text-color) li::marker {
    color: var(--cs-color-accent);
}
.cs-main-content:not(:has(.woocommerce-area)) .entry-content ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list).has-text-color li::marker,
.cs-main-content:not(:has(.woocommerce-area)) .entry-summary ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list).has-text-color li::marker {
    color: inherit;
}
.cs-main-content:not(:has(.woocommerce-area)) .entry-content ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list).wp-block-list,
.cs-main-content:not(:has(.woocommerce-area)) .entry-summary ul:not(:has(.woocommerce-MyAccount-navigation-link),
.wp-block-post,
.wp-block-archives,
.wp-block-categories,
.wp-block-latest-posts,
.wp-block-social-links,
.wp-block-post-template,
.blocks-gallery-grid,
.wc-block-grid__products,
.wp-block-navigation,
.wp-block-navigation .wp-block-page-list).wp-block-list {
    margin-top: 14px;
}

.cs-main-content .entry-content .entry-content,
.cs-main-content .entry-content .entry-summary,
.cs-main-content .entry-summary .entry-content,
.cs-main-content .entry-summary .entry-summary {
    margin: inherit;
    max-width: inherit;
    padding: inherit;
}
@media (min-width: 576px) {
    .cs-main-content .entry-content .entry-content,
    .cs-main-content .entry-content .entry-summary,
    .cs-main-content .entry-summary .entry-content,
    .cs-main-content .entry-summary .entry-summary {
        margin: inherit;
        max-width: inherit;
        padding: inherit;
    }
}
.cs-main-content .entry-content > .alignleft, .cs-main-content .entry-content > .alignright,
.cs-main-content .entry-summary > .alignleft,
.cs-main-content .entry-summary > .alignright {
    margin-top: 0;
}

/*--------------------------------------------------------------
## Entry Content
--------------------------------------------------------------*/
.entry-content {
    line-height: var(--cs-font-post-content-line-height);
    color: var(--cs-color-primary);
}
.entry-content b,
.entry-content strong {
    color: var(--cs-color-primary);
}
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6,
.entry-content .h1, .entry-content .h2, .entry-content .h3, .entry-content .h4, .entry-content .h5, .entry-content .h6 {
    color: var(--cs-color-primary);
}
.entry-content h1:not(:first-child), .entry-content h2:not(:first-child), .entry-content h3:not(:first-child), .entry-content h4:not(:first-child), .entry-content h5:not(:first-child), .entry-content h6:not(:first-child),
.entry-content .h1:not(:first-child), .entry-content .h2:not(:first-child), .entry-content .h3:not(:first-child), .entry-content .h4:not(:first-child), .entry-content .h5:not(:first-child), .entry-content .h6:not(:first-child) {
    margin-top: 28px;
}
@media (min-width: 1250px) {
    .entry-content h1:not(:first-child), .entry-content h2:not(:first-child), .entry-content h3:not(:first-child), .entry-content h4:not(:first-child), .entry-content h5:not(:first-child), .entry-content h6:not(:first-child),
    .entry-content .h1:not(:first-child), .entry-content .h2:not(:first-child), .entry-content .h3:not(:first-child), .entry-content .h4:not(:first-child), .entry-content .h5:not(:first-child), .entry-content .h6:not(:first-child) {
        margin-top: 36px;
    }
}
.entry-content > blockquote {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: none;
    margin-top: 36px;
    margin-bottom: 36px;
    padding: 32px;
    border-radius: var(--cs-thumbnail-border-radius);
    background: var(--cs-layout-background);
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    font-size: var(--cs-heading-4-font-size);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .entry-content > blockquote {
        background: var(--cs-layout-background);
        color: var(--cs-color-primary);
    }
}
html[data-scheme=dark] .entry-content > blockquote {
    background: var(--cs-layout-background);
    color: var(--cs-color-primary);
}
.entry-content > blockquote:before {
    content: "“";
    display: inline-block;
    font-size: var(--cs-heading-1-font-size);
    position: absolute;
    top: 19px;
    left: 31px;
}
.entry-content > blockquote p:first-child {
    font-size: inherit;
    margin-top: 1.875rem;
}
.entry-content > blockquote p:last-child {
    margin-bottom: 0;
}
.entry-content > blockquote .wp-block-heading:first-child {
    margin-top: 1.875rem !important;
}
.entry-content > blockquote .wp-block-heading:last-child {
    margin-bottom: 0 !important;
}
.entry-content > blockquote cite {
    font-family: var(--cs-font-section-headings-family), sans-serif;
    font-size: var(--cs-font-section-headings-size);
    font-weight: var(--cs-font-section-headings-weight);
    font-style: var(--cs-font-section-headings-style);
    letter-spacing: var(--cs-font-section-headings-letter-spacing);
    text-transform: var(--cs-font-section-headings-text-transform);
    line-height: var(--cs-font-section-headings-line-height);
    display: block;
    margin-top: 1rem;
}
.entry-content code {
    font-family: inherit;
    font-size: inherit;
}
.entry-content pre {
    background-color: var(--cs-color-contrast-50);
    padding: 20px;
}
.entry-content .wp-caption-dd {
    color: var(--cs-color-primary);
    margin-left: 0;
}
.entry-content video,
.entry-content iframe,
.entry-content object,
.entry-content embed {
    max-width: 100%;
    overflow: hidden;
}

.alignnone {
    max-width: 100%;
}

.alignleft {
    float: none;
    margin-right: 0;
}
.alignleft:first-child + * {
    margin-top: 0;
}
@media (min-width: 576px) {
    .alignleft {
        float: left;
        margin-right: 2rem;
    }
}

.alignright {
    float: none;
    margin-left: 0;
}
.alignright:first-child + * {
    margin-top: 0;
}
@media (min-width: 576px) {
    .alignright {
        float: right;
        margin-left: 2rem;
    }
}

.aligncenter {
    display: block;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.aligncenter .wp-caption-text,
.aligncenter .wp-caption-dd {
    text-align: center;
}

img.alignleft,
img.alignright {
    margin-bottom: 1rem;
}

.wp-block-group.alignleft,
.wp-block-group.alignright,
.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.aligncenter,
.wp-block-cover.alignright {
    max-width: 100%;
}
@media (min-width: 576px) {
    .wp-block-group.alignleft,
    .wp-block-group.alignright,
    .wp-block-pullquote.alignleft,
    .wp-block-pullquote.alignright,
    .wp-block-cover-image.alignleft,
    .wp-block-cover-image.alignright,
    .wp-block-cover.alignleft,
    .wp-block-cover.aligncenter,
    .wp-block-cover.alignright {
        max-width: calc(50% - 1rem);
    }
}

.wp-block-group.alignwide.is-content-justification-left .wp-block-group__inner-container, .wp-block-group.alignfull.is-content-justification-left .wp-block-group__inner-container {
    margin-left: 0;
    margin-right: auto;
}
.wp-block-group.alignwide.is-content-justification-right .wp-block-group__inner-container, .wp-block-group.alignfull.is-content-justification-right .wp-block-group__inner-container {
    margin-left: auto;
    margin-right: 0;
}
.wp-block-group.alignwide.is-content-justification-left .wp-block-group__inner-container, .wp-block-group.alignwide.is-content-justification-right .wp-block-group__inner-container {
    max-width: var(--cs-entry-content-large-width);
}
.wp-block-group.alignfull.is-content-justification-left .wp-block-group__inner-container, .wp-block-group.alignfull.is-content-justification-right .wp-block-group__inner-container {
    max-width: 50%;
}

/** =========== Blocks =========== */
.wp-block-columns > *:first-child {
    margin-top: 0;
}
.wp-block-columns > *:last-child {
    margin-bottom: 0;
}
.wp-block-columns .wp-block-column > *:first-child {
    margin-top: 0;
}
.wp-block-columns .wp-block-column > *:last-child {
    margin-bottom: 0;
}

p.has-background {
    padding: 1.5rem 2rem;
}

p.wp-block-subhead {
    font-size: 1.5rem;
    color: var(--cs-color-primary);
    opacity: 1;
}

.wp-block-separator.is-style-dots {
    border-top: none;
}
.wp-block-separator:not(.is-style-dots) {
    border-top: none;
    border-bottom: 2px solid currentColor;
}
.wp-block-separator.is-style-wide {
    max-width: var(--cs-editor-width-wide);
}
.wp-block[data-align=wide] .wp-block-separator.is-style-wide {
    max-width: var(--cs-editor-width-wide);
}
.wp-block[data-align=full] .wp-block-separator.is-style-wide {
    max-width: var(--cs-editor-width-full);
}
.wp-block[data-align=center] .wp-block-separator.is-style-wide {
    max-width: var(--cs-editor-width-wide);
}
.wp-block-separator:not(.is-style-dots):not(.is-style-wide):not(.alignwide):not(.alignwide):not(.alignfull) {
    max-width: 100px;
}
.wp-block[data-align=wide] .wp-block-separator:not(.is-style-dots):not(.is-style-wide):not(.alignwide):not(.alignwide):not(.alignfull) {
    max-width: var(--cs-editor-width-wide);
}
.wp-block[data-align=full] .wp-block-separator:not(.is-style-dots):not(.is-style-wide):not(.alignwide):not(.alignwide):not(.alignfull) {
    max-width: var(--cs-editor-width-full);
}

.wp-block-buttons[style*=font-style] .wp-block-button__link {
    font-style: inherit;
}
.wp-block-buttons[style*=font-weight] .wp-block-button__link {
    font-weight: inherit;
}
.wp-block-buttons[style*=line-height] .wp-block-button__link {
    line-height: inherit;
}
.wp-block-buttons[style*=letter-spacing] .wp-block-button__link {
    letter-spacing: inherit;
}
.wp-block-buttons[style*=text-transform] .wp-block-button__link {
    text-transform: inherit;
}

.wp-block-button.alignleft {
    text-align: left;
}
.wp-block-button.alignright {
    text-align: right;
}
.wp-block-button.aligncenter {
    text-align: center;
}
.wp-block-button .wp-block-button__link {
    text-align: center;
    white-space: normal;
    vertical-align: middle;
    user-select: none;
    transition: 0.25s;
    padding: 0.75rem 1.5rem;
    border-radius: var(--cs-button-border-radius);
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-button .wp-block-button__link:not([href]) {
    cursor: default;
}
.wp-block-button[style*=font-style] .wp-block-button__link {
    font-style: inherit;
}
.wp-block-button[style*=font-weight] .wp-block-button__link {
    font-weight: inherit;
}
.wp-block-button[style*=line-height] .wp-block-button__link {
    line-height: inherit;
}
.wp-block-button[style*=letter-spacing] .wp-block-button__link {
    letter-spacing: inherit;
}
.wp-block-button[style*=text-transform] .wp-block-button__link {
    text-transform: inherit;
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background, .has-link-color a) {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-background, .has-link-color a):hover {
    background: var(--cs-color-button-hover);
    color: var(--cs-color-button-hover-contrast);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-text-color, .has-link-color a) {
    color: var(--cs-color-button-contrast);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:not(.has-text-color, .has-link-color a):hover {
    color: var(--cs-color-button-hover-contrast);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
    opacity: 0.8;
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background, .has-link-color a):hover {
    opacity: 0.8;
    color: var(--cs-color-button);
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color, .has-link-color a) {
    color: var(--cs-color-button);
}
.wp-block-button.is-style-outline .wp-block-button__link:not(.has-text-color, .has-link-color a):hover {
    color: var(--cs-color-button);
    opacity: 0.8;
}

.wp-block-file .wp-block-file__button {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    transition: 0.25s;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    padding: 0.5rem 1rem;
    border-radius: var(--cs-button-border-radius);
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-file .wp-block-file__button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cs-color-button-hover);
    transition: opacity 0.25s ease;
    z-index: -1;
    opacity: 0;
}
.wp-block-file .wp-block-file__button:focus::before, .wp-block-file .wp-block-file__button:hover::before {
    opacity: 1;
}
.wp-block-file .wp-block-file__button:focus, .wp-block-file .wp-block-file__button:hover {
    color: var(--cs-color-button-hover-contrast);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
    outline: none;
}
.wp-block-file .wp-block-file__button:disabled, .wp-block-file .wp-block-file__button:disabled[disabled] {
    color: var(--cs-color-button-contrast);
    opacity: 0.5;
    padding: 0.5rem 1rem;
}
.wp-block-file .wp-block-file__button:disabled:hover, .wp-block-file .wp-block-file__button:disabled[disabled]:hover {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
}

.wp-block-code,
pre.wp-block-code,
code.wp-block-code {
    background-color: var(--cs-layout-background);
    padding: 1rem 1.5rem;
    font-family: Menlo, Consolas, monaco, monospace;
    line-height: var(--cs-font-base-line-height);
    font-size: 0.875rem;
    color: var(--cs-color-secondary);
    white-space: pre-wrap;
    border-radius: 0;
}
.wp-block-code:not([style*=border-width]),
pre.wp-block-code:not([style*=border-width]),
code.wp-block-code:not([style*=border-width]) {
    border: none;
}
.wp-block-code[style*=border-width],
pre.wp-block-code[style*=border-width],
code.wp-block-code[style*=border-width] {
    border-style: solid;
}
.wp-block-code .editor-plain-text,
pre.wp-block-code .editor-plain-text,
code.wp-block-code .editor-plain-text {
    background-color: transparent;
}

.wp-block-preformatted,
pre.wp-block-preformatted,
code.wp-block-preformatted {
    box-sizing: border-box;
    background-color: var(--cs-layout-background);
    padding: 1rem 1.5rem;
}
.wp-block-preformatted pre,
pre.wp-block-preformatted pre,
code.wp-block-preformatted pre {
    padding: 0;
}

.wp-block-preformatted,
.wp-block-preformatted pre {
    font-family: Menlo, Consolas, monaco, monospace;
    line-height: var(--cs-font-base-line-height);
    font-size: 0.875rem;
    color: var(--cs-color-secondary);
    white-space: pre-wrap;
}

.wp-block-verse,
pre.wp-block-verse,
code.wp-block-verse {
    box-sizing: border-box;
    background-color: var(--cs-layout-background);
    padding: 1rem 1.5rem;
}
.wp-block-verse pre,
pre.wp-block-verse pre,
code.wp-block-verse pre {
    padding: 0;
}

.wp-block-verse,
.wp-block-verse pre {
    font-family: Menlo, Consolas, monaco, monospace;
    line-height: var(--cs-font-base-line-height);
    font-size: 0.875rem;
    color: var(--cs-color-secondary);
    overflow: auto;
}

.wp-block-audio figcaption {
    color: var(--cs-color-primary);
    text-align: left;
}

.wp-block-embed figcaption {
    color: var(--cs-color-primary);
    text-align: left;
}

.wp-block-video video {
    width: 100%;
}
.wp-block-video.aligncenter {
    margin-left: 1rem;
    margin-right: 1rem;
}

.wp-block-media-text p:last-child {
    margin-bottom: 0;
}
@media (max-width: 575.98px) {
    .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
        padding-top: 8%;
        padding-bottom: 0;
    }
    .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__content {
        padding-top: 0;
        padding-bottom: 8%;
    }
}

.wp-block-image figcaption {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    margin: 0.625rem auto 0 auto;
    color: var(--cs-color-secondary);
}
.wp-block-image:not(.is-style-rounded) img {
    border-radius: var(--cs-thumbnail-border-radius);
}
.wp-block[data-align=full] .wp-block-image img {
    border-radius: 0;
}
.wp-block-image .alignleft, .wp-block-image.alignleft {
    float: none;
    margin-right: 0;
}
@media (min-width: 576px) {
    .wp-block-image .alignleft, .wp-block-image.alignleft {
        float: left;
        margin-right: 2rem;
    }
}
.wp-block-image .alignright, .wp-block-image.alignright {
    float: none;
    margin-left: 0;
}
@media (min-width: 576px) {
    .wp-block-image .alignright, .wp-block-image.alignright {
        float: right;
        margin-left: 2rem;
    }
}
@media (max-width: 575.98px) {
    .wp-block-image .alignleft,
    .wp-block-image .alignright {
        margin-left: auto;
        margin-right: auto;
    }
}

.wp-block-post-featured-image.alignleft img {
    max-width: calc(100% - 2rem);
    margin-right: 2rem;
}
.wp-block-post-featured-image.aligncenter img {
    max-width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
}
.wp-block-post-featured-image.alignright img {
    max-width: calc(100% - 2rem);
    margin-left: 2rem;
}
.wp-block-post-featured-image img.has-border-color,
.wp-block-post-featured-image img[style*=border-width] {
    border-style: solid;
}

.wp-block-gallery.has-nested-images {
    display: flex;
    padding: 0;
}
.wp-block-gallery.has-nested-images .wp-block-image {
    position: relative;
}
.wp-block-gallery.has-nested-images .wp-block-image figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 0 0.5rem 0.5rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7019607843), rgba(0, 0, 0, 0.3019607843) 70%, rgba(0, 0, 0, 0));
    color: var(--cs-color-primary-contrast);
    max-height: 60%;
    overflow: auto;
    scrollbar-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    scrollbar-gutter: stable both-edges;
    scrollbar-width: thin;
    text-align: center;
    box-sizing: border-box;
    will-change: transform;
    border-radius: 0 0 var(--cs-thumbnail-border-radius) var(--cs-thumbnail-border-radius);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block-gallery.has-nested-images .wp-block-image figcaption {
        color: var(--cs-color-primary);
    }
}
[data-scheme=dark] .wp-block-gallery.has-nested-images .wp-block-image figcaption {
    color: var(--cs-color-primary);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .wp-block-gallery.has-nested-images .wp-block-image figcaption {
        color: var(--cs-color-primary);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .wp-block-gallery.has-nested-images .wp-block-image figcaption {
        color: var(--cs-color-primary);
    }
}
@media (min-width: 576px) {
    .wp-block-gallery.has-nested-images .wp-block-image .alignright {
        margin-top: 0;
        margin-bottom: 0;
    }
    .wp-block-gallery.has-nested-images .wp-block-image .alignright figcaption {
        width: calc( 100% - 2rem );
        margin-left: 2rem;
    }
    .wp-block-gallery.has-nested-images .wp-block-image .alignleft {
        margin-top: 0;
        margin-bottom: 0;
    }
    .wp-block-gallery.has-nested-images .wp-block-image .alignleft figcaption {
        width: calc( 100% - 2rem );
        margin-right: 2rem;
    }
}
.wp-block-gallery.has-nested-images img {
    border-radius: var(--cs-thumbnail-border-radius);
}
.wp-block-gallery.has-nested-images.aligncenter {
    max-width: 420px;
}
.wp-block-gallery.alignfull figcaption {
    max-width: 100% !important;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.wp-block-gallery.alignleft {
    margin-right: 2rem;
}
.wp-block-gallery.alignright {
    margin-left: 2rem;
}

.wp-block-cover .wp-block-cover__inner-container,
.wp-block-cover-image .wp-block-cover__inner-container {
    width: 100%;
}
.wp-block-cover.has-background-dim,
.wp-block-cover-image.has-background-dim {
    padding: 40px;
}
.wp-block-cover.has-background-dim a,
.wp-block-cover.has-background-dim a:hover,
.wp-block-cover-image.has-background-dim a,
.wp-block-cover-image.has-background-dim a:hover {
    color: inherit;
}
.wp-block-cover.has-background-dim .wp-block-cover__inner-container,
.wp-block-cover.has-background-dim .wp-block-cover-text,
.wp-block-cover-image.has-background-dim .wp-block-cover__inner-container,
.wp-block-cover-image.has-background-dim .wp-block-cover-text {
    color: #ffffff;
}

.wp-block-cover__inner-container *:last-child {
    margin-bottom: 0;
}
.wp-block-cover .block-list-appender:empty {
    margin: 0;
}
.wp-block-cover .block-editor-block-list__layout .block-editor-block-list__block {
    margin-bottom: 0;
}
.wp-block-cover .block-editor-block-list__layout .block-editor-block-list__block > * {
    margin-bottom: 0;
}
.wp-block-cover .block-editor-block-list__layout *:last-child {
    margin-bottom: 0;
}
.wp-block-cover .wp-block-cover-text {
    font-size: 2.25rem;
    line-height: var(--cs-font-base-line-height);
    padding: 0;
    max-width: calc(var(--cs-entry-content-width));
}
.wp-block-cover.is-light:not(.has-text-color) {
    color: var(--cs-color-primary-contrast);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block-cover.is-light:not(.has-text-color) {
        color: var(--cs-color-primary);
    }
}
[data-scheme=dark] .wp-block-cover.is-light:not(.has-text-color) {
    color: var(--cs-color-primary);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .wp-block-cover.is-light:not(.has-text-color) {
        color: var(--cs-color-primary);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .wp-block-cover.is-light:not(.has-text-color) {
        color: var(--cs-color-primary);
    }
}

ul.block-editor-block-list__layout li::marker {
    font-size: 0.875rem;
}
ul.block-editor-block-list__layout:not(.has-text-color) li::marker {
    color: var(--cs-color-accent);
}
ul.block-editor-block-list__layout.has-text-color li::marker {
    color: inherit;
}

ul.block-editor-block-list__layout,
ol.block-editor-block-list__layout {
    padding-left: 32px;
    padding-right: 16px;
}
ul.block-editor-block-list__layout li,
ol.block-editor-block-list__layout li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.wp-block-quote {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    border: none;
    margin-top: 36px;
    margin-bottom: 36px;
    padding: 32px;
    border-radius: var(--cs-thumbnail-border-radius);
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
}
.wp-block-quote:not(.is-style-plain) {
    color: var(--cs-color-primary-contrast);
    background: var(--cs-color-primary);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block-quote:not(.is-style-plain) {
        background: var(--cs-layout-background);
        color: var(--cs-color-primary);
    }
}
html[data-scheme=dark] .wp-block-quote:not(.is-style-plain) {
    background: var(--cs-layout-background);
    color: var(--cs-color-primary);
}
.wp-block-quote:not(.is-style-plain):before {
    content: "“";
    display: inline-block;
    font-size: var(--cs-heading-1-font-size);
    position: absolute;
    top: 19px;
    left: 31px;
}
.wp-block-quote[style*="text-decoration:line-through"] {
    text-decoration: none !important;
}
.wp-block-quote[style*="text-decoration:line-through"] p,
.wp-block-quote[style*="text-decoration:line-through"] cite {
    text-decoration: line-through;
}
.wp-block-quote[style*="text-decoration:underline"] {
    text-decoration: none !important;
}
.wp-block-quote[style*="text-decoration:underline"] p,
.wp-block-quote[style*="text-decoration:underline"] cite {
    text-decoration: underline;
}
.wp-block-quote p {
    font-size: inherit;
}
.wp-block-quote p:first-child {
    margin-top: 0;
}
.wp-block-quote p:last-child {
    margin-bottom: 0;
}
.wp-block-quote cite,
.wp-block-quote footer,
.wp-block-quote .wp-block-quote__citation {
    margin-top: 0.5rem;
}
.wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) cite,
.wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) cite a,
.wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) footer,
.wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) .wp-block-quote__citation {
    color: var(--cs-color-primary-contrast);
    opacity: 0.7;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) cite,
    :root html[data-scheme=auto] .wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) cite a,
    :root html[data-scheme=auto] .wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) footer,
    :root html[data-scheme=auto] .wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) .wp-block-quote__citation {
        color: var(--cs-color-primary);
    }
}
html[data-scheme=dark] .wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) cite,
html[data-scheme=dark] .wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) cite a,
html[data-scheme=dark] .wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) footer,
html[data-scheme=dark] .wp-block-quote:not(.is-style-plain, .has-text-color, .has-link-color) .wp-block-quote__citation {
    color: var(--cs-color-primary);
}
.wp-block-quote.is-large, .wp-block-quote.is-style-large:not(.is-style-plain) {
    align-items: flex-start;
    text-align: left;
    padding: 40px;
    padding-left: 100px;
}
.wp-block-quote.is-large:before, .wp-block-quote.is-style-large:not(.is-style-plain):before {
    position: absolute;
    left: 40px;
    top: 60px;
}
.wp-block-quote.is-large:after, .wp-block-quote.is-style-large:not(.is-style-plain):after {
    display: none;
}
.wp-block-quote.is-large p,
.wp-block-quote.is-large p:first-child, .wp-block-quote.is-style-large:not(.is-style-plain) p,
.wp-block-quote.is-style-large:not(.is-style-plain) p:first-child {
    font-size: 2rem;
    font-style: normal;
    line-height: var(--cs-font-base-line-height);
}
.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-large .wp-block-quote__citation, .wp-block-quote.is-style-large:not(.is-style-plain) cite,
.wp-block-quote.is-style-large:not(.is-style-plain) footer,
.wp-block-quote.is-style-large:not(.is-style-plain) .wp-block-quote__citation {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    font-style: normal;
    line-height: var(--cs-font-base-line-height);
}
.wp-block-quote.has-text-align-left {
    align-items: flex-start;
}
.wp-block-quote.has-text-align-center {
    align-items: center;
}
.wp-block-quote.has-text-align-right {
    align-items: flex-end;
}

.wp-block-pullquote {
    border-top: 4px solid var(--cs-color-primary);
    border-bottom: 4px solid var(--cs-color-primary);
    border-left: none;
    border-right: none;
    padding: 2rem 1rem;
    color: var(--cs-color-primary);
}
.wp-block-pullquote.has-text-align-left {
    align-items: flex-start;
}
.wp-block-pullquote.has-text-align-center {
    align-items: center;
}
.wp-block-pullquote.has-text-align-right {
    align-items: flex-end;
}
.wp-block-pullquote.is-style-solid-color {
    border: none;
}
.wp-block-pullquote.is-style-solid-color blockquote p {
    font-size: 2rem;
    line-height: var(--cs-font-base-line-height);
}
.wp-block-pullquote blockquote {
    margin-top: 0;
    margin-bottom: 0;
}
.wp-block-pullquote blockquote a {
    color: var(--cs-color-secondary-contrast);
}
.wp-block-pullquote:not(.has-small-font-size, .has-medium-font-size, .has-large-font-size, .has-x-large-font-size) p {
    font-size: 2rem;
}
.wp-block-pullquote:not([style*=line-height]) p {
    line-height: var(--cs-font-base-line-height);
}
.wp-block-pullquote:not(.has-text-color, .has-link-color) blockquote a {
    color: var(--cs-color-secondary-contrast);
}
.wp-block-pullquote.has-small-font-size cite, .wp-block-pullquote.has-medium-font-size cite, .wp-block-pullquote.has-large-font-size cite, .wp-block-pullquote.has-x-large-font-size cite {
    font-size: inherit;
    line-height: 1.2;
}
.wp-block-pullquote[style*=font-style] cite {
    font-style: inherit;
}
.wp-block-pullquote[style*=font-weight] cite {
    font-weight: inherit;
}
.wp-block-pullquote[style*=line-height] cite {
    line-height: inherit;
}
.wp-block-pullquote[style*=letter-spacing] cite {
    letter-spacing: inherit;
}
.wp-block-pullquote[style*=text-transform] cite {
    text-transform: inherit;
}
.wp-block-pullquote[style*="text-decoration:line-through"] {
    text-decoration: none !important;
}
.wp-block-pullquote[style*="text-decoration:line-through"] p,
.wp-block-pullquote[style*="text-decoration:line-through"] cite {
    text-decoration: line-through;
}
.wp-block-pullquote[style*="text-decoration:underline"] {
    text-decoration: none !important;
}
.wp-block-pullquote[style*="text-decoration:underline"] p,
.wp-block-pullquote[style*="text-decoration:underline"] cite {
    text-decoration: underline;
}
.wp-block-pullquote .alignleft p,
.wp-block-pullquote .alignright p {
    font-size: 1.5rem;
}

.wp-block-search .wp-block-search__inside-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    border: 1px solid var(--cs-color-border);
    border-radius: var(--cs-layout-elements-border-radius);
    box-shadow: 0 5px 25px 0 rgba(var(--cs-color-box-shadow-rgb), 0.12);
    background-color: var(--cs-layout-background);
    padding: 5px;
}
.wp-block-search .wp-block-search__inside-wrapper:has(.wp-block-search__input:first-child:last-child) {
    width: 100%;
}
.wp-block-search .wp-block-search__input {
    display: block;
    width: 100%;
    font-size: var(--cs-font-input-size);
    background-color: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    line-height: var(--cs-font-input-line-height);
    font-weight: var(--cs-font-input-weight);
    border: 1px solid var(--cs-color-border);
    padding: 0.5625rem 1.125rem;
    border-radius: var(--cs-button-border-radius);
    flex: 1 1 auto;
    width: 1%;
    max-width: 100%;
    background: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    border: none;
}
.wp-block-search .wp-block-search__input[style*=border-width] {
    border-style: solid;
}
.wp-block-search .wp-block-search__button {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    transition: 0.25s;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    padding: 0.5625rem 1.125rem;
    border-radius: var(--cs-button-border-radius);
    margin-left: 0.5rem;
}
.wp-block-search .wp-block-search__button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cs-color-button-hover);
    transition: opacity 0.25s ease;
    z-index: -1;
    opacity: 0;
}
.wp-block-search .wp-block-search__button:focus::before, .wp-block-search .wp-block-search__button:hover::before {
    opacity: 1;
}
.wp-block-search .wp-block-search__button:focus, .wp-block-search .wp-block-search__button:hover {
    color: var(--cs-color-button-hover-contrast);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
    outline: none;
}
.wp-block-search .wp-block-search__button:disabled, .wp-block-search .wp-block-search__button:disabled[disabled] {
    color: var(--cs-color-button-contrast);
    opacity: 0.5;
    padding: 0.5625rem 1.125rem;
}
.wp-block-search .wp-block-search__button:disabled:hover, .wp-block-search .wp-block-search__button:disabled[disabled]:hover {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
}
.wp-block-search .wp-block-search__button.has-icon {
    line-height: 1;
}
.wp-block-search .wp-block-search__button.has-icon.has-small-font-size, .wp-block-search .wp-block-search__button.has-icon.has-medium-font-size, .wp-block-search .wp-block-search__button.has-icon.has-large-font-size, .wp-block-search .wp-block-search__button.has-icon.has-x-large-font-size {
    line-height: var(--cs-font-base-line-height);
}
.wp-block-search .wp-block-search__button.has-icon.has-small-font-size:before, .wp-block-search .wp-block-search__button.has-icon.has-medium-font-size:before, .wp-block-search .wp-block-search__button.has-icon.has-large-font-size:before, .wp-block-search .wp-block-search__button.has-icon.has-x-large-font-size:before {
    font-size: inherit;
}
.wp-block-search .wp-block-search__button.has-icon[style*=line-height]:before {
    line-height: var(--cs-font-base-line-height);
}
.wp-block-search .wp-block-search__button:hover {
    opacity: 0.9;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
    border: none;
    border-radius: var(--cs-button-border-radius);
    background: var(--cs-color-input);
    padding: 0;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
    border-radius: var(--cs-button-border-radius) 0 0 var(--cs-button-border-radius);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
    margin-left: 0;
    border-radius: 0 var(--cs-button-border-radius) var(--cs-button-border-radius) 0;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
    padding: 0.5625rem 1.25rem 0.5625rem 1rem;
}
.wp-block-search.aligncenter {
    max-width: calc( 100% - 2rem );
    margin-left: 1rem;
    margin-right: 1rem;
}
.cs-sidebar__area > .cs-sidebar__inner .wp-block-search {
    line-height: 1;
}
.cs-sidebar__area > .cs-sidebar__inner .wp-block-search .wp-block-search__label {
    font-family: var(--cs-font-section-headings-family), sans-serif;
    font-size: var(--cs-font-section-headings-size);
    font-weight: var(--cs-font-section-headings-weight);
    font-style: var(--cs-font-section-headings-style);
    letter-spacing: var(--cs-font-section-headings-letter-spacing);
    text-transform: var(--cs-font-section-headings-text-transform);
    line-height: var(--cs-font-section-headings-line-height);
    margin-bottom: 1.25rem;
    color: var(--cs-color-secondary);
}
.cs-offcanvas .cs-sidebar__area > .cs-sidebar__inner .wp-block-search .wp-block-search__label {
    margin-bottom: 1rem;
}

.wp-block-social-links {
    clear: both;
}
.wp-block-social-links.alignright {
    justify-content: flex-end;
    float: none;
}
.wp-block-social-links .wp-social-link {
    padding: 0;
}
.wp-block-social-links .wp-social-link:not(.is-style-logos-only) {
    color: var(--cs-color-primary);
    fill: var(--cs-color-primary);
}
.wp-block-social-links .wp-social-link:hover {
    transform: none;
    transition: 0.25s;
}
.wp-block-social-links:not(.has-icon-color) .wp-social-link:hover {
    background: var(--cs-color-primary);
    color: var(--cs-color-primary-contrast);
    fill: var(--cs-color-primary-contrast);
}
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-fivehundredpx,
.wp-block-social-links:not(.is-style-logos-only) .wp-social-link-wordpress {
    background-color: var(--cs-layout-background);
}

.wp-block-latest-comments {
    padding: 0;
    margin: 0 auto;
}
.wp-block-latest-comments__comment {
    margin: 1.5rem 0 0;
}
.wp-block-latest-comments__comment:first-child {
    margin-top: 0;
}
.wp-block-latest-comments__comment > article {
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.wp-block-latest-comments__comment-meta {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    margin-left: 0;
}
.wp-block-latest-comments__comment-author {
    transition: 0.25s;
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
}
.wp-block-latest-comments__comment-author:hover {
    background-size: 0px 1px;
    color: var(--cs-color-primary);
}
.wp-block-latest-comments__comment-link {
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
}
.wp-block-latest-comments__comment-link:hover {
    background-size: 0px 1px;
    color: var(--cs-color-primary);
}
.wp-block-latest-comments__comment-date {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    margin-top: 0.25rem;
}
.wp-block-latest-comments__comment-excerpt {
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
    margin-left: 0;
    color: var(--cs-color-primary);
}
.wp-block-latest-comments__comment-excerpt p {
    margin-top: 0.25rem;
}
.wp-block-latest-comments__comment-excerpt p:not(:last-child) {
    margin-bottom: 0.5rem;
}
.wp-block-latest-comments__comment-excerpt p:last-child {
    margin-bottom: 0;
}
.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment > img + article .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment > img + article .wp-block-latest-comments__comment-excerpt {
    margin-left: 4rem;
}
.wp-block-latest-comments.alignleft {
    max-width: clac(100%-2rem);
    margin-right: 2rem;
}
.wp-block-latest-comments.aligncenter {
    max-width: clac(100%-2rem);
    margin-left: 1rem;
    margin-right: 1rem;
}
.wp-block-latest-comments.alignright {
    max-width: clac(100%-2rem);
    margin-left: 2rem;
}
.wp-block-latest-comments.has-text-color .wp-block-post-title,
.wp-block-latest-comments.has-text-color .wp-block-post-excerpt {
    color: inherit;
}
.wp-block-latest-comments.has-small-font-size .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments.has-small-font-size .wp-block-latest-comments__comment-link,
.wp-block-latest-comments.has-small-font-size .wp-block-latest-comments__comment-date,
.wp-block-latest-comments.has-small-font-size .wp-block-latest-comments__comment-excerpt, .wp-block-latest-comments.has-medium-font-size .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments.has-medium-font-size .wp-block-latest-comments__comment-link,
.wp-block-latest-comments.has-medium-font-size .wp-block-latest-comments__comment-date,
.wp-block-latest-comments.has-medium-font-size .wp-block-latest-comments__comment-excerpt, .wp-block-latest-comments.has-large-font-size .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments.has-large-font-size .wp-block-latest-comments__comment-link,
.wp-block-latest-comments.has-large-font-size .wp-block-latest-comments__comment-date,
.wp-block-latest-comments.has-large-font-size .wp-block-latest-comments__comment-excerpt, .wp-block-latest-comments.has-x-large-font-size .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments.has-x-large-font-size .wp-block-latest-comments__comment-link,
.wp-block-latest-comments.has-x-large-font-size .wp-block-latest-comments__comment-date,
.wp-block-latest-comments.has-x-large-font-size .wp-block-latest-comments__comment-excerpt {
    font-size: inherit;
}
.wp-block-latest-comments[style*=font-style] .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments[style*=font-style] .wp-block-latest-comments__comment-link,
.wp-block-latest-comments[style*=font-style] .wp-block-latest-comments__comment-date,
.wp-block-latest-comments[style*=font-style] .wp-block-latest-comments__comment-excerpt {
    font-style: inherit;
}
.wp-block-latest-comments[style*=font-weight] .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments[style*=font-weight] .wp-block-latest-comments__comment-link,
.wp-block-latest-comments[style*=font-weight] .wp-block-latest-comments__comment-date,
.wp-block-latest-comments[style*=font-weight] .wp-block-latest-comments__comment-excerpt {
    font-weight: inherit;
}
.wp-block-latest-comments[style*=line-height] .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments[style*=line-height] .wp-block-latest-comments__comment-link,
.wp-block-latest-comments[style*=line-height] .wp-block-latest-comments__comment-date,
.wp-block-latest-comments[style*=line-height] .wp-block-latest-comments__comment-excerpt {
    line-height: inherit;
}
.wp-block-latest-comments[style*=letter-spacing] .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments[style*=letter-spacing] .wp-block-latest-comments__comment-link,
.wp-block-latest-comments[style*=letter-spacing] .wp-block-latest-comments__comment-date,
.wp-block-latest-comments[style*=letter-spacing] .wp-block-latest-comments__comment-excerpt {
    letter-spacing: inherit;
}
.wp-block-latest-comments[style*=text-transform] .wp-block-latest-comments__comment-meta,
.wp-block-latest-comments[style*=text-transform] .wp-block-latest-comments__comment-link,
.wp-block-latest-comments[style*=text-transform] .wp-block-latest-comments__comment-date,
.wp-block-latest-comments[style*=text-transform] .wp-block-latest-comments__comment-excerpt {
    text-transform: inherit;
}

.wp-block-latest-posts,
.wp-block-categories-list,
.wp-block-categories__list,
.wp-block-archives-list {
    padding-left: 0;
    margin-bottom: 0;
    margin-top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
}
.wp-block-latest-posts ul,
.wp-block-categories-list ul,
.wp-block-categories__list ul,
.wp-block-archives-list ul {
    padding-left: 20px;
}
.wp-block-latest-posts li,
.wp-block-categories-list li,
.wp-block-categories__list li,
.wp-block-archives-list li {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    position: relative;
    padding: 0 0 0.75rem 0;
    column-gap: 0.5rem;
}
.wp-block-latest-posts li:last-child,
.wp-block-categories-list li:last-child,
.wp-block-categories__list li:last-child,
.wp-block-archives-list li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.wp-block-latest-posts li:first-child:last-child,
.wp-block-categories-list li:first-child:last-child,
.wp-block-categories__list li:first-child:last-child,
.wp-block-archives-list li:first-child:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.wp-block-latest-posts li:first-child:last-child > .sub-menu,
.wp-block-categories-list li:first-child:last-child > .sub-menu,
.wp-block-categories__list li:first-child:last-child > .sub-menu,
.wp-block-archives-list li:first-child:last-child > .sub-menu {
    padding-bottom: 0;
    margin-bottom: 0;
}
.wp-block-latest-posts li a,
.wp-block-categories-list li a,
.wp-block-categories__list li a,
.wp-block-archives-list li a {
    font-family: var(--cs-font-entry-title-family), sans-serif;
    line-height: var(--cs-font-entry-title-line-height);
    font-weight: var(--cs-font-entry-title-weight);
    letter-spacing: var(--cs-font-entry-title-letter-spacing);
    text-decoration: none;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-title,
.wp-block-categories-list li .wp-block-latest-posts__post-title,
.wp-block-categories__list li .wp-block-latest-posts__post-title,
.wp-block-archives-list li .wp-block-latest-posts__post-title {
    width: 100%;
}
.wp-block-latest-posts li .wp-block-latest-posts__featured-image,
.wp-block-categories-list li .wp-block-latest-posts__featured-image,
.wp-block-categories__list li .wp-block-latest-posts__featured-image,
.wp-block-archives-list li .wp-block-latest-posts__featured-image {
    width: 100%;
}
.wp-block-latest-posts li .wp-block-latest-posts__featured-image img,
.wp-block-categories-list li .wp-block-latest-posts__featured-image img,
.wp-block-categories__list li .wp-block-latest-posts__featured-image img,
.wp-block-archives-list li .wp-block-latest-posts__featured-image img {
    width: 100%;
    height: auto;
    border-radius: var(--cs-thumbnail-border-radius);
}
.wp-block-latest-posts li .wp-block-latest-posts__featured-image:not(:last-child),
.wp-block-categories-list li .wp-block-latest-posts__featured-image:not(:last-child),
.wp-block-categories__list li .wp-block-latest-posts__featured-image:not(:last-child),
.wp-block-archives-list li .wp-block-latest-posts__featured-image:not(:last-child) {
    margin-bottom: 0.5rem;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-author,
.wp-block-categories-list li .wp-block-latest-posts__post-author,
.wp-block-categories__list li .wp-block-latest-posts__post-author,
.wp-block-archives-list li .wp-block-latest-posts__post-author {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
}
.wp-block-latest-posts li .wp-block-latest-posts__post-author:not(:first-child),
.wp-block-categories-list li .wp-block-latest-posts__post-author:not(:first-child),
.wp-block-categories__list li .wp-block-latest-posts__post-author:not(:first-child),
.wp-block-archives-list li .wp-block-latest-posts__post-author:not(:first-child) {
    margin-top: 0.5rem;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-author:not(:last-child),
.wp-block-categories-list li .wp-block-latest-posts__post-author:not(:last-child),
.wp-block-categories__list li .wp-block-latest-posts__post-author:not(:last-child),
.wp-block-archives-list li .wp-block-latest-posts__post-author:not(:last-child) {
    margin-right: 0.5rem;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-date,
.wp-block-categories-list li .wp-block-latest-posts__post-date,
.wp-block-categories__list li .wp-block-latest-posts__post-date,
.wp-block-archives-list li .wp-block-latest-posts__post-date {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
}
.wp-block-latest-posts li .wp-block-latest-posts__post-date:not(:last-child),
.wp-block-categories-list li .wp-block-latest-posts__post-date:not(:last-child),
.wp-block-categories__list li .wp-block-latest-posts__post-date:not(:last-child),
.wp-block-archives-list li .wp-block-latest-posts__post-date:not(:last-child) {
    margin-right: 0.5rem;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list li .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list li .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list li .wp-block-latest-posts__post-excerpt {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    margin-top: 0.5rem;
}
.wp-block-latest-posts.aligncenter li a,
.wp-block-categories-list.aligncenter li a,
.wp-block-categories__list.aligncenter li a,
.wp-block-archives-list.aligncenter li a {
    margin-left: auto;
    margin-right: auto;
}
.wp-block-latest-posts:not(.is-style-cs-numbered-layout) > li .alignleft,
.wp-block-categories-list:not(.is-style-cs-numbered-layout) > li .alignleft,
.wp-block-categories__list:not(.is-style-cs-numbered-layout) > li .alignleft,
.wp-block-archives-list:not(.is-style-cs-numbered-layout) > li .alignleft {
    margin-right: 2rem;
}
.wp-block-latest-posts:not(.is-style-cs-numbered-layout) > li .alignleft + a,
.wp-block-categories-list:not(.is-style-cs-numbered-layout) > li .alignleft + a,
.wp-block-categories__list:not(.is-style-cs-numbered-layout) > li .alignleft + a,
.wp-block-archives-list:not(.is-style-cs-numbered-layout) > li .alignleft + a {
    float: left;
    margin-right: 2rem;
}
.wp-block-latest-posts:not(.is-style-cs-numbered-layout) > li .aligncenter,
.wp-block-categories-list:not(.is-style-cs-numbered-layout) > li .aligncenter,
.wp-block-categories__list:not(.is-style-cs-numbered-layout) > li .aligncenter,
.wp-block-archives-list:not(.is-style-cs-numbered-layout) > li .aligncenter {
    margin-left: 1rem;
    margin-right: 1rem;
}
.wp-block-latest-posts:not(.is-style-cs-numbered-layout) > li .aligncenter + a,
.wp-block-categories-list:not(.is-style-cs-numbered-layout) > li .aligncenter + a,
.wp-block-categories__list:not(.is-style-cs-numbered-layout) > li .aligncenter + a,
.wp-block-archives-list:not(.is-style-cs-numbered-layout) > li .aligncenter + a {
    margin-left: 1rem;
    margin-right: 1rem;
}
.wp-block-latest-posts:not(.is-style-cs-numbered-layout) > li .alignright,
.wp-block-categories-list:not(.is-style-cs-numbered-layout) > li .alignright,
.wp-block-categories__list:not(.is-style-cs-numbered-layout) > li .alignright,
.wp-block-archives-list:not(.is-style-cs-numbered-layout) > li .alignright {
    margin-left: 2rem;
}
.wp-block-latest-posts:not(.is-style-cs-numbered-layout) > li .alignright + a,
.wp-block-categories-list:not(.is-style-cs-numbered-layout) > li .alignright + a,
.wp-block-categories__list:not(.is-style-cs-numbered-layout) > li .alignright + a,
.wp-block-archives-list:not(.is-style-cs-numbered-layout) > li .alignright + a {
    float: right;
    margin-left: 2rem;
}
.wp-block-latest-posts:not(.has-text-color) > li > a,
.wp-block-categories-list:not(.has-text-color) > li > a,
.wp-block-categories__list:not(.has-text-color) > li > a,
.wp-block-archives-list:not(.has-text-color) > li > a {
    color: var(--cs-color-primary);
}
.wp-block-latest-posts:not(.has-text-color) .wp-block-latest-posts__post-author,
.wp-block-latest-posts:not(.has-text-color) .wp-block-latest-posts__post-date,
.wp-block-latest-posts:not(.has-text-color) .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list:not(.has-text-color) .wp-block-latest-posts__post-author,
.wp-block-categories-list:not(.has-text-color) .wp-block-latest-posts__post-date,
.wp-block-categories-list:not(.has-text-color) .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list:not(.has-text-color) .wp-block-latest-posts__post-author,
.wp-block-categories__list:not(.has-text-color) .wp-block-latest-posts__post-date,
.wp-block-categories__list:not(.has-text-color) .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list:not(.has-text-color) .wp-block-latest-posts__post-author,
.wp-block-archives-list:not(.has-text-color) .wp-block-latest-posts__post-date,
.wp-block-archives-list:not(.has-text-color) .wp-block-latest-posts__post-excerpt {
    color: var(--cs-color-secondary);
}
.wp-block-latest-posts.has-small-font-size li,
.wp-block-latest-posts.has-small-font-size li a,
.wp-block-latest-posts.has-small-font-size .wp-block-latest-posts__post-author,
.wp-block-latest-posts.has-small-font-size .wp-block-latest-posts__post-date,
.wp-block-latest-posts.has-small-font-size .wp-block-latest-posts__post-excerpt, .wp-block-latest-posts.has-medium-font-size li,
.wp-block-latest-posts.has-medium-font-size li a,
.wp-block-latest-posts.has-medium-font-size .wp-block-latest-posts__post-author,
.wp-block-latest-posts.has-medium-font-size .wp-block-latest-posts__post-date,
.wp-block-latest-posts.has-medium-font-size .wp-block-latest-posts__post-excerpt, .wp-block-latest-posts.has-large-font-size li,
.wp-block-latest-posts.has-large-font-size li a,
.wp-block-latest-posts.has-large-font-size .wp-block-latest-posts__post-author,
.wp-block-latest-posts.has-large-font-size .wp-block-latest-posts__post-date,
.wp-block-latest-posts.has-large-font-size .wp-block-latest-posts__post-excerpt, .wp-block-latest-posts.has-x-large-font-size li,
.wp-block-latest-posts.has-x-large-font-size li a,
.wp-block-latest-posts.has-x-large-font-size .wp-block-latest-posts__post-author,
.wp-block-latest-posts.has-x-large-font-size .wp-block-latest-posts__post-date,
.wp-block-latest-posts.has-x-large-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list.has-small-font-size li,
.wp-block-categories-list.has-small-font-size li a,
.wp-block-categories-list.has-small-font-size .wp-block-latest-posts__post-author,
.wp-block-categories-list.has-small-font-size .wp-block-latest-posts__post-date,
.wp-block-categories-list.has-small-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list.has-medium-font-size li,
.wp-block-categories-list.has-medium-font-size li a,
.wp-block-categories-list.has-medium-font-size .wp-block-latest-posts__post-author,
.wp-block-categories-list.has-medium-font-size .wp-block-latest-posts__post-date,
.wp-block-categories-list.has-medium-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list.has-large-font-size li,
.wp-block-categories-list.has-large-font-size li a,
.wp-block-categories-list.has-large-font-size .wp-block-latest-posts__post-author,
.wp-block-categories-list.has-large-font-size .wp-block-latest-posts__post-date,
.wp-block-categories-list.has-large-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list.has-x-large-font-size li,
.wp-block-categories-list.has-x-large-font-size li a,
.wp-block-categories-list.has-x-large-font-size .wp-block-latest-posts__post-author,
.wp-block-categories-list.has-x-large-font-size .wp-block-latest-posts__post-date,
.wp-block-categories-list.has-x-large-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list.has-small-font-size li,
.wp-block-categories__list.has-small-font-size li a,
.wp-block-categories__list.has-small-font-size .wp-block-latest-posts__post-author,
.wp-block-categories__list.has-small-font-size .wp-block-latest-posts__post-date,
.wp-block-categories__list.has-small-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list.has-medium-font-size li,
.wp-block-categories__list.has-medium-font-size li a,
.wp-block-categories__list.has-medium-font-size .wp-block-latest-posts__post-author,
.wp-block-categories__list.has-medium-font-size .wp-block-latest-posts__post-date,
.wp-block-categories__list.has-medium-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list.has-large-font-size li,
.wp-block-categories__list.has-large-font-size li a,
.wp-block-categories__list.has-large-font-size .wp-block-latest-posts__post-author,
.wp-block-categories__list.has-large-font-size .wp-block-latest-posts__post-date,
.wp-block-categories__list.has-large-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list.has-x-large-font-size li,
.wp-block-categories__list.has-x-large-font-size li a,
.wp-block-categories__list.has-x-large-font-size .wp-block-latest-posts__post-author,
.wp-block-categories__list.has-x-large-font-size .wp-block-latest-posts__post-date,
.wp-block-categories__list.has-x-large-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list.has-small-font-size li,
.wp-block-archives-list.has-small-font-size li a,
.wp-block-archives-list.has-small-font-size .wp-block-latest-posts__post-author,
.wp-block-archives-list.has-small-font-size .wp-block-latest-posts__post-date,
.wp-block-archives-list.has-small-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list.has-medium-font-size li,
.wp-block-archives-list.has-medium-font-size li a,
.wp-block-archives-list.has-medium-font-size .wp-block-latest-posts__post-author,
.wp-block-archives-list.has-medium-font-size .wp-block-latest-posts__post-date,
.wp-block-archives-list.has-medium-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list.has-large-font-size li,
.wp-block-archives-list.has-large-font-size li a,
.wp-block-archives-list.has-large-font-size .wp-block-latest-posts__post-author,
.wp-block-archives-list.has-large-font-size .wp-block-latest-posts__post-date,
.wp-block-archives-list.has-large-font-size .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list.has-x-large-font-size li,
.wp-block-archives-list.has-x-large-font-size li a,
.wp-block-archives-list.has-x-large-font-size .wp-block-latest-posts__post-author,
.wp-block-archives-list.has-x-large-font-size .wp-block-latest-posts__post-date,
.wp-block-archives-list.has-x-large-font-size .wp-block-latest-posts__post-excerpt {
    font-size: inherit;
}
.wp-block-latest-posts[style*=font-style] li,
.wp-block-latest-posts[style*=font-style] li a,
.wp-block-latest-posts[style*=font-style] .wp-block-latest-posts__post-author,
.wp-block-latest-posts[style*=font-style] .wp-block-latest-posts__post-date,
.wp-block-latest-posts[style*=font-style] .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list[style*=font-style] li,
.wp-block-categories-list[style*=font-style] li a,
.wp-block-categories-list[style*=font-style] .wp-block-latest-posts__post-author,
.wp-block-categories-list[style*=font-style] .wp-block-latest-posts__post-date,
.wp-block-categories-list[style*=font-style] .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list[style*=font-style] li,
.wp-block-categories__list[style*=font-style] li a,
.wp-block-categories__list[style*=font-style] .wp-block-latest-posts__post-author,
.wp-block-categories__list[style*=font-style] .wp-block-latest-posts__post-date,
.wp-block-categories__list[style*=font-style] .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list[style*=font-style] li,
.wp-block-archives-list[style*=font-style] li a,
.wp-block-archives-list[style*=font-style] .wp-block-latest-posts__post-author,
.wp-block-archives-list[style*=font-style] .wp-block-latest-posts__post-date,
.wp-block-archives-list[style*=font-style] .wp-block-latest-posts__post-excerpt {
    font-style: inherit;
}
.wp-block-latest-posts[style*=font-weight] li,
.wp-block-latest-posts[style*=font-weight] li a,
.wp-block-latest-posts[style*=font-weight] .wp-block-latest-posts__post-author,
.wp-block-latest-posts[style*=font-weight] .wp-block-latest-posts__post-date,
.wp-block-latest-posts[style*=font-weight] .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list[style*=font-weight] li,
.wp-block-categories-list[style*=font-weight] li a,
.wp-block-categories-list[style*=font-weight] .wp-block-latest-posts__post-author,
.wp-block-categories-list[style*=font-weight] .wp-block-latest-posts__post-date,
.wp-block-categories-list[style*=font-weight] .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list[style*=font-weight] li,
.wp-block-categories__list[style*=font-weight] li a,
.wp-block-categories__list[style*=font-weight] .wp-block-latest-posts__post-author,
.wp-block-categories__list[style*=font-weight] .wp-block-latest-posts__post-date,
.wp-block-categories__list[style*=font-weight] .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list[style*=font-weight] li,
.wp-block-archives-list[style*=font-weight] li a,
.wp-block-archives-list[style*=font-weight] .wp-block-latest-posts__post-author,
.wp-block-archives-list[style*=font-weight] .wp-block-latest-posts__post-date,
.wp-block-archives-list[style*=font-weight] .wp-block-latest-posts__post-excerpt {
    font-weight: inherit;
}
.wp-block-latest-posts[style*=line-height] li,
.wp-block-latest-posts[style*=line-height] li a,
.wp-block-latest-posts[style*=line-height] .wp-block-latest-posts__post-author,
.wp-block-latest-posts[style*=line-height] .wp-block-latest-posts__post-date,
.wp-block-latest-posts[style*=line-height] .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list[style*=line-height] li,
.wp-block-categories-list[style*=line-height] li a,
.wp-block-categories-list[style*=line-height] .wp-block-latest-posts__post-author,
.wp-block-categories-list[style*=line-height] .wp-block-latest-posts__post-date,
.wp-block-categories-list[style*=line-height] .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list[style*=line-height] li,
.wp-block-categories__list[style*=line-height] li a,
.wp-block-categories__list[style*=line-height] .wp-block-latest-posts__post-author,
.wp-block-categories__list[style*=line-height] .wp-block-latest-posts__post-date,
.wp-block-categories__list[style*=line-height] .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list[style*=line-height] li,
.wp-block-archives-list[style*=line-height] li a,
.wp-block-archives-list[style*=line-height] .wp-block-latest-posts__post-author,
.wp-block-archives-list[style*=line-height] .wp-block-latest-posts__post-date,
.wp-block-archives-list[style*=line-height] .wp-block-latest-posts__post-excerpt {
    line-height: inherit;
}
.wp-block-latest-posts[style*=letter-spacing] li,
.wp-block-latest-posts[style*=letter-spacing] li a,
.wp-block-latest-posts[style*=letter-spacing] .wp-block-latest-posts__post-author,
.wp-block-latest-posts[style*=letter-spacing] .wp-block-latest-posts__post-date,
.wp-block-latest-posts[style*=letter-spacing] .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list[style*=letter-spacing] li,
.wp-block-categories-list[style*=letter-spacing] li a,
.wp-block-categories-list[style*=letter-spacing] .wp-block-latest-posts__post-author,
.wp-block-categories-list[style*=letter-spacing] .wp-block-latest-posts__post-date,
.wp-block-categories-list[style*=letter-spacing] .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list[style*=letter-spacing] li,
.wp-block-categories__list[style*=letter-spacing] li a,
.wp-block-categories__list[style*=letter-spacing] .wp-block-latest-posts__post-author,
.wp-block-categories__list[style*=letter-spacing] .wp-block-latest-posts__post-date,
.wp-block-categories__list[style*=letter-spacing] .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list[style*=letter-spacing] li,
.wp-block-archives-list[style*=letter-spacing] li a,
.wp-block-archives-list[style*=letter-spacing] .wp-block-latest-posts__post-author,
.wp-block-archives-list[style*=letter-spacing] .wp-block-latest-posts__post-date,
.wp-block-archives-list[style*=letter-spacing] .wp-block-latest-posts__post-excerpt {
    letter-spacing: inherit;
}
.wp-block-latest-posts[style*=text-transform] li,
.wp-block-latest-posts[style*=text-transform] li a,
.wp-block-latest-posts[style*=text-transform] .wp-block-latest-posts__post-author,
.wp-block-latest-posts[style*=text-transform] .wp-block-latest-posts__post-date,
.wp-block-latest-posts[style*=text-transform] .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list[style*=text-transform] li,
.wp-block-categories-list[style*=text-transform] li a,
.wp-block-categories-list[style*=text-transform] .wp-block-latest-posts__post-author,
.wp-block-categories-list[style*=text-transform] .wp-block-latest-posts__post-date,
.wp-block-categories-list[style*=text-transform] .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list[style*=text-transform] li,
.wp-block-categories__list[style*=text-transform] li a,
.wp-block-categories__list[style*=text-transform] .wp-block-latest-posts__post-author,
.wp-block-categories__list[style*=text-transform] .wp-block-latest-posts__post-date,
.wp-block-categories__list[style*=text-transform] .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list[style*=text-transform] li,
.wp-block-archives-list[style*=text-transform] li a,
.wp-block-archives-list[style*=text-transform] .wp-block-latest-posts__post-author,
.wp-block-archives-list[style*=text-transform] .wp-block-latest-posts__post-date,
.wp-block-archives-list[style*=text-transform] .wp-block-latest-posts__post-excerpt {
    text-transform: inherit;
}
.wp-block-latest-posts[style*="text-decoration:line-through"],
.wp-block-categories-list[style*="text-decoration:line-through"],
.wp-block-categories__list[style*="text-decoration:line-through"],
.wp-block-archives-list[style*="text-decoration:line-through"] {
    text-decoration: none !important;
}
.wp-block-latest-posts[style*="text-decoration:line-through"] li a,
.wp-block-latest-posts[style*="text-decoration:line-through"] .wp-block-latest-posts__post-author,
.wp-block-latest-posts[style*="text-decoration:line-through"] .wp-block-latest-posts__post-date,
.wp-block-latest-posts[style*="text-decoration:line-through"] .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list[style*="text-decoration:line-through"] li a,
.wp-block-categories-list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-author,
.wp-block-categories-list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-date,
.wp-block-categories-list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list[style*="text-decoration:line-through"] li a,
.wp-block-categories__list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-author,
.wp-block-categories__list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-date,
.wp-block-categories__list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list[style*="text-decoration:line-through"] li a,
.wp-block-archives-list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-author,
.wp-block-archives-list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-date,
.wp-block-archives-list[style*="text-decoration:line-through"] .wp-block-latest-posts__post-excerpt {
    text-decoration: line-through;
}
.wp-block-latest-posts[style*="text-decoration:underline"],
.wp-block-categories-list[style*="text-decoration:underline"],
.wp-block-categories__list[style*="text-decoration:underline"],
.wp-block-archives-list[style*="text-decoration:underline"] {
    text-decoration: none !important;
}
.wp-block-latest-posts[style*="text-decoration:underline"] li a,
.wp-block-latest-posts[style*="text-decoration:underline"] .wp-block-latest-posts__post-author,
.wp-block-latest-posts[style*="text-decoration:underline"] .wp-block-latest-posts__post-date,
.wp-block-latest-posts[style*="text-decoration:underline"] .wp-block-latest-posts__post-excerpt,
.wp-block-categories-list[style*="text-decoration:underline"] li a,
.wp-block-categories-list[style*="text-decoration:underline"] .wp-block-latest-posts__post-author,
.wp-block-categories-list[style*="text-decoration:underline"] .wp-block-latest-posts__post-date,
.wp-block-categories-list[style*="text-decoration:underline"] .wp-block-latest-posts__post-excerpt,
.wp-block-categories__list[style*="text-decoration:underline"] li a,
.wp-block-categories__list[style*="text-decoration:underline"] .wp-block-latest-posts__post-author,
.wp-block-categories__list[style*="text-decoration:underline"] .wp-block-latest-posts__post-date,
.wp-block-categories__list[style*="text-decoration:underline"] .wp-block-latest-posts__post-excerpt,
.wp-block-archives-list[style*="text-decoration:underline"] li a,
.wp-block-archives-list[style*="text-decoration:underline"] .wp-block-latest-posts__post-author,
.wp-block-archives-list[style*="text-decoration:underline"] .wp-block-latest-posts__post-date,
.wp-block-archives-list[style*="text-decoration:underline"] .wp-block-latest-posts__post-excerpt {
    text-decoration: underline;
}
.wp-block-latest-posts > li > a,
.wp-block-categories-list > li > a,
.wp-block-categories__list > li > a,
.wp-block-archives-list > li > a {
    max-width: 100%;
    word-wrap: break-word;
    transition: 0.25s;
}
.wp-block-latest-posts > li > a:hover,
.wp-block-categories-list > li > a:hover,
.wp-block-categories__list > li > a:hover,
.wp-block-archives-list > li > a:hover {
    color: var(--cs-color-secondary);
}
.wp-block-latest-posts ul.children,
.wp-block-categories-list ul.children,
.wp-block-categories__list ul.children,
.wp-block-archives-list ul.children {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0.5rem;
}
.wp-block-latest-posts ul.children li,
.wp-block-categories-list ul.children li,
.wp-block-categories__list ul.children li,
.wp-block-archives-list ul.children li {
    padding: 0.5rem 0;
}
.wp-block-latest-posts ul.children li:last-child,
.wp-block-categories-list ul.children li:last-child,
.wp-block-categories__list ul.children li:last-child,
.wp-block-archives-list ul.children li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.wp-block-latest-posts ul.children li a,
.wp-block-categories-list ul.children li a,
.wp-block-categories__list ul.children li a,
.wp-block-archives-list ul.children li a {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
}
.wp-block-latest-posts ul.children ul.children li,
.wp-block-categories-list ul.children ul.children li,
.wp-block-categories__list ul.children ul.children li,
.wp-block-archives-list ul.children ul.children li {
    margin-left: 1rem;
    padding-left: 0;
}
.wp-block-latest-posts ul.sub-menu,
.wp-block-categories-list ul.sub-menu,
.wp-block-categories__list ul.sub-menu,
.wp-block-archives-list ul.sub-menu {
    margin-top: 0.5rem;
}
.wp-block-latest-posts ul.sub-menu li,
.wp-block-categories-list ul.sub-menu li,
.wp-block-categories__list ul.sub-menu li,
.wp-block-archives-list ul.sub-menu li {
    padding: 0.5rem 0;
}
.wp-block-latest-posts ul.sub-menu li:last-child,
.wp-block-categories-list ul.sub-menu li:last-child,
.wp-block-categories__list ul.sub-menu li:last-child,
.wp-block-archives-list ul.sub-menu li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.wp-block-latest-posts ul.sub-menu li a,
.wp-block-categories-list ul.sub-menu li a,
.wp-block-categories__list ul.sub-menu li a,
.wp-block-archives-list ul.sub-menu li a {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
}
.wp-block-latest-posts ul.sub-menu ul.sub-menu li,
.wp-block-categories-list ul.sub-menu ul.sub-menu li,
.wp-block-categories__list ul.sub-menu ul.sub-menu li,
.wp-block-archives-list ul.sub-menu ul.sub-menu li {
    margin-left: 1rem;
    padding-left: 0;
}
.wp-block-latest-posts .screen-reader-text,
.wp-block-categories-list .screen-reader-text,
.wp-block-categories__list .screen-reader-text,
.wp-block-archives-list .screen-reader-text {
    display: none;
}

.wp-block-latest-posts li .wp-block-latest-posts__post-title {
    font-family: var(--cs-font-entry-title-family), sans-serif;
    line-height: var(--cs-font-entry-title-line-height);
    font-weight: var(--cs-font-entry-title-weight);
    letter-spacing: var(--cs-font-entry-title-letter-spacing);
    font-size: var(--cs-heading-5-font-size);
}
.wp-block-latest-posts li .wp-block-latest-posts__post-excerpt {
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
}
.wp-block-latest-posts li:has(.wp-block-latest-posts__featured-image) {
    padding-bottom: 2rem;
}
.wp-block-latest-posts.aligncenter li {
    margin-left: auto;
    margin-right: auto;
}

.wp-block label {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    margin-bottom: 0.75rem;
}
.wp-block select {
    display: block;
    width: 100%;
    font-size: var(--cs-font-input-size);
    background-color: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    line-height: var(--cs-font-input-line-height);
    font-weight: var(--cs-font-input-weight);
    border: 1px solid var(--cs-color-border);
    padding: 0.9375rem 1.5rem;
    border-radius: var(--cs-button-border-radius);
    font-family: var(--cs-font-input-family), sans-serif;
    font-size: var(--cs-font-input-size);
    font-weight: var(--cs-font-input-weight);
    font-style: var(--cs-font-input-style);
    line-height: var(--cs-font-input-line-height);
    letter-spacing: var(--cs-font-input-letter-spacing);
    text-transform: var(--cs-font-input-text-transform);
    width: 100%;
    max-width: 100%;
    min-height: 40px;
    margin: 0;
    outline: none;
    appearance: none;
    border: none;
    background-color: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    transition: 0.25s;
}
.wp-block select:focus {
    outline: none;
    box-shadow: none;
}
.wp-block select:focus::placeholder {
    opacity: 1;
}
.wp-block select::placeholder {
    color: var(--cs-color-placeholder, var(--cs-color-secondary));
}
.wp-block select:not([size]):not([multiple]) {
    height: calc(var(--cs-font-input-line-height) + var(--cs-input-padding-y, 1rem) * 2 + var(--cs-input-border-size, 1px) * 2);
    padding-right: 1.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='currentColor'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='currentColor'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: 0.6em;
    background-repeat: no-repeat;
    background-position: calc(100% - var(--cs-input-padding-y, 1rem)) center;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block select:not([size]):not([multiple]) {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='%23fff'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    }
}
[data-scheme=dark] .wp-block select:not([size]):not([multiple]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='%23fff'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .wp-block select:not([size]):not([multiple]) {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='%23fff'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .wp-block select:not([size]):not([multiple]) {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='%23fff'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    }
}
[data-scheme=inverse] .wp-block select:not([size]):not([multiple]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='%23fff'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=inverse] .wp-block select:not([size]):not([multiple]) {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='%23fff'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=inverse] .wp-block select:not([size]):not([multiple]) {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='%23fff'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    }
}

.wp-block-site-title {
    font-family: var(--cs-font-main-logo-family), sans-serif;
    font-size: var(--cs-font-main-logo-size);
    font-weight: var(--cs-font-main-logo-weight);
    font-style: var(--cs-font-main-logo-style);
    letter-spacing: var(--cs-font-main-logo-letter-spacing);
    text-transform: var(--cs-font-main-logo-text-transform);
}
.wp-block-site-title a {
    text-decoration: none;
}

.wp-block .wp-block-post-title:not(:first-child) {
    margin-top: 0.5rem;
}

.wp-block-group:has(.wp-block-post-navigation-link + .wp-block-post-navigation-link.has-text-align-right) {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wp-block-post-title {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
}
.wp-block-post-title a {
    display: block;
    text-decoration: none;
    display: inline;
    padding-bottom: 0.05em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-title, var(--cs-color-primary));
    transition: 0.25s;
    text-decoration: none;
}
.wp-block-post-title a:hover {
    background-size: 100% 1px;
    color: var(--cs-color-primary);
}
.entry-content .is-layout-constrained .wp-block-post-title.alignwide, .entry-content .is-layout-constrained .wp-block-post-title.alignfull {
    margin-top: 0;
    margin-bottom: 0;
}

.wp-block-post-excerpt {
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
    margin-top: 0.5rem;
    color: var(--cs-color-secondary);
}
.wp-block-post-excerpt__more-text {
    margin-top: 0.5rem;
}
.wp-block-post-excerpt:not(.has-link-color) .wp-block-post-excerpt__more-link {
    color: var(--cs-color-accent);
}
.wp-block-post-excerpt[style*="text-decoration:line-through"] .wp-block-post-excerpt__more-link {
    text-decoration: line-through;
}

.wp-block-post-terms {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    background: none;
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
}
.wp-block-post-terms:not(:first-child) {
    margin-top: 1.25rem;
}
.wp-block-post-terms.has-text-align-left {
    justify-content: flex-start;
}
.wp-block-post-terms.has-text-align-right {
    justify-content: flex-end;
}
.wp-block-post-terms.has-text-align-center {
    justify-content: center;
}
.wp-block-post-terms .wp-block-post-terms__separator {
    display: none;
}
.wp-block-post-terms a {
    display: flex;
    align-items: center;
}
.wp-block-post-terms a:not(.has-link-color, .has-link-color a) {
    color: var(--cs-color-accent);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block-post-terms a:not(.has-link-color, .has-link-color a) {
        color: var(--cs-color-primary);
    }
}
[data-scheme=dark] .wp-block-post-terms a:not(.has-link-color, .has-link-color a) {
    color: var(--cs-color-primary);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .wp-block-post-terms a:not(.has-link-color, .has-link-color a) {
        color: var(--cs-color-primary);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .wp-block-post-terms a:not(.has-link-color, .has-link-color a) {
        color: var(--cs-color-primary);
    }
}
.wp-block-post-terms a:not(.has-link-color, .has-link-color a):hover {
    color: var(--cs-color-primary);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block-post-terms a:not(.has-link-color, .has-link-color a):hover {
        color: var(--cs-color-secondary);
    }
}
[data-scheme=dark] .wp-block-post-terms a:not(.has-link-color, .has-link-color a):hover {
    color: var(--cs-color-secondary);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .wp-block-post-terms a:not(.has-link-color, .has-link-color a):hover {
        color: var(--cs-color-secondary);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .wp-block-post-terms a:not(.has-link-color, .has-link-color a):hover {
        color: var(--cs-color-secondary);
    }
}
.wp-block-post-terms[style*=underline] {
    text-decoration: none !important;
}
.wp-block-post-terms[style*=underline] a {
    text-decoration: underline;
}
.wp-block-post-terms[style*=line-through] {
    text-decoration: none !important;
}
.wp-block-post-terms[style*=line-through] a {
    text-decoration: line-through !important;
}

.wp-block-post-date {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--cs-color-secondary);
}
.wp-block-post-date:not([style*=line-height]) {
    line-height: 1;
}
.wp-block-post-date.has-small-font-size time, .wp-block-post-date.has-medium-font-size time, .wp-block-post-date.has-large-font-size time, .wp-block-post-date.has-x-large-font-size time {
    font-size: inherit;
}
.wp-block-post-date[style*=font-style] time {
    font-style: inherit;
}
.wp-block-post-date[style*=font-weight] time {
    font-weight: inherit;
}
.wp-block-post-date[style*=line-height] time {
    line-height: inherit;
}
.wp-block-post-date[style*=letter-spacing] time {
    letter-spacing: inherit;
}
.wp-block-post-date[style*=text-transform] time {
    text-transform: inherit;
}
.wp-block-post-date[style*="text-decoration:underline"], .wp-block-post-date[style*="text-decoration: underline"] {
    text-decoration: none !important;
}
.wp-block-post-date[style*="text-decoration:underline"] time, .wp-block-post-date[style*="text-decoration: underline"] time {
    text-decoration: underline;
}
.wp-block-post-date[style*="text-decoration:line-through"], .wp-block-post-date[style*="text-decoration: line-through"] {
    text-decoration: none !important;
}
.wp-block-post-date[style*="text-decoration:line-through"] time, .wp-block-post-date[style*="text-decoration: line-through"] time {
    text-decoration: line-through;
}

.wp-block-post-author {
    margin-top: 0;
    margin-bottom: 0;
}
.wp-block-post-author .wp-block-post-author__content {
    display: flex;
    flex-direction: column;
}
.wp-block-post-author .wp-block-post-author__content .wp-block-post-author__byline {
    font-size: inherit;
}
.wp-block-post-author .wp-block-post-author__content .wp-block-post-author__link {
    display: inline;
    padding-bottom: 0;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.wp-block-post-author .wp-block-post-author__content .wp-block-post-author__link:hover {
    background-size: 0px 1px;
    color: var(--cs-color-primary);
}
.wp-block-post-author:not(.has-small-font-size, .has-medium-font-size, .has-large-font-size, .has-x-large-font-size) {
    font-size: 1rem;
}
.wp-block-post-author .wp-block-post-author__avatar img {
    border-radius: var(--cs-avatar-border-radius);
}

.wp-block-avatar img {
    border-radius: var(--cs-avatar-border-radius);
}
.wp-block-avatar img[style*=border-width] {
    border-style: solid;
}

.wp-block-read-more {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    padding: 0.625rem 1.125rem;
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
    border-radius: var(--cs-button-border-radius);
    box-shadow: none;
    transition: 0.25s;
    cursor: pointer;
}
.wp-block-read-more:focus, .wp-block-read-more:hover {
    background: var(--cs-color-button-hover);
    color: var(--cs-color-button-hover-contrast);
    outline: none;
}
.wp-block-read-more:disabled, .wp-block-read-more:disabled[disabled] {
    color: var(--cs-color-button-contrast);
    opacity: 0.5;
}
.wp-block-read-more:disabled:hover, .wp-block-read-more:disabled[disabled]:hover {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
}
.wp-block-read-more b, .wp-block-read-more strong {
    color: inherit;
}

.wp-block-query .wp-block-post-featured-image {
    margin-bottom: 1.5rem;
}
.wp-block-query .wp-block-post-featured-image img {
    border-radius: var(--cs-thumbnail-border-radius);
}
.wp-block-query .wp-block-query-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    padding: 0;
}
.wp-block-query .wp-block-query-pagination > a, .wp-block-query .wp-block-query-pagination > span {
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    margin: 0;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-query .wp-block-query-pagination > a:hover {
    color: var(--cs-color-primary);
}
.wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers > span, .wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers > a {
    box-sizing: border-box;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-query .wp-block-query-pagination .wp-block-query-pagination-numbers > .current {
    color: var(--cs-color-primary-contrast);
    background-color: var(--cs-color-primary);
    border-radius: var(--cs-layout-elements-border-radius);
    padding: 0.5rem 0.75rem;
}
.wp-block-query .wp-block-query-pagination a.post-page-numbers:hover, .wp-block-query .wp-block-query-pagination a.page-numbers:hover, .wp-block-query .wp-block-query-pagination a.wp-block-query-pagination-previous:hover, .wp-block-query .wp-block-query-pagination a.wp-block-query-pagination-next:hover {
    color: var(--cs-color-accent);
}
.wp-block-query .wp-block-query-pagination .wp-block-query-pagination-previous {
    font-size: 0;
    text-decoration: none;
}
.wp-block-query .wp-block-query-pagination .wp-block-query-pagination-previous:before {
    font-size: 0.875rem;
    font-family: "cs-icons";
    content: "\e904";
}
.wp-block-query .wp-block-query-pagination .wp-block-query-pagination-next {
    font-size: 0;
    text-decoration: none;
}
.wp-block-query .wp-block-query-pagination .wp-block-query-pagination-next:after {
    font-size: 0.875rem;
    font-family: "cs-icons";
    content: "\e906";
}

.wp-block-post-template .wp-block-post-date {
    margin-top: 0.25rem;
}
.wp-block-post-template .wp-block-post-title {
    margin-bottom: 0;
}
.wp-block-post-template.is-flex-container {
    row-gap: 5rem;
    column-gap: 1.5rem;
}
.wp-block-post-template.is-flex-container.is-style-cs-post-template-buttom-border > li {
    position: relative;
}
.wp-block-post-template.is-flex-container.is-style-cs-post-template-buttom-border > li:after {
    background-color: var(--cs-color-border);
    display: block;
    position: absolute;
    left: 0;
    bottom: -2.5rem;
    width: 100%;
    height: 1px;
    content: "";
}
@media (min-width: 576px) and (max-width: 991.98px) {
    .wp-block-post-template.is-flex-container.is-style-cs-post-template-buttom-border > li:nth-last-child(-n+2):after {
        display: none;
    }
}
@media (max-width: 575.98px) {
    .wp-block-post-template.is-flex-container.is-style-cs-post-template-buttom-border > li:last-child:after {
        display: none;
    }
}
@media (max-width: 1247.98px) {
    .wp-block-post-template.is-flex-container {
        row-gap: 3.75rem;
    }
    .wp-block-post-template.is-flex-container.is-style-cs-post-template-buttom-border > li:after {
        bottom: -1.875rem;
    }
}
@media (max-width: 991.98px) {
    .wp-block-post-template.is-flex-container {
        row-gap: 2.5rem;
    }
    .wp-block-post-template.is-flex-container.is-style-cs-post-template-buttom-border > li:after {
        bottom: -1.25rem;
    }
}
@media (max-width: 575.98px) {
    .wp-block-post-template.is-flex-container {
        row-gap: 2.5rem;
    }
    .wp-block-post-template.is-flex-container.is-style-cs-post-template-buttom-border > li:after {
        bottom: -1.25rem;
    }
}
.wp-block-post-template.is-flex-container.is-flex-container[class*=columns-] > li {
    width: 100%;
}
@media (min-width: 576px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-2 > li {
        width: calc(50% - 0.75rem);
    }
}
@media (min-width: 576px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li {
        width: calc(50% - 0.75rem);
    }
}
@media (min-width: 768px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-3 > li {
        width: calc(33.33333% - 1rem);
    }
}
@media (min-width: 576px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li {
        width: calc(50% - 0.75rem);
    }
}
@media (min-width: 768px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li {
        width: calc(50% - 0.75rem);
    }
}
@media (min-width: 1250px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-4 > li {
        width: calc(25% - 1.125rem);
    }
}
@media (min-width: 576px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li {
        width: calc(50% - 0.75rem);
    }
}
@media (min-width: 768px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li {
        width: calc(33.33333% - 1rem);
    }
}
@media (min-width: 1250px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li {
        width: calc(25% - 1.125rem);
    }
}
@media (min-width: 1248px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-5 > li {
        width: calc(16.66667% - 1.25rem);
    }
}
@media (min-width: 576px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li {
        width: calc(50% - 0.75rem);
    }
}
@media (min-width: 768px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li {
        width: calc(33.33333% - 1rem);
    }
}
@media (min-width: 1250px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li {
        width: calc(25% - 1.125rem);
    }
}
@media (min-width: 1248px) {
    .wp-block-post-template.is-flex-container.is-flex-container.columns-6 > li {
        width: calc(16.66667% - 1.2857142857rem);
    }
}
.alignfull .wp-block-post-template.is-layout-constrained .alignwide,
.alignfull .wp-block-post-template.is-layout-constrained .alignfull {
    width: unset;
    margin-left: unset;
    margin-right: unset;
}
.alignfull .wp-block-post-template.is-layout-constrained.has-background > li {
    max-width: var(--cs-entry-content-large-width);
    margin-left: auto;
    margin-right: auto;
}
.alignfull .wp-block-post-template.is-layout-constrained:not(.has-background) {
    max-width: var(--cs-entry-content-large-width);
    margin-left: auto;
    margin-right: auto;
}
.wp-block-post-template.has-text-color .wp-block-post-title,
.wp-block-post-template.has-text-color .wp-block-post-excerpt {
    color: inherit;
}
.wp-block-post-template.has-text-color:not(.has-link-color) .wp-block-post-date, .wp-block-post-template.has-text-color:not(.has-link-color) .wp-block-post-date time, .wp-block-post-template.has-text-color:not(.has-link-color) .wp-block-post-date time a {
    color: inherit;
}
.wp-block-post-template.has-small-font-size .wp-block-post-title,
.wp-block-post-template.has-small-font-size .wp-block-post-date time, .wp-block-post-template.has-small-font-size .wp-block-post-date time a,
.wp-block-post-template.has-small-font-size .wp-block-post-excerpt, .wp-block-post-template.has-medium-font-size .wp-block-post-title,
.wp-block-post-template.has-medium-font-size .wp-block-post-date time, .wp-block-post-template.has-medium-font-size .wp-block-post-date time a,
.wp-block-post-template.has-medium-font-size .wp-block-post-excerpt, .wp-block-post-template.has-large-font-size .wp-block-post-title,
.wp-block-post-template.has-large-font-size .wp-block-post-date time, .wp-block-post-template.has-large-font-size .wp-block-post-date time a,
.wp-block-post-template.has-large-font-size .wp-block-post-excerpt, .wp-block-post-template.has-x-large-font-size .wp-block-post-title,
.wp-block-post-template.has-x-large-font-size .wp-block-post-date time, .wp-block-post-template.has-x-large-font-size .wp-block-post-date time a,
.wp-block-post-template.has-x-large-font-size .wp-block-post-excerpt {
    font-size: inherit;
}
.wp-block-post-template[style*=font-style] .wp-block-post-title,
.wp-block-post-template[style*=font-style] .wp-block-post-date time, .wp-block-post-template[style*=font-style] .wp-block-post-date time a,
.wp-block-post-template[style*=font-style] .wp-block-post-excerpt {
    font-style: inherit;
}
.wp-block-post-template[style*=font-weight] .wp-block-post-title,
.wp-block-post-template[style*=font-weight] .wp-block-post-date time, .wp-block-post-template[style*=font-weight] .wp-block-post-date time a,
.wp-block-post-template[style*=font-weight] .wp-block-post-excerpt {
    font-weight: inherit;
}
.wp-block-post-template[style*=line-height] .wp-block-post-title,
.wp-block-post-template[style*=line-height] .wp-block-post-date time, .wp-block-post-template[style*=line-height] .wp-block-post-date time a,
.wp-block-post-template[style*=line-height] .wp-block-post-excerpt {
    line-height: inherit;
}
.wp-block-post-template[style*=letter-spacing] .wp-block-post-title,
.wp-block-post-template[style*=letter-spacing] .wp-block-post-date time, .wp-block-post-template[style*=letter-spacing] .wp-block-post-date time a,
.wp-block-post-template[style*=letter-spacing] .wp-block-post-excerpt {
    letter-spacing: inherit;
}
.wp-block-post-template[style*=text-transform] .wp-block-post-title,
.wp-block-post-template[style*=text-transform] .wp-block-post-date time, .wp-block-post-template[style*=text-transform] .wp-block-post-date time a,
.wp-block-post-template[style*=text-transform] .wp-block-post-excerpt {
    text-transform: inherit;
}

.wp-block-comments-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    padding: 0;
}
@media (min-width: 768px) {
    .wp-block-comments-pagination {
        margin-top: 4rem;
    }
}
@media (min-width: 1250px) {
    .wp-block-comments-pagination {
        margin-top: 5rem;
    }
}
.wp-block-comments-pagination > a, .wp-block-comments-pagination > span {
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    margin: 0;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-comments-pagination > a:hover {
    color: var(--cs-color-primary);
}
.wp-block-comments-pagination .wp-block-comments-pagination-numbers {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.wp-block-comments-pagination .wp-block-comments-pagination-numbers > span, .wp-block-comments-pagination .wp-block-comments-pagination-numbers > a {
    box-sizing: border-box;
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-comments-pagination .wp-block-comments-pagination-numbers > .current {
    color: var(--cs-color-primary-contrast);
    background-color: var(--cs-color-primary);
    border-radius: var(--cs-layout-elements-border-radius);
    padding: 0.5rem 0.75rem;
    margin: 0 0.75rem;
}
.wp-block-comments-pagination a.post-page-numbers:hover, .wp-block-comments-pagination a.page-numbers:hover, .wp-block-comments-pagination a.wp-block-query-pagination-previous:hover, .wp-block-comments-pagination a.wp-block-query-pagination-next:hover {
    color: var(--cs-color-primary);
}
.wp-block-comments-pagination .wp-block-comments-pagination-previous {
    font-size: 0;
    text-decoration: none;
}
.wp-block-comments-pagination .wp-block-comments-pagination-previous:before {
    font-size: 0.875rem;
    font-family: "cs-icons";
    content: "\e904";
}
.wp-block-comments-pagination .wp-block-comments-pagination-next {
    font-size: 0;
    text-decoration: none;
}
.wp-block-comments-pagination .wp-block-comments-pagination-next:after {
    font-size: 0.875rem;
    font-family: "cs-icons";
    content: "\e906";
}

.wp-block-comments .wp-block-columns {
    gap: 1rem;
}
.wp-block-comments .wp-block-columns:not(:last-child) {
    margin-bottom: 2rem;
}
.wp-block-comments .wp-block-columns:last-child {
    margin-bottom: 1rem;
}
.wp-block-comments .wp-block-comment-date,
.wp-block-comments .wp-block-comment-edit-link {
    margin-top: 0;
    margin-bottom: 0;
}
.wp-block-comments .wp-block-comment-author-name {
    margin-bottom: 0.25rem !important;
}
.wp-block-comments .wp-block-comment-author-name,
.wp-block-comments .wp-block-comment-date {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
}
.wp-block-comments .wp-block-comment-author-name a,
.wp-block-comments .wp-block-comment-date a {
    text-decoration: none;
}
.wp-block-comments .wp-block-comment-edit-link a {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-comments .wp-block-comment-content {
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
    margin-top: 0.5rem !important;
    margin-bottom: 1rem !important;
}
.wp-block-comments .wp-block-comment-reply-link {
    margin-top: 1rem !important;
}
.wp-block-comments .wp-block-comment-reply-link a {
    background: var(--cs-layout-background);
    color: var(--cs-color-primary);
}
.wp-block-comments .wp-block-comment-reply-link a:focus, .wp-block-comments .wp-block-comment-reply-link a:hover {
    background: var(--cs-color-button-hover);
    color: var(--cs-color-button-hover-contrast);
}
.wp-block-comments:not(.has-text-color) .wp-block-comment-content {
    color: var(--cs-color-primary);
}
.wp-block-comments.has-text-color .comment-reply-title,
.wp-block-comments.has-text-color .comment-form-cookies-consent label {
    color: inherit;
}
.wp-block-comments.has-text-color:not(.has-link-color) .wp-block-comment-author-name a,
.wp-block-comments.has-text-color:not(.has-link-color) .wp-block-comment-date a {
    color: inherit;
}
.wp-block-comments.has-small-font-size .wp-block-comment-content, .wp-block-comments.has-medium-font-size .wp-block-comment-content, .wp-block-comments.has-large-font-size .wp-block-comment-content, .wp-block-comments.has-x-large-font-size .wp-block-comment-content {
    font-size: inherit;
}
.wp-block-comments[style*=font-style] .wp-block-comment-content {
    font-style: inherit;
}
.wp-block-comments[style*=font-weight] .wp-block-comment-content {
    font-weight: inherit;
}
.wp-block-comments[style*=line-height] .wp-block-comment-content {
    line-height: inherit;
}
.wp-block-comments[style*=letter-spacing] .wp-block-comment-content {
    letter-spacing: inherit;
}
.wp-block-comments[style*=text-transform] .wp-block-comment-content {
    text-transform: inherit;
}

.wp-block-post-comments-form {
    margin-bottom: 2.5rem;
    background: var(--cs-layout-background);
    border-radius: var(--cs-thumbnail-border-radius);
}
.wp-block-post-comments-form .comment-form > p {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
}
.wp-block-post-comments-form .comment-form > p:not(:last-child, .form-submit) {
    margin-bottom: 1.5rem;
}
.wp-block-post-comments-form .comment-form > p.comment-form-cookies-consent label {
    margin-top: 0.35em;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .wp-block-post-comments-form .comment-form > p {
        column-gap: 1rem;
    }
    .wp-block-post-comments-form .comment-form > p.comment-form-author {
        flex: 0 0 calc(50% - 0.5rem);
    }
    .wp-block-post-comments-form .comment-form > p.comment-form-email {
        flex: 0 0 calc(50% - 0.5rem);
    }
}
.wp-block-post-comments-form .comment-form input:not([type=submit]),
.wp-block-post-comments-form .comment-form textarea {
    background: var(--cs-color-input);
    border: 1px solid var(--cs-color-border);
}
@media (hover: hover) {
    .wp-block-post-comments-form .comment-form input:not([type=submit]):hover,
    .wp-block-post-comments-form .comment-form textarea:hover {
        opacity: 0.7;
    }
}
.wp-block-post-comments-form .comment-form .wp-block-button .wp-block-button__link {
    border: none;
}
.wp-block-post-comments-form.has-text-color .comment-reply-title,
.wp-block-post-comments-form.has-text-color .comment-form-cookies-consent label {
    color: inherit;
}
.wp-block-post-comments-form.has-small-font-size .comment-form > p, .wp-block-post-comments-form.has-small-font-size .comment-form > p a, .wp-block-post-comments-form.has-small-font-size .comment-form-cookies-consent label, .wp-block-post-comments-form.has-medium-font-size .comment-form > p, .wp-block-post-comments-form.has-medium-font-size .comment-form > p a, .wp-block-post-comments-form.has-medium-font-size .comment-form-cookies-consent label, .wp-block-post-comments-form.has-large-font-size .comment-form > p, .wp-block-post-comments-form.has-large-font-size .comment-form > p a, .wp-block-post-comments-form.has-large-font-size .comment-form-cookies-consent label, .wp-block-post-comments-form.has-x-large-font-size .comment-form > p, .wp-block-post-comments-form.has-x-large-font-size .comment-form > p a, .wp-block-post-comments-form.has-x-large-font-size .comment-form-cookies-consent label {
    font-size: inherit;
}
.wp-block-post-comments-form[style*=font-style] .comment-form > p, .wp-block-post-comments-form[style*=font-style] .comment-form > p a, .wp-block-post-comments-form[style*=font-style] .comment-form-cookies-consent label {
    font-style: inherit;
}
.wp-block-post-comments-form[style*=font-weight] .comment-form > p, .wp-block-post-comments-form[style*=font-weight] .comment-form > p a, .wp-block-post-comments-form[style*=font-weight] .comment-form-cookies-consent label {
    font-weight: inherit;
}
.wp-block-post-comments-form[style*=line-height] .comment-form > p, .wp-block-post-comments-form[style*=line-height] .comment-form > p a, .wp-block-post-comments-form[style*=line-height] .comment-form-cookies-consent label {
    line-height: inherit;
}
.wp-block-post-comments-form[style*=letter-spacing] .comment-form > p, .wp-block-post-comments-form[style*=letter-spacing] .comment-form > p a, .wp-block-post-comments-form[style*=letter-spacing] .comment-form-cookies-consent label {
    letter-spacing: inherit;
}
.wp-block-post-comments-form[style*=text-transform] .comment-form > p, .wp-block-post-comments-form[style*=text-transform] .comment-form > p a, .wp-block-post-comments-form[style*=text-transform] .comment-form-cookies-consent label {
    text-transform: inherit;
}

.wp-block-rss__item:not(:last-child) {
    margin-bottom: 0.5rem;
}
.wp-block-rss__item-publish-date, .wp-block-rss__item-author {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    margin-top: 0.5rem;
}
.wp-block-rss__item-excerpt {
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
    margin-top: 0.25rem;
    color: var(--cs-color-secondary);
}
.wp-block-rss.aligncenter {
    margin-left: 2rem;
    margin-right: 2rem;
}

.wp-block-tag-cloud {
    margin: 0 auto;
}
.is-style-outline .wp-block-tag-cloud, .wp-block-tag-cloud.is-style-outline {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0;
    margin: 0;
}
.is-style-outline .wp-block-tag-cloud li, .wp-block-tag-cloud.is-style-outline li {
    position: relative;
    line-height: 1;
}
.is-style-outline .wp-block-tag-cloud li a, .wp-block-tag-cloud.is-style-outline li a {
    position: relative;
    z-index: 2;
    text-decoration: none;
}
.is-style-outline .wp-block-tag-cloud a, .wp-block-tag-cloud.is-style-outline a {
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
    display: flex;
    padding: 0.375rem 0.75rem;
    justify-content: center;
    align-items: center;
    color: var(--cs-color-primary);
    background: var(--cs-layout-background);
    text-decoration: none;
    transition: 0.25s;
    border-radius: var(--cs-tag-border-radius);
    margin-right: 0;
}
.is-style-outline .wp-block-tag-cloud a:hover, .wp-block-tag-cloud.is-style-outline a:hover {
    color: var(--cs-color-secondary);
}
.is-style-outline .wp-block-tag-cloud a, .wp-block-tag-cloud.is-style-outline a {
    font-size: var(--cs-font-category-size) !important;
    border: none;
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
    border-radius: 100px;
}

.wp-block-calendar table, .wp-block-calendar .wp-block-table {
    margin: 0;
}
.wp-block-calendar td,
.wp-block-calendar th {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    padding: 0.25rem;
    line-height: 2.75rem;
    text-align: center;
    border-top: 1px solid var(--cs-color-border);
    color: var(--cs-color-secondary);
}
.wp-block-calendar th {
    border-bottom: none;
    color: var(--cs-color-primary);
    border-bottom: 1px solid var(--cs-color-border);
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-calendar tr {
    border: none;
}
.wp-block-calendar tbody td a {
    position: relative;
    display: block;
    transition: 0.25s;
    text-decoration: none;
}
.wp-block-calendar tbody td#today a:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid var(--cs-color-secondary);
    border-left: 10px solid transparent;
    transition: 0.25s;
    content: "";
}
.wp-block-calendar tfoot td {
    text-align: left;
}
.wp-block-calendar tfoot td a {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    padding-right: 10px;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.wp-block-calendar tfoot td a:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    width: 2px;
    background-color: var(--cs-color-contrast-300);
}
.wp-block-calendar tfoot td a:hover {
    color: var(--cs-color-primary);
}
.wp-block-calendar caption {
    color: var(--cs-color-primary);
    caption-side: top;
    padding-top: 0;
    text-align: left;
}
.wp-block-calendar .wp-calendar-nav {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.wp-block-calendar .wp-calendar-nav a {
    color: var(--cs-color-primary);
    text-decoration: none;
    transition: 0.25s;
}
.wp-block-calendar .wp-calendar-nav a:hover {
    color: var(--cs-color-secondary);
}
.wp-block-calendar .wp-calendar-nav .pad {
    width: 1rem;
}
.wp-block-calendar .wp-calendar-table.has-text-color thead {
    border-bottom: none;
}
.wp-block-calendar .wp-calendar-table.has-text-color td,
.wp-block-calendar .wp-calendar-table.has-text-color th {
    color: inherit;
    border-color: currentColor;
}
.wp-block-calendar .wp-calendar-table:not(.has-background, .has-text-color, .has-link-color) thead th {
    background-color: var(--cs-color-border);
    border-color: var(--cs-color-border);
}
.wp-block-calendar .wp-calendar-table:not(.has-background, .has-text-color, .has-link-color) tbody td {
    border-color: var(--cs-color-border);
}
.wp-block-calendar .wp-calendar-table:not(.has-background, .has-text-color, .has-link-color) tbody td a {
    background: var(--cs-layout-background);
    color: var(--cs-color-accent);
}
.wp-block-calendar .wp-calendar-table:not(.has-background, .has-text-color, .has-link-color) tbody td a:hover {
    background-color: var(--cs-color-secondary);
    color: var(--cs-color-secondary-contrast);
}
.wp-block-calendar .wp-calendar-table.has-background thead th, .wp-block-calendar .wp-calendar-table.has-text-color thead th, .wp-block-calendar .wp-calendar-table.has-link-color thead th {
    background-color: inherit;
    border-color: inherit;
}
.wp-block-calendar .wp-calendar-table.has-background tbody td, .wp-block-calendar .wp-calendar-table.has-text-color tbody td, .wp-block-calendar .wp-calendar-table.has-link-color tbody td {
    border-color: inherit;
}
.wp-block-calendar .wp-calendar-table.has-background tbody td a, .wp-block-calendar .wp-calendar-table.has-text-color tbody td a, .wp-block-calendar .wp-calendar-table.has-link-color tbody td a {
    text-decoration: underline;
}
.wp-block-calendar .wp-calendar-table.has-background tbody td a:hover, .wp-block-calendar .wp-calendar-table.has-text-color tbody td a:hover, .wp-block-calendar .wp-calendar-table.has-link-color tbody td a:hover {
    text-decoration: none;
}
.wp-block-calendar.aligncenter .wp-calendar-table {
    max-width: calc( 100% - 2rem );
    margin-left: 1rem;
    margin-right: 1rem;
}
.wp-block-calendar.has-small-font-size .wp-calendar-table caption, .wp-block-calendar.has-small-font-size .wp-calendar-table th, .wp-block-calendar.has-small-font-size .wp-calendar-table td, .wp-block-calendar.has-medium-font-size .wp-calendar-table caption, .wp-block-calendar.has-medium-font-size .wp-calendar-table th, .wp-block-calendar.has-medium-font-size .wp-calendar-table td, .wp-block-calendar.has-large-font-size .wp-calendar-table caption, .wp-block-calendar.has-large-font-size .wp-calendar-table th, .wp-block-calendar.has-large-font-size .wp-calendar-table td, .wp-block-calendar.has-x-large-font-size .wp-calendar-table caption, .wp-block-calendar.has-x-large-font-size .wp-calendar-table th, .wp-block-calendar.has-x-large-font-size .wp-calendar-table td {
    font-size: inherit;
}
.wp-block-calendar[style*=font-style] .wp-calendar-table caption, .wp-block-calendar[style*=font-style] .wp-calendar-table th, .wp-block-calendar[style*=font-style] .wp-calendar-table td {
    font-style: inherit;
}
.wp-block-calendar[style*=font-weight] .wp-calendar-table caption, .wp-block-calendar[style*=font-weight] .wp-calendar-table th, .wp-block-calendar[style*=font-weight] .wp-calendar-table td {
    font-weight: inherit;
}
.wp-block-calendar[style*=line-height] .wp-calendar-table caption, .wp-block-calendar[style*=line-height] .wp-calendar-table th, .wp-block-calendar[style*=line-height] .wp-calendar-table td {
    line-height: inherit;
}
.wp-block-calendar[style*=letter-spacing] .wp-calendar-table caption, .wp-block-calendar[style*=letter-spacing] .wp-calendar-table th, .wp-block-calendar[style*=letter-spacing] .wp-calendar-table td {
    letter-spacing: inherit;
}
.wp-block-calendar[style*=text-transform] .wp-calendar-table caption, .wp-block-calendar[style*=text-transform] .wp-calendar-table th, .wp-block-calendar[style*=text-transform] .wp-calendar-table td {
    text-transform: inherit;
}

.wp-block-navigation .has-text-color .wp-block-navigation-item a.wp-block-navigation-item__content,
.wp-block-navigation .has-link-color .wp-block-navigation-item a.wp-block-navigation-item__content {
    color: inherit;
}
.wp-block-navigation .has-text-color .wp-block-navigation-item a.wp-block-navigation-item__content:hover,
.wp-block-navigation .has-link-color .wp-block-navigation-item a.wp-block-navigation-item__content:hover {
    color: inherit;
}
.wp-block-navigation .has-text-decoration-line-through .wp-block-navigation-item a.wp-block-navigation-item__content {
    text-decoration: line-through;
}
.wp-block-navigation-submenu__toggle svg {
    stroke: var(--cs-color-primary-contrast);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block-navigation__responsive-container.is-menu-open {
        background: var(--cs-layout-background);
    }
}
[data-scheme=dark] .wp-block-navigation__responsive-container.is-menu-open {
    background: var(--cs-layout-background);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .wp-block-navigation__responsive-container.is-menu-open {
        background: var(--cs-layout-background);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .wp-block-navigation__responsive-container.is-menu-open {
        background: var(--cs-layout-background);
    }
}
.wp-block-navigation__responsive-container-open {
    width: 40px;
    height: 40px;
}
.wp-block-navigation__responsive-container-open rect {
    height: 2px;
}
.wp-block-navigation__responsive-container-close {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .wp-block-navigation__responsive-container-close {
        color: var(--cs-color-primary);
    }
}
[data-scheme=dark] .wp-block-navigation__responsive-container-close {
    color: var(--cs-color-primary);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .wp-block-navigation__responsive-container-close {
        color: var(--cs-color-primary);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .wp-block-navigation__responsive-container-close {
        color: var(--cs-color-primary);
    }
}
.wp-block-navigation__responsive-dialog {
    max-width: var(--cs-entry-content-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.wp-block-navigation__submenu-container {
    background: var(--cs-layout-background);
}
.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
    background: var(--cs-layout-background);
}
.wp-block-navigation.has-background .wp-block-navigation__submenu-container {
    background-color: inherit;
}

.wp-block-audio.aligncenter {
    margin-left: 2rem;
    margin-right: 2rem;
}

html :where([style*=border-left-width]),
html :where([style*=border-right-width]),
html :where([style*=border-bottom-width]),
html :where([style*=border-top-width]) {
    border-color: var(--cs-color-border);
}

.cs-content-not-found-content {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
}

/*--------------------------------------------------------------
## Overlay
--------------------------------------------------------------*/
.cs-entry__overlay {
    position: relative;
}

.cs-overlay-background {
    display: flex;
    flex-direction: column;
    position: relative;
}
.cs-overlay-background:after {
    background: rgba(var(--cs-color-overlay-background), 0.3);
    border-radius: var(--cs-thumbnail-border-radius);
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    transition: 0.25s;
    opacity: 1;
}
.cs-overlay-background.cs-overlay-transparent:after, .cs-overlay-background.cs-overlay-transparent:before {
    opacity: 0 !important;
}
.cs-overlay-background .cs-entry__post-meta .cs-meta-category .post-categories li a {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: unset;
    color: var(--cs-color-primary);
    backdrop-filter: blur(10px);
}
.cs-overlay-background .cs-entry__post-meta .cs-meta-category .post-categories li a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cs-overlay-content {
    padding: 10px;
}
.cs-overlay-content a {
    position: relative;
    z-index: 2;
}

.cs-overlay-link {
    display: flex;
    position: absolute !important;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.cs-overlay-link a {
    display: block;
}

.cs-overlay-ratio {
    position: relative;
    display: flex;
    flex-direction: column;
}
.cs-archive-overlay .cs-overlay-ratio:not(.cs-ratio-original) {
    flex-direction: row;
}
.cs-overlay-ratio:not(.cs-ratio-original) .cs-overlay-background {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cs-overlay-ratio:not(.cs-ratio-original) .cs-overlay-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cs-overlay-ratio:not(.cs-ratio-original):before {
    content: "";
    display: table;
    box-sizing: border-box;
    width: 0;
}
.cs-overlay-ratio:not(.cs-ratio-original) .cs-overlay-content {
    flex: 1 0 100%;
    width: 100%;
}

.cs-ratio-landscape:before {
    padding-bottom: 75%;
}

.cs-ratio-landscape-3-2:before {
    padding-bottom: 66.66667%;
}

.cs-ratio-landscape-16-9:before {
    padding-bottom: 56.25%;
}

.cs-ratio-landscape-21-9:before {
    padding-bottom: 42%;
}

.cs-ratio-portrait:before {
    padding-bottom: 133.33333%;
}

.cs-ratio-portrait-2-3:before {
    padding-bottom: 150%;
}

.cs-ratio-square:before {
    padding-bottom: 100%;
}

@media (max-width: 991.98px) {
    .cs-ratio-wide:before {
        padding-bottom: 40%;
    }
}
@media (min-width: 1250px) {
    .cs-ratio-wide:before {
        min-height: calc(100vh - var(--cs-header-initial-height) + var(--cs-header-border-width));
    }
}

.cs-entry__inner.cs-entry__overlay .cs-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    transition: 0.25s;
    overflow: hidden;
}

.cs-entry__inner.cs-overlay-content:not(:first-child) {
    margin-top: 0;
}

/*--------------------------------------------------------------
## Forms
--------------------------------------------------------------*/
:root,
[data-scheme=light] {
    --cs-color-placeholder: #a5a5a5;
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=light] {
        --cs-color-placeholder: #a5a5a5;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=light] {
        --cs-color-placeholder: #a5a5a5;
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] {
        --cs-color-placeholder: #535353;
    }
}
[data-scheme=dark] {
    --cs-color-placeholder: #535353;
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] {
        --cs-color-placeholder: #535353;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] {
        --cs-color-placeholder: #535353;
    }
}
button,
input[type=button],
input[type=reset],
input[type=submit],
.cs-button {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    transition: 0.25s;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    padding: 0.625rem 1.125rem;
    border-radius: var(--cs-button-border-radius);
}
button:before,
input[type=button]:before,
input[type=reset]:before,
input[type=submit]:before,
.cs-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cs-color-button-hover);
    transition: opacity 0.25s ease;
    z-index: -1;
    opacity: 0;
}
button:focus::before, button:hover::before,
input[type=button]:focus::before,
input[type=button]:hover::before,
input[type=reset]:focus::before,
input[type=reset]:hover::before,
input[type=submit]:focus::before,
input[type=submit]:hover::before,
.cs-button:focus::before,
.cs-button:hover::before {
    opacity: 1;
}
button:focus, button:hover,
input[type=button]:focus,
input[type=button]:hover,
input[type=reset]:focus,
input[type=reset]:hover,
input[type=submit]:focus,
input[type=submit]:hover,
.cs-button:focus,
.cs-button:hover {
    color: var(--cs-color-button-hover-contrast);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
    outline: none;
}
button:disabled, button:disabled[disabled],
input[type=button]:disabled,
input[type=button]:disabled[disabled],
input[type=reset]:disabled,
input[type=reset]:disabled[disabled],
input[type=submit]:disabled,
input[type=submit]:disabled[disabled],
.cs-button:disabled,
.cs-button:disabled[disabled] {
    color: var(--cs-color-button-contrast);
    opacity: 0.5;
    padding: 0.875rem 1.25rem;
}
button:disabled:hover, button:disabled[disabled]:hover,
input[type=button]:disabled:hover,
input[type=button]:disabled[disabled]:hover,
input[type=reset]:disabled:hover,
input[type=reset]:disabled[disabled]:hover,
input[type=submit]:disabled:hover,
input[type=submit]:disabled[disabled]:hover,
.cs-button:disabled:hover,
.cs-button:disabled[disabled]:hover {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
select,
textarea {
    display: block;
    width: 100%;
    font-size: var(--cs-font-input-size);
    background-color: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    line-height: var(--cs-font-input-line-height);
    font-weight: var(--cs-font-input-weight);
    border: 1px solid var(--cs-color-border);
    padding: 0.5rem 1rem;
    border-radius: var(--cs-button-border-radius);
    font-family: var(--cs-font-input-family), sans-serif;
    font-size: var(--cs-font-input-size);
    font-weight: var(--cs-font-input-weight);
    font-style: var(--cs-font-input-style);
    line-height: var(--cs-font-input-line-height);
    letter-spacing: var(--cs-font-input-letter-spacing);
    text-transform: var(--cs-font-input-text-transform);
    width: 100%;
    min-height: 40px;
    margin: 0;
    outline: none;
    appearance: none;
    border: none;
    transition: 0.25s;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: none;
}
input[type=text]:focus::placeholder,
input[type=email]:focus::placeholder,
input[type=url]:focus::placeholder,
input[type=password]:focus::placeholder,
input[type=search]:focus::placeholder,
input[type=number]:focus::placeholder,
input[type=tel]:focus::placeholder,
input[type=range]:focus::placeholder,
input[type=date]:focus::placeholder,
input[type=month]:focus::placeholder,
input[type=week]:focus::placeholder,
input[type=time]:focus::placeholder,
input[type=datetime]:focus::placeholder,
input[type=datetime-local]:focus::placeholder,
input[type=color]:focus::placeholder,
select:focus::placeholder,
textarea:focus::placeholder {
    opacity: 1;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=range]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
select::placeholder,
textarea::placeholder {
    color: var(--cs-color-placeholder);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
    display: none;
}

select:not([size]):not([multiple]) {
    height: calc(var(--cs-font-input-line-height) + var(--cs-input-padding-y, 1rem) * 2 + var(--cs-input-border-size, 1px) * 2);
    padding-right: 1.5rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='currentColor'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='currentColor'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-size: 0.6em;
    background-repeat: no-repeat;
    background-position: calc(100% - var(--cs-input-padding-y, 1rem)) center;
}
[data-scheme=dark] select:not([size]):not([multiple]), html[data-scheme=inverse] select:not([size]):not([multiple]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cg fill='%23fff'%3E%3Cpath d='M10.293,3.293,6,7.586,1.707,3.293A1,1,0,0,0,.293,4.707l5,5a1,1,0,0,0,1.414,0l5-5a1,1,0,1,0-1.414-1.414Z' fill='%23fff'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

select::-ms-expand {
    display: none;
}

textarea {
    height: 100px;
    resize: vertical;
    border-radius: var(--cs-input-border-radius);
}

label {
    font-family: var(--cs-font-input-family), sans-serif;
    font-size: var(--cs-font-input-size);
    font-weight: var(--cs-font-input-weight);
    font-style: var(--cs-font-input-style);
    line-height: var(--cs-font-input-line-height);
    letter-spacing: var(--cs-font-input-letter-spacing);
    text-transform: var(--cs-font-input-text-transform);
    margin-bottom: 0.75rem;
}

.post-password-form {
    padding: 1rem;
    background: var(--cs-layout-background);
    border-radius: var(--cs-thumbnail-border-radius);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
}
@media (min-width: 576px) {
    .post-password-form {
        padding: 2rem;
    }
}
@media (min-width: 1250px) {
    .post-password-form {
        padding: 3rem;
    }
}
.post-password-form label {
    margin-bottom: 0;
    flex: 1;
}
.post-password-form input[type=password] {
    margin-top: 0.5rem;
    border: 1px solid var(--cs-color-border);
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
}
.post-password-form input[type=password]:focus {
    outline: none;
    box-shadow: none;
}
.post-password-form input[type=submit] {
    margin-left: 0.5rem;
}
.post-password-form > p:first-child {
    margin-bottom: 2rem;
}
.post-password-form > p:last-child {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
## Block Styles
--------------------------------------------------------------*/
.is-style-cs-about .wp-block-social-links .wp-social-link {
    margin: -0.5rem;
}
.is-style-cs-about .wp-block-social-links .wp-social-link .wp-block-social-link-anchor {
    padding: 0.5rem;
}
.is-style-cs-about .wp-block-social-links .wp-social-link svg {
    transition: 0.25s;
    width: 24px;
    height: 24px;
}
@media (hover: hover) {
    .is-style-cs-about .wp-block-social-links .wp-social-link:hover {
        transform: none;
    }
    .is-style-cs-about .wp-block-social-links .wp-social-link:hover svg {
        fill: var(--cs-color-accent);
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-about .wp-block-social-links .wp-social-link:hover svg {
        fill: var(--cs-color-primary);
        opacity: 0.7;
    }
}
@media (hover: hover) {
    [data-scheme=dark] .is-style-cs-about .wp-block-social-links .wp-social-link:hover svg {
        fill: var(--cs-color-primary);
        opacity: 0.7;
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .is-style-cs-about .wp-block-social-links .wp-social-link:hover svg {
        fill: var(--cs-color-primary);
        opacity: 0.7;
    }
}
@media (hover: hover) and (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .is-style-cs-about .wp-block-social-links .wp-social-link:hover svg {
        fill: var(--cs-color-primary);
        opacity: 0.7;
    }
}
.is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin {
    position: relative;
}
.is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:after {
    visibility: visible;
    content: "";
    position: absolute;
    top: calc( 1rem * 0.5 );
    left: calc( 1rem * 0.5 );
    width: 24px;
    height: 24px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--cs-color-primary);
    transition: 0.25s;
}
@supports not ((-webkit-mask-image: url(#mask)) or (mask-image: url(#mask))) {
    .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:after {
        background-size: contain;
        background-repeat: no-repeat;
    }
}
@supports (-webkit-mask-image: url(#mask)) or (mask-image: url(#mask)) {
    @media (hover: hover) {
        .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:hover:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:hover:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:hover:after, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:hover:after {
            background-color: var(--cs-color-accent);
        }
    }
    @media (hover: hover) and (prefers-color-scheme: dark) {
        :root html[data-scheme=auto] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:hover:after {
            background-color: var(--cs-color-primary);
            opacity: 0.7;
        }
    }
    @media (hover: hover) {
        [data-scheme=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:hover:after, html[data-scheme=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:hover:after, html[data-scheme=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:hover:after, html[data-scheme=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:hover:after {
            background-color: var(--cs-color-primary);
            opacity: 0.7;
        }
    }
    @media (hover: hover) and (prefers-color-scheme: dark) {
        :root html[data-scheme=auto][data-d=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto][data-d=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto][data-d=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto][data-d=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:hover:after {
            background-color: var(--cs-color-primary);
            opacity: 0.7;
        }
    }
    @media (hover: hover) and (prefers-color-scheme: light) {
        :root html[data-scheme=auto][data-l=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto][data-l=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto][data-l=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:hover:after, :root html[data-scheme=auto][data-l=dark] .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:hover:after {
            background-color: var(--cs-color-primary);
            opacity: 0.7;
        }
    }
}
.is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor svg, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor svg, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor svg, .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor svg {
    visibility: hidden;
}
.is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:after {
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTEzLjg5OTkgMTAuNDcyTDIxLjMzMjYgMi4wMjIyMkgxOS41NzEzTDEzLjExNzUgOS4zNTkwNkw3Ljk2Mjg1IDIuMDIyMjJIMi4wMTc1OEw5LjgxMjQyIDEzLjExNjhMMi4wMTc1OCAyMS45Nzc3SDMuNzc4OTlMMTAuNTk0NCAxNC4yMjk4TDE2LjAzODEgMjEuOTc3N0gyMS45ODM0TDEzLjg5OTUgMTAuNDcySDEzLjg5OTlaTTExLjQ4NzQgMTMuMjE0NkwxMC42OTc3IDEyLjEwOThMNC40MTM2NSAzLjMxOTAxSDcuMTE5MDhMMTIuMTkwMyAxMC40MTM1TDEyLjk4MDEgMTEuNTE4MkwxOS41NzIyIDIwLjczOTlIMTYuODY2N0wxMS40ODc0IDEzLjIxNVYxMy4yMTQ2WiIgZmlsbD0iIzI5Mjk0QiIvPjwvc3ZnPg==");
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTEzLjg5OTkgMTAuNDcyTDIxLjMzMjYgMi4wMjIyMkgxOS41NzEzTDEzLjExNzUgOS4zNTkwNkw3Ljk2Mjg1IDIuMDIyMjJIMi4wMTc1OEw5LjgxMjQyIDEzLjExNjhMMi4wMTc1OCAyMS45Nzc3SDMuNzc4OTlMMTAuNTk0NCAxNC4yMjk4TDE2LjAzODEgMjEuOTc3N0gyMS45ODM0TDEzLjg5OTUgMTAuNDcySDEzLjg5OTlaTTExLjQ4NzQgMTMuMjE0NkwxMC42OTc3IDEyLjEwOThMNC40MTM2NSAzLjMxOTAxSDcuMTE5MDhMMTIuMTkwMyAxMC40MTM1TDEyLjk4MDEgMTEuNTE4MkwxOS41NzIyIDIwLjczOTlIMTYuODY2N0wxMS40ODc0IDEzLjIxNVYxMy4yMTQ2WiIgZmlsbD0iIzI5Mjk0QiIvPjwvc3ZnPg==");
}
@supports not ((-webkit-mask-image: url(#mask)) or (mask-image: url(#mask))) {
    .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-x .wp-block-social-link-anchor:after {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTEzLjg5OTkgMTAuNDcyTDIxLjMzMjYgMi4wMjIyMkgxOS41NzEzTDEzLjExNzUgOS4zNTkwNkw3Ljk2Mjg1IDIuMDIyMjJIMi4wMTc1OEw5LjgxMjQyIDEzLjExNjhMMi4wMTc1OCAyMS45Nzc3SDMuNzc4OTlMMTAuNTk0NCAxNC4yMjk4TDE2LjAzODEgMjEuOTc3N0gyMS45ODM0TDEzLjg5OTUgMTAuNDcySDEzLjg5OTlaTTExLjQ4NzQgMTMuMjE0NkwxMC42OTc3IDEyLjEwOThMNC40MTM2NSAzLjMxOTAxSDcuMTE5MDhMMTIuMTkwMyAxMC40MTM1TDEyLjk4MDEgMTEuNTE4MkwxOS41NzIyIDIwLjczOTlIMTYuODY2N0wxMS40ODc0IDEzLjIxNVYxMy4yMTQ2WiIgZmlsbD0iIzI5Mjk0QiIvPjwvc3ZnPg==");
    }
}
.is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:after {
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTcuODU4NDQgMi4wNjk5NUM2Ljc5NDQzIDIuMTIwMTUgNi4wNjc4MyAyLjI4OTk1IDUuNDMyNjMgMi41Mzk1NUM0Ljc3NTIzIDIuNzk1NzUgNC4yMTgwMiAzLjEzOTU1IDMuNjYzNjIgMy42OTU5NkMzLjEwOTIyIDQuMjUyMzYgMi43Njc4MiA0LjgwOTk2IDIuNTEzNDIgNS40NjgzNkMyLjI2NzIyIDYuMTA0OTcgMi4xMDA0MiA2LjgzMjE3IDIuMDUzNDIgNy44OTY3N0MyLjAwNjQyIDguOTYxMzggMS45OTYwMiA5LjMwMzU4IDIuMDAxMjIgMTIuMDE5MkMyLjAwNjQyIDE0LjczNDggMi4wMTg0MiAxNS4wNzUyIDIuMDcwMDIgMTYuMTQyQzIuMTIwODIgMTcuMjA1OCAyLjI5MDAyIDE3LjkzMjIgMi41Mzk2MiAxOC41Njc2QzIuNzk2MjIgMTkuMjI1IDMuMTM5NjIgMTkuNzgyIDMuNjk2MjIgMjAuMzM2NkM0LjI1MjgyIDIwLjg5MTIgNC44MTAwMyAyMS4yMzE4IDUuNDcwMDMgMjEuNDg2NkM2LjEwNjAzIDIxLjczMjQgNi44MzM0MyAyMS45IDcuODk3ODQgMjEuOTQ2NkM4Ljk2MjI0IDIxLjk5MzIgOS4zMDQ4NCAyMi4wMDQgMTIuMDE5NyAyMS45OTg4QzE0LjczNDUgMjEuOTkzNiAxNS4wNzYzIDIxLjk4MTYgMTYuMTQyOSAyMS45MzFDMTcuMjA5NSAyMS44ODA0IDE3LjkzMjEgMjEuNzEgMTguNTY3NyAyMS40NjE2QzE5LjIyNTEgMjEuMjA0NCAxOS43ODI1IDIwLjg2MTYgMjAuMzM2NyAyMC4zMDQ4QzIwLjg5MDkgMTkuNzQ4IDIxLjIzMjEgMTkuMTkgMjEuNDg2MyAxOC41MzEyQzIxLjczMjcgMTcuODk1MiAyMS45MDAxIDE3LjE2NzggMjEuOTQ2MyAxNi4xMDQyQzIxLjk5MjkgMTUuMDM2OCAyMi4wMDM5IDE0LjY5NiAyMS45OTg3IDExLjk4MDhDMjEuOTkzNSA5LjI2NTU4IDIxLjk4MTMgOC45MjUxOCAyMS45MzA3IDcuODU4NzdDMjEuODgwMSA2Ljc5MjM3IDIxLjcxMDcgNi4wNjgxNyAyMS40NjEzIDUuNDMyMzZDMjEuMjA0MyA0Ljc3NDk2IDIwLjg2MTMgNC4yMTgzNiAyMC4zMDQ5IDMuNjYzMzZDMTkuNzQ4NSAzLjEwODM1IDE5LjE5MDEgMi43NjczNSAxOC41MzE1IDIuNTEzNzVDMTcuODk1MSAyLjI2NzU1IDE3LjE2ODEgMi4wOTk3NSAxNi4xMDM3IDIuMDUzNzVDMTUuMDM5MyAyLjAwNzc1IDE0LjY5NjcgMS45OTU5NSAxMS45ODA5IDIuMDAxMTVDOS4yNjUwNCAyLjAwNjM1IDguOTI1MDQgMi4wMTc5NSA3Ljg1ODQ0IDIuMDY5OTVaTTcuOTc1MjQgMjAuMTQ3NkM3LjAwMDIzIDIwLjEwNTIgNi40NzA4MyAxOS45NDMyIDYuMTE4MDMgMTkuODA3NkM1LjY1MDgzIDE5LjYyNzYgNS4zMTgwMyAxOS40MSA0Ljk2NjQzIDE5LjA2MThDNC42MTQ4MyAxOC43MTM2IDQuMzk4ODIgMTguMzc5NiA0LjIxNjQyIDE3LjkxMzRDNC4wNzk0MiAxNy41NjA2IDMuOTE0NDIgMTcuMDMxOCAzLjg2ODgyIDE2LjA1NjhDMy44MTkyMiAxNS4wMDMgMy44MDg4MiAxNC42ODY2IDMuODAzMDIgMTIuMDE2OEMzLjc5NzIyIDkuMzQ2OTggMy44MDc0MiA5LjAzMDk4IDMuODUzNjIgNy45NzY3N0MzLjg5NTIyIDcuMDAyNTcgNC4wNTgyMiA2LjQ3MjU3IDQuMTkzNjIgNi4xMTk5N0M0LjM3MzYyIDUuNjUyMTYgNC41OTA0MyA1LjMxOTk2IDQuOTM5NDMgNC45Njg1NkM1LjI4ODQzIDQuNjE3MTYgNS42MjE0MyA0LjQwMDc2IDYuMDg4MDMgNC4yMTgzNkM2LjQ0MDQzIDQuMDgwNzYgNi45NjkyMyAzLjkxNzE2IDcuOTQzODQgMy44NzA3NkM4Ljk5ODQ0IDMuODIwNzYgOS4zMTQ0NCAzLjgxMDc2IDExLjk4MzkgMy44MDQ5NkMxNC42NTMzIDMuNzk5MTYgMTQuOTcwMSAzLjgwOTE2IDE2LjAyNTEgMy44NTU1NkMxNi45OTkzIDMuODk3OTYgMTcuNTI5NSA0LjA1OTM2IDE3Ljg4MTcgNC4xOTU1NkMxOC4zNDkxIDQuMzc1NTYgMTguNjgxNyA0LjU5MTc2IDE5LjAzMzEgNC45NDEzNkMxOS4zODQ1IDUuMjkwOTYgMTkuNjAxMSA1LjYyMjc2IDE5Ljc4MzUgNi4wOTAzN0MxOS45MjEzIDYuNDQxNzcgMjAuMDg0OSA2Ljk3MDM3IDIwLjEzMDkgNy45NDU1N0MyMC4xODExIDkuMDAwMTggMjAuMTkyNSA5LjMxNjM4IDIwLjE5NzMgMTEuOTg1NkMyMC4yMDIxIDE0LjY1NDggMjAuMTkyNyAxNC45NzE4IDIwLjE0NjUgMTYuMDI1NkMyMC4xMDM5IDE3LjAwMDYgMTkuOTQyMyAxNy41MzAyIDE5LjgwNjUgMTcuODgzNEMxOS42MjY1IDE4LjM1MDQgMTkuNDA5NSAxOC42ODM0IDE5LjA2MDMgMTkuMDM0NkMxOC43MTExIDE5LjM4NTggMTguMzc4NSAxOS42MDIyIDE3LjkxMTcgMTkuNzg0NkMxNy41NTk3IDE5LjkyMiAxNy4wMzAzIDIwLjA4NiAxNi4wNTY1IDIwLjEzMjRDMTUuMDAxOSAyMC4xODIgMTQuNjg1OSAyMC4xOTI0IDEyLjAxNTUgMjAuMTk4MkM5LjM0NTA0IDIwLjIwNCA5LjAzMDA0IDIwLjE5MzIgNy45NzU0NCAyMC4xNDc2TTE2LjEyNzUgNi42NTUzN0MxNi4xMjc5IDYuODkyNzIgMTYuMTk4NiA3LjEyNDYzIDE2LjMzMDggNy4zMjE3NkMxNi40NjMgNy41MTg4OCAxNi42NTA3IDcuNjcyMzggMTYuODcwMiA3Ljc2MjgzQzE3LjA4OTYgNy44NTMyNyAxNy4zMzEgNy44NzY2MSAxNy41NjM3IDcuODI5ODlDMTcuNzk2NCA3Ljc4MzE3IDE4LjAxIDcuNjY4NDggMTguMTc3NiA3LjUwMDM0QzE4LjM0NTEgNy4zMzIyIDE4LjQ1OSA3LjExODE1IDE4LjUwNDkgNi44ODUyN0MxOC41NTA3IDYuNjUyMzkgMTguNTI2NSA2LjQxMTEzIDE4LjQzNTIgNi4xOTIwMkMxOC4zNDQgNS45NzI5MSAxOC4xODk4IDUuNzg1NzggMTcuOTkyMiA1LjY1NDI5QzE3Ljc5NDYgNS41MjI4MSAxNy41NjI0IDUuNDUyODkgMTcuMzI1MSA1LjQ1MzM2QzE3LjAwNjkgNS40NTQgMTYuNzAyIDUuNTgwOTggMTYuNDc3NCA1LjgwNjM5QzE2LjI1MjggNi4wMzE4IDE2LjEyNjkgNi4zMzcxOCAxNi4xMjc1IDYuNjU1MzdaTTYuODY1NDMgMTIuMDFDNi44NzEwMyAxNC44NDYgOS4xNzQyNCAxNy4xMzk4IDEyLjAwOTcgMTcuMTM0NEMxNC44NDUxIDE3LjEyOSAxNy4xNDA1IDE0LjgyNiAxNy4xMzUxIDExLjk5QzE3LjEyOTcgOS4xNTM5OCAxNC44MjU5IDYuODU5NTcgMTEuOTkwMSA2Ljg2NTE3QzkuMTU0MjQgNi44NzA3NyA2Ljg2MDAzIDkuMTc0MzggNi44NjU0MyAxMi4wMVpNOC42NjY2NCAxMi4wMDY0QzguNjY1MzQgMTEuMzQ3MSA4Ljg1OTU2IDEwLjcwMjIgOS4yMjQ3NiAxMC4xNTMzQzkuNTg5OTUgOS42MDQ0NCAxMC4xMDk3IDkuMTc2MTYgMTAuNzE4MyA4LjkyMjY1QzExLjMyNjkgOC42NjkxNSAxMS45OTcgOC42MDE4MSAxMi42NDM5IDguNzI5MTVDMTMuMjkwOCA4Ljg1NjQ5IDEzLjg4NTMgOS4xNzI3OSAxNC4zNTI0IDkuNjM4MDVDMTQuODE5NiAxMC4xMDMzIDE1LjEzODIgMTAuNjk2NiAxNS4yNjgxIDExLjM0M0MxNS4zOTggMTEuOTg5NCAxNS4zMzMzIDEyLjY1OTcgMTUuMDgyMiAxMy4yNjkzQzE0LjgzMTEgMTMuODc4OSAxNC40MDQ5IDE0LjQwMDQgMTMuODU3NSAxNC43Njc3QzEzLjMxIDE1LjEzNTEgMTIuNjY1OSAxNS4zMzE5IDEyLjAwNjcgMTUuMzMzMkMxMS41Njg5IDE1LjMzNDEgMTEuMTM1MiAxNS4yNDg4IDEwLjczMDQgMTUuMDgyMUMxMC4zMjU3IDE0LjkxNTQgOS45NTc2OCAxNC42NzA2IDkuNjQ3NTIgMTQuMzYxN0M5LjMzNzM2IDE0LjA1MjcgOS4wOTExIDEzLjY4NTcgOC45MjI4IDEzLjI4MTZDOC43NTQ1IDEyLjg3NzUgOC42Njc0NSAxMi40NDQyIDguNjY2NjQgMTIuMDA2NFoiIGZpbGw9IiMyOTI5NEIiLz48L3N2Zz4=");
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTcuODU4NDQgMi4wNjk5NUM2Ljc5NDQzIDIuMTIwMTUgNi4wNjc4MyAyLjI4OTk1IDUuNDMyNjMgMi41Mzk1NUM0Ljc3NTIzIDIuNzk1NzUgNC4yMTgwMiAzLjEzOTU1IDMuNjYzNjIgMy42OTU5NkMzLjEwOTIyIDQuMjUyMzYgMi43Njc4MiA0LjgwOTk2IDIuNTEzNDIgNS40NjgzNkMyLjI2NzIyIDYuMTA0OTcgMi4xMDA0MiA2LjgzMjE3IDIuMDUzNDIgNy44OTY3N0MyLjAwNjQyIDguOTYxMzggMS45OTYwMiA5LjMwMzU4IDIuMDAxMjIgMTIuMDE5MkMyLjAwNjQyIDE0LjczNDggMi4wMTg0MiAxNS4wNzUyIDIuMDcwMDIgMTYuMTQyQzIuMTIwODIgMTcuMjA1OCAyLjI5MDAyIDE3LjkzMjIgMi41Mzk2MiAxOC41Njc2QzIuNzk2MjIgMTkuMjI1IDMuMTM5NjIgMTkuNzgyIDMuNjk2MjIgMjAuMzM2NkM0LjI1MjgyIDIwLjg5MTIgNC44MTAwMyAyMS4yMzE4IDUuNDcwMDMgMjEuNDg2NkM2LjEwNjAzIDIxLjczMjQgNi44MzM0MyAyMS45IDcuODk3ODQgMjEuOTQ2NkM4Ljk2MjI0IDIxLjk5MzIgOS4zMDQ4NCAyMi4wMDQgMTIuMDE5NyAyMS45OTg4QzE0LjczNDUgMjEuOTkzNiAxNS4wNzYzIDIxLjk4MTYgMTYuMTQyOSAyMS45MzFDMTcuMjA5NSAyMS44ODA0IDE3LjkzMjEgMjEuNzEgMTguNTY3NyAyMS40NjE2QzE5LjIyNTEgMjEuMjA0NCAxOS43ODI1IDIwLjg2MTYgMjAuMzM2NyAyMC4zMDQ4QzIwLjg5MDkgMTkuNzQ4IDIxLjIzMjEgMTkuMTkgMjEuNDg2MyAxOC41MzEyQzIxLjczMjcgMTcuODk1MiAyMS45MDAxIDE3LjE2NzggMjEuOTQ2MyAxNi4xMDQyQzIxLjk5MjkgMTUuMDM2OCAyMi4wMDM5IDE0LjY5NiAyMS45OTg3IDExLjk4MDhDMjEuOTkzNSA5LjI2NTU4IDIxLjk4MTMgOC45MjUxOCAyMS45MzA3IDcuODU4NzdDMjEuODgwMSA2Ljc5MjM3IDIxLjcxMDcgNi4wNjgxNyAyMS40NjEzIDUuNDMyMzZDMjEuMjA0MyA0Ljc3NDk2IDIwLjg2MTMgNC4yMTgzNiAyMC4zMDQ5IDMuNjYzMzZDMTkuNzQ4NSAzLjEwODM1IDE5LjE5MDEgMi43NjczNSAxOC41MzE1IDIuNTEzNzVDMTcuODk1MSAyLjI2NzU1IDE3LjE2ODEgMi4wOTk3NSAxNi4xMDM3IDIuMDUzNzVDMTUuMDM5MyAyLjAwNzc1IDE0LjY5NjcgMS45OTU5NSAxMS45ODA5IDIuMDAxMTVDOS4yNjUwNCAyLjAwNjM1IDguOTI1MDQgMi4wMTc5NSA3Ljg1ODQ0IDIuMDY5OTVaTTcuOTc1MjQgMjAuMTQ3NkM3LjAwMDIzIDIwLjEwNTIgNi40NzA4MyAxOS45NDMyIDYuMTE4MDMgMTkuODA3NkM1LjY1MDgzIDE5LjYyNzYgNS4zMTgwMyAxOS40MSA0Ljk2NjQzIDE5LjA2MThDNC42MTQ4MyAxOC43MTM2IDQuMzk4ODIgMTguMzc5NiA0LjIxNjQyIDE3LjkxMzRDNC4wNzk0MiAxNy41NjA2IDMuOTE0NDIgMTcuMDMxOCAzLjg2ODgyIDE2LjA1NjhDMy44MTkyMiAxNS4wMDMgMy44MDg4MiAxNC42ODY2IDMuODAzMDIgMTIuMDE2OEMzLjc5NzIyIDkuMzQ2OTggMy44MDc0MiA5LjAzMDk4IDMuODUzNjIgNy45NzY3N0MzLjg5NTIyIDcuMDAyNTcgNC4wNTgyMiA2LjQ3MjU3IDQuMTkzNjIgNi4xMTk5N0M0LjM3MzYyIDUuNjUyMTYgNC41OTA0MyA1LjMxOTk2IDQuOTM5NDMgNC45Njg1NkM1LjI4ODQzIDQuNjE3MTYgNS42MjE0MyA0LjQwMDc2IDYuMDg4MDMgNC4yMTgzNkM2LjQ0MDQzIDQuMDgwNzYgNi45NjkyMyAzLjkxNzE2IDcuOTQzODQgMy44NzA3NkM4Ljk5ODQ0IDMuODIwNzYgOS4zMTQ0NCAzLjgxMDc2IDExLjk4MzkgMy44MDQ5NkMxNC42NTMzIDMuNzk5MTYgMTQuOTcwMSAzLjgwOTE2IDE2LjAyNTEgMy44NTU1NkMxNi45OTkzIDMuODk3OTYgMTcuNTI5NSA0LjA1OTM2IDE3Ljg4MTcgNC4xOTU1NkMxOC4zNDkxIDQuMzc1NTYgMTguNjgxNyA0LjU5MTc2IDE5LjAzMzEgNC45NDEzNkMxOS4zODQ1IDUuMjkwOTYgMTkuNjAxMSA1LjYyMjc2IDE5Ljc4MzUgNi4wOTAzN0MxOS45MjEzIDYuNDQxNzcgMjAuMDg0OSA2Ljk3MDM3IDIwLjEzMDkgNy45NDU1N0MyMC4xODExIDkuMDAwMTggMjAuMTkyNSA5LjMxNjM4IDIwLjE5NzMgMTEuOTg1NkMyMC4yMDIxIDE0LjY1NDggMjAuMTkyNyAxNC45NzE4IDIwLjE0NjUgMTYuMDI1NkMyMC4xMDM5IDE3LjAwMDYgMTkuOTQyMyAxNy41MzAyIDE5LjgwNjUgMTcuODgzNEMxOS42MjY1IDE4LjM1MDQgMTkuNDA5NSAxOC42ODM0IDE5LjA2MDMgMTkuMDM0NkMxOC43MTExIDE5LjM4NTggMTguMzc4NSAxOS42MDIyIDE3LjkxMTcgMTkuNzg0NkMxNy41NTk3IDE5LjkyMiAxNy4wMzAzIDIwLjA4NiAxNi4wNTY1IDIwLjEzMjRDMTUuMDAxOSAyMC4xODIgMTQuNjg1OSAyMC4xOTI0IDEyLjAxNTUgMjAuMTk4MkM5LjM0NTA0IDIwLjIwNCA5LjAzMDA0IDIwLjE5MzIgNy45NzU0NCAyMC4xNDc2TTE2LjEyNzUgNi42NTUzN0MxNi4xMjc5IDYuODkyNzIgMTYuMTk4NiA3LjEyNDYzIDE2LjMzMDggNy4zMjE3NkMxNi40NjMgNy41MTg4OCAxNi42NTA3IDcuNjcyMzggMTYuODcwMiA3Ljc2MjgzQzE3LjA4OTYgNy44NTMyNyAxNy4zMzEgNy44NzY2MSAxNy41NjM3IDcuODI5ODlDMTcuNzk2NCA3Ljc4MzE3IDE4LjAxIDcuNjY4NDggMTguMTc3NiA3LjUwMDM0QzE4LjM0NTEgNy4zMzIyIDE4LjQ1OSA3LjExODE1IDE4LjUwNDkgNi44ODUyN0MxOC41NTA3IDYuNjUyMzkgMTguNTI2NSA2LjQxMTEzIDE4LjQzNTIgNi4xOTIwMkMxOC4zNDQgNS45NzI5MSAxOC4xODk4IDUuNzg1NzggMTcuOTkyMiA1LjY1NDI5QzE3Ljc5NDYgNS41MjI4MSAxNy41NjI0IDUuNDUyODkgMTcuMzI1MSA1LjQ1MzM2QzE3LjAwNjkgNS40NTQgMTYuNzAyIDUuNTgwOTggMTYuNDc3NCA1LjgwNjM5QzE2LjI1MjggNi4wMzE4IDE2LjEyNjkgNi4zMzcxOCAxNi4xMjc1IDYuNjU1MzdaTTYuODY1NDMgMTIuMDFDNi44NzEwMyAxNC44NDYgOS4xNzQyNCAxNy4xMzk4IDEyLjAwOTcgMTcuMTM0NEMxNC44NDUxIDE3LjEyOSAxNy4xNDA1IDE0LjgyNiAxNy4xMzUxIDExLjk5QzE3LjEyOTcgOS4xNTM5OCAxNC44MjU5IDYuODU5NTcgMTEuOTkwMSA2Ljg2NTE3QzkuMTU0MjQgNi44NzA3NyA2Ljg2MDAzIDkuMTc0MzggNi44NjU0MyAxMi4wMVpNOC42NjY2NCAxMi4wMDY0QzguNjY1MzQgMTEuMzQ3MSA4Ljg1OTU2IDEwLjcwMjIgOS4yMjQ3NiAxMC4xNTMzQzkuNTg5OTUgOS42MDQ0NCAxMC4xMDk3IDkuMTc2MTYgMTAuNzE4MyA4LjkyMjY1QzExLjMyNjkgOC42NjkxNSAxMS45OTcgOC42MDE4MSAxMi42NDM5IDguNzI5MTVDMTMuMjkwOCA4Ljg1NjQ5IDEzLjg4NTMgOS4xNzI3OSAxNC4zNTI0IDkuNjM4MDVDMTQuODE5NiAxMC4xMDMzIDE1LjEzODIgMTAuNjk2NiAxNS4yNjgxIDExLjM0M0MxNS4zOTggMTEuOTg5NCAxNS4zMzMzIDEyLjY1OTcgMTUuMDgyMiAxMy4yNjkzQzE0LjgzMTEgMTMuODc4OSAxNC40MDQ5IDE0LjQwMDQgMTMuODU3NSAxNC43Njc3QzEzLjMxIDE1LjEzNTEgMTIuNjY1OSAxNS4zMzE5IDEyLjAwNjcgMTUuMzMzMkMxMS41Njg5IDE1LjMzNDEgMTEuMTM1MiAxNS4yNDg4IDEwLjczMDQgMTUuMDgyMUMxMC4zMjU3IDE0LjkxNTQgOS45NTc2OCAxNC42NzA2IDkuNjQ3NTIgMTQuMzYxN0M5LjMzNzM2IDE0LjA1MjcgOS4wOTExIDEzLjY4NTcgOC45MjI4IDEzLjI4MTZDOC43NTQ1IDEyLjg3NzUgOC42Njc0NSAxMi40NDQyIDguNjY2NjQgMTIuMDA2NFoiIGZpbGw9IiMyOTI5NEIiLz48L3N2Zz4=");
}
@supports not ((-webkit-mask-image: url(#mask)) or (mask-image: url(#mask))) {
    .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-instagram .wp-block-social-link-anchor:after {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTcuODU4NDQgMi4wNjk5NUM2Ljc5NDQzIDIuMTIwMTUgNi4wNjc4MyAyLjI4OTk1IDUuNDMyNjMgMi41Mzk1NUM0Ljc3NTIzIDIuNzk1NzUgNC4yMTgwMiAzLjEzOTU1IDMuNjYzNjIgMy42OTU5NkMzLjEwOTIyIDQuMjUyMzYgMi43Njc4MiA0LjgwOTk2IDIuNTEzNDIgNS40NjgzNkMyLjI2NzIyIDYuMTA0OTcgMi4xMDA0MiA2LjgzMjE3IDIuMDUzNDIgNy44OTY3N0MyLjAwNjQyIDguOTYxMzggMS45OTYwMiA5LjMwMzU4IDIuMDAxMjIgMTIuMDE5MkMyLjAwNjQyIDE0LjczNDggMi4wMTg0MiAxNS4wNzUyIDIuMDcwMDIgMTYuMTQyQzIuMTIwODIgMTcuMjA1OCAyLjI5MDAyIDE3LjkzMjIgMi41Mzk2MiAxOC41Njc2QzIuNzk2MjIgMTkuMjI1IDMuMTM5NjIgMTkuNzgyIDMuNjk2MjIgMjAuMzM2NkM0LjI1MjgyIDIwLjg5MTIgNC44MTAwMyAyMS4yMzE4IDUuNDcwMDMgMjEuNDg2NkM2LjEwNjAzIDIxLjczMjQgNi44MzM0MyAyMS45IDcuODk3ODQgMjEuOTQ2NkM4Ljk2MjI0IDIxLjk5MzIgOS4zMDQ4NCAyMi4wMDQgMTIuMDE5NyAyMS45OTg4QzE0LjczNDUgMjEuOTkzNiAxNS4wNzYzIDIxLjk4MTYgMTYuMTQyOSAyMS45MzFDMTcuMjA5NSAyMS44ODA0IDE3LjkzMjEgMjEuNzEgMTguNTY3NyAyMS40NjE2QzE5LjIyNTEgMjEuMjA0NCAxOS43ODI1IDIwLjg2MTYgMjAuMzM2NyAyMC4zMDQ4QzIwLjg5MDkgMTkuNzQ4IDIxLjIzMjEgMTkuMTkgMjEuNDg2MyAxOC41MzEyQzIxLjczMjcgMTcuODk1MiAyMS45MDAxIDE3LjE2NzggMjEuOTQ2MyAxNi4xMDQyQzIxLjk5MjkgMTUuMDM2OCAyMi4wMDM5IDE0LjY5NiAyMS45OTg3IDExLjk4MDhDMjEuOTkzNSA5LjI2NTU4IDIxLjk4MTMgOC45MjUxOCAyMS45MzA3IDcuODU4NzdDMjEuODgwMSA2Ljc5MjM3IDIxLjcxMDcgNi4wNjgxNyAyMS40NjEzIDUuNDMyMzZDMjEuMjA0MyA0Ljc3NDk2IDIwLjg2MTMgNC4yMTgzNiAyMC4zMDQ5IDMuNjYzMzZDMTkuNzQ4NSAzLjEwODM1IDE5LjE5MDEgMi43NjczNSAxOC41MzE1IDIuNTEzNzVDMTcuODk1MSAyLjI2NzU1IDE3LjE2ODEgMi4wOTk3NSAxNi4xMDM3IDIuMDUzNzVDMTUuMDM5MyAyLjAwNzc1IDE0LjY5NjcgMS45OTU5NSAxMS45ODA5IDIuMDAxMTVDOS4yNjUwNCAyLjAwNjM1IDguOTI1MDQgMi4wMTc5NSA3Ljg1ODQ0IDIuMDY5OTVaTTcuOTc1MjQgMjAuMTQ3NkM3LjAwMDIzIDIwLjEwNTIgNi40NzA4MyAxOS45NDMyIDYuMTE4MDMgMTkuODA3NkM1LjY1MDgzIDE5LjYyNzYgNS4zMTgwMyAxOS40MSA0Ljk2NjQzIDE5LjA2MThDNC42MTQ4MyAxOC43MTM2IDQuMzk4ODIgMTguMzc5NiA0LjIxNjQyIDE3LjkxMzRDNC4wNzk0MiAxNy41NjA2IDMuOTE0NDIgMTcuMDMxOCAzLjg2ODgyIDE2LjA1NjhDMy44MTkyMiAxNS4wMDMgMy44MDg4MiAxNC42ODY2IDMuODAzMDIgMTIuMDE2OEMzLjc5NzIyIDkuMzQ2OTggMy44MDc0MiA5LjAzMDk4IDMuODUzNjIgNy45NzY3N0MzLjg5NTIyIDcuMDAyNTcgNC4wNTgyMiA2LjQ3MjU3IDQuMTkzNjIgNi4xMTk5N0M0LjM3MzYyIDUuNjUyMTYgNC41OTA0MyA1LjMxOTk2IDQuOTM5NDMgNC45Njg1NkM1LjI4ODQzIDQuNjE3MTYgNS42MjE0MyA0LjQwMDc2IDYuMDg4MDMgNC4yMTgzNkM2LjQ0MDQzIDQuMDgwNzYgNi45NjkyMyAzLjkxNzE2IDcuOTQzODQgMy44NzA3NkM4Ljk5ODQ0IDMuODIwNzYgOS4zMTQ0NCAzLjgxMDc2IDExLjk4MzkgMy44MDQ5NkMxNC42NTMzIDMuNzk5MTYgMTQuOTcwMSAzLjgwOTE2IDE2LjAyNTEgMy44NTU1NkMxNi45OTkzIDMuODk3OTYgMTcuNTI5NSA0LjA1OTM2IDE3Ljg4MTcgNC4xOTU1NkMxOC4zNDkxIDQuMzc1NTYgMTguNjgxNyA0LjU5MTc2IDE5LjAzMzEgNC45NDEzNkMxOS4zODQ1IDUuMjkwOTYgMTkuNjAxMSA1LjYyMjc2IDE5Ljc4MzUgNi4wOTAzN0MxOS45MjEzIDYuNDQxNzcgMjAuMDg0OSA2Ljk3MDM3IDIwLjEzMDkgNy45NDU1N0MyMC4xODExIDkuMDAwMTggMjAuMTkyNSA5LjMxNjM4IDIwLjE5NzMgMTEuOTg1NkMyMC4yMDIxIDE0LjY1NDggMjAuMTkyNyAxNC45NzE4IDIwLjE0NjUgMTYuMDI1NkMyMC4xMDM5IDE3LjAwMDYgMTkuOTQyMyAxNy41MzAyIDE5LjgwNjUgMTcuODgzNEMxOS42MjY1IDE4LjM1MDQgMTkuNDA5NSAxOC42ODM0IDE5LjA2MDMgMTkuMDM0NkMxOC43MTExIDE5LjM4NTggMTguMzc4NSAxOS42MDIyIDE3LjkxMTcgMTkuNzg0NkMxNy41NTk3IDE5LjkyMiAxNy4wMzAzIDIwLjA4NiAxNi4wNTY1IDIwLjEzMjRDMTUuMDAxOSAyMC4xODIgMTQuNjg1OSAyMC4xOTI0IDEyLjAxNTUgMjAuMTk4MkM5LjM0NTA0IDIwLjIwNCA5LjAzMDA0IDIwLjE5MzIgNy45NzU0NCAyMC4xNDc2TTE2LjEyNzUgNi42NTUzN0MxNi4xMjc5IDYuODkyNzIgMTYuMTk4NiA3LjEyNDYzIDE2LjMzMDggNy4zMjE3NkMxNi40NjMgNy41MTg4OCAxNi42NTA3IDcuNjcyMzggMTYuODcwMiA3Ljc2MjgzQzE3LjA4OTYgNy44NTMyNyAxNy4zMzEgNy44NzY2MSAxNy41NjM3IDcuODI5ODlDMTcuNzk2NCA3Ljc4MzE3IDE4LjAxIDcuNjY4NDggMTguMTc3NiA3LjUwMDM0QzE4LjM0NTEgNy4zMzIyIDE4LjQ1OSA3LjExODE1IDE4LjUwNDkgNi44ODUyN0MxOC41NTA3IDYuNjUyMzkgMTguNTI2NSA2LjQxMTEzIDE4LjQzNTIgNi4xOTIwMkMxOC4zNDQgNS45NzI5MSAxOC4xODk4IDUuNzg1NzggMTcuOTkyMiA1LjY1NDI5QzE3Ljc5NDYgNS41MjI4MSAxNy41NjI0IDUuNDUyODkgMTcuMzI1MSA1LjQ1MzM2QzE3LjAwNjkgNS40NTQgMTYuNzAyIDUuNTgwOTggMTYuNDc3NCA1LjgwNjM5QzE2LjI1MjggNi4wMzE4IDE2LjEyNjkgNi4zMzcxOCAxNi4xMjc1IDYuNjU1MzdaTTYuODY1NDMgMTIuMDFDNi44NzEwMyAxNC44NDYgOS4xNzQyNCAxNy4xMzk4IDEyLjAwOTcgMTcuMTM0NEMxNC44NDUxIDE3LjEyOSAxNy4xNDA1IDE0LjgyNiAxNy4xMzUxIDExLjk5QzE3LjEyOTcgOS4xNTM5OCAxNC44MjU5IDYuODU5NTcgMTEuOTkwMSA2Ljg2NTE3QzkuMTU0MjQgNi44NzA3NyA2Ljg2MDAzIDkuMTc0MzggNi44NjU0MyAxMi4wMVpNOC42NjY2NCAxMi4wMDY0QzguNjY1MzQgMTEuMzQ3MSA4Ljg1OTU2IDEwLjcwMjIgOS4yMjQ3NiAxMC4xNTMzQzkuNTg5OTUgOS42MDQ0NCAxMC4xMDk3IDkuMTc2MTYgMTAuNzE4MyA4LjkyMjY1QzExLjMyNjkgOC42NjkxNSAxMS45OTcgOC42MDE4MSAxMi42NDM5IDguNzI5MTVDMTMuMjkwOCA4Ljg1NjQ5IDEzLjg4NTMgOS4xNzI3OSAxNC4zNTI0IDkuNjM4MDVDMTQuODE5NiAxMC4xMDMzIDE1LjEzODIgMTAuNjk2NiAxNS4yNjgxIDExLjM0M0MxNS4zOTggMTEuOTg5NCAxNS4zMzMzIDEyLjY1OTcgMTUuMDgyMiAxMy4yNjkzQzE0LjgzMTEgMTMuODc4OSAxNC40MDQ5IDE0LjQwMDQgMTMuODU3NSAxNC43Njc3QzEzLjMxIDE1LjEzNTEgMTIuNjY1OSAxNS4zMzE5IDEyLjAwNjcgMTUuMzMzMkMxMS41Njg5IDE1LjMzNDEgMTEuMTM1MiAxNS4yNDg4IDEwLjczMDQgMTUuMDgyMUMxMC4zMjU3IDE0LjkxNTQgOS45NTc2OCAxNC42NzA2IDkuNjQ3NTIgMTQuMzYxN0M5LjMzNzM2IDE0LjA1MjcgOS4wOTExIDEzLjY4NTcgOC45MjI4IDEzLjI4MTZDOC43NTQ1IDEyLjg3NzUgOC42Njc0NSAxMi40NDQyIDguNjY2NjQgMTIuMDA2NFoiIGZpbGw9IiMyOTI5NEIiLz48L3N2Zz4=");
    }
}
.is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:after {
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTEyIDJDNi40NzcgMiAyIDYuNDc3IDIgMTJDMiAxNi45OTEgNS42NTcgMjEuMTI4IDEwLjQzOCAyMS44NzlWMTQuODlINy44OThWMTJIMTAuNDM4VjkuNzk3QzEwLjQzOCA3LjI5MSAxMS45MyA1LjkwNyAxNC4yMTUgNS45MDdDMTUuMzA5IDUuOTA3IDE2LjQ1MyA2LjEwMiAxNi40NTMgNi4xMDJWOC41NjJIMTUuMTkzQzEzLjk1IDguNTYyIDEzLjU2MyA5LjMzMyAxMy41NjMgMTAuMTI0VjEySDE2LjMzNkwxNS44OTMgMTQuODlIMTMuNTYzVjIxLjg3OUMxOC4zNDMgMjEuMTI5IDIyIDE2Ljk5IDIyIDEyQzIyIDYuNDc3IDE3LjUyMyAyIDEyIDJaIiBmaWxsPSIjMjkyOTRCIi8+PC9zdmc+");
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTEyIDJDNi40NzcgMiAyIDYuNDc3IDIgMTJDMiAxNi45OTEgNS42NTcgMjEuMTI4IDEwLjQzOCAyMS44NzlWMTQuODlINy44OThWMTJIMTAuNDM4VjkuNzk3QzEwLjQzOCA3LjI5MSAxMS45MyA1LjkwNyAxNC4yMTUgNS45MDdDMTUuMzA5IDUuOTA3IDE2LjQ1MyA2LjEwMiAxNi40NTMgNi4xMDJWOC41NjJIMTUuMTkzQzEzLjk1IDguNTYyIDEzLjU2MyA5LjMzMyAxMy41NjMgMTAuMTI0VjEySDE2LjMzNkwxNS44OTMgMTQuODlIMTMuNTYzVjIxLjg3OUMxOC4zNDMgMjEuMTI5IDIyIDE2Ljk5IDIyIDEyQzIyIDYuNDc3IDE3LjUyMyAyIDEyIDJaIiBmaWxsPSIjMjkyOTRCIi8+PC9zdmc+");
}
@supports not ((-webkit-mask-image: url(#mask)) or (mask-image: url(#mask))) {
    .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-facebook .wp-block-social-link-anchor:after {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZD0iTTEyIDJDNi40NzcgMiAyIDYuNDc3IDIgMTJDMiAxNi45OTEgNS42NTcgMjEuMTI4IDEwLjQzOCAyMS44NzlWMTQuODlINy44OThWMTJIMTAuNDM4VjkuNzk3QzEwLjQzOCA3LjI5MSAxMS45MyA1LjkwNyAxNC4yMTUgNS45MDdDMTUuMzA5IDUuOTA3IDE2LjQ1MyA2LjEwMiAxNi40NTMgNi4xMDJWOC41NjJIMTUuMTkzQzEzLjk1IDguNTYyIDEzLjU2MyA5LjMzMyAxMy41NjMgMTAuMTI0VjEySDE2LjMzNkwxNS44OTMgMTQuODlIMTMuNTYzVjIxLjg3OUMxOC4zNDMgMjEuMTI5IDIyIDE2Ljk5IDIyIDEyQzIyIDYuNDc3IDE3LjUyMyAyIDEyIDJaIiBmaWxsPSIjMjkyOTRCIi8+PC9zdmc+");
    }
}
.is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:after {
    -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjY2NjY3IDJDMi43NDYxOSAyIDIgMi43NDYxOSAyIDMuNjY2NjdWMjAuMzMzM0MyIDIxLjI1MzggMi43NDYxOSAyMiAzLjY2NjY3IDIySDIwLjMzMzNDMjEuMjUzOCAyMiAyMiAyMS4yNTM4IDIyIDIwLjMzMzNWMy42NjY2N0MyMiAyLjc0NjE5IDIxLjI1MzggMiAyMC4zMzMzIDJIMy42NjY2N1pNOC4xMzQxOCA2LjQ0NzQ3QzguMTQwNDMgNy41MDk5NyA3LjM0NTEyIDguMTY0NjYgNi40MDEzNyA4LjE1OTk3QzUuNTEyMyA4LjE1NTI4IDQuNzM3MyA3LjQ0NzQ3IDQuNzQxOTkgNi40NDkwM0M0Ljc0NjY4IDUuNTA5OTcgNS40ODg4NyA0Ljc1NTI4IDYuNDUyOTMgNC43NzcxNkM3LjQzMTA2IDQuNzk5MDMgOC4xNDA0MyA1LjUxNjIyIDguMTM0MTggNi40NDc0N1pNMTIuMzEwOCA5LjUxMzA3SDkuNTEwNzlIOS41MDkyMlYxOS4wMjRIMTIuNDY4NlYxOC44MDIxQzEyLjQ2ODYgMTguMzggMTIuNDY4MiAxNy45NTc4IDEyLjQ2NzkgMTcuNTM1NEMxMi40NjcgMTYuNDA5IDEyLjQ2NiAxNS4yODEzIDEyLjQ3MTggMTQuMTU1MkMxMi40NzMzIDEzLjg4MTggMTIuNDg1OCAxMy41OTc0IDEyLjU1NjEgMTMuMzM2NEMxMi44MjAxIDEyLjM2MTQgMTMuNjk2OCAxMS43MzE4IDE0LjY3NDkgMTEuODg2NkMxNS4zMDMgMTEuOTg0OSAxNS43MTg2IDEyLjM0OSAxNS44OTM2IDEyLjk0MTJDMTYuMDAxNCAxMy4zMTE0IDE2LjA0OTkgMTMuNzA5OSAxNi4wNTQ2IDE0LjA5NTlDMTYuMDY3MiAxNS4yNTk5IDE2LjA2NTQgMTYuNDIzOSAxNi4wNjM3IDE3LjU4OEMxNi4wNjMgMTcuOTk4OSAxNi4wNjIzIDE4LjQxIDE2LjA2MjMgMTguODIwOVYxOS4wMjI0SDE5LjAzMTFWMTguNzk0M0MxOS4wMzExIDE4LjI5MjEgMTkuMDMwOSAxNy43OSAxOS4wMzA2IDE3LjI4NzlDMTkuMDMgMTYuMDMyOSAxOS4wMjkzIDE0Ljc3NzkgMTkuMDMyNyAxMy41MjI0QzE5LjAzNDIgMTIuOTU1MiAxOC45NzMzIDEyLjM5NTkgMTguODM0MiAxMS44NDc0QzE4LjYyNjQgMTEuMDMxOCAxOC4xOTY4IDEwLjM1NjggMTcuNDk4MyA5Ljg2OTMzQzE3LjAwMyA5LjUyMjQzIDE2LjQ1OTIgOS4yOTkgMTUuODUxNCA5LjI3NEMxNS43ODIyIDkuMjcxMTIgMTUuNzEyNCA5LjI2NzM2IDE1LjY0MjMgOS4yNjM1N0MxNS4zMzE2IDkuMjQ2NzcgMTUuMDE1NyA5LjIyOTcgMTQuNzE4NiA5LjI4OTYyQzEzLjg2ODYgOS40NTk5MyAxMy4xMjE4IDkuODQ5IDEyLjU1NzcgMTAuNTM0OUMxMi40OTIxIDEwLjYxMzYgMTIuNDI4IDEwLjY5MzQgMTIuMzMyMyAxMC44MTI3TDEyLjMxMDggMTAuODM5N1Y5LjUxMzA3Wk00Ljk3OTYgMTkuMDI3MUg3LjkyNDkxVjkuNTE5MjZINC45Nzk2VjE5LjAyNzFaIiBmaWxsPSIjMjkyOTRCIi8+PC9zdmc+");
    mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjY2NjY3IDJDMi43NDYxOSAyIDIgMi43NDYxOSAyIDMuNjY2NjdWMjAuMzMzM0MyIDIxLjI1MzggMi43NDYxOSAyMiAzLjY2NjY3IDIySDIwLjMzMzNDMjEuMjUzOCAyMiAyMiAyMS4yNTM4IDIyIDIwLjMzMzNWMy42NjY2N0MyMiAyLjc0NjE5IDIxLjI1MzggMiAyMC4zMzMzIDJIMy42NjY2N1pNOC4xMzQxOCA2LjQ0NzQ3QzguMTQwNDMgNy41MDk5NyA3LjM0NTEyIDguMTY0NjYgNi40MDEzNyA4LjE1OTk3QzUuNTEyMyA4LjE1NTI4IDQuNzM3MyA3LjQ0NzQ3IDQuNzQxOTkgNi40NDkwM0M0Ljc0NjY4IDUuNTA5OTcgNS40ODg4NyA0Ljc1NTI4IDYuNDUyOTMgNC43NzcxNkM3LjQzMTA2IDQuNzk5MDMgOC4xNDA0MyA1LjUxNjIyIDguMTM0MTggNi40NDc0N1pNMTIuMzEwOCA5LjUxMzA3SDkuNTEwNzlIOS41MDkyMlYxOS4wMjRIMTIuNDY4NlYxOC44MDIxQzEyLjQ2ODYgMTguMzggMTIuNDY4MiAxNy45NTc4IDEyLjQ2NzkgMTcuNTM1NEMxMi40NjcgMTYuNDA5IDEyLjQ2NiAxNS4yODEzIDEyLjQ3MTggMTQuMTU1MkMxMi40NzMzIDEzLjg4MTggMTIuNDg1OCAxMy41OTc0IDEyLjU1NjEgMTMuMzM2NEMxMi44MjAxIDEyLjM2MTQgMTMuNjk2OCAxMS43MzE4IDE0LjY3NDkgMTEuODg2NkMxNS4zMDMgMTEuOTg0OSAxNS43MTg2IDEyLjM0OSAxNS44OTM2IDEyLjk0MTJDMTYuMDAxNCAxMy4zMTE0IDE2LjA0OTkgMTMuNzA5OSAxNi4wNTQ2IDE0LjA5NTlDMTYuMDY3MiAxNS4yNTk5IDE2LjA2NTQgMTYuNDIzOSAxNi4wNjM3IDE3LjU4OEMxNi4wNjMgMTcuOTk4OSAxNi4wNjIzIDE4LjQxIDE2LjA2MjMgMTguODIwOVYxOS4wMjI0SDE5LjAzMTFWMTguNzk0M0MxOS4wMzExIDE4LjI5MjEgMTkuMDMwOSAxNy43OSAxOS4wMzA2IDE3LjI4NzlDMTkuMDMgMTYuMDMyOSAxOS4wMjkzIDE0Ljc3NzkgMTkuMDMyNyAxMy41MjI0QzE5LjAzNDIgMTIuOTU1MiAxOC45NzMzIDEyLjM5NTkgMTguODM0MiAxMS44NDc0QzE4LjYyNjQgMTEuMDMxOCAxOC4xOTY4IDEwLjM1NjggMTcuNDk4MyA5Ljg2OTMzQzE3LjAwMyA5LjUyMjQzIDE2LjQ1OTIgOS4yOTkgMTUuODUxNCA5LjI3NEMxNS43ODIyIDkuMjcxMTIgMTUuNzEyNCA5LjI2NzM2IDE1LjY0MjMgOS4yNjM1N0MxNS4zMzE2IDkuMjQ2NzcgMTUuMDE1NyA5LjIyOTcgMTQuNzE4NiA5LjI4OTYyQzEzLjg2ODYgOS40NTk5MyAxMy4xMjE4IDkuODQ5IDEyLjU1NzcgMTAuNTM0OUMxMi40OTIxIDEwLjYxMzYgMTIuNDI4IDEwLjY5MzQgMTIuMzMyMyAxMC44MTI3TDEyLjMxMDggMTAuODM5N1Y5LjUxMzA3Wk00Ljk3OTYgMTkuMDI3MUg3LjkyNDkxVjkuNTE5MjZINC45Nzk2VjE5LjAyNzFaIiBmaWxsPSIjMjkyOTRCIi8+PC9zdmc+");
}
@supports not ((-webkit-mask-image: url(#mask)) or (mask-image: url(#mask))) {
    .is-style-cs-about .wp-block-social-links .wp-social-link.wp-social-link-linkedin .wp-block-social-link-anchor:after {
        background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiA+PHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0zLjY2NjY3IDJDMi43NDYxOSAyIDIgMi43NDYxOSAyIDMuNjY2NjdWMjAuMzMzM0MyIDIxLjI1MzggMi43NDYxOSAyMiAzLjY2NjY3IDIySDIwLjMzMzNDMjEuMjUzOCAyMiAyMiAyMS4yNTM4IDIyIDIwLjMzMzNWMy42NjY2N0MyMiAyLjc0NjE5IDIxLjI1MzggMiAyMC4zMzMzIDJIMy42NjY2N1pNOC4xMzQxOCA2LjQ0NzQ3QzguMTQwNDMgNy41MDk5NyA3LjM0NTEyIDguMTY0NjYgNi40MDEzNyA4LjE1OTk3QzUuNTEyMyA4LjE1NTI4IDQuNzM3MyA3LjQ0NzQ3IDQuNzQxOTkgNi40NDkwM0M0Ljc0NjY4IDUuNTA5OTcgNS40ODg4NyA0Ljc1NTI4IDYuNDUyOTMgNC43NzcxNkM3LjQzMTA2IDQuNzk5MDMgOC4xNDA0MyA1LjUxNjIyIDguMTM0MTggNi40NDc0N1pNMTIuMzEwOCA5LjUxMzA3SDkuNTEwNzlIOS41MDkyMlYxOS4wMjRIMTIuNDY4NlYxOC44MDIxQzEyLjQ2ODYgMTguMzggMTIuNDY4MiAxNy45NTc4IDEyLjQ2NzkgMTcuNTM1NEMxMi40NjcgMTYuNDA5IDEyLjQ2NiAxNS4yODEzIDEyLjQ3MTggMTQuMTU1MkMxMi40NzMzIDEzLjg4MTggMTIuNDg1OCAxMy41OTc0IDEyLjU1NjEgMTMuMzM2NEMxMi44MjAxIDEyLjM2MTQgMTMuNjk2OCAxMS43MzE4IDE0LjY3NDkgMTEuODg2NkMxNS4zMDMgMTEuOTg0OSAxNS43MTg2IDEyLjM0OSAxNS44OTM2IDEyLjk0MTJDMTYuMDAxNCAxMy4zMTE0IDE2LjA0OTkgMTMuNzA5OSAxNi4wNTQ2IDE0LjA5NTlDMTYuMDY3MiAxNS4yNTk5IDE2LjA2NTQgMTYuNDIzOSAxNi4wNjM3IDE3LjU4OEMxNi4wNjMgMTcuOTk4OSAxNi4wNjIzIDE4LjQxIDE2LjA2MjMgMTguODIwOVYxOS4wMjI0SDE5LjAzMTFWMTguNzk0M0MxOS4wMzExIDE4LjI5MjEgMTkuMDMwOSAxNy43OSAxOS4wMzA2IDE3LjI4NzlDMTkuMDMgMTYuMDMyOSAxOS4wMjkzIDE0Ljc3NzkgMTkuMDMyNyAxMy41MjI0QzE5LjAzNDIgMTIuOTU1MiAxOC45NzMzIDEyLjM5NTkgMTguODM0MiAxMS44NDc0QzE4LjYyNjQgMTEuMDMxOCAxOC4xOTY4IDEwLjM1NjggMTcuNDk4MyA5Ljg2OTMzQzE3LjAwMyA5LjUyMjQzIDE2LjQ1OTIgOS4yOTkgMTUuODUxNCA5LjI3NEMxNS43ODIyIDkuMjcxMTIgMTUuNzEyNCA5LjI2NzM2IDE1LjY0MjMgOS4yNjM1N0MxNS4zMzE2IDkuMjQ2NzcgMTUuMDE1NyA5LjIyOTcgMTQuNzE4NiA5LjI4OTYyQzEzLjg2ODYgOS40NTk5MyAxMy4xMjE4IDkuODQ5IDEyLjU1NzcgMTAuNTM0OUMxMi40OTIxIDEwLjYxMzYgMTIuNDI4IDEwLjY5MzQgMTIuMzMyMyAxMC44MTI3TDEyLjMxMDggMTAuODM5N1Y5LjUxMzA3Wk00Ljk3OTYgMTkuMDI3MUg3LjkyNDkxVjkuNTE5MjZINC45Nzk2VjE5LjAyNzFaIiBmaWxsPSIjMjkyOTRCIi8+PC9zdmc+");
    }
}
.is-style-cs-about:not(.wp-social-link) a {
    text-decoration: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-about:not(.wp-social-link) a {
        color: var(--cs-color-primary);
    }
}
html[data-scheme=dark] .is-style-cs-about:not(.wp-social-link) a {
    color: var(--cs-color-primary);
}
@media (hover: hover) {
    .is-style-cs-about:not(.wp-social-link) a:not(.wp-block-social-link-anchor):hover {
        opacity: 0.7;
    }
}

.is-style-cs-location {
    position: relative;
    display: flex;
    align-items: center;
}
.is-style-cs-location:before {
    content: "\e931";
    font-family: "cs-icons";
    margin-right: 0.375rem;
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cs-color-accent);
}

.is-style-cs-posts-slider .cs-latest-posts-slider {
    position: relative;
    margin-top: 1.25rem;
    margin-bottom: 1.375rem;
    max-width: 100%;
}
.cs-sticky-sidebar-disabled .is-style-cs-posts-slider .cs-latest-posts-slider, .cs-stick-to-top .is-style-cs-posts-slider .cs-latest-posts-slider, .cs-stick-to-bottom .is-style-cs-posts-slider .cs-latest-posts-slider {
    margin-bottom: 3.25rem;
}
@media (max-width: 1247.98px) {
    .cs-sticky-sidebar-enabled .is-style-cs-posts-slider .cs-latest-posts-slider {
        margin-bottom: 3.25rem;
    }
}
.is-style-cs-posts-slider .cs-latest-posts-slider__pagination {
    position: absolute;
    bottom: -1.375rem !important;
    right: 0;
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.375rem;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
}
.is-style-cs-posts-slider .cs-latest-posts-slider__pagination.swiper-pagination-bullets {
    width: auto;
}
.is-style-cs-posts-slider .cs-latest-posts-slider__pagination-bullet {
    display: flex;
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: var(--cs-color-primary);
    opacity: 1;
    transition: 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.is-style-cs-posts-slider .cs-latest-posts-slider__pagination-bullet-active {
    width: 1.5rem;
    border-radius: 100px;
}
.is-style-cs-posts-slider .cs-latest-posts-slider__pagination-bullet:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0.375rem;
    height: 0.375rem;
    background: var(--cs-color-primary);
}
@media (hover: hover) {
    .is-style-cs-posts-slider .cs-latest-posts-slider__pagination-bullet:hover {
        opacity: 0.7;
    }
}
.is-style-cs-posts-slider .wp-block-heading {
    max-width: 100%;
}

.is-style-cs-tile-layout {
    border-radius: var(--cs-thumbnail-border-radius);
    overflow: hidden;
}
.is-style-cs-tile-layout:not(.swiper-initialized) {
    position: relative;
}
.is-style-cs-tile-layout:not(.swiper-initialized)::before {
    content: "";
    position: absolute;
    top: 1.75rem;
    right: 1.75rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-top-color: #111;
    animation: loading 2s linear infinite;
    z-index: 5;
}
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.is-style-cs-tile-layout:not(.swiper-initialized) .cs-latest-posts-slider__button-prev, .is-style-cs-tile-layout:not(.swiper-initialized) .cs-latest-posts-slider__button-next {
    display: none;
}
.cs-widget-area .widget_block .wp-block-group:has(.is-style-cs-tile-layout) .wp-block-heading {
    margin-bottom: 0;
    border-bottom: none;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: ease;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    transition-property: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
    height: 100%;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item:before {
    content: "";
    display: table;
    box-sizing: border-box;
    width: 0;
    padding-bottom: 56.25%;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__featured-image {
    width: unset;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__featured-image a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__featured-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: 0.25s;
    border-radius: unset;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__featured-image:not(:last-child) {
    margin: 0;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-height: 168px;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__content:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
    background: rgba(var(--cs-color-overlay-background), 0.3);
    transition: 0.25s;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__content-inner {
    display: flex;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 1.75rem;
    min-height: 300px;
}
@media (hover: hover) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__content:hover:after {
        background: rgba(var(--cs-color-overlay-background), 0.35);
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__category {
    position: absolute;
    top: 1.5rem;
    z-index: 4;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__category a {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cs-color-primary);
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
    text-decoration: none;
    padding-right: 1.3125rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 0.6875rem;
    background: 0 0;
    transition: 0.25s;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__category a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0.3125rem;
    bottom: 0.3125rem;
    left: 0;
    right: 0.6875rem;
    z-index: -1;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: unset;
    color: var(--cs-color-primary);
    border-radius: var(--cs-tag-border-radius);
    backdrop-filter: blur(10px);
    transition: 0.25s;
}
@media (hover: hover) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__category a:hover:after {
        background: var(--cs-color-contrast-300);
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__post-title {
    width: 100%;
    margin-top: 0.5rem;
    z-index: 4;
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    font-size: Var(--cs-heading-5-font-size);
    color: var(--cs-color-primary);
    text-decoration: unset;
    transition: 0.25s;
}
@media (hover: hover) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__post-title:hover {
        opacity: 0.7;
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    color: var(--cs-color-primary);
    gap: 0.375rem;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__post-author {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    color: var(--cs-color-primary);
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__post-author a {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    position: relative;
    padding: 0.375rem;
    margin: -0.375rem;
    color: var(--cs-color-primary);
    z-index: 4;
    text-decoration: unset;
    transition: 0.25s;
}
@media (hover: hover) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__post-author a:hover {
        opacity: 0.7;
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__post-date {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    color: var(--cs-color-primary);
    letter-spacing: -0.02em;
    opacity: 0.7;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__post-date span {
    margin-right: 0.25rem;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__link {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item .wp-block-latest-posts__post-excerpt {
    display: none;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item a {
    margin: 0;
    padding: 0;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item:has(.wp-block-latest-posts__featured-image + a):before {
    padding-bottom: calc( 56.25% - 2.5rem );
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item:has(.wp-block-latest-posts__featured-image + a):after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    background: #161616;
    opacity: 0.2;
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item:has(.wp-block-latest-posts__featured-image + a) .wp-block-latest-posts__featured-image + a {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    z-index: 3;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    color: var(--cs-color-primary-contrast);
    font-size: var(--cs-heading-5-font-size);
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item:has(.wp-block-latest-posts__featured-image + a) .wp-block-latest-posts__featured-image + a + .wp-block-latest-posts__post-author {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    z-index: 3;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    color: var(--cs-color-primary-contrast);
}
.is-style-cs-tile-layout .cs-latest-posts-slider__item:has(.wp-block-latest-posts__featured-image + a) .wp-block-latest-posts__featured-image + a ~ .wp-block-latest-posts__post-date {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    z-index: 3;
    padding-bottom: 1.25rem;
    color: var(--cs-color-primary-contrast);
}
@media (hover: hover) and (hover: hover) and (min-width: 1250px) {
    .is-style-cs-tile-layout:hover .cs-latest-posts-slider__button-prev {
        opacity: 1;
    }
}
@media (hover: hover) and (min-width: 1250px) {
    .is-style-cs-tile-layout:hover .cs-latest-posts-slider__button-prev {
        transform: translateY(-50%) translateX(-8px);
    }
}
@media (hover: hover) and (hover: hover) and (min-width: 1250px) {
    .is-style-cs-tile-layout:hover .cs-latest-posts-slider__button-next {
        opacity: 1;
    }
}
@media (hover: hover) and (min-width: 1250px) {
    .is-style-cs-tile-layout:hover .cs-latest-posts-slider__button-next {
        transform: translateY(-50%) translateX(8px);
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__button-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    width: 3rem;
    height: 3rem;
    border-radius: var(--cs-button-border-radius);
    transition: 0.25s;
    left: -1rem;
    width: 2.5rem;
    height: 2.5rem;
}
@media (hover: hover) and (min-width: 1250px) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__button-prev {
        opacity: 0;
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__button-prev:before {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--cs-button-border-radius);
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--cs-layout-background);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    content: "";
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-tile-layout .cs-latest-posts-slider__button-prev:before {
        outline: 1px solid var(--cs-color-border);
    }
}
html[data-scheme=dark] .is-style-cs-tile-layout .cs-latest-posts-slider__button-prev:before {
    outline: 1px solid var(--cs-color-border);
}
.is-style-cs-tile-layout .cs-latest-posts-slider__button-prev:after {
    font-family: "cs-icons";
    font-weight: normal;
    margin: 0;
    font-size: 1.5rem;
    transition: 0.25s;
    color: var(--cs-color-primary);
}
@media (min-width: 1250px) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__button-prev {
        left: -1.5rem;
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__button-prev:after {
    content: "\e90d";
}
@media (hover: hover) and (min-width: 1250px) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__button-prev {
        left: calc(( 1rem * -1.5 ) + 8px);
    }
}
@media (hover: hover) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__button-prev:hover:after {
        transform: translateX(-3px);
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__button-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    width: 3rem;
    height: 3rem;
    border-radius: var(--cs-button-border-radius);
    transition: 0.25s;
    right: -1rem;
    width: 2.5rem;
    height: 2.5rem;
}
@media (hover: hover) and (min-width: 1250px) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__button-next {
        opacity: 0;
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__button-next:before {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--cs-button-border-radius);
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--cs-layout-background);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    content: "";
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-tile-layout .cs-latest-posts-slider__button-next:before {
        outline: 1px solid var(--cs-color-border);
    }
}
html[data-scheme=dark] .is-style-cs-tile-layout .cs-latest-posts-slider__button-next:before {
    outline: 1px solid var(--cs-color-border);
}
.is-style-cs-tile-layout .cs-latest-posts-slider__button-next:after {
    font-family: "cs-icons";
    font-weight: normal;
    margin: 0;
    font-size: 1.5rem;
    transition: 0.25s;
    color: var(--cs-color-primary);
}
@media (min-width: 1250px) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__button-next {
        right: -1.5rem;
    }
}
.is-style-cs-tile-layout .cs-latest-posts-slider__button-next:after {
    content: "\e90e";
}
@media (hover: hover) and (min-width: 1250px) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__button-next {
        right: calc(( 1rem * -1.5 ) + 8px);
    }
}
@media (hover: hover) {
    .is-style-cs-tile-layout .cs-latest-posts-slider__button-next:hover:after {
        transform: translateX(3px);
    }
}

.is-style-cs-contact-form .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (max-width: 575.98px) {
    .is-style-cs-contact-form .wpcf7-form {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
.is-style-cs-contact-form .wpcf7-form label {
    margin-bottom: 0;
    color: var(--cs-color-primary);
}
@media (min-width: 576px) {
    .is-style-cs-contact-form .wpcf7-form label:nth-child(4) {
        grid-column: 1/3;
    }
}
@media (max-width: 575.98px) {
    .is-style-cs-contact-form .wpcf7-form label {
        margin-bottom: 1rem;
    }
}
.is-style-cs-contact-form .wpcf7-form .wpcf7-submit {
    margin-top: 0.25rem;
    width: max-content;
}
.is-style-cs-contact-form .wpcf7-form input[type=text], .is-style-cs-contact-form .wpcf7-form input[type=email], .is-style-cs-contact-form .wpcf7-form textarea {
    border: 1px solid var(--cs-color-border);
}
@media (hover: hover) {
    .is-style-cs-contact-form .wpcf7-form input[type=text]:hover, .is-style-cs-contact-form .wpcf7-form input[type=email]:hover, .is-style-cs-contact-form .wpcf7-form textarea:hover {
        opacity: 0.7;
    }
}
@media (max-width: 575.98px) {
    .is-style-cs-contact-form .wp-block-columns {
        padding: 2rem !important;
    }
}

.is-style-cs-about-page .wp-block-group .wp-block-image {
    margin-bottom: 0;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-about-page .wp-block-group .wp-block-image img {
        filter: grayscale(100%) brightness(0%) invert(80%);
    }
}
[data-scheme=dark] .is-style-cs-about-page .wp-block-group .wp-block-image img {
    filter: grayscale(100%) brightness(0%) invert(80%);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .is-style-cs-about-page .wp-block-group .wp-block-image img {
        filter: grayscale(100%) brightness(0%) invert(80%);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .is-style-cs-about-page .wp-block-group .wp-block-image img {
        filter: grayscale(100%) brightness(0%) invert(80%);
    }
}
@media (max-width: 575.98px) {
    .is-style-cs-about-page .is-layout-flex, .is-style-cs-about-page.is-layout-flex {
        flex-direction: column;
    }
}

.is-style-cs-heading-gradient span,
.is-style-cs-heading-gradient code {
    font-family: inherit;
    font-size: inherit;
    background: linear-gradient(180deg, #9895FF 0%, #514DCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-heading-gradient span,
    :root html[data-scheme=auto] .is-style-cs-heading-gradient code {
        background: var(--cs-color-primary);
        -webkit-background-clip: text;
    }
}
[data-scheme=dark] .is-style-cs-heading-gradient span,
[data-scheme=dark] .is-style-cs-heading-gradient code {
    background: var(--cs-color-primary);
    -webkit-background-clip: text;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .is-style-cs-heading-gradient span,
    :root html[data-scheme=auto][data-d=dark] .is-style-cs-heading-gradient code {
        background: var(--cs-color-primary);
        -webkit-background-clip: text;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .is-style-cs-heading-gradient span,
    :root html[data-scheme=auto][data-l=dark] .is-style-cs-heading-gradient code {
        background: var(--cs-color-primary);
        -webkit-background-clip: text;
    }
}

.is-style-cs-link {
    position: relative;
}
.is-style-cs-link:has(a) a {
    position: relative;
    text-decoration: none;
}
.is-style-cs-link:has(a) a:after {
    content: "\e932";
    font-family: "cs-icons";
    margin-left: 0.25rem;
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-link:has(a) a:hover {
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}
@media (hover: hover) {
    html[data-scheme=dark] .is-style-cs-link:has(a) a:hover {
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}

.is-style-cs-technologies .wp-block-columns {
    align-items: center !important;
}

@media (max-width: 430px) {
    .is-style-cs-work-experience-layout {
        gap: 1rem !important;
    }
}
.is-style-cs-work-experience-layout > .wp-block-group > .wp-block-columns:not(:last-child) {
    margin-bottom: 1rem;
}
.is-style-cs-work-experience-layout > .wp-block-group.is-vertical {
    flex-wrap: unset;
}

.is-style-cs-work-experience {
    align-items: center !important;
}
@media (max-width: 430px) {
    .is-style-cs-work-experience.wp-block-columns.is-not-stacked-on-mobile {
        flex-wrap: wrap !important;
        gap: 0.5rem;
    }
    .is-style-cs-work-experience.wp-block-columns.is-not-stacked-on-mobile div, .is-style-cs-work-experience.wp-block-columns.is-not-stacked-on-mobile p {
        text-align: left;
        flex-basis: 100% !important;
    }
}

.is-style-cs-category-grid {
    display: grid;
    gap: 1.5rem;
}
.is-style-cs-category-grid:not(:first-child) {
    margin-top: 2rem;
}
@media (max-width: 575.98px) {
    .is-style-cs-category-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
@media (min-width: 576px) and (max-width: 991.98px) {
    .is-style-cs-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (min-width: 1250px) {
    .is-style-cs-category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.is-style-cs-category-grid > .wp-block-group {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: flex-end;
    width: 100%;
    aspect-ratio: 1/1;
    margin: 0;
    padding-bottom: 2rem;
    border-radius: var(--cs-thumbnail-border-radius);
    overflow: hidden;
}
.is-style-cs-category-grid > .wp-block-group:before, .is-style-cs-category-grid > .wp-block-group:after {
    content: "";
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-image {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-image a {
    display: block;
    height: 100%;
    text-decoration: none;
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: 0.25s;
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-image:hover a > img {
    transform: scale(1.025);
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group {
    position: relative;
    z-index: 2;
    display: grid;
    align-items: center;
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group > .wp-block-image {
    position: absolute;
    z-index: 1;
    width: 24px;
    height: 24px;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(1.125rem);
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group > .wp-block-image .components-resizable-box__container {
    width: 24px !important;
    height: 24px !important;
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group > .wp-block-image > a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group > .wp-block-image img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-category-grid > .wp-block-group > .wp-block-group > .wp-block-image img {
        filter: grayscale(100%) brightness(0%) invert(80%);
    }
}
html[data-scheme=dark] .is-style-cs-category-grid > .wp-block-group > .wp-block-group > .wp-block-image img {
    filter: grayscale(100%) brightness(0%) invert(80%);
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group > .wp-block-image + p > a, .is-style-cs-category-grid > .wp-block-group > .wp-block-group > .wp-block-image + p:not(:has(a)) {
    padding: 0.75rem 1.25rem 0.75rem calc( 1.125rem + 24px + 0.375rem );
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group p {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    margin: 0;
    font-size: var(--cs-heading-6-font-size);
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group p > a, .is-style-cs-category-grid > .wp-block-group > .wp-block-group p:not(:has(a)) {
    display: inline-block;
    margin: 0;
    padding: 0.75rem 1.25rem;
    color: var(--cs-color-primary);
    background-color: var(--cs-layout-background);
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
    border-radius: 100px;
    text-decoration: unset;
    transition: 0.25s;
}
.is-style-cs-category-grid > .wp-block-group > .wp-block-group:hover p a {
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.24);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .is-style-cs-category-grid > .wp-block-group > .wp-block-group:hover p a {
        opacity: 0.7;
    }
}
html[data-scheme=dark] .is-style-cs-category-grid > .wp-block-group > .wp-block-group:hover p a {
    opacity: 0.7;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Display
--------------------------------------------------------------*/
.cs-d-none {
    display: none !important;
}

.cs-d-inline {
    display: inline !important;
}

.cs-d-inline-block {
    display: inline-block !important;
}

.cs-d-block {
    display: block !important;
}

.cs-d-flex {
    display: flex !important;
}

@media (min-width: 576px) {
    .cs-d-sm-none {
        display: none !important;
    }
    .cs-d-sm-inline {
        display: inline !important;
    }
    .cs-d-sm-inline-block {
        display: inline-block !important;
    }
    .cs-d-sm-block {
        display: block !important;
    }
    .cs-d-sm-flex {
        display: flex !important;
    }
}
@media (min-width: 768px) {
    .cs-d-md-none {
        display: none !important;
    }
    .cs-d-md-inline {
        display: inline !important;
    }
    .cs-d-md-inline-block {
        display: inline-block !important;
    }
    .cs-d-md-block {
        display: block !important;
    }
    .cs-d-md-flex {
        display: flex !important;
    }
}
@media (min-width: 1250px) {
    .cs-d-lg-none {
        display: none !important;
    }
    .cs-d-lg-inline {
        display: inline !important;
    }
    .cs-d-lg-inline-block {
        display: inline-block !important;
    }
    .cs-d-lg-block {
        display: block !important;
    }
    .cs-d-lg-flex {
        display: flex !important;
    }
}
@media (min-width: 1248px) {
    .cs-d-xl-none {
        display: none !important;
    }
    .cs-d-xl-inline {
        display: inline !important;
    }
    .cs-d-xl-inline-block {
        display: inline-block !important;
    }
    .cs-d-xl-block {
        display: block !important;
    }
    .cs-d-xl-flex {
        display: flex !important;
    }
}
.cs-display-only-dark {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-display-only-dark {
        display: block;
    }
}
[data-scheme=dark] .cs-display-only-dark {
    display: block;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-display-only-dark {
        display: block;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-display-only-dark {
        display: block;
    }
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-display-only-light {
        display: none;
    }
}
[data-scheme=dark] .cs-display-only-light {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-display-only-light {
        display: none;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-display-only-light {
        display: none;
    }
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Site
--------------------------------------------------------------*/
body {
    background: var(--cs-site-background);
    overflow-x: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    --cs-wpadminbar-height: 0px;
}
body.admin-bar {
    --cs-wpadminbar-height: 46px;
}
@media screen and (min-width: 601px) {
    body.admin-bar {
        --cs-wpadminbar-height: 46px;
    }
}
@media screen and (min-width: 783px) {
    body.admin-bar {
        --cs-wpadminbar-height: 32px;
    }
}

.cs-site,
.cs-site-inner {
    min-height: calc(100vh - var(--cs-wpadminbar-height));
}

.cs-container {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
    margin-right: auto;
    margin-left: auto;
    max-width: var(--cs-mobile-container, 576px);
    position: relative;
}
@media (min-width: 768px) {
    .cs-container {
        max-width: var(--cs-tablet-container, 1250px);
    }
}
@media (min-width: 1250px) {
    .cs-container {
        max-width: var(--cs-laptop-container, 1200px);
    }
}
@media (min-width: 1248px) {
    .cs-container {
        max-width: var(--cs-desktop-container, 1296px);
    }
}
@media (min-width: 1250px) and (max-width: 1247.98px) {
    .cs-container {
        padding-right: 3rem;
        padding-left: 3rem;
    }
}
@media (min-width: 1240px) and (max-width: 1310px) {
    .single .cs-container {
        padding-right: 3rem;
        padding-left: 3rem;
    }
}

.cs-site-content {
    margin-top: 1.5rem;
    margin-bottom: 4rem;
}
.archive .cs-site-content, .single .cs-site-content, .page .cs-site-content {
    margin-top: 2.5rem;
}
.cs-site-content:has(.cs-breadcrumbs) {
    margin-top: 0.5rem;
}
.cs-site-content:has(.cs-hero-type-1) {
    margin-top: 0;
}
@media (min-width: 768px) {
    .cs-site-content {
        margin-bottom: 6rem;
    }
}
@media (min-width: 1250px) {
    .cs-site-content {
        margin-bottom: 7.5rem;
    }
}

.cs-site-primary:has(.cs-nextpost-inner) .cs-site-content {
    margin-bottom: 5.5rem;
}

.cs-site-inner {
    display: flex;
    flex-direction: column;
}
.cs-site-inner > * {
    flex: 0 0 auto;
}
.cs-site-inner main {
    flex: 1 0 auto;
}

.cs-display-header-overlay .cs-site-primary {
    margin-top: calc(-1 * (var(--cs-header-height) + var(--cs-header-border-width)));
}
@media (min-width: 1250px) {
    .cs-display-header-overlay .cs-site-primary {
        margin-top: calc(-1 * (var(--cs-header-initial-height) + var(--cs-header-border-width)));
    }
}

.cs-form-group {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.5rem;
}
@media (min-width: 576px) {
    .cs-form-box .cs-form-group {
        padding: 0.3125rem;
        border: 1px solid var(--cs-color-border);
        border-radius: var(--cs-input-border-radius);
        box-shadow: 0 5px 25px 0 rgba(var(--cs-color-box-shadow-rgb), 0.12);
        background-color: var(--cs-layout-background);
        transition: 0.25s;
    }
    .cs-form-box .cs-form-group:hover {
        box-shadow: 0 5px 25px 0 rgba(var(--cs-color-box-shadow-rgb), 0.2);
    }
}
@media (min-width: 576px) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-form-box .cs-form-group {
        box-shadow: 0 5px 20px 0 rgba(var(--cs-color-box-shadow-rgb), 0.5);
    }
    :root html[data-scheme=auto] .cs-form-box .cs-form-group:hover {
        box-shadow: 0 5px 20px 0 rgba(var(--cs-color-box-shadow-rgb), 0.6);
    }
}
@media (min-width: 576px) {
    [data-scheme=dark] .cs-form-box .cs-form-group {
        box-shadow: 0 5px 20px 0 rgba(var(--cs-color-box-shadow-rgb), 0.5);
    }
    [data-scheme=dark] .cs-form-box .cs-form-group:hover {
        box-shadow: 0 5px 20px 0 rgba(var(--cs-color-box-shadow-rgb), 0.6);
    }
}
@media (min-width: 576px) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-form-box .cs-form-group {
        box-shadow: 0 5px 20px 0 rgba(var(--cs-color-box-shadow-rgb), 0.5);
    }
    :root html[data-scheme=auto][data-d=dark] .cs-form-box .cs-form-group:hover {
        box-shadow: 0 5px 20px 0 rgba(var(--cs-color-box-shadow-rgb), 0.6);
    }
}
@media (min-width: 576px) and (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-form-box .cs-form-group {
        box-shadow: 0 5px 20px 0 rgba(var(--cs-color-box-shadow-rgb), 0.5);
    }
    :root html[data-scheme=auto][data-l=dark] .cs-form-box .cs-form-group:hover {
        box-shadow: 0 5px 20px 0 rgba(var(--cs-color-box-shadow-rgb), 0.6);
    }
}
@media (max-width: 575.98px) {
    .cs-form-group input {
        border: 1px solid var(--cs-color-border);
        border-radius: var(--cs-input-border-radius);
        box-shadow: 0 5px 25px 0 rgba(var(--cs-color-box-shadow-rgb), 0.12);
        background-color: var(--cs-color-input);
    }
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
.cs-header-before {
    height: var(--cs-header-initial-height);
}
.cs-header-before + .cs-header {
    margin-top: calc(0px - var(--cs-header-initial-height));
}
.cs-header-before + .cs-header.cs-scroll-sticky {
    margin-bottom: calc(var(--cs-header-initial-height) - var(--cs-header-height));
}

.cs-header {
    position: relative;
    width: 100%;
    background: var(--cs-header-background);
    transition: all 0.3s linear;
    z-index: 10;
}
.cs-header:after {
    content: "";
    display: block;
    width: 100%;
    height: var(--cs-header-border-width);
    background-color: var(--cs-color-border);
    transition: 0.25s;
}
.cs-navbar-sticky-enabled .cs-header {
    position: sticky;
    top: var(--cs-adminmbar-offset);
    transition: all 0.3s linear;
}
.cs-navbar-sticky-enabled .cs-header.cs-scroll-sticky {
    background: var(--cs-header-background);
}
.cs-navbar-sticky-enabled .cs-header.cs-scroll-sticky .cs-header__inner-desktop {
    min-height: var(--cs-header-height);
}
@media screen and (max-width: 600px) {
    .cs-adminbar-mobile-scrolled .cs-header {
        --cs-wpadminbar-height: 0px;
    }
    .cs-adminbar-mobile-scrolled .cs-header.cs-header-smart-visible {
        --cs-wpadminbar-height: -1px;
    }
}
.cs-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    min-height: var(--cs-header-height);
    transition: min-height 0.3s linear, border-bottom-color 0.3s linear;
}
.cs-header__inner-mobile {
    display: flex;
    min-height: var(--cs-header-height);
}
@media (min-width: 1250px) {
    .cs-header__inner-mobile {
        display: none;
    }
}
.cs-header__inner-mobile .cs-search {
    top: 100%;
    max-width: 100%;
    border-radius: 0;
}
.cs-header__inner-desktop {
    display: none;
    min-height: var(--cs-header-initial-height);
}
.cs-header__inner-desktop .cs-header__logo img {
    max-height: calc(var(--cs-header-initial-height) - 20px);
}
@media (min-width: 1250px) {
    .cs-header__inner-desktop {
        display: flex;
    }
}
.cs-header__col {
    display: flex;
    align-items: center;
    flex: 1;
}
.cs-header__col > *:not(:first-child) {
    margin-left: 0.875rem;
}
.cs-header__inner-mobile .cs-header__col > *:not(:first-child) {
    margin-left: 10px;
}
.cs-header__col.cs-col-nav {
    display: flex;
    padding: 0 20px;
}
.cs-header__col.cs-col-left {
    justify-content: flex-start;
}
.cs-header__col.cs-col-left:not(:only-child) {
    padding-left: 0;
    padding-right: 20px;
}
.cs-header__col.cs-col-center {
    flex: initial;
    justify-content: center;
}
.cs-header__col.cs-col-center:last-child {
    flex: auto;
    justify-content: flex-start;
    padding-left: 0 !important;
}
.cs-header__col.cs-col-center:not(:only-child) {
    padding: 0 20px;
}
.cs-header__inner-mobile .cs-header__col.cs-col-center {
    padding: 0;
}
.cs-header__inner-mobile .cs-header__col.cs-col-center:only-child {
    justify-content: center;
}
.cs-header__col.cs-col-right {
    justify-content: flex-end;
}
.cs-header__col.cs-col-right:not(:only-child) {
    padding-left: 20px;
    padding-right: 0;
}
.cs-header__offcanvas-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-header__offcanvas-toggle:hover .cs-icon {
        color: var(--cs-color-accent);
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-header__offcanvas-toggle:hover .cs-icon {
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}
@media (hover: hover) {
    [data-scheme=dark] .cs-header__offcanvas-toggle:hover .cs-icon {
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-header__offcanvas-toggle:hover .cs-icon {
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}
@media (hover: hover) and (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-header__offcanvas-toggle:hover .cs-icon {
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}
@media (min-width: 1250px) {
    .cs-header__offcanvas-toggle.cs-d-lg-none + * {
        margin-left: 0 !important;
    }
}
.cs-header__offcanvas-toggle .cs-icon {
    font-size: 1.5em;
}
.cs-header .cs-logo {
    margin-bottom: 0;
}
.cs-header .cs-logo.cs-logo-hide .cs-header__logo {
    font-size: 0;
    transition: font-size 0.25s;
    padding-right: 0;
}
.cs-header .cs-logo.cs-logo-hide .cs-header__logo img {
    max-height: 0;
    opacity: 0;
    transition: 0.25s;
}
@media (min-width: 1248px) {
    .cs-header .cs-logo:not(:first-child) {
        margin-left: 2rem;
    }
}
.cs-header__logo {
    display: block;
    color: var(--cs-color-primary);
    white-space: nowrap;
    text-decoration: none;
    transition: none;
    font-family: var(--cs-font-main-logo-family), sans-serif;
    font-size: var(--cs-font-main-logo-size);
    font-weight: var(--cs-font-main-logo-weight);
    font-style: var(--cs-font-main-logo-style);
    letter-spacing: var(--cs-font-main-logo-letter-spacing);
    text-transform: var(--cs-font-main-logo-text-transform);
}
.cs-header__logo.cs-logo-hide {
    margin-right: 0;
    opacity: 1;
    transition: 0.25s;
}
@media (min-width: 1250px) {
    .cs-header__logo.cs-logo-hide {
        opacity: 0;
        margin-right: auto;
    }
}
.cs-header__logo.cs-logo-dark {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-header__logo.cs-logo-dark {
        display: block;
    }
}
html[data-scheme=dark] .cs-header__logo.cs-logo-dark {
    display: block;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-header__logo.cs-logo-dark {
        display: block;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-header__logo.cs-logo-dark {
        display: block;
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-header__logo.cs-logo-default {
        display: none;
    }
}
html[data-scheme=dark] .cs-header__logo.cs-logo-default {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-header__logo.cs-logo-default {
        display: none;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-header__logo.cs-logo-default {
        display: none;
    }
}
.cs-header__logo img {
    display: block;
    max-width: inherit;
    max-height: calc(var(--cs-header-height) - 20px);
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-header__logo img:hover {
        opacity: 0.8;
    }
}
.cs-header__top-nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--cs-font-submenu-family), sans-serif;
    font-size: var(--cs-font-submenu-size);
    line-height: var(--cs-font-submenu-line-height);
    font-weight: var(--cs-font-submenu-weight);
    font-style: var(--cs-font-submenu-style);
    letter-spacing: var(--cs-font-submenu-letter-spacing);
    text-transform: var(--cs-font-submenu-text-transform);
}
.cs-header__top-nav li:not(:first-child) {
    margin-left: 20px;
}
@media (hover: hover) {
    .cs-header__top-nav li:hover a {
        color: var(--cs-color-secondary);
    }
}
.cs-header__nav {
    align-self: stretch;
}
.cs-header__nav:not(:first-child) {
    margin-left: 2rem;
}
.cs-header__nav-inner {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.cs-header__nav-inner li {
    position: relative;
}
@media (hover: hover) {
    .cs-header__nav-inner li:not(.touch-device):hover > .sub-menu {
        top: 0;
        visibility: visible;
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.cs-header__nav-inner li.submenu-visible > .sub-menu {
    visibility: visible;
    opacity: 1;
    top: 0;
    transform: translate3d(0, 0, 0);
}
.cs-header__nav-inner li.menu-item-has-children > a:after {
    content: "\e90e";
    font-family: "cs-icons";
    font-size: 1rem;
    line-height: 1;
    color: var(--cs-color-primary);
    transition: 0.25s;
}
.cs-header__nav-inner > li {
    height: calc(100% + var(--cs-header-border-width));
}
.cs-header__nav-inner > li > a {
    font-family: var(--cs-font-menu-family), sans-serif;
    font-size: var(--cs-font-menu-size);
    line-height: var(--cs-font-menu-line-height);
    font-weight: var(--cs-font-menu-weight);
    font-style: var(--cs-font-menu-style);
    letter-spacing: var(--cs-font-menu-letter-spacing);
    text-transform: var(--cs-font-menu-text-transform);
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    color: var(--cs-color-primary);
    text-decoration: none;
    gap: 0.3rem;
}
.cs-header__nav-inner > li > a[href="#"] {
    cursor: default;
}
.cs-header__nav-inner > li > a > span {
    padding: 0.5rem 0;
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
    padding-bottom: 0.5rem;
}
.cs-header__nav-inner > li > a > span span {
    display: inline-block;
}
.cs-header__nav-inner > li > a > .expanded {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 14px;
    z-index: 2;
    background: transparent;
}
.cs-header__nav-inner > li > a:before {
    content: "";
    position: absolute;
    background-color: transparent;
    width: calc(100% + 26px);
    min-height: 36px;
    z-index: -1;
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-header__nav-inner > li:hover > a:before {
        background-color: var(--cs-color-highlight-background);
    }
}
.cs-header__nav-inner > li.current-menu-ancestor a:before, .cs-header__nav-inner > li.current-menu-item a:before {
    background-color: var(--cs-color-highlight-background);
}
.cs-header__nav-inner > li.menu-item-has-children > .sub-menu {
    top: -9999px;
    left: -13px;
    z-index: 11;
    opacity: 0;
    visibility: hidden;
    background: var(--cs-header-submenu-background);
}
.cs-header__nav-inner > li.menu-item-has-children > a:after {
    content: "\e90c";
    margin-top: 0.125rem;
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-header__nav-inner > li.menu-item-has-children:hover > a:after {
        transform: rotate(-180deg);
    }
}
@media (hover: hover) {
    .cs-header__nav-inner > li.menu-item-has-children:not(.touch-device):hover > .sub-menu {
        top: calc(100% - 16px);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.25s, left 0.25s;
        background: var(--cs-header-submenu-background);
    }
}
.cs-header__nav-inner > li.menu-item-has-children.submenu-visible > .sub-menu {
    left: 0;
    top: calc(100% - 16px);
    visibility: visible;
    opacity: 1;
}
.cs-header__nav-inner .menu-item .csco-badge {
    margin: auto auto auto 0.5rem;
    align-self: flex-start;
}
.cs-header__nav-inner .sub-menu {
    position: absolute;
    display: block;
    margin: 0;
    padding: 0.9rem 1.375rem 0.9rem 0.75rem;
    text-align: left;
    list-style: none;
    background: var(--cs-header-submenu-background);
    border-radius: var(--cs-layout-elements-border-radius);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
}
.cs-header__nav-inner .sub-menu > li {
    padding: 0;
    transition: 0.25s;
}
.cs-header__nav-inner .sub-menu > li:not(:first-child) {
    margin-top: 0.375rem;
}
.cs-header__nav-inner .sub-menu > li:before {
    content: "";
    position: absolute;
    background-color: transparent;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.25s;
}
.cs-header__nav-inner .sub-menu > li:after {
    content: "";
    position: absolute;
    right: -12px;
    top: 0;
    width: 12px;
    height: 100%;
}
.cs-header__nav-inner .sub-menu > li a {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    min-width: 200px;
    padding: 0.5rem 1rem;
    color: var(--cs-color-primary);
    text-decoration: none;
    transition: 0.25s;
    font-family: var(--cs-font-submenu-family), sans-serif;
    font-size: var(--cs-font-submenu-size);
    line-height: var(--cs-font-submenu-line-height);
    font-weight: var(--cs-font-submenu-weight);
    font-style: var(--cs-font-submenu-style);
    letter-spacing: var(--cs-font-submenu-letter-spacing);
    text-transform: var(--cs-font-submenu-text-transform);
}
.cs-header__nav-inner .sub-menu > li a > .expanded {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 36px;
    z-index: 2;
}
@media (hover: hover) {
    .cs-header__nav-inner .sub-menu > li:hover {
        transform: translateX(10px);
    }
    .cs-header__nav-inner .sub-menu > li:hover:before {
        background-color: var(--cs-color-highlight-background);
    }
}
.cs-header__nav-inner .sub-menu > li.current-menu-ancestor:before, .cs-header__nav-inner .sub-menu > li.current-menu-item:before {
    background-color: var(--cs-color-highlight-background);
}
.cs-header__nav-inner .sub-menu .sub-menu {
    display: block;
    top: -9999px;
    left: calc(100% + 12px);
    transform: translate3d(0.5rem, 0, 0);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.25s;
    visibility: hidden;
    background: var(--cs-header-submenu-background);
    border-radius: var(--cs-layout-elements-border-radius);
}
.cs-header__nav-inner .sub-menu .cs-sm-position-left > .sub-menu {
    left: auto;
    right: 100%;
}
.cs-header__nav-inner .sub-menu .cs-sm-position-left > a:after {
    content: "\e90d";
}
@media (hover: hover) {
    .cs-header__nav-inner .sub-menu .cs-sm-position-left > a:hover:after {
        transform: translateX(-3px);
    }
}
.cs-header__nav-secondary {
    position: relative;
}
.cs-header__nav-secondary:not(:first-child) {
    margin-left: 4rem;
}
.cs-header__nav-secondary:before {
    background-color: var(--cs-color-border);
    display: block;
    width: 1px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: -2rem;
    transform: translateY(-50%);
    content: "";
}
.cs-header__search-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    position: relative;
    height: 100%;
    width: 52px;
    border-radius: 50%;
    transition: 0.25s;
    cursor: pointer;
}
.cs-header__search-toggle:not(:first-child) {
    margin-left: 0.5rem;
}
@media (min-width: 1250px) {
    .cs-header__search-toggle {
        justify-content: center;
    }
}
@media (hover: hover) {
    .cs-header__search-toggle:hover .cs-icon:after {
        background: var(--cs-color-highlight-background);
    }
}
.cs-header__search-toggle .cs-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 24px;
    height: 24px;
    font-size: 1.25rem;
}
.cs-header__search-toggle .cs-icon:after {
    content: "";
    position: absolute;
    background: transparent;
    width: 36px;
    height: 36px;
    left: -6px;
    top: -6px;
    border-radius: 50%;
    z-index: -1;
    transition: 0.25s;
}
.cs-header__search-toggle:has(+ .cs-site-scheme-toggle):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.5px;
    height: 18px;
    background: var(--cs-color-border);
    transform: translate(0px, -50%);
    display: none;
}
@media (min-width: 1250px) {
    .cs-header__search-toggle:has(+ .cs-site-scheme-toggle):after {
        display: block;
    }
}
.cs-header__search-label {
    display: none;
}
@media (min-width: 768px) {
    .cs-header__search-label {
        display: inline-block;
    }
}
.cs-header__info {
    color: var(--cs-color-secondary);
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.cs-navbar-smart-enabled .cs-header {
    position: sticky;
    top: calc(var(--cs-wpadminbar-height) - var(--cs-header-height) - var(--cs-header-border-width));
}
.cs-navbar-smart-enabled .cs-header.cs-header-smart-visible {
    top: var(--cs-wpadminbar-height);
}
.cs-navbar-smart-enabled .cs-header.cs-scroll-sticky {
    background: var(--cs-header-background);
}
.cs-navbar-smart-enabled .cs-header.cs-scroll-sticky .cs-header__inner {
    min-height: calc(var(--cs-header-height));
}
.cs-header__custom-button {
    padding: 0.625rem 1.125rem;
}
.cs-header__custom-button:not(:first-child) {
    margin-left: 2rem;
}
@media (hover: hover) {
    .cs-header__custom-button:hover {
        background: var(--cs-color-button-hover, var(--cs-color-accent));
        box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
        color: var(--cs-color-button-hover-contrast, var(--cs-color-primary-contrast));
    }
}

.cs-header-border-transparent .cs-header:not(.cs-scroll-sticky) .cs-header__inner {
    border-bottom: 0;
    margin-bottom: var(--cs-header-border-width);
}

.touch-device.submenu-visible .menu-item > a > span {
    color: var(--cs-light-primary-color) !important;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .touch-device.submenu-visible .menu-item > a > span {
        color: var(--cs-dark-primary-color) !important;
    }
}
[data-scheme=dark] .touch-device.submenu-visible .menu-item > a > span {
    color: var(--cs-dark-primary-color) !important;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .touch-device.submenu-visible .menu-item > a > span {
        color: var(--cs-dark-primary-color) !important;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .touch-device.submenu-visible .menu-item > a > span {
        color: var(--cs-dark-primary-color) !important;
    }
}

.cs-display-header-overlay {
    --cs-light-custom-button-background: #1D1D1D;
    --cs-light-custom-button-color: #FFFFFF;
}
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) {
    background: transparent;
}
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible):after {
    background-color: rgba(255, 255, 255, 0.2);
}
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) .cs-header__nav-secondary:before {
    transition: 0.25s;
}
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) .cs-header__logo,
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) .menu-item > a > span,
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) .menu-item-has-children > a:after,
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) .cs-header__offcanvas-toggle,
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) .cs-header__scheme-toggle-icons,
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) .cs-header__search-toggle {
    color: var(--cs-dark-primary-color);
}
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible):not(:hover) .cs-header__logo:has(img) {
    display: none;
}
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible):not(:hover) .cs-header__logo:has(img).cs-logo-dark {
    display: block;
}
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible):not(:hover) .cs-header__nav-secondary:before {
    background-color: rgba(255, 255, 255, 0.2);
}
.cs-display-header-overlay .cs-header:not(.cs-scroll-sticky, .cs-search-visible) .cs-header__nav-inner > li.current-menu-item:after {
    background-color: rgba(255, 255, 255, 0.5);
}
.cs-display-header-overlay .cs-site-inner:has(.cs-header:not(:hover)):has(.cs-header:not(:focus)):has(.cs-header:not(.cs-search-visible)) .cs-header__custom-button {
    background: var(linear-gradient(96deg, var(--cs-light-button-background-start, #241775) 0%, var(--cs-light-button-background-end, #241775) 100%), var(--cs-dark-custom-button-background));
    color: var(--cs-light-button-color, var(--cs-dark-custom-button-color));
}
.cs-display-header-overlay .cs-site-inner:has(.cs-header:not(:hover, .cs-scroll-sticky)) .cs-header__offcanvas-toggle,
.cs-display-header-overlay .cs-site-inner:has(.cs-header:not(:hover, .cs-scroll-sticky)) .cs-header__scheme-toggle-icons,
.cs-display-header-overlay .cs-site-inner:has(.cs-header:not(:hover, .cs-scroll-sticky)) .cs-header__search-toggle {
    color: var(--cs-dark-primary-color);
}
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header {
    background: var(--cs-site-background);
}
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header__logo,
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .menu-item > a > span,
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .menu-item-has-children > a:after,
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header__offcanvas-toggle,
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header__scheme-toggle-icons,
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header__search-toggle {
    color: var(--cs-color-primary);
}
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header__nav-inner > li > a :root, html[data-scheme=light] .cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header__nav-inner > li > a {
    color: var(--cs-light-primary-color);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=light] .cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
	.cs-header:focus:not(.cs-scroll-sticky),
	.cs-header.cs-search-visible) .cs-header__nav-inner > li > a {
        color: var(--cs-light-primary-color);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=light] .cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
	.cs-header:focus:not(.cs-scroll-sticky),
	.cs-header.cs-search-visible) .cs-header__nav-inner > li > a {
        color: var(--cs-light-primary-color);
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
	.cs-header:focus:not(.cs-scroll-sticky),
	.cs-header.cs-search-visible) .cs-header__nav-inner > li > a {
        color: var(--cs-dark-primary-color);
    }
}
[data-scheme=dark] .cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header__nav-inner > li > a {
    color: var(--cs-dark-primary-color);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
	.cs-header:focus:not(.cs-scroll-sticky),
	.cs-header.cs-search-visible) .cs-header__nav-inner > li > a {
        color: var(--cs-dark-primary-color);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
	.cs-header:focus:not(.cs-scroll-sticky),
	.cs-header.cs-search-visible) .cs-header__nav-inner > li > a {
        color: var(--cs-dark-primary-color);
    }
}
.cs-display-header-overlay .cs-site-inner:has(.cs-header:hover:not(.cs-scroll-sticky),
.cs-header:focus:not(.cs-scroll-sticky),
.cs-header.cs-search-visible) .cs-header__nav-inner > li.current-menu-item:after {
    background-color: var(--cs-color-accent);
}

.cs-search-visible .cs-search {
    opacity: 1;
    visibility: visible;
}

.cs-search {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 0, 0);
    position: absolute;
    top: calc(var(--cs-header-initial-height) + 0.5rem);
    right: 48px;
    width: var(--cs-offcanvas-width);
    max-width: 480px;
    display: flex;
    flex-direction: column;
    background: var(--cs-layout-background);
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    transition: transform 0.4s;
    overflow: hidden;
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    padding: 2.5rem 2rem;
    border-radius: 16px;
}
@media (min-width: 1248px) {
    .cs-search {
        --cs-offcanvas-width: 33.5rem;
    }
}
@media (min-width: 1248px) {
    .cs-search {
        right: 24px;
    }
}
@media (max-width: 991.98px) {
    .cs-search {
        right: 24px;
    }
}
@media (max-width: 575.98px) {
    .cs-search {
        right: 24px;
        max-width: calc(100% - 48px);
        padding: 2rem;
    }
    .cs-search .cs-search__close {
        right: -20px;
        top: -20px;
    }
}
@media (min-width: 1250px) {
    .cs-search {
        z-index: 10;
        width: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
        transform: none !important;
    }
    .cs-search::-webkit-scrollbar {
        display: none;
    }
    .cs-search-transition .cs-search {
        transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
    }
}
@media (min-width: 1250px) {
    .cs-search-transition .cs-search {
        transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
    }
}
@media (min-width: 1250px) {
    .cs-scroll-sticky .cs-search {
        top: calc(var(--cs-header-height) + var(--cs-wpadminbar-height));
        margin-bottom: calc(var(--cs-header-height) + var(--cs-wpadminbar-height));
    }
}
.cs-adminbar-mobile-scrolled .cs-search {
    top: 0;
}
@media screen and (min-width: 601px) {
    .cs-adminbar-mobile-scrolled .cs-search {
        top: var(--cs-wpadminbar-height);
    }
}
.cs-search__header {
    position: relative;
}
.cs-search__header h2 {
    font-size: var(--cs-heading-6-font-size);
}
.cs-search__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    right: -20px;
    top: -27px;
    color: var(--cs-color-secondary);
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-search__close:hover {
        color: var(--cs-color-primary);
    }
}
@media (prefers-color-scheme: dark) and (hover: hover) {
    :root html[data-scheme=auto] .cs-search__close:hover {
        opacity: 0.7;
    }
}
@media (hover: hover) {
    html[data-scheme=dark] .cs-search__close:hover {
        opacity: 0.7;
    }
}

.cs-search__content {
    margin-top: 1.5rem;
}

.cs-search-active {
    overflow: hidden;
}
@media (min-width: 1250px) {
    .cs-search-active .cs-search {
        transform: none !important;
        visibility: visible;
        opacity: 1;
    }
}

.cs-search-overlay {
    display: none;
}
.cs-search-visible .cs-search-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    animation: fade 0.5s;
    z-index: 1;
}
@media (min-width: 1250px) {
    .cs-search-visible .cs-search-overlay {
        z-index: 9;
        top: calc(var(--cs-header-initial-height) + var(--cs-header-border-width) + var(--cs-wpadminbar-height));
    }
}
@media (min-width: 1250px) {
    .cs-search-visible.cs-scroll-sticky .cs-search-overlay {
        top: calc(var(--cs-header-height) + var(--cs-header-border-width) + var(--cs-wpadminbar-height));
    }
}
@media (min-width: 1250px) {
    .cs-header-three.cs-search-visible:not(.cs-scroll-sticky) .cs-search-overlay {
        top: calc(var(--cs-header-initial-height) + var(--cs-header-topbar-height) + var(--cs-header-border-width) + var(--cs-wpadminbar-height));
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.cs-footer__topbar {
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .cs-footer__topbar {
        margin-bottom: 6rem;
    }
}
@media (min-width: 1250px) {
    .cs-footer__topbar {
        margin-bottom: 11rem;
    }
}

.cs-footer__item {
    border-top: 1px solid var(--cs-color-border);
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.cs-footer__item-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
@media (min-width: 1250px) {
    .cs-footer__item-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
    }
}
.cs-footer__col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.cs-footer__col > *:not(:first-child) {
    margin-top: 0.75rem;
}
@media (max-width: 991.98px) {
    .cs-footer__col > *:last-child {
        margin-bottom: 1rem !important;
    }
}
.cs-footer__col.cs-col-left {
    justify-content: flex-start;
}
@media (min-width: 1248px) {
    .cs-footer__col.cs-col-left:not(:only-child) {
        padding-right: 20px;
    }
}
@media (max-width: 767.98px) {
    .cs-footer__col.cs-col-right {
        width: 100%;
    }
}
@media (min-width: 1248px) {
    .cs-footer__col.cs-col-right:not(:only-child) {
        padding-left: 20px;
        justify-content: flex-end;
        text-align: left;
    }
}
.cs-footer__logo {
    display: block;
    white-space: nowrap;
    font-family: var(--cs-font-footer-logo-family), sans-serif;
    font-size: var(--cs-font-footer-logo-size);
    font-weight: var(--cs-font-footer-logo-weight);
    font-style: var(--cs-font-footer-logo-style);
    letter-spacing: var(--cs-font-footer-logo-letter-spacing);
    text-transform: var(--cs-font-footer-logo-text-transform);
    color: var(--cs-color-primary);
    text-decoration: none;
}
.cs-footer__logo img {
    display: block;
    max-width: inherit;
    width: auto;
    max-height: 60px;
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-footer__logo img:hover {
        opacity: 0.8;
    }
}
.cs-footer__logo.cs-logo-dark {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-footer__logo.cs-logo-dark {
        display: block;
    }
}
[data-scheme=dark] .cs-footer__logo.cs-logo-dark {
    display: block;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-footer__logo.cs-logo-dark {
        display: block;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-footer__logo.cs-logo-dark {
        display: block;
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-footer__logo.cs-logo-default {
        display: none;
    }
}
[data-scheme=dark] .cs-footer__logo.cs-logo-default {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-footer__logo.cs-logo-default {
        display: none;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-footer__logo.cs-logo-default {
        display: none;
    }
}
.cs-footer__nav-menu {
    width: 100%;
}
.cs-footer__nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    width: 100%;
    column-gap: 5rem;
    row-gap: 1.5rem;
    flex-direction: column;
}
@media (min-width: 768px) {
    .cs-footer__nav {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 80px;
        row-gap: 2rem;
        justify-content: flex-end;
    }
}
.cs-footer__nav > li {
    position: relative;
    line-height: 0;
}
@media (max-width: 767.98px) {
    .cs-footer__nav > li {
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .cs-footer__nav > li > a {
        width: auto;
        max-width: calc( 100% - 40px * 1.2 );
    }
    .cs-footer__nav > li span {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px;
        margin-right: -12px;
        cursor: pointer;
    }
    .cs-footer__nav > li span:after {
        font-family: "cs-icons";
        content: "\e90c";
        font-size: 1.25rem;
        width: 20px;
    }
    .cs-footer__nav > li > ul {
        order: 3;
        width: 100%;
    }
    .cs-footer__nav > li.menu-item-expanded span {
        transform: rotate(180deg);
    }
}
@media (min-width: 768px) {
    .cs-footer__nav > li span {
        display: none;
    }
}
.cs-footer__nav > li > a {
    font-family: var(--cs-font-footer-menu-family), sans-serif;
    font-size: var(--cs-font-footer-menu-size);
    font-weight: var(--cs-font-footer-menu-weight);
    font-style: var(--cs-font-footer-menu-style);
    letter-spacing: var(--cs-font-footer-menu-letter-spacing);
    text-transform: var(--cs-font-footer-menu-text-transform);
    line-height: var(--cs-font-footer-menu-line-height);
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-secondary);
    transition: 0.25s;
    text-decoration: none;
    pointer-events: none;
}
@media (hover: hover) {
    .cs-footer__nav > li > a:hover {
        background-size: 0px 0px;
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}
.cs-footer__nav > li > ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: none;
}
@media (min-width: 768px) {
    .cs-footer__nav > li > ul {
        display: block !important;
        height: auto !important;
        margin-top: 1.25rem;
    }
}
@media (max-width: 767.98px) {
    .cs-footer__nav > li > ul > li:first-child {
        padding-top: 1.5rem;
    }
}
.cs-footer__nav > li > ul > li + li {
    margin-top: 1.125rem;
}
.cs-footer__nav > li > ul > li > a {
    font-family: var(--cs-font-footer-submenu-family), sans-serif;
    font-size: var(--cs-font-footer-submenu-size);
    font-weight: var(--cs-font-footer-submenu-weight);
    font-style: var(--cs-font-footer-submenu-style);
    letter-spacing: var(--cs-font-footer-submenu-letter-spacing);
    text-transform: var(--cs-font-footer-submenu-text-transform);
    line-height: var(--cs-font-footer-submenu-line-height);
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
    letter-spacing: -0.03em;
}
@media (hover: hover) {
    .cs-footer__nav > li > ul > li > a:hover {
        background-size: 0px 0px;
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}
.cs-footer__desc {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    max-width: 410px;
}
.cs-footer__desc a {
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
}
@media (hover: hover) {
    .cs-footer__desc a:hover {
        background-size: 0px 1px;
        color: var(--cs-color-primary);
    }
}
.cs-footer__copyright {
    margin-top: 1rem;
    font-size: 0.75em;
    color: var(--cs-color-secondary);
}
@media (max-width: 991.98px) {
    .cs-footer__copyright {
        margin-top: 2rem;
    }
}
.cs-footer__copyright a {
    font-size: inherit;
    display: inline;
    padding-bottom: 0.0625rem;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-secondary);
    transition: 0.25s;
    text-decoration: none;
}
@media (hover: hover) {
    .cs-footer__copyright a:hover {
        background-size: 0px 1px;
        color: var(--cs-color-secondary);
    }
}

/*--------------------------------------------------------------
## Hero
--------------------------------------------------------------*/
.cs-hero-type-1__wrapper {
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--cs-color-border);
}
@media (max-width: 767.98px) {
    .cs-hero-type-1__wrapper {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
        margin-bottom: 2.5rem;
    }
}
.cs-hero-type-1 .cs-hero__content {
    position: relative;
    width: 100%;
    max-width: unset;
    text-align: center;
}
.cs-hero-type-1 .cs-hero__content .cs-hero__heading {
    width: 100%;
    max-width: var(--cs-entry-title-max-width);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: unset;
    font-family: var(--cs-font-post-title-family), sans-serif;
    font-size: var(--cs-font-post-title-size);
    line-height: var(--cs-font-post-title-line-height);
    font-weight: var(--cs-font-post-title-weight);
    font-style: var(--cs-font-post-title-style);
    letter-spacing: var(--cs-font-post-title-letter-spacing);
    text-transform: var(--cs-font-post-title-text-transform);
    color: var(--cs-color-primary);
}
@media (max-width: 767.98px) {
    .cs-hero-type-1 .cs-hero__content .cs-hero__heading {
        font-size: var(--cs-heading-2-font-size);
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .cs-hero-type-1 .cs-hero__content .cs-hero__heading {
        font-size: calc(var(--cs-heading-1-font-size) - 0.5rem);
    }
}
:root .cs-hero-type-1 .cs-hero__content .cs-hero__heading span, html[data-scheme=light] .cs-hero-type-1 .cs-hero__content .cs-hero__heading span {
    background: linear-gradient(180deg, #9895FF 0%, #514DCC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-hero-type-1 .cs-hero__content .cs-hero__heading span {
        background: var(--cs-color-primary);
        -webkit-background-clip: text;
    }
}
html[data-scheme=dark] .cs-hero-type-1 .cs-hero__content .cs-hero__heading span {
    background: var(--cs-color-primary);
    -webkit-background-clip: text;
}
.cs-hero-type-1 .cs-hero__content .cs-hero__subheading {
    font-family: var(--cs-font-post-subtitle-family), sans-serif;
    font-size: var(--cs-font-post-subtitle-size);
    line-height: var(--cs-font-post-subtitle-line-height);
    font-weight: var(--cs-font-post-subtitle-weight);
    letter-spacing: var(--cs-font-post-subtitle-letter-spacing);
    width: 100%;
    max-width: var(--cs-entry-content-small-width);
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.625rem;
    margin-bottom: unset;
    color: var(--cs-color-secondary);
}

.cs-hero-type-2 {
    position: relative;
    width: 100%;
    margin-top: 0;
}
.cs-hero-type-2 .cs-entry__post-meta .cs-meta-reading-time,
.cs-hero-type-2 .cs-entry__post-meta .cs-meta-author-name {
    color: var(--cs-color-primary);
    z-index: 1;
}
.cs-hero-type-2:not(:last-child) {
    margin-bottom: 3rem;
}
@media (max-width: 767.98px) {
    .cs-hero-type-2:not(:last-child) {
        margin-bottom: 2.5rem;
    }
}
@media (min-width: 1250px) {
    .cs-hero-type-2:not(:last-child) {
        margin-bottom: 4rem;
    }
}
.cs-hero-type-2__slider {
    border-radius: var(--cs-thumbnail-border-radius);
    overflow: hidden;
}
.cs-hero-type-2__slider:not(.swiper-initialized) {
    position: relative;
}
.cs-hero-type-2__slider:not(.swiper-initialized)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-top-color: #111;
    animation: loading 2s linear infinite;
    z-index: 5;
}
@keyframes loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.cs-hero-type-2__slider:not(.swiper-initialized) .cs-hero-type-2__button-prev, .cs-hero-type-2__slider:not(.swiper-initialized) .cs-hero-type-2__button-next {
    display: none;
}
.cs-hero-type-2__wrapper {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: ease;
}
.cs-hero-type-2__item {
    position: relative;
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    transition-property: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}
@media (hover: hover) {
    .cs-hero-type-2__item:hover .cs-meta-reading-time {
        opacity: 1;
        visibility: visible;
    }
}
.cs-hero-type-2 .cs-entry .cs-entry__thumbnail .cs-overlay-background:after {
    opacity: 1;
    background: rgba(var(--cs-color-overlay-background), 0.3);
}
.cs-hero-type-2 .cs-overlay-post-meta .cs-meta-category .post-categories li a {
    color: var(--cs-color-primary);
}
.cs-hero-type-2 .cs-entry__content {
    margin: 0;
    padding: 2rem;
}
@media (min-width: 768px) {
    .cs-hero-type-2 .cs-entry__content {
        padding: 3.75rem;
    }
}
@media (min-width: 1250px) {
    .cs-hero-type-2 .cs-entry__content {
        padding: 3rem;
    }
}
@media (min-width: 1248px) {
    .cs-hero-type-2 .cs-entry__content {
        padding: 4rem;
    }
}
.cs-hero-type-2 .cs-entry__content .cs-entry__content-body {
    max-width: var(--cs-entry-title-max-width);
}
.cs-hero-type-2 .cs-entry__content .cs-entry__content-top {
    max-width: var(--cs-entry-content-full);
}
.cs-hero-type-2 .cs-entry__title {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    max-width: unset;
}
@media (max-width: 767.98px) {
    .cs-hero-type-2 .cs-entry__title {
        font-size: var(--cs-heading-3-font-size);
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .cs-hero-type-2 .cs-entry__title {
        font-size: calc(var(--cs-heading-1-font-size) - 0.5rem);
    }
}
@media (min-width: 1250px) {
    .cs-hero-type-2 .cs-entry__title {
        font-size: var(--cs-heading-1-font-size);
    }
}
.cs-hero-type-2 .cs-entry__discover-more {
    margin-top: 1rem;
}
.cs-hero-type-2 .cs-entry__discover-more a {
    background: var(--cs-color-button-secondary) !important;
    color: var(--cs-color-button-secondary-contrast) !important;
    transition: 0.25s;
}
.cs-hero-type-2 .cs-entry__discover-more a:before {
    background: var(--cs-color-button-hover) !important;
}
.cs-hero-type-2 .cs-entry__discover-more a:focus, .cs-hero-type-2 .cs-entry__discover-more a:hover {
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
    color: var(--cs-color-button-hover-contrast) !important;
}
.cs-hero-type-2 .cs-entry__subtitle {
    opacity: 0.7;
    display: none;
    max-width: calc(var(--cs-entry-content-small-width));
}
@media (min-width: 1250px) {
    .cs-hero-type-2 .cs-entry__subtitle {
        display: block;
    }
    .cs-hero-type-2 .cs-entry__subtitle:not(:first-child) {
        margin-top: 0.625rem;
    }
}
@media (min-width: 1250px) {
    .cs-hero-type-2 .cs-entry__post-meta:last-child:not(:first-child) {
        margin-top: 2rem;
    }
}
.cs-hero-type-2 .cs-entry__outer {
    height: 100%;
    flex-direction: row;
    align-items: stretch;
}
@media (min-width: 1250px) {
    .cs-hero-type-2 .cs-entry__outer.cs-ratio-landscape-16-9:before {
        min-height: 600px;
        padding-bottom: 48%;
    }
}
.cs-hero-type-2 .cs-overlay-post-meta .cs-entry__post-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}
@media (max-width: 575.98px) {
    .cs-hero-type-2 .cs-overlay-post-meta .cs-entry__post-meta {
        gap: 0;
    }
}
.cs-hero-type-2 .cs-overlay-post-meta .cs-entry__post-meta:has(.cs-meta-reading-time):not(:has(.cs-meta-category)) {
    display: flex;
    justify-content: flex-end;
}
.cs-hero-type-2 .cs-entry__content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: auto;
    padding: 2rem;
}
@media (min-width: 768px) {
    .cs-hero-type-2 .cs-entry__content {
        padding: 4rem;
    }
}
@media (hover: hover) and (hover: hover) and (min-width: 1250px) {
    .cs-hero-type-2:hover .cs-hero-type-2__button-prev {
        opacity: 1;
    }
}
@media (hover: hover) and (min-width: 1250px) {
    .cs-hero-type-2:hover .cs-hero-type-2__button-prev {
        transform: translateY(-50%) translateX(-8px);
    }
}
@media (hover: hover) and (hover: hover) and (min-width: 1250px) {
    .cs-hero-type-2:hover .cs-hero-type-2__button-next {
        opacity: 1;
    }
}
@media (hover: hover) and (min-width: 1250px) {
    .cs-hero-type-2:hover .cs-hero-type-2__button-next {
        transform: translateY(-50%) translateX(8px);
    }
}

.cs-hero-type-2__pagination {
    --swiper-pagination-bottom: 3rem;
    position: absolute;
    bottom: 3rem;
    right: 0;
    z-index: 7;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0;
    text-align: center;
    transition: 0.3s opacity;
    transform: translate3d(0, 0, 0);
}
@media (min-width: 768px) {
    .cs-hero-type-2__pagination {
        display: flex;
    }
}
.cs-hero-type-2__pagination.swiper-pagination-bullets {
    width: auto;
}
.cs-hero-type-2__pagination-bullet {
    display: flex;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: transparent;
    transition: 0.25s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.cs-hero-type-2__pagination-bullet:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--cs-color-primary);
}
@media (hover: hover) {
    .cs-hero-type-2__pagination-bullet:hover {
        opacity: 0.7;
    }
}
.cs-hero-type-2__pagination-bullet-active {
    opacity: 1;
    width: 1.5rem;
    border-radius: 100px;
}
[data-cs-autoplay="1"] .cs-hero-type-2__pagination-bullet-active {
    width: 3.5rem;
    border-radius: var(--cs-layout-elements-border-radius);
    background: rgba(255, 255, 255, 0.3);
}
.cs-hero-type-2__pagination-bullet-active::after {
    width: 1.5rem;
}
[data-cs-autoplay="1"] .cs-hero-type-2__pagination-bullet-active::after {
    width: 3.5rem;
    background: var(--cs-dark-primary-color);
    animation: hero-slide-progress calc(var(--cs-hero-slider-delay-ms, 5000) * 1ms) cubic-bezier(0.3, 0, 0.3, 1) forwards;
    animation-play-state: running;
}
.swiper-paused .cs-hero-type-2__pagination-bullet-active::after {
    animation-play-state: paused;
}

@keyframes hero-slide-progress {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}
.cs-hero-type-2__button-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    width: 3rem;
    height: 3rem;
    border-radius: var(--cs-button-border-radius);
    transition: 0.25s;
    left: -1rem;
}
@media (hover: hover) and (min-width: 1250px) {
    .cs-hero-type-2__button-prev {
        opacity: 0;
    }
}
.cs-hero-type-2__button-prev:before {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--cs-button-border-radius);
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--cs-layout-background);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    content: "";
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-hero-type-2__button-prev:before {
        outline: 1px solid var(--cs-color-border);
    }
}
html[data-scheme=dark] .cs-hero-type-2__button-prev:before {
    outline: 1px solid var(--cs-color-border);
}
.cs-hero-type-2__button-prev:after {
    font-family: "cs-icons";
    font-weight: normal;
    margin: 0;
    font-size: 1.5rem;
    transition: 0.25s;
    color: var(--cs-color-primary);
}
@media (max-width: 991.98px) {
    .cs-hero-type-2__button-prev {
        width: 2.5rem;
        height: 2.5rem;
    }
}
@media (min-width: 1250px) {
    .cs-hero-type-2__button-prev {
        left: -1.5rem;
    }
}
.cs-hero-type-2__button-prev:after {
    content: "\e90d";
}
@media (hover: hover) and (min-width: 1250px) {
    .cs-hero-type-2__button-prev {
        left: calc(( 1rem * -1.5 ) + 8px);
    }
}
@media (hover: hover) {
    .cs-hero-type-2__button-prev:hover:after {
        transform: translateX(-3px);
    }
}

.cs-hero-type-2__button-next {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    width: 3rem;
    height: 3rem;
    border-radius: var(--cs-button-border-radius);
    transition: 0.25s;
    right: -1rem;
}
@media (hover: hover) and (min-width: 1250px) {
    .cs-hero-type-2__button-next {
        opacity: 0;
    }
}
.cs-hero-type-2__button-next:before {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--cs-button-border-radius);
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--cs-layout-background);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    content: "";
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-hero-type-2__button-next:before {
        outline: 1px solid var(--cs-color-border);
    }
}
html[data-scheme=dark] .cs-hero-type-2__button-next:before {
    outline: 1px solid var(--cs-color-border);
}
.cs-hero-type-2__button-next:after {
    font-family: "cs-icons";
    font-weight: normal;
    margin: 0;
    font-size: 1.5rem;
    transition: 0.25s;
    color: var(--cs-color-primary);
}
@media (max-width: 991.98px) {
    .cs-hero-type-2__button-next {
        width: 2.5rem;
        height: 2.5rem;
    }
}
@media (min-width: 1250px) {
    .cs-hero-type-2__button-next {
        right: -1.5rem;
    }
}
.cs-hero-type-2__button-next:after {
    content: "\e90e";
}
@media (hover: hover) and (min-width: 1250px) {
    .cs-hero-type-2__button-next {
        right: calc(( 1rem * -1.5 ) + 8px);
    }
}
@media (hover: hover) {
    .cs-hero-type-2__button-next:hover:after {
        transform: translateX(3px);
    }
}

.cs-site-content .cs-hero-type-2 .cs-hero-type-2__pagination.swiper-pagination-horizontal {
    display: none;
}
@media (min-width: 768px) {
    .cs-site-content .cs-hero-type-2 .cs-hero-type-2__pagination.swiper-pagination-horizontal {
        display: flex;
        left: unset;
        bottom: 2rem;
        right: 2rem;
        width: auto;
        gap: 0.375rem;
    }
}
@media (min-width: 768px) {
    .cs-site-content .cs-hero-type-2 .cs-hero-type-2__pagination.swiper-pagination-horizontal {
        bottom: 4rem;
        right: 4rem;
    }
}
@media (hover: hover) {
    .cs-site-content .cs-hero-type-2 .cs-entry:hover .cs-entry__thumbnail .cs-overlay-background:after {
        background: rgba(var(--cs-color-overlay-background), 0.35);
    }
}

.cs-site-content:has(.cs-hero-type-2) {
    margin-top: 0;
}

.cs-hero-type-3 {
    margin-top: 3rem;
    margin-bottom: 4rem;
}
@media (max-width: 767.98px) {
    .cs-hero-type-3 {
        margin-bottom: 2.5rem;
    }
}
.cs-hero-type-3__container {
    display: grid;
    grid-template-columns: 1fr;
    height: 100%;
    max-height: 100%;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--cs-color-border);
}
@media (max-width: 767.98px) {
    .cs-hero-type-3__container {
        padding-bottom: 2.5rem;
    }
}
@media (min-width: 1248px) {
    .cs-hero-type-3__container {
        grid-template-columns: calc(60% - 2rem) calc(40% - 0.5rem);
        grid-template-rows: auto auto auto;
        column-gap: 2.5rem;
        row-gap: 0;
    }
}
.cs-hero-type-3__container:not(:has(.cs-entry__list)) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.cs-hero-type-3__container:not(:has(.cs-entry__list)) .cs-entry__content {
    margin: unset;
}
.cs-hero-type-3__container:not(:has(.cs-entry__list)) .cs-entry__outer {
    max-height: 614px;
}
.cs-hero-type-3 .cs-entry {
    position: relative;
}
.cs-hero-type-3 .cs-entry__content:not(:first-child) {
    margin-top: 0;
}
.cs-hero-type-3 .cs-entry__title:not(:last-child) {
    margin-bottom: 0.625rem;
}
@media (min-width: 1248px) {
    .cs-hero-type-3 .cs-entry__featured {
        grid-row: span 3;
    }
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer {
    position: relative;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    display: flex;
    height: 100%;
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) {
    justify-content: unset;
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1;
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__thumbnail .cs-overlay-post-meta {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    right: 1.5rem;
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__thumbnail .cs-overlay-post-meta .cs-entry__post-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__thumbnail .cs-overlay-post-meta .cs-entry__post-meta:has(.cs-meta-reading-time):not(:has(.cs-meta-category)) {
    display: flex;
    justify-content: flex-end;
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__content {
    margin-top: -1rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    height: auto;
    display: block;
}
@media (max-width: 575.98px) {
    .cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__content {
        padding-top: calc( 1.5rem + 1rem );
    }
}
@media (min-width: 576px) {
    .cs-hero-type-3 .cs-entry__featured .cs-entry__outer:has(.cs-entry__thumbnail) .cs-entry__content {
        padding-top: calc( 2.5rem + 1rem );
    }
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
    z-index: 0;
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
    background: var(--cs-layout-background);
    border-radius: var(--cs-thumbnail-border-radius);
    padding: 2.5rem;
    margin-right: unset;
    margin-left: unset;
    max-width: 100%;
}
@media (max-width: 575.98px) {
    .cs-hero-type-3 .cs-entry__featured .cs-entry__content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 1.5rem;
    }
}
@media (min-width: 1250px) {
    .cs-hero-type-3 .cs-entry__featured .cs-meta-author-by:after {
        margin-right: 0.25rem;
    }
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__title {
    max-width: var(--cs-entry-content-large-width);
    margin-top: 0.625rem;
    margin-bottom: 0;
    color: var(--cs-color-primary);
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
}
@media (max-width: 767.98px) {
    .cs-hero-type-3 .cs-entry__featured .cs-entry__title {
        font-size: var(--cs-heading-3-font-size);
    }
}
@media (min-width: 768px) {
    .cs-hero-type-3 .cs-entry__featured .cs-entry__title {
        font-size: var(--cs-heading-2-font-size);
    }
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__subtitle {
    font-family: var(--cs-font-post-subtitle-family), sans-serif;
    font-size: var(--cs-font-post-subtitle-size);
    line-height: var(--cs-font-post-subtitle-line-height);
    font-weight: var(--cs-font-post-subtitle-weight);
    letter-spacing: var(--cs-font-post-subtitle-letter-spacing);
    display: block;
    max-width: var(--cs-entry-content-large-width);
    color: var(--cs-color-secondary);
}
.cs-hero-type-3 .cs-entry__featured .cs-entry__subtitle:not(:first-child) {
    margin-top: 0.625rem;
}
@media (min-width: 1248px) {
    .cs-hero-type-3 .cs-entry__featured .cs-entry__post-meta:last-child:not(:first-child) {
        margin-top: 2rem;
    }
}
@media (hover: hover) {
    .cs-hero-type-3 .cs-entry__featured:hover .cs-meta-reading-time {
        opacity: 1;
        visibility: visible;
    }
}
.cs-hero-type-3 .cs-entry__list {
    display: grid;
}
@media (max-width: 1247.98px) {
    .cs-hero-type-3 .cs-entry__list {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--cs-color-border);
    }
}
@media (min-width: 1248px) {
    .cs-hero-type-3 .cs-entry__list:not(:last-child) {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--cs-color-border);
    }
}
@media (min-width: 1400px) {
    .cs-hero-type-3 .cs-entry__list:not(:last-child) {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
}
.cs-hero-type-3 .cs-entry__list .cs-entry__outer {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1rem;
}
@media (min-width: 400px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__outer:has(.cs-entry__thumbnail) {
        grid-template-columns: auto clamp(180px, 40%, 180px);
        grid-template-rows: auto;
        column-gap: 1rem;
    }
}
@media (min-width: 1248px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__outer:has(.cs-entry__thumbnail) {
        grid-template-columns: auto clamp(160px, 40%, 160px);
        grid-template-rows: auto;
        column-gap: 1rem;
    }
}
@media (min-width: 1400px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__outer:has(.cs-entry__thumbnail) {
        column-gap: 1rem;
    }
}
.cs-hero-type-3 .cs-entry__list .cs-entry__thumbnail {
    justify-content: center;
    align-items: center;
    flex-direction: row;
    border-radius: var(--cs-layout-elements-border-radius);
    clip-path: inset(0 0 0 0 round var(--cs-layout-elements-border-radius));
}
@media (min-width: 400px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__thumbnail {
        order: 2;
        aspect-ratio: 1;
    }
}
.cs-hero-type-3 .cs-entry__list .cs-entry__thumbnail:before {
    padding-bottom: 58.5%;
}
.cs-hero-type-3 .cs-entry__list .cs-entry__thumbnail:not(:first-child) {
    margin-top: 0;
}
.cs-hero-type-3 .cs-entry__list .cs-entry__thumbnail img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: unset;
    border: none;
    outline: none;
    object-fit: cover;
    object-position: center center;
    border-radius: var(--cs-layout-elements-border-radius);
}
.cs-hero-type-3 .cs-entry__list .cs-entry__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}
.cs-hero-type-3 .cs-entry__list .cs-entry__content > * {
    max-width: 464px;
}
@media (min-width: 400px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__content {
        order: 1;
    }
}
.cs-hero-type-3 .cs-entry__list .cs-entry__post-meta:last-child {
    margin-top: auto;
}
.cs-hero-type-3 .cs-entry__list .cs-entry__post-meta:last-child:not(:first-child) {
    padding-top: 1rem;
}
@media (min-width: 768px) and (max-width: 1247.98px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__post-meta:last-child:not(:first-child) {
        padding-top: 0.5rem;
    }
}
@media (min-width: 1200px) and (max-width: 1399px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__post-meta:last-child:not(:first-child) {
        padding-top: 0.5rem;
    }
}
.cs-hero-type-3 .cs-entry__list .cs-entry__title {
    margin-bottom: 0.5rem;
    font-size: var(--cs-heading-5-font-size);
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__title:not(:last-child) {
        margin-top: 0.5rem;
        margin-bottom: 0;
    }
}
@media (min-width: 1248px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__title:not(:last-child) {
        margin-top: 0.625rem;
        margin-bottom: 0;
    }
}
.cs-hero-type-3 .cs-entry__list .cs-entry__subtitle {
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
    margin-top: 0.5rem;
    color: var(--cs-color-secondary);
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: none;
}
@media (min-width: 768px) {
    .cs-hero-type-3 .cs-entry__list .cs-entry__subtitle {
        display: -webkit-box;
    }
}
@media (hover: hover) {
    .cs-hero-type-3 .cs-entry__list:hover .cs-overlay-post-meta .cs-meta-reading-time {
        opacity: 1;
        visibility: visible;
    }
}

/*--------------------------------------------------------------
## Singular
--------------------------------------------------------------*/
.entry-content {
    font-family: var(--cs-font-post-content-family), sans-serif;
    font-weight: var(--cs-font-post-content-weight);
    font-size: var(--cs-font-post-content-size);
    letter-spacing: var(--cs-font-post-content-letter-spacing);
    line-height: var(--cs-font-post-content-line-height);
}
.entry-content + * {
    margin-top: 3rem !important;
}
.entry-content:not(:first-child) {
    margin-top: 4rem;
}
.entry-content:after, .entry-content:before {
    content: "";
    display: table;
    clear: both;
}
.entry-content a:not([class],
.wp-block-post-terms > a,
.wp-block-latest-posts a,
.wp-block-categories a,
.wp-block-archives-list a,
.wp-block-cover a,
.wp-block-calendar a,
.wp-block-comment-reply-link a,
.wp-block-comment-author-name a,
.wp-block-comment-date a,
.has-link-color a,
.wp-block-post-navigation-link.has-text-color a,
*[style*=text-decoration] a,
.is-style-cs-category-grid a),
.entry-content a.wp-block-pages-list__item__link:not([style*=text-decoration] a) {
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-accent);
    transition: 0.25s;
    text-decoration: none;
    font-weight: bolder;
}
.entry-content a:not([class],
.wp-block-post-terms > a,
.wp-block-latest-posts a,
.wp-block-categories a,
.wp-block-archives-list a,
.wp-block-cover a,
.wp-block-calendar a,
.wp-block-comment-reply-link a,
.wp-block-comment-author-name a,
.wp-block-comment-date a,
.has-link-color a,
.wp-block-post-navigation-link.has-text-color a,
*[style*=text-decoration] a,
.is-style-cs-category-grid a):hover,
.entry-content a.wp-block-pages-list__item__link:not([style*=text-decoration] a):hover {
    background-size: 0px 1px;
    color: var(--cs-color-accent);
}
.entry-content *[style*="text-decoration:underline"] a {
    color: var(--cs-color-accent);
    text-decoration: underline;
}
.entry-content *[style*="text-decoration:underline"] a:hover {
    color: var(--cs-color-accent);
    text-decoration: none;
}
.entry-content *[style*="text-decoration:line-through"] a {
    color: var(--cs-color-accent);
    text-decoration: line-through;
}
.entry-content *[style*="text-decoration:line-through"] a:hover {
    color: var(--cs-color-accent);
}

@media (min-width: 1250px) {
    .single .cs-entry__container {
        display: grid;
        justify-content: center;
    }
}
.single .cs-metabar-enabled .cs-entry__container {
    grid-template-columns: minmax(0, var(--cs-entry-content-width));
}
@media (min-width: 1250px) {
    .single .cs-metabar-enabled.cs-sidebar-right .cs-entry__container {
        grid-template-columns: minmax(0, 1fr) minmax(0, var(--cs-entry-content-full));
    }
}
@media (min-width: 1250px) {
    .single .cs-metabar-enabled.cs-sidebar-left .cs-entry__container {
        grid-template-columns: minmax(0, var(--cs-entry-content-full)) minmax(0, 1fr);
    }
    .single .cs-metabar-enabled.cs-sidebar-left .cs-entry__container .cs-entry__content-wrap {
        order: 1;
    }
    .single .cs-metabar-enabled.cs-sidebar-left .cs-entry__container .cs-entry__metabar {
        order: 2;
    }
}
@media (min-width: 1250px) {
    .single .cs-metabar-enabled.cs-sidebar-disabled .cs-entry__container {
        grid-template-columns: minmax(0, 1fr) minmax(0, var(--cs-entry-content-width)) minmax(0, 1fr);
    }
}
.cs-metabar-disabled .single .cs-entry__container {
    grid-template-columns: minmax(0, var(--cs-entry-content-width));
}
@media (min-width: 1250px) {
    .single .cs-entry__content-wrap {
        margin-left: auto;
        margin-right: auto;
        max-width: var(--cs-entry-content-small-width);
    }
}

.single .entry-content .alignwide {
    margin: 36px 0;
    transform: translateX(0);
}
.single .entry-content .alignwide img:not(.avatar) {
    width: 100%;
    min-width: 100%;
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .single .entry-content .alignwide {
        width: var(--cs-mobile-container);
        margin: 28px 0;
        margin-left: calc(var(--cs-mobile-container) / -2 + 50%);
        margin-right: calc(var(--cs-mobile-container) / -2 + 50%);
    }
    .single .entry-content .alignwide figcaption {
        max-width: calc(var(--cs-mobile-container) - 48px);
        margin-right: auto;
        margin-left: auto;
    }
}
@media (min-width: 1250px) {
    .single .entry-content .alignwide {
        width: var(--cs-entry-content-large-width);
        margin: 28px 0;
        margin-left: calc(var(--cs-entry-content-large-width) / -2 + 50%);
        margin-right: calc(var(--cs-entry-content-large-width) / -2 + 50%);
    }
    .single .entry-content .alignwide figcaption {
        max-width: var(--cs-entry-content-small-width);
        margin-left: auto;
        margin-right: auto;
    }
}
.page .entry-content .alignwide {
    margin: 36px 0;
    transform: translateX(0);
}
.page .entry-content .alignwide img:not(.avatar) {
    width: 100%;
    min-width: 100%;
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .page .entry-content .alignwide {
        width: var(--cs-mobile-container);
        margin: 28px 0;
        margin-left: calc(var(--cs-mobile-container) / -2 + 50%);
        margin-right: calc(var(--cs-mobile-container) / -2 + 50%);
    }
    .page .entry-content .alignwide figcaption {
        max-width: calc(var(--cs-mobile-container) - 48px);
        margin-right: auto;
        margin-left: auto;
    }
}
@media (min-width: 1250px) and (max-width: 1247.98px) {
    .cs-page-layout-disabled.page .entry-content .alignwide {
        width: calc(100vw - 6rem);
        margin: 28px 0;
        margin-left: calc((100vw - 6rem) / -2 + 50%);
        margin-right: calc((100vw - 6rem) / -2 + 50%);
    }
    .cs-page-layout-disabled.page .entry-content .alignwide figcaption {
        max-width: var(--cs-entry-content-max-width);
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1248px) {
    .cs-page-layout-disabled.page .entry-content .alignwide {
        width: var(--cs-entry-content-full);
        margin: 28px 0;
        margin-left: calc(var(--cs-entry-content-full) / -2 + 50%);
        margin-right: calc(var(--cs-entry-content-full) / -2 + 50%);
    }
    .cs-page-layout-disabled.page .entry-content .alignwide figcaption {
        max-width: var(--cs-entry-content-max-width);
        margin-left: auto;
        margin-right: auto;
    }
}
.entry-content .alignwide .alignwide,
.entry-content .alignwide .alignfull {
    width: unset !important;
    margin-left: unset !important;
    margin-right: unset !important;
}

@media (max-width: 575.98px) {
    .single .entry-content .alignfull {
        width: 100vw !important;
        max-width: 100vw;
        margin: 36px calc(-50vw + 50%);
        transform: translateX(0);
    }
    .single .entry-content .alignfull figcaption {
        max-width: 100%;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .single .entry-content .alignfull {
        width: 100vw !important;
        margin: 0 calc((100vw - 100%) * -0.5);
    }
    .single .entry-content .alignfull figcaption {
        max-width: var(--cs-mobile-container);
        margin-left: auto;
        margin-right: auto;
        padding-left: 24px;
        padding-right: 24px;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .single .entry-content .alignfull {
        width: 100vw !important;
        max-width: 100vw;
        margin: 36px calc(-50vw + 50%);
        transform: translateX(0);
    }
    .single .entry-content .alignfull figcaption {
        max-width: 100%;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}
@media (min-width: 1250px) {
    .single.cs-page-layout-right .entry-content .alignfull, .single.cs-page-layout-left .entry-content .alignfull {
        width: var(--cs-entry-content-large-width);
        margin: 28px 0;
        margin-left: calc(var(--cs-entry-content-large-width) / -2 + 50%);
        margin-right: calc(var(--cs-entry-content-large-width) / -2 + 50%);
    }
    .single.cs-page-layout-right .entry-content .alignfull figcaption, .single.cs-page-layout-left .entry-content .alignfull figcaption {
        max-width: var(--cs-entry-content-small-width);
    }
}
.single.cs-page-layout-disabled .entry-content .alignfull img:not(.avatar) {
    width: 100%;
    min-width: 100%;
    border-radius: 0;
}
@media (min-width: 1250px) {
    .single.cs-page-layout-disabled .entry-content .alignfull {
        width: 100vw !important;
        max-width: 100vw;
        margin: 36px calc(-50vw + 50%);
        transform: translateX(0);
    }
    .single.cs-page-layout-disabled .entry-content .alignfull figcaption {
        max-width: var(--cs-entry-content-small-width);
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 1247.98px) {
    .page.cs-page-layout-right .entry-content .alignfull, .page.cs-page-layout-left .entry-content .alignfull {
        width: 100vw !important;
        max-width: 100vw;
        margin: 36px calc(-50vw + 50%);
        transform: translateX(0);
    }
    .page.cs-page-layout-right .entry-content .alignfull img:not(.avatar), .page.cs-page-layout-left .entry-content .alignfull img:not(.avatar) {
        border-radius: 0;
    }
}
@media (max-width: 1247.98px) and (max-width: 575.98px) {
    .page.cs-page-layout-right .entry-content .alignfull figcaption, .page.cs-page-layout-left .entry-content .alignfull figcaption {
        max-width: 100%;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}
@media (max-width: 1247.98px) and (min-width: 576px) and (max-width: 767.98px) {
    .page.cs-page-layout-right .entry-content .alignfull figcaption, .page.cs-page-layout-left .entry-content .alignfull figcaption {
        max-width: calc(var(--cs-mobile-container) - 48px);
        margin-right: auto;
        margin-left: auto;
    }
}
@media (max-width: 1247.98px) and (min-width: 768px) and (max-width: 991.98px) {
    .page.cs-page-layout-right .entry-content .alignfull figcaption, .page.cs-page-layout-left .entry-content .alignfull figcaption {
        max-width: 100%;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}
@media (max-width: 1247.98px) and (min-width: 1250px) and (max-width: 1247.98px) {
    .page.cs-page-layout-right .entry-content .alignfull figcaption, .page.cs-page-layout-left .entry-content .alignfull figcaption {
        max-width: 100%;
        margin-left: 3rem;
        margin-right: 3rem;
    }
}
.page.cs-page-layout-disabled .entry-content .alignfull {
    width: 100vw !important;
    max-width: 100vw;
    margin: 36px calc(-50vw + 50%);
    transform: translateX(0);
}
.page.cs-page-layout-disabled .entry-content .alignfull img:not(.avatar) {
    border-radius: 0;
}
@media (max-width: 575.98px) {
    .page.cs-page-layout-disabled .entry-content .alignfull figcaption {
        max-width: 100%;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .page.cs-page-layout-disabled .entry-content .alignfull figcaption {
        max-width: calc(var(--cs-mobile-container) - 48px);
        margin-right: auto;
        margin-left: auto;
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .page.cs-page-layout-disabled .entry-content .alignfull figcaption {
        max-width: 100%;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}
@media (min-width: 1250px) {
    .page.cs-page-layout-disabled .entry-content .alignfull figcaption {
        max-width: var(--cs-entry-content-max-width);
        margin-left: auto;
        margin-right: auto;
    }
}
.entry-content .alignfull .alignwide,
.entry-content .alignfull .alignfull {
    width: unset !important;
    margin-left: unset !important;
    margin-right: unset !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .single.cs-page-layout-right .entry-content .alignfull figcaption,
    .single.cs-page-layout-left .entry-content .alignfull figcaption {
        max-width: 100%;
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }
}

.cs-nextpost-loading {
    position: relative;
    margin-top: 1rem;
    height: 80px;
}
.cs-nextpost-loading:before {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid rgba(206, 212, 218, 0.25);
    border-top-color: #ced4da;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    text-align: center;
    content: "";
}
@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cs-nextpost-section {
    border-top: 1px solid var(--cs-color-border);
}
.cs-nextpost-section .cs-site-content {
    margin-top: 5.5rem;
}

/*--------------------------------------------------------------
## Sidebar
--------------------------------------------------------------*/
.cs-sidebar__area {
    margin: 0 auto;
}
.cs-sidebar-enabled .cs-sidebar__area {
    order: 2;
}
@media (min-width: 768px) {
    .cs-sidebar__area {
        margin: initial;
    }
}
@media (min-width: 1250px) {
    .cs-sidebar__area {
        margin: initial;
    }
    .cs-sidebar-right .cs-sidebar__area {
        order: 2;
    }
    .cs-sidebar-left .cs-sidebar__area {
        order: 1;
    }
}
@media (min-width: 768px) and (max-width: 1247.98px) {
    .cs-sidebar__inner {
        column-count: 2;
        column-gap: 40px;
    }
}
.cs-sidebar__inner .widget {
    break-inside: avoid;
}

.cs-sidebar__area .widget:not(:last-child) {
    margin-bottom: 32px;
    padding-bottom: 32px;
}

@supports (position: sticky) or (position: -webkit-sticky) {
    @media (min-width: 1250px) {
        .cs-sticky-sidebar-enabled.cs-stick-to-top .cs-sidebar__area {
            display: flex;
            flex-direction: column;
        }
        .cs-sticky-sidebar-enabled.cs-stick-to-top .cs-sidebar__inner {
            position: relative;
            position: sticky;
            top: calc(var(--cs-wpadminbar-height) + 4rem);
            flex: initial;
            transition: 0.25s;
        }
        .cs-sticky-sidebar-enabled.cs-stick-to-top.cs-navbar-sticky-enabled .cs-sidebar__inner {
            top: calc(var(--cs-header-height) + var(--cs-wpadminbar-height) + 4rem);
        }
        .cs-sticky-sidebar-enabled.cs-stick-to-top.cs-navbar-smart-enabled .cs-header-smart-visible + .cs-site-primary .cs-sidebar__inner {
            top: calc(var(--cs-header-height) + var(--cs-wpadminbar-height) + 4rem);
        }
        .cs-sticky-sidebar-enabled.cs-stick-to-bottom .cs-sidebar__area {
            display: flex;
            flex-direction: column;
        }
        .cs-sticky-sidebar-enabled.cs-stick-to-bottom .cs-sidebar__inner {
            position: relative;
            position: sticky;
            bottom: 2rem;
            margin-top: auto;
            flex: 0 0 auto;
        }
        .cs-sticky-sidebar-enabled.cs-stick-last .cs-sidebar__inner {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .cs-sticky-sidebar-enabled.cs-stick-last .cs-sidebar__inner .widget:last-child {
            position: relative;
            position: sticky;
            top: calc(var(--cs-wpadminbar-height) + 4rem);
            transition: 0.4s;
        }
        .cs-sticky-sidebar-enabled.cs-stick-last.cs-navbar-sticky-enabled .cs-sidebar__inner .widget:last-child {
            top: calc(var(--cs-header-height) + var(--cs-wpadminbar-height) + 4rem);
        }
        .cs-sticky-sidebar-enabled.cs-stick-last.cs-navbar-smart-enabled .cs-header-smart-visible + .cs-site-primary .cs-sidebar__inner .widget:last-child {
            top: calc(var(--cs-header-height) + var(--cs-wpadminbar-height) + 4rem);
        }
    }
}
@-moz-document url-prefix() {
    @media (min-width: 1250px) {
        .cs-sticky-sidebar-enabled.cs-stick-to-bottom .cs-sidebar__inner {
            top: 0;
            bottom: initial;
            margin-top: initial;
            flex: initial;
            transition: 0.25s;
        }
    }
}
/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
.cs-main-content {
    position: relative;
    display: grid;
    grid-auto-flow: row;
    row-gap: 3rem;
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1250px) {
    .cs-main-content {
        column-gap: var(--cs-container-column-gap);
    }
}
.single .cs-main-content {
    margin-top: 4rem;
    column-gap: 0;
}
.cs-single-header-type-split .cs-main-content {
    margin-top: 3rem;
}
@media (min-width: 1250px) {
    .cs-hero-type-3 + .cs-site-content .cs-main-content {
        margin-top: 3rem;
    }
}
@media (min-width: 1250px) {
    .home .cs-main-content {
        margin-top: 3rem;
    }
}
.cs-sidebar-disabled .cs-main-content {
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1250px) {
    .cs-sidebar-disabled .cs-main-content .cs-archive-list {
        margin-left: auto;
        margin-right: auto;
        max-width: var(--cs-entry-content-max-width);
    }
}
@media (min-width: 1250px) {
    .cs-page-layout-disabled .cs-main-content .cs-archive-list {
        margin-left: auto;
        margin-right: auto;
        max-width: var(--cs-entry-content-max-width);
    }
}
.cs-sidebar-right .cs-main-content {
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 1248px) {
    .cs-sidebar-right .cs-main-content {
        grid-template-columns: minmax(0, 1fr) 370px;
    }
}
.cs-sidebar-left .cs-main-content {
    grid-template-columns: auto;
}
@media (min-width: 1248px) {
    .cs-sidebar-left .cs-main-content {
        grid-template-columns: 370px minmax(0, 1fr);
    }
}
.cs-sidebar-left .cs-main-content .cs-entry__container {
    grid-template-columns: minmax(0, 1fr);
}

.cs-content-area {
    position: relative;
    font-size: var(--cs-font-post-content-size);
}
.cs-sidebar-enabled .cs-content-area {
    order: 1;
}
@media (min-width: 1250px) {
    .cs-sidebar-right .cs-content-area {
        order: 1;
    }
    .cs-sidebar-left .cs-content-area {
        order: 2;
        margin-left: auto;
    }
}

/*--------------------------------------------------------------
## Posts Area
--------------------------------------------------------------*/
.cs-content-area {
    --cs-post-area-align-content: flex-start;
    --cs-post-area-content-padding: 0px;
    --cs-post-area-content-border-radius: 0;
    --cs-post-area-content-background: none;
    --cs-post-area-content-border: 0px;
    --cs-post-area-align-image: stretch;
}

.cs-posts-area {
    --cs-post-area-separator-width: 1px;
    --cs-post-area-separator-color: var(--cs-color-border);
}
.cs-section-heading + .cs-posts-area {
    margin-top: 1.5rem;
}
.cs-page__author + .cs-posts-area {
    margin-top: 1.5rem;
}
@media (min-width: 1250px) {
    .cs-page__author + .cs-posts-area {
        margin-top: 4rem;
    }
}

.cs-posts-area__main {
    --cs-posts-area-grid-columns: 1;
    --cs-posts-area-grid-row-gap: 4rem;
    --cs-posts-area-grid-column-gap: 1.5rem;
    display: grid;
    grid-row-gap: var(--cs-posts-area-grid-row-gap);
    grid-column-gap: var(--cs-posts-area-grid-column-gap);
    grid-template-columns: repeat(var(--cs-posts-area-grid-columns), minmax(0, 1fr));
}
@media (max-width: 767.98px) {
    .cs-posts-area__main {
        --cs-posts-area-grid-columns: 1 !important;
    }
}

.cs-posts-area__grid .cs-entry__outer {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
}

.cs-posts-area__list {
    grid-gap: 0;
}
.cs-posts-area__list .cs-entry:not(:first-child) {
    margin-top: var(--cs-posts-area-grid-row-gap);
}
@media (min-width: 576px) {
    .cs-posts-area__list .cs-entry:not(:first-child) {
        border-top: 1px solid var(--cs-color-border);
        margin-top: var(--cs-posts-area-grid-row-gap);
        padding-top: var(--cs-posts-area-grid-row-gap);
    }
}
.cs-posts-area__list .cs-entry__outer {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1rem;
}
@media (min-width: 768px) {
    .cs-posts-area__list .cs-entry__outer:has(.cs-entry__thumbnail) {
        grid-template-columns: 400px calc(100% - 400px - 1.25rem);
        column-gap: 1.25rem;
    }
}
.cs-posts-area__list .cs-entry__thumbnail {
    max-width: 100%;
    margin-right: 0;
    border-radius: var(--cs-thumbnail-border-radius);
    clip-path: inset(0 0 0 0 round var(--cs-thumbnail-border-radius));
    transform: translate3d(0, 0, 0);
    overflow: hidden;
}
.cs-posts-area__list .cs-entry__thumbnail img {
    border-radius: 0;
}
.cs-posts-area__list .cs-entry__content {
    flex: 1;
    flex-direction: column;
    max-width: 100%;
}
@media (min-width: 768px) {
    .cs-posts-area__list .cs-entry__content {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .cs-posts-area__list .cs-entry__content:not(:first-child) {
        margin-top: 0;
    }
}
@media (min-width: 768px) {
    .cs-posts-area__list .cs-entry__content:not(:first-child) .cs-entry__post-meta:last-child {
        margin-top: auto;
    }
    .cs-posts-area__list .cs-entry__content:not(:first-child) .cs-entry__post-meta:last-child:not(:first-child) {
        padding-top: 1rem;
    }
}

.cs-posts-area__full {
    margin-left: auto;
    margin-right: auto;
}
.cs-sidebar-disabled .cs-posts-area__full {
    max-width: var(--cs-entry-content-max-width);
}
.cs-posts-area__full .cs-entry__full-header {
    position: relative;
    z-index: 1;
}
.cs-posts-area__full .cs-entry__thumbnail {
    position: relative;
    margin: 0;
}
.cs-posts-area__full .cs-entry__container {
    max-width: 100%;
}
.cs-posts-area__full .cs-entry__content-wrap {
    max-width: var(--cs-entry-content-small-width);
}
.cs-posts-area__full .cs-entry__wrap {
    position: relative;
    z-index: 0;
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
    background: var(--cs-layout-background);
    margin-top: -1rem;
    padding: 2.5rem;
    padding-top: 3.5rem;
    border-bottom-left-radius: var(--cs-thumbnail-border-radius);
    border-bottom-right-radius: var(--cs-thumbnail-border-radius);
    margin-right: unset;
    margin-left: unset;
    max-width: 100%;
    height: auto;
}
@media (max-width: 767.98px) {
    .cs-posts-area__full .cs-entry__wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
.cs-posts-area__full .cs-entry-type-summary {
    margin-top: 0.75rem;
    color: var(--cs-color-secondary);
}
@media (max-width: 767.98px) {
    .cs-posts-area__full .cs-entry-type-summary {
        font-family: var(--cs-font-entry-excerpt-family), sans-serif;
        font-weight: var(--cs-font-entry-excerpt-weight);
        font-size: var(--cs-font-entry-excerpt-size);
        letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
        line-height: var(--cs-font-entry-excerpt-line-height);
    }
}
@media (min-width: 768px) {
    .cs-posts-area__full .cs-entry-type-summary {
        font-family: var(--cs-font-post-subtitle-family), sans-serif;
        font-size: var(--cs-font-post-subtitle-size);
        line-height: var(--cs-font-post-subtitle-line-height);
        font-weight: var(--cs-font-post-subtitle-weight);
        letter-spacing: var(--cs-font-post-subtitle-letter-spacing);
    }
}
.cs-posts-area__full .more-link {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    transition: 0.25s;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    padding: 0.625rem 1.125rem;
    border-radius: var(--cs-button-border-radius);
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    margin-top: 0;
}
.cs-posts-area__full .more-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cs-color-button-hover);
    transition: opacity 0.25s ease;
    z-index: -1;
    opacity: 0;
}
.cs-posts-area__full .more-link:focus::before, .cs-posts-area__full .more-link:hover::before {
    opacity: 1;
}
.cs-posts-area__full .more-link:focus, .cs-posts-area__full .more-link:hover {
    color: var(--cs-color-button-hover-contrast);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
    outline: none;
}
.cs-posts-area__full .more-link:disabled, .cs-posts-area__full .more-link:disabled[disabled] {
    color: var(--cs-color-button-contrast);
    opacity: 0.5;
    padding: 0.875rem 1.25rem;
}
.cs-posts-area__full .more-link:disabled:hover, .cs-posts-area__full .more-link:disabled[disabled]:hover {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
}

/*--------------------------------------------------------------
## Search Form
--------------------------------------------------------------*/
@media (max-width: 575.98px) {
    .cs-search__form .cs-search__group {
        flex-direction: column;
        gap: 1rem;
    }
}
.cs-search__form .cs-search__input {
    outline: none;
    appearance: none;
    transition: 0.25s;
    display: block;
    width: 100%;
    font-size: var(--cs-font-input-size);
    background-color: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    line-height: var(--cs-font-input-line-height);
    font-weight: var(--cs-font-input-weight);
    border: 1px solid var(--cs-color-border);
    padding: 0.5rem 1rem;
    border-radius: var(--cs-input-border-radius);
    box-shadow: none;
}
@media (min-width: 576px) {
    .cs-search__form .cs-search__input {
        border: none;
        width: 85%;
    }
    .cs-search__form-container .cs-search__form .cs-search__input {
        width: 76%;
    }
}
.cs-search__form .cs-search__submit {
    min-height: 40px;
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    transition: 0.25s;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    padding: 0.625rem 1.125rem;
    border-radius: var(--cs-button-border-radius);
}
.cs-search__form .cs-search__submit:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cs-color-button-hover);
    transition: opacity 0.25s ease;
    z-index: -1;
    opacity: 0;
}
.cs-search__form .cs-search__submit:focus::before, .cs-search__form .cs-search__submit:hover::before {
    opacity: 1;
}
.cs-search__form .cs-search__submit:focus, .cs-search__form .cs-search__submit:hover {
    color: var(--cs-color-button-hover-contrast);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
    outline: none;
}
.cs-search__form .cs-search__submit:disabled, .cs-search__form .cs-search__submit:disabled[disabled] {
    color: var(--cs-color-button-contrast);
    opacity: 0.5;
    padding: 0.625rem 1.125rem;
}
.cs-search__form .cs-search__submit:disabled:hover, .cs-search__form .cs-search__submit:disabled[disabled]:hover {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
}
@media (max-width: 575.98px) {
    .cs-search__form .cs-search__submit {
        width: 100%;
    }
}

/*--------------------------------------------------------------
## Entry
--------------------------------------------------------------*/
body {
    counter-reset: number-post;
}

.cs-entry {
    transition: 0.25s;
}
.cs-sidebar-disabled .cs-desktop-column-1 .cs-entry {
    width: 100%;
    max-width: var(--cs-entry-content-max-width);
    margin-left: auto;
    margin-right: auto;
}
.cs-sidebar-disabled .cs-archive-overlay .cs-entry {
    width: 100%;
    max-width: var(--cs-entry-content-max-width);
    margin-left: auto;
    margin-right: auto;
}
.cs-archive-full .cs-entry__wrap {
    margin-top: -1rem;
}
.cs-entry__content {
    position: relative;
    width: 100%;
    max-width: 100%;
}
.cs-entry__content .cs-entry__content-body,
.cs-entry__content .cs-entry__content-top {
    max-width: var(--cs-entry-content-width);
}
.cs-archive-overlay .cs-entry__content {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: auto;
    padding: 2.5rem;
}
@media (max-width: 767.98px) {
    .cs-archive-overlay .cs-entry__content {
        padding: 1.5rem;
    }
}
.cs-archive-overlay .cs-ratio-original .cs-entry__content {
    position: absolute;
    height: 100%;
}
.cs-entry__content .cs-entry__content-top {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}
.cs-entry__thumbnail a {
    display: block;
    width: 100%;
    height: 100%;
}
.cs-entry__thumbnail img {
    width: 100%;
    border-radius: var(--cs-thumbnail-border-radius);
}
.cs-ratio-original .cs-entry__thumbnail img {
    height: revert-layer;
}
.cs-entry__thumbnail.cs-entry__overlay {
    border-radius: var(--cs-thumbnail-border-radius);
    clip-path: inset(0 0 0 0 round var(--cs-thumbnail-border-radius));
    transform: translate3d(0, 0, 0);
    overflow: hidden;
}
.cs-entry__title {
    margin-top: 0;
    margin-bottom: 0;
    font-family: var(--cs-font-entry-title-family), sans-serif;
    line-height: var(--cs-font-entry-title-line-height);
    font-weight: var(--cs-font-entry-title-weight);
    letter-spacing: var(--cs-font-entry-title-letter-spacing);
    font-size: var(--cs-entry-title-font-size, 1.5rem);
    max-width: calc(var(--cs-entry-content-small-width));
}
.cs-entry__title:not(:first-child) {
    margin-top: 0.625rem;
}
.cs-entry__title a {
    display: block;
    text-decoration: none;
    color: var(--cs-color-primary);
}
.cs-entry__title a:hover {
    color: var(--cs-color-secondary);
}
.cs-overlay-content .cs-entry__title a:hover {
    color: var(--cs-color-primary);
    opacity: 0.7;
}
.cs-archive-list .cs-entry__title:first-child {
    margin-top: 0 !important;
}
.cs-archive-grid .cs-entry__title, .cs-read-next__grid .cs-entry__title {
    font-size: var(--cs-entry-title-font-size, 1.5rem);
}
.cs-entry__excerpt {
    max-width: calc(var(--cs-entry-content-small-width));
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
    color: var(--cs-color-secondary);
}
@media (max-width: 767.98px) {
    .cs-entry__excerpt {
        font-size: 1rem;
    }
}
.cs-entry__excerpt:not(:first-child) {
    margin-top: 0.375rem;
}
.cs-archive-overlay .cs-entry__excerpt {
    margin-top: 0.625rem;
    max-width: calc(100% - 13rem);
    font-size: var(set-typography-post-subtitle);
    color: var(--cs-color-contrast-700);
}
.cs-entry__subtitle {
    font-family: var(--cs-font-post-subtitle-family), sans-serif;
    font-size: var(--cs-font-post-subtitle-size);
    line-height: var(--cs-font-post-subtitle-line-height);
    font-weight: var(--cs-font-post-subtitle-weight);
    letter-spacing: var(--cs-font-post-subtitle-letter-spacing);
}
.cs-entry__subtitle:not(:first-child) {
    margin-top: 1.5rem;
}
.cs-entry-type-content:not(:first-child) {
    margin-top: 1rem;
}
.cs-entry__category {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: none;
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
}
.cs-entry__category:not(:first-child) {
    margin-top: 1.25rem;
}
.cs-entry__category .post-categories {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
}
.cs-entry__category .post-categories li {
    display: inline-block;
}
.cs-entry__category li {
    margin-bottom: 10px;
}
.cs-entry__category li:not(:last-child) {
    margin-right: 10px;
}
.cs-entry__category li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1px 5px;
    background: var(--cs-layout-background);
    color: var(--cs-color-primary);
    border-radius: var(--cs-thumbnail-border-radius);
    text-decoration: none;
    transition: 0.25s;
}
.cs-entry__category li a:hover {
    text-decoration: none;
    background: var(--cs-color-primary);
    color: var(--cs-color-primary-contrast);
}
.cs-archive-list .cs-entry__discover-more {
    margin-top: auto;
    padding-top: 1rem;
}
.cs-archive-grid .cs-entry__discover-more, .cs-read-next__grid .cs-entry__discover-more {
    margin-top: 0.75rem;
}
.cs-archive-overlay .cs-entry__discover-more {
    margin-top: 1rem;
}
.cs-archive-overlay .cs-entry__discover-more .cs-button {
    background: var(--cs-color-button-secondary) !important;
    color: var(--cs-color-button-secondary-contrast) !important;
    transition: 0.25s;
}
.cs-archive-overlay .cs-entry__discover-more .cs-button:before {
    background: var(--cs-color-button-hover) !important;
}
.cs-archive-overlay .cs-entry__discover-more .cs-button:focus, .cs-archive-overlay .cs-entry__discover-more .cs-button:hover {
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
    color: var(--cs-color-button-hover-contrast) !important;
}
.cs-entry__overlay .cs-entry__excerpt {
    color: var(--cs-color-contrast-800);
    z-index: 1;
}
.cs-entry__author-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.cs-entry__author-meta a {
    position: relative;
    color: var(--cs-color-secondary);
    font-weight: 500;
}
.cs-entry__author-meta a:hover {
    color: var(--cs-color-primary);
}
.cs-entry__author-meta a:not(:last-child) {
    margin-right: 10px;
    padding-right: 10px;
}
.cs-entry__author-meta a:not(:last-child):before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background-color: var(--cs-color-primary);
}
.cs-entry.sticky .cs-entry__title a:before {
    font-family: "cs-icons";
    margin-right: 0.25rem;
    content: "\e927";
}
@media (hover: hover) {
    .cs-entry:hover .cs-meta-reading-time {
        opacity: 1;
        visibility: visible;
    }
    .cs-archive-overlay .cs-entry:hover .cs-overlay-background:after {
        background: rgba(var(--cs-color-overlay-background), 0.35);
    }
}
.cs-archive-list .cs-entry:not(:has(.cs-entry__discover-more)) .cs-entry__title {
    margin-top: auto;
    padding-top: 1rem;
}
.cs-archive-list .cs-entry:not(:has(.cs-entry__discover-more)) .cs-entry__title:last-child {
    margin-top: 0.625rem;
    padding-top: inherit;
}

@media (max-width: 991.98px) {
    .cs-overlay-content {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}
.cs-overlay-content .discover-more {
    width: auto;
    height: auto;
    margin-top: auto;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.cs-overlay-content .discover-more:not(:first-child) {
    padding-top: 1rem;
}
@media (max-width: 991.98px) {
    .cs-overlay-content .cs-entry__title {
        margin-top: auto;
    }
    .cs-overlay-content .cs-entry__title:not(:first-child) {
        padding-top: 1rem;
    }
}
.cs-overlay-content .cs-entry__excerpt {
    display: none;
}
@media (min-width: 768px) {
    .cs-overlay-content .cs-entry__excerpt {
        display: block;
    }
}

.wp-block-columns {
    counter-reset: number-post;
}

.cs-entry__header-image-overlay,
.cs-entry__header-standard,
.cs-entry__header-primary {
    position: relative;
}
.cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry__overlay,
.cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry__overlay,
.cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry__overlay {
    flex-direction: row;
    align-items: stretch;
}
@media (min-width: 1250px) {
    .cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry__overlay:before,
    .cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry__overlay:before,
    .cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry__overlay:before {
        padding-bottom: 35%;
        min-height: 560px;
    }
}
@media (max-width: 767.98px) {
    .cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry__content,
    .cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry__content,
    .cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry__content {
        padding: 1.5rem;
    }
}
@media (min-width: 768px) {
    .cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry__content,
    .cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry__content,
    .cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry__content {
        padding: 3rem;
    }
}
.cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:first-child,
.cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:first-child,
.cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:first-child {
    margin-top: auto;
}
@media (min-width: 1250px) {
    .cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:first-child,
    .cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:first-child,
    .cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:first-child {
        padding-top: 1.5rem;
    }
}
.cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:last-child,
.cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:last-child,
.cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:last-child {
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 0;
}
.cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:not(:first-child),
.cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:not(:first-child),
.cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:not(:first-child) {
    padding-top: 1rem;
}
.cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:not(:last-child),
.cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:not(:last-child),
.cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry-title-and-subtitle:not(:last-child) {
    padding-bottom: 1rem;
}
@media (max-width: 767.98px) {
    .cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry__title,
    .cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry__title,
    .cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry__title {
        font-size: calc(var(--cs-heading-3-font-size) + 0.125rem);
    }
}
.cs-entry__header-image-overlay.cs-entry__header-image-overlay .cs-entry__post-meta:not(:first-child),
.cs-entry__header-standard.cs-entry__header-image-overlay .cs-entry__post-meta:not(:first-child),
.cs-entry__header-primary.cs-entry__header-image-overlay .cs-entry__post-meta:not(:first-child) {
    margin-top: 0;
}
.cs-entry__header-image-overlay .cs-overlay-background:after,
.cs-entry__header-standard .cs-overlay-background:after,
.cs-entry__header-primary .cs-overlay-background:after {
    opacity: 1;
    background: rgba(var(--cs-color-overlay-background), 0.3);
}
.cs-entry__header-image-overlay .cs-entry__content,
.cs-entry__header-standard .cs-entry__content,
.cs-entry__header-primary .cs-entry__content {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
@media (max-width: 575.98px) {
    .cs-entry__header-image-overlay .cs-entry__post-meta,
    .cs-entry__header-standard .cs-entry__post-meta,
    .cs-entry__header-primary .cs-entry__post-meta {
        justify-content: center;
    }
    .cs-entry__header-image-overlay .cs-entry__post-meta .post-categories,
    .cs-entry__header-standard .cs-entry__post-meta .post-categories,
    .cs-entry__header-primary .cs-entry__post-meta .post-categories {
        justify-content: center;
    }
}
.cs-entry__header-image-overlay .cs-entry__post-meta:nth-child(2),
.cs-entry__header-standard .cs-entry__post-meta:nth-child(2),
.cs-entry__header-primary .cs-entry__post-meta:nth-child(2) {
    margin-top: auto !important;
}
.cs-entry__header-image-overlay .cs-entry__title,
.cs-entry__header-standard .cs-entry__title,
.cs-entry__header-primary .cs-entry__title {
    font-family: var(--cs-font-post-title-family), sans-serif;
    font-size: var(--cs-font-post-title-size);
    line-height: var(--cs-font-post-title-line-height);
    font-weight: var(--cs-font-post-title-weight);
    font-style: var(--cs-font-post-title-style);
    letter-spacing: var(--cs-font-post-title-letter-spacing);
    text-transform: var(--cs-font-post-title-text-transform);
    max-width: var(--cs-entry-title-max-width);
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    text-align: center;
}
@media (max-width: 767.98px) {
    .cs-entry__header-image-overlay .cs-entry__title,
    .cs-entry__header-standard .cs-entry__title,
    .cs-entry__header-primary .cs-entry__title {
        font-size: var(--cs-heading-2-font-size);
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .cs-entry__header-image-overlay .cs-entry__title,
    .cs-entry__header-standard .cs-entry__title,
    .cs-entry__header-primary .cs-entry__title {
        font-size: calc(var(--cs-heading-1-font-size) - 0.25rem);
    }
}
@media (min-width: 1250px) {
    .cs-entry__header-image-overlay .cs-entry__title:not(:first-child),
    .cs-entry__header-standard .cs-entry__title:not(:first-child),
    .cs-entry__header-primary .cs-entry__title:not(:first-child) {
        margin-top: 1.25rem;
    }
}
.cs-entry__header-image-overlay .cs-entry__subtitle,
.cs-entry__header-standard .cs-entry__subtitle,
.cs-entry__header-primary .cs-entry__subtitle {
    display: none;
}
@media (min-width: 1250px) {
    .cs-entry__header-image-overlay .cs-entry__subtitle,
    .cs-entry__header-standard .cs-entry__subtitle,
    .cs-entry__header-primary .cs-entry__subtitle {
        opacity: 0.7;
        margin-left: auto;
        margin-right: auto;
        display: block;
        max-width: var(--cs-entry-content-small-width);
        text-wrap: balance;
        text-align: center;
    }
    .cs-entry__header-image-overlay .cs-entry__subtitle:not(:first-child),
    .cs-entry__header-standard .cs-entry__subtitle:not(:first-child),
    .cs-entry__header-primary .cs-entry__subtitle:not(:first-child) {
        margin-top: 0.625rem;
    }
}
.cs-entry__header-image-overlay.cs-entry__header-standard .cs-entry__content,
.cs-entry__header-standard.cs-entry__header-standard .cs-entry__content,
.cs-entry__header-primary.cs-entry__header-standard .cs-entry__content {
    padding: 0;
}
.cs-entry__header-image-overlay.cs-entry__header-standard .cs-entry-title-and-subtitle:nth-child(2),
.cs-entry__header-standard.cs-entry__header-standard .cs-entry-title-and-subtitle:nth-child(2),
.cs-entry__header-primary.cs-entry__header-standard .cs-entry-title-and-subtitle:nth-child(2) {
    margin-top: 0.625rem;
}
.cs-entry__header-image-overlay.cs-entry__header-standard .cs-entry-title-and-subtitle:last-child, .cs-entry__header-image-overlay.cs-entry__header-standard .cs-entry-title-and-subtitle:first-child,
.cs-entry__header-standard.cs-entry__header-standard .cs-entry-title-and-subtitle:last-child,
.cs-entry__header-standard.cs-entry__header-standard .cs-entry-title-and-subtitle:first-child,
.cs-entry__header-primary.cs-entry__header-standard .cs-entry-title-and-subtitle:last-child,
.cs-entry__header-primary.cs-entry__header-standard .cs-entry-title-and-subtitle:first-child {
    margin-bottom: 1.625rem;
}
.cs-entry__header-image-overlay.cs-entry__header-standard .cs-entry__post-meta:last-child,
.cs-entry__header-standard.cs-entry__header-standard .cs-entry__post-meta:last-child,
.cs-entry__header-primary.cs-entry__header-standard .cs-entry__post-meta:last-child {
    margin-bottom: 1.6875rem;
}
.cs-entry__header-image-overlay.cs-entry__header-primary .cs-entry__post-meta,
.cs-entry__header-standard.cs-entry__header-primary .cs-entry__post-meta,
.cs-entry__header-primary.cs-entry__header-primary .cs-entry__post-meta {
    justify-content: center;
}
.cs-entry__header-image-overlay.cs-entry__header-primary .cs-entry-title-and-subtitle:nth-child(2),
.cs-entry__header-standard.cs-entry__header-primary .cs-entry-title-and-subtitle:nth-child(2),
.cs-entry__header-primary.cs-entry__header-primary .cs-entry-title-and-subtitle:nth-child(2) {
    margin-top: 0.625rem;
}

.cs-entry__header-split {
    display: grid;
    gap: 1.5rem;
    border-bottom: 1px solid var(--cs-color-border);
    padding-bottom: 3rem;
}
.cs-entry__header-split:has(.cs-entry__thumbnail) {
    grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
    .cs-entry__header-split:has(.cs-entry__thumbnail) {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1250px) {
    .cs-entry__header-split:has(.cs-entry__thumbnail) {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1248px) {
    .cs-entry__header-split:has(.cs-entry__thumbnail) {
        grid-template-columns: minmax(0, 1fr) 720px;
    }
}
.cs-entry__header-split .cs-entry__content {
    display: flex;
    flex-direction: column;
    padding: 0;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}
.cs-entry__header-split .cs-entry-title-and-subtitle {
    max-width: var(--cs-entry-content-large-width);
}
.cs-entry__header-split .cs-entry-title-and-subtitle:nth-child(2) {
    margin-top: 0.625rem;
}
.cs-entry__header-split .cs-entry__title {
    font-family: var(--cs-font-post-title-family), sans-serif;
    font-size: var(--cs-font-post-title-size);
    line-height: var(--cs-font-post-title-line-height);
    font-weight: var(--cs-font-post-title-weight);
    font-style: var(--cs-font-post-title-style);
    letter-spacing: var(--cs-font-post-title-letter-spacing);
    text-transform: var(--cs-font-post-title-text-transform);
}
@media (max-width: 767.98px) {
    .cs-entry__header-split .cs-entry__title {
        font-size: var(--cs-heading-2-font-size);
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .cs-entry__header-split .cs-entry__title {
        font-size: calc(var(--cs-heading-1-font-size) - 0.5rem);
    }
}
.cs-entry__header-split .cs-entry__subtitle {
    display: none;
}
@media (min-width: 1248px) {
    .cs-entry__header-split .cs-entry__subtitle {
        text-wrap: balance;
        opacity: 0.7;
        display: block;
        max-width: calc(100% - 1.25rem);
    }
    .cs-entry__header-split .cs-entry__subtitle:not(:first-child) {
        margin-top: 0.625rem;
    }
}
.cs-entry__header-split .cs-entry__post-meta:last-child {
    margin-top: auto;
    padding-top: 0.625rem;
}

.cs-entry__header-title .cs-entry__title {
    font-family: var(--cs-font-post-title-family), sans-serif;
    font-size: var(--cs-font-post-title-size);
    line-height: var(--cs-font-post-title-line-height);
    font-weight: var(--cs-font-post-title-weight);
    font-style: var(--cs-font-post-title-style);
    letter-spacing: var(--cs-font-post-title-letter-spacing);
    text-transform: var(--cs-font-post-title-text-transform);
    max-width: var(--cs-entry-title-max-width);
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    text-align: center;
}
@media (max-width: 767.98px) {
    .cs-entry__header-title .cs-entry__title {
        font-size: var(--cs-heading-2-font-size);
    }
}
@media (min-width: 768px) and (max-width: 991.98px) {
    .cs-entry__header-title .cs-entry__title {
        font-size: calc(var(--cs-heading-1-font-size) - 0.25rem);
    }
}

.cs-entry__footer {
    display: grid;
    grid-template-columns: minmax(0, var(--cs-entry-content-full));
    row-gap: 1rem;
    justify-content: center;
    align-items: baseline;
    margin-top: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cs-color-border);
}
.cs-entry__footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.cs-entry__footer-top-left {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}
.cs-entry__footer-bottom {
    display: flex;
    justify-content: space-between;
}
.cs-entry__footer .cs-entry__post-meta .cs-meta-author-by,
.cs-entry__footer .cs-entry__post-meta .cs-meta-author-name {
    color: var(--cs-color-accent);
}
.cs-entry__footer .cs-entry__post-meta .cs-meta-author-by .cs-meta-author-link,
.cs-entry__footer .cs-entry__post-meta .cs-meta-author-name .cs-meta-author-link {
    color: var(--cs-color-accent);
}
.cs-entry__footer .cs-entry__post-meta .cs-meta-author-by .cs-meta-author-link:hover,
.cs-entry__footer .cs-entry__post-meta .cs-meta-author-name .cs-meta-author-link:hover {
    color: var(--cs-color-primary);
}
.cs-entry__footer .cs-entry__post-meta:not(:first-child) {
    margin: 0;
}
.cs-entry__footer .cs-entry__metabar-share {
    display: none;
}
.cs-entry__footer .cs-entry__metabar-share span {
    font-family: var(--cs-font-section-headings-family), sans-serif;
    font-size: var(--cs-font-section-headings-size);
    font-weight: var(--cs-font-section-headings-weight);
    font-style: var(--cs-font-section-headings-style);
    letter-spacing: var(--cs-font-section-headings-letter-spacing);
    text-transform: var(--cs-font-section-headings-text-transform);
    line-height: var(--cs-font-section-headings-line-height);
}
@media (max-width: 991.98px) {
    .cs-entry__footer .cs-entry__metabar-share {
        margin: -0.625rem 0;
        display: flex;
        align-items: center;
    }
}

.cs-entry__post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.375rem;
    transition: 0.25s;
    color: var(--cs-color-secondary);
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
}
@media (max-width: 575.98px) {
    .cs-entry__post-meta {
        row-gap: 0.25rem;
    }
}
.cs-entry__post-meta:not(:first-child) {
    margin-top: 0.75rem;
}
@media (min-width: 768px) {
    .cs-entry__post-meta:not(:first-child) {
        margin-top: 0.875rem;
    }
}
@media (min-width: 1248px) {
    .cs-entry__post-meta:not(:first-child) {
        margin-top: 1.5rem;
    }
}
.cs-entry__post-meta a {
    color: var(--cs-color-secondary);
    font-size: inherit;
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-entry__post-meta a:hover {
        color: var(--cs-color-primary);
    }
}
.cs-entry__post-meta > * {
    display: flex;
}
.cs-entry__post-meta .cs-meta-icon {
    display: flex;
    align-items: center;
    margin-right: 4px;
}
.cs-entry__post-meta .cs-meta-author {
    display: block;
    width: 100%;
    margin: 0;
    display: inline-flex;
    align-items: center;
    width: auto;
}
.cs-entry__post-meta .cs-meta-author-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name :root, html[data-scheme=light] .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name {
        color: var(--cs-color-primary);
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=light] .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name {
        color: var(--cs-color-primary);
    }
}
@media (hover: hover) and (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=light] .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name {
        color: var(--cs-color-primary);
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name {
        opacity: 0.7;
    }
}
@media (hover: hover) {
    [data-scheme=dark] .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name {
        opacity: 0.7;
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name {
        opacity: 0.7;
    }
}
@media (hover: hover) and (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name {
        opacity: 0.7;
    }
}
@media (hover: hover) {
    .cs-overlay-content .cs-entry__post-meta .cs-meta-author-link:hover .cs-meta-author-name {
        color: var(--cs-color-primary);
    }
}
.cs-entry__post-meta .cs-meta-author-avatar {
    margin-left: 0.25rem;
    margin-right: 0.5rem;
    border-radius: var(--cs-avatar-border-radius);
    overflow: hidden;
}
.cs-entry__post-meta .cs-meta-author-name {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    display: inline-flex;
    align-items: center;
    color: var(--cs-color-accent);
    transition: 0.25s;
}
.cs-overlay-content .cs-entry__post-meta .cs-meta-author-name {
    opacity: 1;
}
.cs-archive-overlay .cs-entry__post-meta .cs-meta-author-name {
    color: var(--cs-color-primary);
}
.cs-entry__header-image-overlay .cs-entry__post-meta .cs-meta-author-name {
    color: inherit;
}
.cs-entry__post-meta .cs-meta-date {
    display: flex;
    margin: 0;
    align-items: center;
    color: var(--cs-color-secondary);
}
.cs-entry__post-meta .cs-meta-date .cs-meta-date-on {
    margin-right: 4px;
}
.cs-overlay-content .cs-entry__post-meta .cs-meta-date {
    opacity: 0.7;
}
.cs-entry__post-meta .cs-meta-category .post-categories {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: -0.3125rem;
}
.cs-entry__post-meta .cs-meta-category .post-categories li {
    display: inline-block;
}
.cs-entry__post-meta .cs-meta-category .post-categories li {
    position: relative;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .cs-entry__post-meta .cs-meta-category .post-categories li :not(.cs-search__content):nth-child(n+4) {
        display: none;
    }
}
@media (max-width: 991.98px) {
    .cs-read-next__grid .cs-entry__post-meta .cs-meta-category .post-categories li :not(.cs-search__content):nth-child(n+4) {
        display: none;
    }
}
.cs-entry__post-meta .cs-meta-category .post-categories li a {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--cs-color-primary);
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
    text-decoration: none;
    padding-right: 1.3125rem;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    padding-left: 0.6875rem;
    background: 0 0;
    transition: 0.25s;
}
.cs-entry__post-meta .cs-meta-category .post-categories li a:after {
    content: "";
    display: block;
    position: absolute;
    top: 0.3125rem;
    bottom: 0.3125rem;
    left: 0;
    right: 0.6875rem;
    z-index: -1;
    background: var(--cs-layout-background);
    border-radius: var(--cs-tag-border-radius);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    transition: 0.25s;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-entry__post-meta .cs-meta-category .post-categories li a:after {
        outline: 1px solid var(--cs-color-border);
    }
}
[data-scheme=dark] .cs-entry__post-meta .cs-meta-category .post-categories li a:after {
    outline: 1px solid var(--cs-color-border);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-entry__post-meta .cs-meta-category .post-categories li a:after {
        outline: 1px solid var(--cs-color-border);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-entry__post-meta .cs-meta-category .post-categories li a:after {
        outline: 1px solid var(--cs-color-border);
    }
}
@media (hover: hover) {
    .cs-entry__post-meta .cs-meta-category .post-categories li a:hover {
        color: var(--cs-color-secondary);
    }
    .cs-entry__post-meta .cs-meta-category .post-categories li a:hover:after {
        box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
        opacity: 0.7;
    }
}
.cs-meta-overlay-transparent .cs-entry__post-meta .cs-meta-category .post-categories li a:after, .cs-entry__header-image-overlay .cs-entry__post-meta .cs-meta-category .post-categories li a:after {
    background: rgba(255, 255, 255, 0.22);
    box-shadow: unset;
    color: var(--cs-color-primary);
    backdrop-filter: blur(10px);
    outline: none !important;
    opacity: 1;
}
@media (hover: hover) {
    .cs-meta-overlay-transparent .cs-entry__post-meta .cs-meta-category .post-categories li a:hover, .cs-entry__header-image-overlay .cs-entry__post-meta .cs-meta-category .post-categories li a:hover {
        opacity: 1 !important;
    }
    .cs-meta-overlay-transparent .cs-entry__post-meta .cs-meta-category .post-categories li a:hover:after, .cs-entry__header-image-overlay .cs-entry__post-meta .cs-meta-category .post-categories li a:hover:after {
        background: var(--cs-color-contrast-300);
    }
}
.cs-meta-overlay-background .cs-entry__post-meta .cs-meta-category .post-categories li a {
    color: var(--cs-color-primary-contrast);
}
.cs-meta-overlay-background .cs-entry__post-meta .cs-meta-category .post-categories li a:after {
    box-shadow: unset;
    outline: unset !important;
}
@media (hover: hover) {
    .cs-meta-overlay-background .cs-entry__post-meta .cs-meta-category .post-categories li a:hover {
        opacity: 1;
    }
    .cs-meta-overlay-background .cs-entry__post-meta .cs-meta-category .post-categories li a:hover:after {
        background: var(--cs-color-contrast-900);
        opacity: 1;
    }
}
.cs-entry__post-meta .cs-meta-comments {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cs-entry__post-meta .cs-meta-comments .comments-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--cs-color-primary);
    transition: 0.25s;
}
.cs-overlay-content .cs-entry__post-meta .cs-meta-comments .comments-link {
    color: var(--cs-color-primary);
    opacity: 1;
}
@media (hover: hover) {
    .cs-entry__post-meta .cs-meta-comments .comments-link:hover {
        color: var(--cs-color-accent);
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-entry__post-meta .cs-meta-comments .comments-link:hover {
        opacity: 0.7;
    }
}
@media (hover: hover) {
    [data-scheme=dark] .cs-entry__post-meta .cs-meta-comments .comments-link:hover {
        opacity: 0.7;
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-entry__post-meta .cs-meta-comments .comments-link:hover {
        opacity: 0.7;
    }
}
@media (hover: hover) and (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-entry__post-meta .cs-meta-comments .comments-link:hover {
        opacity: 0.7;
    }
}
@media (hover: hover) {
    .cs-overlay-content .cs-entry__post-meta .cs-meta-comments .comments-link:hover {
        color: var(--cs-color-primary);
        opacity: 0.7;
    }
}
.cs-entry__post-meta .cs-meta-comments .comments-link:before {
    font-family: "cs-icons" !important;
    content: "\f0e5";
    margin-right: 0.25rem;
    margin-left: 0.25rem;
    font-size: 0.75rem;
}
.cs-entry__post-meta .cs-meta-reading-time {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    opacity: 0;
    visibility: hidden;
    position: relative;
    z-index: 1;
    min-width: 110px;
    padding: 0.375rem 0.625rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.22);
    color: var(--cs-color-primary);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: 0.25s;
}
.cs-meta-overlay-background .cs-entry__post-meta .cs-meta-reading-time {
    background: rgba(41, 41, 75, 0.15);
}
.cs-archive-list .cs-entry__post-meta .cs-meta-reading-time, .cs-archive-grid .cs-entry__post-meta .cs-meta-reading-time, .cs-archive-overlay .cs-entry__post-meta .cs-meta-reading-time, .cs-archive-full .cs-entry__post-meta .cs-meta-reading-time, .cs-read-next__grid .cs-entry__post-meta .cs-meta-reading-time {
    padding: 0.28125rem 0.56253rem;
    letter-spacing: -0.02em;
}
.cs-entry__post-meta .cs-meta-reading-time:before {
    content: "\e91a";
    font-family: "cs-icons";
    font-weight: 300;
    line-height: 1;
}
@media (max-width: 575.98px) {
    .cs-entry__post-meta .cs-meta-reading-time {
        display: none;
    }
}
@media (min-width: 576px) and (hover: none) {
    .cs-entry__post-meta .cs-meta-reading-time {
        opacity: 1;
        visibility: visible;
    }
}
.cs-archive-list .cs-overlay-post-meta .cs-entry__post-meta, .cs-archive-grid .cs-overlay-post-meta .cs-entry__post-meta, .cs-archive-overlay .cs-overlay-post-meta .cs-entry__post-meta, .cs-archive-full .cs-overlay-post-meta .cs-entry__post-meta, .cs-read-next__grid .cs-overlay-post-meta .cs-entry__post-meta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: start;
    width: 100%;
}
@media (max-width: 575.98px) {
    .cs-archive-list .cs-overlay-post-meta .cs-entry__post-meta, .cs-archive-grid .cs-overlay-post-meta .cs-entry__post-meta, .cs-archive-overlay .cs-overlay-post-meta .cs-entry__post-meta, .cs-archive-full .cs-overlay-post-meta .cs-entry__post-meta, .cs-read-next__grid .cs-overlay-post-meta .cs-entry__post-meta {
        gap: 0;
    }
}
.cs-archive-list .cs-overlay-post-meta .cs-entry__post-meta:has(.cs-meta-reading-time):not(:has(.cs-meta-category)), .cs-archive-grid .cs-overlay-post-meta .cs-entry__post-meta:has(.cs-meta-reading-time):not(:has(.cs-meta-category)), .cs-archive-overlay .cs-overlay-post-meta .cs-entry__post-meta:has(.cs-meta-reading-time):not(:has(.cs-meta-category)), .cs-archive-full .cs-overlay-post-meta .cs-entry__post-meta:has(.cs-meta-reading-time):not(:has(.cs-meta-category)), .cs-read-next__grid .cs-overlay-post-meta .cs-entry__post-meta:has(.cs-meta-reading-time):not(:has(.cs-meta-category)) {
    display: flex;
    justify-content: flex-end;
}

.cs-categories-list {
    max-width: 940px;
    margin-bottom: 5.5rem;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767.98px) {
    .cs-categories-list {
        margin-bottom: 5rem;
    }
}
.cs-categories-list__heading {
    font-family: var(--cs-font-section-headings-family), sans-serif;
    font-size: var(--cs-font-section-headings-size);
    font-weight: var(--cs-font-section-headings-weight);
    font-style: var(--cs-font-section-headings-style);
    letter-spacing: var(--cs-font-section-headings-letter-spacing);
    text-transform: var(--cs-font-section-headings-text-transform);
    line-height: var(--cs-font-section-headings-line-height);
    margin-bottom: 2rem;
    text-align: center;
    color: var(--cs-color-secondary);
}
.cs-categories-list__wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}
.cs-categories-list__wrapper .cs-category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: max-content;
    background-color: var(--cs-layout-background);
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
    padding: 0.75rem 1.25rem 0.75rem 1.125rem;
    transition: 0.25s;
    border-radius: 100px;
    position: relative;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-categories-list__wrapper .cs-category-item {
        outline: 1px solid var(--cs-color-border);
    }
}
html[data-scheme=dark] .cs-categories-list__wrapper .cs-category-item {
    outline: 1px solid var(--cs-color-border);
}
.cs-categories-list__wrapper .cs-category-item__title a {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    font-size: var(--cs-heading-6-font-size);
    color: var(--cs-color-primary);
    text-decoration: unset;
}
.cs-categories-list__wrapper .cs-category-item__icon-box .cs-category-item__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.cs-categories-list__wrapper .cs-category-item__icon-box .cs-category-item__icon img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-categories-list__wrapper .cs-category-item__icon-box .cs-category-item__icon img {
        filter: grayscale(100%) brightness(0%) invert(80%);
    }
}
html[data-scheme=dark] .cs-categories-list__wrapper .cs-category-item__icon-box .cs-category-item__icon img {
    filter: grayscale(100%) brightness(0%) invert(80%);
}
.cs-categories-list__wrapper .cs-category-item__link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
@media (hover: hover) {
    :root .cs-categories-list__wrapper .cs-category-item:hover, html[data-scheme=light] .cs-categories-list__wrapper .cs-category-item:hover {
        box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.24);
        background-color: rgba(255, 255, 255, 0.9);
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-categories-list__wrapper .cs-category-item:hover {
        box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
        background-color: var(--cs-color-highlight-background);
        opacity: 0.7;
    }
}
@media (hover: hover) {
    html[data-scheme=dark] .cs-categories-list__wrapper .cs-category-item:hover {
        box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
        background-color: var(--cs-color-highlight-background);
        opacity: 0.7;
    }
}

.cs-archive-list .cs-overlay-post-meta, .cs-archive-grid .cs-overlay-post-meta, .cs-read-next__grid .cs-overlay-post-meta {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
}
.cs-archive-full .cs-overlay-post-meta {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    right: 1.5rem;
}

.cs-entry-format {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 3;
}
.cs-entry-format > a.cs-format-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.25s;
    color: #ffffff;
}
.cs-entry-format > a.cs-format-icon:after {
    position: relative;
    width: auto;
    font-family: "cs-icons";
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    opacity: 1;
}
.cs-entry-format .cs-format-image:after {
    content: "\e92a";
}
.cs-entry-format .cs-format-video:after {
    content: "\e91c";
}
.cs-entry-format .cs-format-audio:after {
    content: "\e91b";
}
.cs-entry-format .cs-format-gallery:after {
    content: "\e92a";
}
.cs-entry-format .cs-format-link:after {
    content: "\e90e";
}
.cs-entry-format .cs-format-quote:after {
    content: "\e918";
}
.cs-entry-format .cs-format-status:after {
    content: "\e907";
}
.cs-entry-format .cs-format-aside:after {
    content: "\e90a";
}
.cs-entry-format .cs-format-chat:after {
    content: "\e900";
}

.cs-entry-prev-next {
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.5rem;
    gap: 1.5rem;
}
@media (min-width: 576px) {
    .cs-entry-prev-next:has(> :nth-child(2)) {
        grid-template-columns: repeat(2, 1fr);
    }
}
.cs-entry-prev-next__item {
    position: relative;
    background: var(--cs-layout-background);
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    padding: 2rem;
    border-radius: var(--cs-thumbnail-border-radius);
    cursor: pointer;
    transition: 0.25s;
    overflow: hidden;
}
.cs-entry-prev-next__item:only-child .cs-entry {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
@media (min-width: 576px) and (max-width: 767.98px) {
    .cs-entry-prev-next__item:only-child .cs-entry {
        max-width: 50%;
    }
}
@media (min-width: 768px) {
    .cs-entry-prev-next__item:only-child .cs-entry {
        max-width: 50%;
    }
}
.cs-entry-prev-next__item .cs-entry {
    margin-top: 0.75rem;
}
.cs-entry-prev-next__item .cs-entry__title {
    font-size: var(--cs-heading-6-font-size);
    text-align: center;
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-entry-prev-next__item:hover .cs-entry__title {
        color: var(--cs-color-secondary);
    }
    .cs-entry-prev-next__item:hover .cs-prev-icon {
        left: 0;
    }
    .cs-entry-prev-next__item:hover .cs-next-icon {
        right: -6px;
    }
}
.cs-entry-prev-next__label {
    font-family: var(--cs-font-section-headings-family), sans-serif;
    font-size: var(--cs-font-section-headings-size);
    font-weight: var(--cs-font-section-headings-weight);
    font-style: var(--cs-font-section-headings-style);
    letter-spacing: var(--cs-font-section-headings-letter-spacing);
    text-transform: var(--cs-font-section-headings-text-transform);
    line-height: var(--cs-font-section-headings-line-height);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    color: var(--cs-color-secondary);
}
.cs-entry-prev-next__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: 0.25s;
}
.cs-entry-prev-next__icon .cs-icon {
    font-size: 0.875rem;
}
.cs-entry-prev-next__icon.cs-next-icon {
    right: -3px;
}
.cs-entry-prev-next__icon.cs-prev-icon {
    left: 3px;
}
.cs-entry-prev-next__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cs-read-next {
    margin-bottom: 7.5rem;
}
.cs-read-next__heading {
    margin-bottom: 2rem;
}
@media (max-width: 575.98px) {
    .cs-read-next__heading {
        margin-bottom: 1.5rem;
    }
}
.cs-read-next__heading h2 {
    margin: 0;
}
@media (max-width: 767.98px) {
    .cs-read-next__heading h2 {
        font-size: var(--cs-heading-4-font-size);
    }
}
@media (min-width: 768px) {
    .cs-read-next__heading h2 {
        font-size: var(--cs-heading-3-font-size);
    }
}
.cs-read-next__grid {
    --cs-posts-area-grid-columns: 3;
    --cs-posts-area-grid-row-gap: 4rem;
    --cs-posts-area-grid-column-gap: 1.5rem;
    display: grid;
    grid-row-gap: var(--cs-posts-area-grid-row-gap);
    grid-column-gap: var(--cs-posts-area-grid-column-gap);
    grid-template-columns: repeat(var(--cs-posts-area-grid-columns), minmax(0, 1fr));
}
@media (max-width: 767.98px) {
    .cs-read-next__grid {
        --cs-posts-area-grid-columns: 1 !important;
    }
}
.cs-read-next__grid .cs-entry__outer {
    display: flex;
    flex-direction: column;
    row-gap: 1.25rem;
}

.cs-entry__metabar {
    display: none;
}
@media (min-width: 1250px) {
    .cs-entry__metabar {
        display: block;
    }
}
@media (min-width: 1250px) {
    .cs-sidebar-disabled .cs-entry__metabar {
        display: block;
    }
}
.cs-entry__metabar-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
@media (min-width: 1250px) {
    .cs-metabar-enabled .cs-entry__metabar-inner {
        position: sticky;
        z-index: 2;
        top: calc(var(--cs-wpadminbar-height) + 1.25rem);
        transition: 0.4s;
    }
    .cs-navbar-smart-enabled .cs-header-smart-visible ~ .cs-site-primary .cs-metabar-enabled .cs-entry__metabar-inner {
        top: calc(var(--cs-header-height) + var(--cs-wpadminbar-height) + 1.25rem);
    }
    .cs-navbar-sticky-enabled .cs-metabar-enabled .cs-entry__metabar-inner {
        top: calc(var(--cs-header-height) + var(--cs-wpadminbar-height) + 1.25rem);
    }
}
.cs-entry__metabar .cs-reading-time-item {
    position: relative;
    left: -1.75rem;
}
.cs-sidebar-enabled.cs-sidebar-left .cs-entry__metabar .cs-reading-time-item {
    left: -3.3125rem;
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time {
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    color: var(--cs-color-primary);
    transition: 0.25s;
    animation: fade 0.5s;
    width: 80px;
    height: 80px;
    padding: 0;
    text-align: center;
    padding: 1.25rem;
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time:before {
    content: unset;
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -1;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--cs-layout-background);
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-entry__metabar .cs-reading-time-item .cs-post-reading-time:hover {
        background: inherit;
        color: var(--cs-color-primary);
    }
    .cs-entry__metabar .cs-reading-time-item .cs-post-reading-time:hover span {
        opacity: 0.8;
    }
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time:focus {
    background: inherit;
    color: var(--cs-color-primary);
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time__border, .cs-entry__metabar .cs-reading-time-item .cs-post-reading-time__progress {
    position: absolute;
    top: 0;
    left: 0;
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time__border path, .cs-entry__metabar .cs-reading-time-item .cs-post-reading-time__progress path {
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 238.76px, 238.76px;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.5s linear;
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time__border path {
    stroke: var(--cs-layout-background);
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time__progress path {
    stroke: var(--cs-color-accent);
}
.cs-entry__metabar .cs-reading-time-item .cs-post-reading-time__label {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    transition: 0.25s;
}

.cs-entry__comments {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
}
.cs-entry__comments .cs-entry__comments-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}
.cs-entry__comments .cs-entry__comments-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.cs-entry__comments .cs-entry__comments-header-comment-view-toggle {
    line-height: 1.2;
}
.cs-entry__comments .cs-entry__comments-header-comment-view-toggle .cs-entry__comments-view-toggle:not(.cs-button) {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    cursor: pointer;
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-accent);
    transition: 0.25s;
    text-decoration: none;
    padding-bottom: 0.2em;
}
.cs-entry__comments .cs-entry__comments-header-comment-view-toggle .cs-entry__comments-view-toggle:not(.cs-button):hover {
    background-size: 0px 1px;
    color: var(--cs-color-accent);
}
.cs-entry__comments .cs-entry__comments-inner {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    width: 100%;
    transition: max-height 1s ease, opacity 0.3s ease;
}
.cs-entry__comments.cs-entry__comments-visible .cs-entry__comments-inner {
    max-height: unset;
    opacity: 1;
}

.cs-entry__comments-toggle {
    width: 100%;
    min-height: 2.5rem;
}

.comment-list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: none;
}
.cs-entry__comments-visible .comment-list {
    display: block;
}
.comment-list > li {
    margin-top: 1.5rem;
}
.comment-list > li.depth-1:not(:first-child) {
    border-top: 1px solid var(--cs-color-border);
    padding-top: 1.5rem;
}
.comment-list > li:first-child {
    margin-top: 2rem;
}
.comment-list .comment-body {
    display: flex;
    flex-direction: column;
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
}
.comment-list .comment-body > .reply {
    display: inline-flex;
    order: 3;
    margin-top: 0.75rem;
}
.comment-list .comment-content {
    font-family: var(--cs-font-base-family), sans-serif;
    font-size: var(--cs-font-base-size);
    font-weight: var(--cs-font-base-weight);
    font-style: var(--cs-font-base-style);
    line-height: var(--cs-font-base-line-height);
    letter-spacing: var(--cs-font-base-letter-spacing);
    color: var(--cs-color-primary);
    margin-top: 0.375rem;
}
.comment-list .comment-meta {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
}
.comment-list .comment-edit-link {
    color: var(--cs-color-primary);
    transition: 0.25s;
    margin-left: 0.25rem;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.comment-list .comment-edit-link:hover {
    color: var(--cs-color-secondary);
}
.comment-list .comment-author .says {
    display: none;
}
.comment-list .comment-author a {
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
    color: var(--cs-color-primary);
}
.comment-list .comment-author a:hover {
    background-size: 100% 1px;
    color: var(--cs-color-primary);
    color: var(--cs-color-secondary);
}
.comment-list .bypostauthor > .comment-body .comment-author:before {
    font-family: "cs-icons";
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    max-height: 20px;
    margin-right: 0.25rem;
}
.comment-list .byuser .comment-author b {
    display: inline-flex;
    align-items: center;
    position: relative;
}
.comment-list .children {
    margin: 0;
    margin-top: 1.5rem;
    padding-left: 2rem;
    list-style: none;
}
.comment-list .children > li:not(:first-child) {
    margin-top: 1.5rem;
}
@media (max-width: 575.98px) {
    .comment-list .children {
        padding-left: 1.5rem;
    }
}
.comment-list .children .children .children .children .children .children {
    padding-left: 0;
}
@media (min-width: 768px) {
    .comment-list .children .children .children .children .children .children {
        padding-left: 0;
    }
}

.comment-meta {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    line-height: 1.3;
    order: 1;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.comment-meta img {
    margin-right: 0.375rem;
    border-radius: var(--cs-avatar-border-radius);
}
.comment-meta:after {
    content: "";
    display: block;
    clear: both;
}
.comment-meta time {
    font-size: inherit;
    color: var(--cs-color-secondary);
}
.comment-meta a {
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
    color: var(--cs-color-secondary);
}
.comment-meta a time {
    color: var(--cs-color-secondary);
    transition: 0.25s;
}
.comment-meta a:hover {
    background-size: 100% 1px;
    color: var(--cs-color-primary);
}
.comment-meta a:hover time {
    color: var(--cs-color-primary);
}

.comment-metadata {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-left: 0.375rem;
}
@media (max-width: 575.98px) {
    .comment-metadata {
        width: 100%;
        margin-left: 0;
    }
}
.comment-metadata > * {
    display: flex;
    align-items: center;
    margin-top: 0.25rem;
}
@media (min-width: 576px) {
    .comment-metadata > * {
        margin-top: 0;
    }
}

.comment-author {
    display: flex;
    align-items: center;
}
@media (max-width: 575.98px) {
    .comment-author {
        width: 100%;
    }
}
.comment-author .fn {
    display: flex;
    align-items: center;
    color: var(--cs-color-secondary);
}

.comment-content {
    order: 2;
}
.comment-content > * {
    margin-top: 28px;
    margin-bottom: 28px;
}
@media (min-width: 576px) {
    .comment-content > * {
        margin-top: 28px;
        margin-bottom: 28px;
    }
}
.comment-content > *:first-child {
    margin-top: 0;
}
.comment-content > *:last-child {
    margin-bottom: 0;
}

.comment-reply-link {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-accent);
    transition: 0.25s;
    text-decoration: none;
    padding-bottom: 0.2em;
}
.comment-reply-link:hover {
    background-size: 0px 1px;
    color: var(--cs-color-accent);
}

.cs-cancel-reply-button {
    display: inline;
}

#cancel-comment-reply-link {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 100% 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-accent);
    transition: 0.25s;
    text-decoration: none;
    padding-bottom: 0.2em;
    margin-left: 1.0625rem;
}
#cancel-comment-reply-link:hover {
    background-size: 0px 1px;
    color: var(--cs-color-accent);
}

.title-comment-reply {
    display: flex;
    align-items: center;
}
.title-comment-reply a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-left: 8px;
    color: transparent;
    overflow: hidden;
    transition: 0.25s;
}
.title-comment-reply a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--cs-color-secondary);
    font-family: "cs-icons";
    content: "\e92b";
    line-height: 1;
    transition: 0.25s;
}
.title-comment-reply a:hover:after {
    color: var(--cs-color-primary);
}

.comment-respond {
    margin-top: 1.5rem;
    padding: 2rem;
    order: 99;
    background: var(--cs-layout-background);
    border-radius: var(--cs-thumbnail-border-radius);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
    overflow: hidden;
}
@media (max-width: 575.98px) {
    .comment-respond {
        padding: 1.5rem;
    }
}

.comment-reply-title {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    margin-bottom: 0.375rem;
    font-size: var(--cs-heading-6-font-size);
}

.comment-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
}
.comment-form label {
    margin-bottom: 0.375rem;
    color: var(--cs-color-primary);
}

.comment.bypostauthor {
    outline: none;
}

.comment-notes,
.comment-form-comment,
.comment-form-cookies-consent,
.logged-in-as {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
}
.comment-notes textarea,
.comment-form-comment textarea,
.comment-form-cookies-consent textarea,
.logged-in-as textarea {
    background: var(--cs-color-input, var(--cs-site-background));
    border: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .comment-notes textarea,
    :root html[data-scheme=auto] .comment-form-comment textarea,
    :root html[data-scheme=auto] .comment-form-cookies-consent textarea,
    :root html[data-scheme=auto] .logged-in-as textarea {
        background: transparent;
    }
}
html[data-scheme=dark] .comment-notes textarea,
html[data-scheme=dark] .comment-form-comment textarea,
html[data-scheme=dark] .comment-form-cookies-consent textarea,
html[data-scheme=dark] .logged-in-as textarea {
    background: transparent;
}
.comment-notes a,
.comment-form-comment a,
.comment-form-cookies-consent a,
.logged-in-as a {
    text-decoration: underline;
}
.comment-notes a:hover,
.comment-form-comment a:hover,
.comment-form-cookies-consent a:hover,
.logged-in-as a:hover {
    text-decoration: none;
}

.comment-form-comment {
    order: 4;
}
.comment-form-comment textarea {
    display: block;
    width: 100%;
    font-size: var(--cs-font-input-size);
    background-color: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    line-height: var(--cs-font-input-line-height);
    font-weight: var(--cs-font-input-weight);
    border: 1px solid var(--cs-color-border);
    padding: 1rem;
    border-radius: var(--cs-input-border-radius);
    height: 100px;
    transition: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .comment-form-comment textarea {
        background: transparent;
    }
}
html[data-scheme=dark] .comment-form-comment textarea {
    background: transparent;
}

.comment-form-author,
.comment-form-email {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 46px;
    border-radius: var(--cs-input-border-radius);
}
.comment-form-author.comment-form-author,
.comment-form-email.comment-form-author {
    order: 2;
}
.comment-form-author.comment-form-email,
.comment-form-email.comment-form-email {
    order: 3;
}
@media (min-width: 768px) {
    .comment-form-author,
    .comment-form-email {
        flex: 0 0 49%;
        max-width: 49%;
    }
}
.comment-form-author input,
.comment-form-email input {
    display: block;
    width: 100%;
    font-size: var(--cs-font-input-size);
    background-color: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    line-height: var(--cs-font-input-line-height);
    font-weight: var(--cs-font-input-weight);
    border: 1px solid var(--cs-color-border);
    padding: var(--cs-input-padding-y, 0.5625rem) var(--cs-input-padding-x, 1rem);
    border-radius: var(--cs-input-border-radius);
    height: 100%;
    min-height: 2.5rem;
    transition: 0.25s;
}
@media (hover: hover) {
    .comment-form-author input:hover,
    .comment-form-email input:hover {
        opacity: 0.7;
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .comment-form-author input,
    :root html[data-scheme=auto] .comment-form-email input {
        background: transparent;
    }
}
html[data-scheme=dark] .comment-form-author input,
html[data-scheme=dark] .comment-form-email input {
    background: transparent;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email {
    width: 100%;
    border: none;
    background: transparent;
    line-height: 1.2;
}
@media (max-width: 575.98px) {
    .comment-form-comment,
    .comment-form-author,
    .comment-form-email {
        margin-bottom: 0.5rem;
    }
}
@media (min-width: 576px) {
    .comment-form-comment,
    .comment-form-author,
    .comment-form-email {
        margin-bottom: 1rem;
    }
}
.comment-form-comment input,
.comment-form-comment textarea,
.comment-form-author input,
.comment-form-author textarea,
.comment-form-email input,
.comment-form-email textarea {
    transition: 0.25s;
}
@media (hover: hover) {
    .comment-form-comment input:hover,
    .comment-form-comment textarea:hover,
    .comment-form-author input:hover,
    .comment-form-author textarea:hover,
    .comment-form-email input:hover,
    .comment-form-email textarea:hover {
        opacity: 0.7;
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .comment-form-comment input,
    :root html[data-scheme=auto] .comment-form-comment textarea,
    :root html[data-scheme=auto] .comment-form-author input,
    :root html[data-scheme=auto] .comment-form-author textarea,
    :root html[data-scheme=auto] .comment-form-email input,
    :root html[data-scheme=auto] .comment-form-email textarea {
        background: transparent;
    }
}
html[data-scheme=dark] .comment-form-comment input,
html[data-scheme=dark] .comment-form-comment textarea,
html[data-scheme=dark] .comment-form-author input,
html[data-scheme=dark] .comment-form-author textarea,
html[data-scheme=dark] .comment-form-email input,
html[data-scheme=dark] .comment-form-email textarea {
    background: transparent;
}

.comment-form-cookies-consent {
    order: 5;
    margin-bottom: 1.25rem;
    display: grid;
    grid-template-columns: 1.125rem 1fr;
    gap: 0.5rem;
    align-items: flex-start;
}
@media (min-width: 768px) {
    .comment-form-cookies-consent {
        max-width: 75%;
    }
}
.comment-form-cookies-consent label {
    margin: 0;
}
.comment-form-cookies-consent input {
    width: 1.125rem;
    height: 1.125rem;
}

.comment-notes {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    order: 1;
    margin-bottom: 1.25rem;
    color: var(--cs-color-secondary);
}

.comment-awaiting-moderation {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.logged-in-as,
.form-allowed-tags {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    margin-bottom: 1.5rem;
}

.form-submit {
    order: 6;
    width: 100%;
    margin-bottom: 0;
}
@media (max-width: 575.98px) {
    .form-submit {
        display: flex;
        align-items: center;
    }
}
@media (max-width: 575.98px) {
    .form-submit button {
        width: 100%;
    }
}

.no-comments {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    margin-top: 1rem;
    padding: 10px;
}

.logged-in-as a:hover {
    color: var(--cs-color-primary);
    text-decoration: none;
}

.cs-entry__tags {
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
}
.cs-entry__tags ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin: 0;
}
.cs-entry__tags li {
    position: relative;
    line-height: 1;
}
.cs-entry__tags a {
    display: flex;
    height: 13px;
    justify-content: center;
    align-items: center;
    color: var(--cs-color-primary);
    text-decoration: none;
    transition: 0.25s;
}
.cs-entry__tags a:hover {
    opacity: 0.7;
}

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
.cs-posts-area__pagination {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}
.cs-posts-area__pagination .cs-load-more {
    max-width: 100%;
}
.cs-posts-area__pagination .cs-load-more.loading {
    position: relative;
    color: transparent;
}
.cs-posts-area__pagination .cs-load-more.loading:before {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: white;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    text-align: center;
    content: "";
}
@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.navigation.pagination {
    display: flex;
    clear: both;
}
.navigation.pagination:last-child {
    margin-bottom: 0;
}
.navigation.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}
.navigation.pagination .nav-links > span, .navigation.pagination .nav-links > a {
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0.5rem 0.75rem;
    text-decoration: none;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.navigation.pagination .nav-links > .page-number, .navigation.pagination .nav-links > .current {
    color: var(--cs-color-primary);
    background-color: var(--cs-layout-background);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    border-radius: var(--cs-layout-elements-border-radius);
    padding: 0.5rem 0.75rem;
    margin: 0 0.75rem;
}
.navigation.pagination .nav-links > .current {
    color: var(--cs-color-primary);
    background-color: var(--cs-layout-background);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    border-radius: var(--cs-layout-elements-border-radius);
    padding: 0.5rem 0.75rem;
    margin: 0 0.75rem;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .navigation.pagination .nav-links > .current {
        outline: 1px solid var(--cs-color-border);
    }
}
[data-scheme=dark] .navigation.pagination .nav-links > .current {
    outline: 1px solid var(--cs-color-border);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .navigation.pagination .nav-links > .current {
        outline: 1px solid var(--cs-color-border);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .navigation.pagination .nav-links > .current {
        outline: 1px solid var(--cs-color-border);
    }
}
.navigation.pagination .nav-links > .next, .navigation.pagination .nav-links > .prev {
    font-size: 0;
}
.navigation.pagination .nav-links a {
    text-decoration: none;
}
.navigation.pagination .nav-links a.post-page-numbers, .navigation.pagination .nav-links a.page-numbers, .navigation.pagination .nav-links a.wp-block-query-pagination-previous, .navigation.pagination .nav-links a.wp-block-query-pagination-next {
    color: var(--cs-color-primary);
}
@media (hover: hover) {
    .navigation.pagination .nav-links a.post-page-numbers:hover, .navigation.pagination .nav-links a.page-numbers:hover, .navigation.pagination .nav-links a.wp-block-query-pagination-previous:hover, .navigation.pagination .nav-links a.wp-block-query-pagination-next:hover {
        color: var(--cs-color-secondary);
    }
}
.navigation.pagination .nav-links a:first-child:before {
    font-size: 1rem;
    font-family: "cs-icons";
    content: "\e90d";
}
.navigation.pagination .nav-links a:last-child:after {
    font-size: 1rem;
    font-family: "cs-icons";
    content: "\e90e";
}

.navigation.posts-navigation {
    margin-top: 2rem;
}
.navigation.posts-navigation + .cs-entry__footer {
    margin-top: 2rem;
}
.navigation.posts-navigation .nav-links > *:first-child {
    margin-left: 0;
}
.navigation.posts-navigation .nav-links > a:before, .navigation.posts-navigation .nav-links > a:after {
    display: none;
}

.navigation.comment-navigation {
    border-top: 1px solid var(--cs-color-border);
    border-bottom: 1px solid var(--cs-color-border);
}
.navigation.comment-navigation .nav-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.navigation.comment-navigation .nav-links a {
    color: var(--cs-color-primary);
}
.navigation.comment-navigation .nav-links .nav-previous, .navigation.comment-navigation .nav-links .nav-next {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.navigation.comment-navigation .nav-links .nav-previous:before, .navigation.comment-navigation .nav-links .nav-previous:after, .navigation.comment-navigation .nav-links .nav-next:before, .navigation.comment-navigation .nav-links .nav-next:after {
    font-family: "cs-icons";
    font-size: 0.875rem;
    color: var(--cs-color-primary);
    transition: 0.25s;
}
@media (hover: hover) {
    .navigation.comment-navigation .nav-links .nav-previous:hover a, .navigation.comment-navigation .nav-links .nav-next:hover a {
        text-decoration: none;
        color: var(--cs-color-secondary);
    }
    .navigation.comment-navigation .nav-links .nav-previous:hover:before, .navigation.comment-navigation .nav-links .nav-previous:hover:after, .navigation.comment-navigation .nav-links .nav-next:hover:before, .navigation.comment-navigation .nav-links .nav-next:hover:after {
        color: var(--cs-color-secondary);
    }
}
.navigation.comment-navigation .nav-links .nav-previous:before {
    content: "\e904";
    margin-right: 5px;
}
@media (hover: hover) {
    .navigation.comment-navigation .nav-links .nav-previous:hover:before {
        transform: translateX(-5px);
    }
}
.navigation.comment-navigation .nav-links .nav-next:after {
    content: "\e906";
    margin-left: 5px;
}
@media (hover: hover) {
    .navigation.comment-navigation .nav-links .nav-next:hover:after {
        transform: translateX(5px);
    }
}

.comment-list + .comment-navigation {
    border-top: none;
}

/*--------------------------------------------------------------
## Page
--------------------------------------------------------------*/
.cs-page__header:not(:last-child) {
    margin-bottom: 4rem;
}
.search .cs-page__header {
    margin-bottom: 0.75rem;
}
.cs-page__header .cs-search__form {
    max-width: var(--cs-entry-content-large-width);
}
.cs-page__header .cs-search__form:not(:first-child) {
    margin-top: 2rem;
}
.cs-page__title {
    margin-bottom: 0;
}
.cs-page__title:not(:first-child) {
    margin-top: 1rem;
}
.cs-page__archive-count {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    color: var(--cs-color-secondary);
}
.cs-page__archive-count:not(:first-child) {
    margin-top: 1rem;
}
.cs-page__archive-description:not(:first-child) {
    margin-top: 1rem;
}
.cs-page__archive-description > * {
    margin-bottom: 0;
}
.cs-page__archive-description > *:not(:first-child) {
    margin-top: 2rem;
}
.cs-page__author {
    display: flex;
    flex-direction: column;
}
.cs-page__author .cs-page__title {
    margin-top: 0;
}
.cs-page__author-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0;
}
.cs-page__author-container:not(:first-child) {
    margin-top: 20px;
}
@media (min-width: 1250px) {
    .cs-page__author-container {
        gap: 1.5rem;
    }
    .cs-page__author-container:not(:first-child) {
        margin-left: 20px;
        margin-top: 0;
    }
}
.cs-page__author-thumbnail {
    display: block;
    flex: 0 0 130px;
    width: 130px;
    height: 130px;
    margin: 0 auto;
    overflow: hidden;
    transition: 0.25s;
}
.cs-page__author-thumbnail img {
    display: block;
    max-width: 100%;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--cs-avatar-border-radius);
}
@media (min-width: 1250px) {
    .cs-page__author-thumbnail {
        margin: 0;
    }
}
.cs-page__author-info {
    display: flex;
    flex-direction: column;
}
.cs-page__author-position {
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
    margin-top: 0.5rem;
    color: var(--cs-color-secondary);
}
.cs-page__author-location {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.375rem;
}
.cs-page__author-location .cs-icon {
    font-size: 1.5rem;
    color: var(--cs-color-accent);
}
.cs-page__author-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin-top: 1.25rem;
    gap: 1.25rem;
}
.cs-page__author-social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.25s;
}
.cs-page__author-social-links a svg {
    transition: 0.25s;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-page__author-social-links a svg {
        fill: var(--cs-color-accent);
    }
}
[data-scheme=dark] .cs-page__author-social-links a svg {
    fill: var(--cs-color-accent);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-page__author-social-links a svg {
        fill: var(--cs-color-accent);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-page__author-social-links a svg {
        fill: var(--cs-color-accent);
    }
}
.cs-page__author-social-links a:hover svg :root, html[data-scheme=light] .cs-page__author-social-links a:hover svg {
    fill: var(--cs-color-accent);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=light] .cs-page__author-social-links a:hover svg {
        fill: var(--cs-color-accent);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=light] .cs-page__author-social-links a:hover svg {
        fill: var(--cs-color-accent);
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-page__author-social-links a:hover svg {
        opacity: 0.7;
    }
}
[data-scheme=dark] .cs-page__author-social-links a:hover svg {
    opacity: 0.7;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-page__author-social-links a:hover svg {
        opacity: 0.7;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-page__author-social-links a:hover svg {
        opacity: 0.7;
    }
}
.cs-page__author .cs-page__archive-description {
    margin-top: 1.25rem !important;
}
.cs-page__tags:not(:first-child) {
    margin-top: 2rem;
}
.cs-page__tags ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0;
    margin: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
.cs-page__tags ul li {
    position: relative;
    line-height: 1;
}
.cs-page__tags ul li a {
    position: relative;
    z-index: 2;
    text-decoration: none;
}
.cs-page__tags ul a {
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
    display: flex;
    padding: 0.375rem 0.75rem;
    justify-content: center;
    align-items: center;
    color: var(--cs-color-primary);
    background: var(--cs-layout-background);
    text-decoration: none;
    transition: 0.25s;
    border-radius: var(--cs-tag-border-radius);
    margin-right: 0;
}
.cs-page__tags ul a:hover {
    color: var(--cs-color-secondary);
}

.home .cs-page__header,
.archive .cs-page__header {
    border-bottom: 1px solid var(--cs-color-border);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
}
.home .cs-page__header-category,
.archive .cs-page__header-category {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.home .cs-page__title,
.archive .cs-page__title {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    font-size: var(--cs-heading-3-font-size);
    max-width: 520px;
}
.home .cs-page__archive-description,
.archive .cs-page__archive-description {
    max-width: 520px;
    margin: 0.625rem 0 0 0;
    text-wrap: balance;
    color: var(--cs-color-secondary);
}
.home .cs-page__archive-thumbnail,
.archive .cs-page__archive-thumbnail {
    margin-bottom: 1.25rem;
}
.home .cs-page__archive-thumbnail .cs-page__archive-thumbnail-box,
.archive .cs-page__archive-thumbnail .cs-page__archive-thumbnail-box {
    width: 100px;
    overflow: hidden;
    border-radius: var(--cs-thumbnail-border-radius);
}
.home .cs-page__archive-thumbnail img,
.archive .cs-page__archive-thumbnail img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.search-no-results .cs-page__title span {
    text-transform: initial;
}
.search-no-results .cs-page__subtitle {
    display: block;
    margin-top: 1.5rem;
}

@media (min-width: 1250px) {
    .page .cs-entry__container {
        display: grid;
        grid-template-columns: minmax(0, var(--cs-entry-content-full));
        justify-content: center;
    }
}
@media (min-width: 1250px) {
    .page .cs-sidebar-disabled .entry-content {
        max-width: var(--cs-entry-content-max-width);
        margin-left: auto;
        margin-right: auto;
    }
}

/*--------------------------------------------------------------
## 404
--------------------------------------------------------------*/
.error404 .cs-site-content {
    margin: 4rem auto;
}
.error404 .cs-site-inner main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.error404 .cs-page-404__icon {
    width: 4rem;
    height: 4rem;
    background: var(--cs-layout-background);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2rem;
    color: var(--cs-color-accent);
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    border-radius: var(--cs-layout-elements-border-radius);
}
.error404 .cs-page__header {
    text-align: center;
}
.error404 .cs-page__header h1 {
    font-size: var(--cs-heading-3-font-size);
}
.error404 .cs-page__header:not(:last-child) {
    margin-bottom: 0.625rem;
}
.error404 .cs-main-content {
    margin-top: 0;
}
.error404 .cs-content-not-found {
    width: 100%;
    text-align: center;
}
.error404 .cs-content-not-found:not(:first-child) {
    margin-top: 0;
}
.error404 .cs-content-not-found-content {
    font-family: var(--cs-font-base-family), sans-serif;
    font-size: var(--cs-font-base-size);
    font-weight: var(--cs-font-base-weight);
    font-style: var(--cs-font-base-style);
    line-height: var(--cs-font-base-line-height);
    letter-spacing: var(--cs-font-base-letter-spacing);
    margin: 0 auto !important;
    color: var(--cs-color-secondary);
}
.error404 .cs-content-not-found-content + .cs-button {
    margin-top: 1.25rem;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
:root,
[data-scheme=light] {
    --cs-color-invert-social: grayscale(100%) brightness(0%);
    --cs-color-invert-hover: invert(29%) sepia(80%) saturate(4700%) hue-rotate(230deg) brightness(90%) contrast(100%);
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=light] {
        --cs-color-invert-social: grayscale(100%) brightness(0%);
        --cs-color-invert-hover: invert(29%) sepia(80%) saturate(4700%) hue-rotate(230deg) brightness(90%) contrast(100%);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=light] {
        --cs-color-invert-social: grayscale(100%) brightness(0%);
        --cs-color-invert-hover: invert(29%) sepia(80%) saturate(4700%) hue-rotate(230deg) brightness(90%) contrast(100%);
    }
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] {
        --cs-color-invert-social: grayscale(100%) brightness(0%) invert(100%);
        --cs-color-invert-hover: grayscale(100%) brightness(0%) invert(100%);
    }
}
[data-scheme=dark] {
    --cs-color-invert-social: grayscale(100%) brightness(0%) invert(100%);
    --cs-color-invert-hover: grayscale(100%) brightness(0%) invert(100%);
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] {
        --cs-color-invert-social: grayscale(100%) brightness(0%) invert(100%);
        --cs-color-invert-hover: grayscale(100%) brightness(0%) invert(100%);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] {
        --cs-color-invert-social: grayscale(100%) brightness(0%) invert(100%);
        --cs-color-invert-hover: grayscale(100%) brightness(0%) invert(100%);
    }
}
.cs-social {
    display: flex;
    justify-content: flex-start;
}
@media (min-width: 1248px) {
    .cs-social {
        justify-content: flex-start;
    }
}
.cs-social__link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 40px;
    height: 40px;
    transition: 0.25s;
}
.cs-social__link:hover img {
    filter: var(--cs-color-invert-hover);
}
.cs-social__link:hover svg,
.cs-social__link:hover path {
    fill: var(--cs-color-accent);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-social__link:hover img,
    :root html[data-scheme=auto] .cs-social__link:hover svg {
        opacity: 0.7;
    }
}
[data-scheme=dark] .cs-social__link:hover img,
[data-scheme=dark] .cs-social__link:hover svg {
    opacity: 0.7;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-social__link:hover img,
    :root html[data-scheme=auto][data-d=dark] .cs-social__link:hover svg {
        opacity: 0.7;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-social__link:hover img,
    :root html[data-scheme=auto][data-l=dark] .cs-social__link:hover svg {
        opacity: 0.7;
    }
}
.cs-social img {
    width: 24px;
    height: 24px;
    filter: var(--cs-color-invert-social);
    -webkit-transition: 0.25s -webkit-filter linear;
    -moz-transition: 0.25s -moz-filter linear;
    -moz-transition: 0.25s filter linear;
    -ms-transition: 0.25s -ms-filter linear;
    -o-transition: 0.25s -o-filter linear;
    transition: 0.25s filter linear, 0.25s -webkit-filter linear;
}
.cs-social svg {
    width: 24px;
    height: 24px;
    transition: 0.25s;
    fill: var(--cs-color-primary);
}
.cs-social svg path {
    fill: var(--cs-color-primary);
}
.cs-header .cs-social {
    min-width: calc(40px + ( 1rem * 0.75 ));
    gap: 0.75rem;
}
.cs-header .cs-social:not(:first-child) {
    margin-left: 1.375rem;
}
@media (min-width: 1248px) {
    .cs-header .cs-social {
        min-width: calc(52px + ( 1rem * 1.125 ));
        gap: 1.125rem;
    }
}
.cs-header .cs-social img {
    width: 20px;
    height: 20px;
}
@media (min-width: 1248px) {
    .cs-header .cs-social img {
        width: 26px;
        height: 26px;
    }
}
.cs-offcanvas .cs-social img {
    width: 24px;
    height: 24px;
}
.cs-footer .cs-social {
    margin: 0.5rem 0 0 -0.5rem;
}
@media (max-width: 575.98px) {
    .cs-footer .cs-social {
        margin: 0.5rem 0 1.5rem -0.5rem !important;
    }
}

.cs-site-scheme-toggle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--cs-color-highlight-background);
    padding: 4px;
    border-radius: 30px;
    cursor: pointer;
}
.cs-site-scheme-toggle .cs-header__scheme-toggle-icons {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.cs-site-scheme-toggle .cs-header__scheme-toggle-icons > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    transition: 0.25s;
}
.cs-site-scheme-toggle .cs-header__scheme-toggle-icons > span:hover .cs-icon {
    opacity: 0.7;
}
:root .cs-site-scheme-toggle .cs-header__scheme-toggle-icons > span.cs-light-mode, html[data-scheme=light] .cs-site-scheme-toggle .cs-header__scheme-toggle-icons > span.cs-light-mode {
    background: var(--cs-layout-background);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-site-scheme-toggle .cs-header__scheme-toggle-icons > span.cs-dark-mode {
        background: var(--cs-layout-background);
    }
    :root html[data-scheme=auto] .cs-site-scheme-toggle .cs-header__scheme-toggle-icons > span.cs-light-mode {
        background: transparent;
    }
}
html[data-scheme=dark] .cs-site-scheme-toggle .cs-header__scheme-toggle-icons > span.cs-dark-mode {
    background: var(--cs-layout-background);
}
html[data-scheme=dark] .cs-site-scheme-toggle .cs-header__scheme-toggle-icons > span.cs-light-mode {
    background: transparent;
}
.cs-site-scheme-toggle .cs-header__scheme-toggle-icons .cs-header__scheme-toggle-icon {
    transition: 0.25s;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
}

.cs-display-header-overlay .cs-site-scheme-toggle .cs-header__scheme-toggle-icons:hover {
    background: var(--cs-layout-background);
}

.cs-offcanvas {
    transform: translate3d(0, 0, 0);
    position: fixed;
    height: calc(100% - var(--cs-wpadminbar-height));
    top: var(--cs-wpadminbar-height);
    left: calc(var(--cs-offcanvas-width) * -1);
    width: var(--cs-offcanvas-width);
    display: flex;
    flex-direction: column;
    background: var(--cs-offcanvas-background);
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    transition: 0.4s;
    overflow: hidden;
}
@media (min-width: 1248px) {
    .cs-offcanvas {
        --cs-offcanvas-width: 33.5rem;
    }
}
@media screen and (max-width: 600px) {
    .cs-adminbar-mobile-scrolled .cs-offcanvas {
        --cs-wpadminbar-height: 0px;
    }
}
.cs-adminbar-mobile-scrolled .cs-offcanvas {
    top: 0;
}
@media screen and (min-width: 601px) {
    .cs-adminbar-mobile-scrolled .cs-offcanvas {
        top: var(--cs-wpadminbar-height);
    }
}
.cs-offcanvas__header {
    display: grid;
    grid-template-columns: 1fr 40px;
    align-items: center;
    padding: 0 calc(( 40px * 0.5 ) - 4px) 0 24px;
    min-height: var(--cs-header-height);
    border-bottom: var(--cs-header-border-width) solid var(--cs-color-border);
}
@media (min-width: 1248px) {
    .cs-offcanvas__header {
        padding: 2.5rem;
    }
}
.cs-offcanvas .cs-logo {
    display: flex;
}
.cs-offcanvas .cs-logo img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
}
.cs-offcanvas__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}
.cs-offcanvas .widget_nav_menu a {
    font-family: var(--cs-font-menu-family), sans-serif;
    font-size: var(--cs-font-menu-size);
    line-height: var(--cs-font-menu-line-height);
    font-weight: var(--cs-font-menu-weight);
    font-style: var(--cs-font-menu-style);
    letter-spacing: var(--cs-font-menu-letter-spacing);
    text-transform: var(--cs-font-menu-text-transform);
}
.cs-offcanvas .widget_nav_menu .sub-menu a {
    font-family: var(--cs-font-menu-family), sans-serif;
    font-size: var(--cs-font-menu-size);
    line-height: var(--cs-font-menu-line-height);
    font-weight: var(--cs-font-menu-weight);
    font-style: var(--cs-font-menu-style);
    letter-spacing: var(--cs-font-menu-letter-spacing);
    text-transform: var(--cs-font-menu-text-transform);
    color: var(--cs-color-secondary);
}
.cs-offcanvas__toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.cs-offcanvas__toggle .cs-icon {
    font-size: 1.25rem;
    color: var(--cs-color-secondary);
    transform: translateZ(0);
    transition: 0.25s;
}
@media (hover: hover) {
    .cs-offcanvas__toggle:hover .cs-icon {
        color: var(--cs-color-primary);
        transform: translateZ(0) rotate(180deg);
    }
}
.cs-offcanvas__sidebar {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
}
.cs-offcanvas__inner {
    padding: 24px 24px 20px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
@media (min-width: 1248px) {
    .cs-offcanvas__inner {
        padding: 2.5rem;
    }
}
.cs-offcanvas__inner .widget:not(:last-child) {
    margin-bottom: 1.5rem;
}
.cs-offcanvas__inner > .cs-offcanvas__button {
    margin-bottom: 1.5rem;
}
.cs-offcanvas__bottombar {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: -24px;
    margin-right: -24px;
    padding: 20px 24px 0px 24px;
    border-top: 1px solid var(--cs-color-border);
}
.cs-offcanvas__scheme-toggle {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.cs-offcanvas__scheme-toggle-label {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    margin-left: 0.25rem;
}
.cs-offcanvas__scheme-toggle-label span {
    display: inline;
    padding-bottom: 0.1em;
    background: linear-gradient(to right, currentColor 0%, currentColor 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: var(--cs-underline-bg-position);
    color: var(--cs-color-primary);
    transition: 0.25s;
    text-decoration: none;
}
.cs-offcanvas__scheme-toggle-label-dark {
    display: block;
}
.cs-offcanvas__scheme-toggle-label-light {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-offcanvas__scheme-toggle-element:after {
        left: auto;
        right: 3px;
    }
    :root html[data-scheme=auto] .cs-offcanvas__scheme-toggle-label-dark {
        display: none;
    }
    :root html[data-scheme=auto] .cs-offcanvas__scheme-toggle-label-light {
        display: block;
    }
}
[data-scheme=dark] .cs-offcanvas__scheme-toggle-element:after {
    left: auto;
    right: 3px;
}
[data-scheme=dark] .cs-offcanvas__scheme-toggle-label-dark {
    display: none;
}
[data-scheme=dark] .cs-offcanvas__scheme-toggle-label-light {
    display: block;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-offcanvas__scheme-toggle-element:after {
        left: auto;
        right: 3px;
    }
    :root html[data-scheme=auto][data-d=dark] .cs-offcanvas__scheme-toggle-label-dark {
        display: none;
    }
    :root html[data-scheme=auto][data-d=dark] .cs-offcanvas__scheme-toggle-label-light {
        display: block;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-offcanvas__scheme-toggle-element:after {
        left: auto;
        right: 3px;
    }
    :root html[data-scheme=auto][data-l=dark] .cs-offcanvas__scheme-toggle-label-dark {
        display: none;
    }
    :root html[data-scheme=auto][data-l=dark] .cs-offcanvas__scheme-toggle-label-light {
        display: block;
    }
}
.cs-offcanvas__scheme-toggle:hover-label span {
    background-size: 100% 1px;
    color: var(--cs-color-primary);
}
.cs-offcanvas__scheme-toggle-icons {
    position: relative;
}
.cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon {
    display: inline-flex;
    transition: 0.25s;
}
.cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon:last-child {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon {
        display: inline-flex;
    }
    :root html[data-scheme=auto] .cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon:last-child {
        display: none;
    }
}
[data-scheme=dark] .cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon {
    display: inline-flex;
}
[data-scheme=dark] .cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon:last-child {
    display: none;
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon {
        display: inline-flex;
    }
    :root html[data-scheme=auto][data-d=dark] .cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon:last-child {
        display: none;
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon {
        display: inline-flex;
    }
    :root html[data-scheme=auto][data-l=dark] .cs-offcanvas__scheme-toggle-icons .cs-offcanvas__scheme-toggle-icon:last-child {
        display: none;
    }
}

.cs-offcanvas-active {
    overflow: hidden;
}
.cs-offcanvas-active .cs-offcanvas {
    transform: translate3d(var(--cs-offcanvas-width), 0, 0);
}

.cs-site-overlay {
    display: none;
}
.cs-offcanvas-active .cs-site-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(var(--cs-color-overlay-background), 0.3);
    animation: fade 0.5s;
    z-index: 99;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.cs-breadcrumbs {
    word-wrap: break-word;
    margin-bottom: 2rem;
    font-size: 0.75em;
    z-index: 2;
}
.cs-breadcrumbs a {
    text-decoration: none;
    color: var(--cs-color-primary);
}
.cs-breadcrumbs a:hover {
    color: var(--cs-color-secondary);
}
.cs-breadcrumbs .breadcrumb_last,
.cs-breadcrumbs .last,
.cs-breadcrumbs .aioseo-breadcrumb:last-child {
    color: var(--cs-color-secondary);
}
.cs-breadcrumbs .cs-separator {
    margin: 0 0.1875rem;
    position: relative;
}
.cs-breadcrumbs .cs-separator:after {
    font-family: "cs-icons";
    content: "\e90e";
    color: var(--cs-color-primary);
    vertical-align: bottom;
}
.cs-single-header-type-standard .cs-breadcrumbs {
    text-align: center;
}

.cs-spinner {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border: 4px solid var(--cs-color-secondary);
    border-right-color: transparent;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    opacity: 0.5;
}
.cs-spinner:after {
    content: "";
    width: 4px;
    height: 4px;
    background: var(--cs-color-secondary);
    border-radius: 50%;
    position: absolute;
    top: 1px;
    left: 27px;
}
@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cs-has-spinner {
    position: relative;
}
.cs-has-spinner .cs-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-top: -20px;
}

.csco-badge {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 10rem;
}

.csco-badge-primary {
    background: var(--cs-layout-background);
    color: var(--cs-color-primary);
}

.cs-share {
    display: flex;
}
.cs-share__link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: var(--cs-color-primary);
    transition: 0.25s;
}
@media (hover: hover) {
    :root .cs-entry__footer .cs-share__link:hover, html[data-scheme=light] .cs-entry__footer .cs-share__link:hover {
        color: var(--cs-color-accent);
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-entry__footer .cs-share__link:hover {
        opacity: 0.7;
    }
}
@media (hover: hover) {
    html[data-scheme=dark] .cs-entry__footer .cs-share__link:hover {
        opacity: 0.7;
    }
}
.cs-share .cs-icon {
    font-size: 1.5rem;
}
.cs-entry__metabar .cs-share {
    flex-direction: column;
}
@media (min-width: 1250px) {
    .cs-entry__metabar .cs-share {
        margin-left: -10px;
        margin-top: -10px;
    }
    .cs-sidebar-left .cs-entry__metabar .cs-share {
        margin-left: -33px;
        margin-top: -10px;
    }
}
@media (min-width: 1250px) {
    .cs-entry__metabar .cs-share__link {
        width: 44px;
        height: 44px;
    }
}
.cs-entry__metabar .cs-share__link:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.25s;
}
@media (min-width: 1250px) {
    .cs-entry__metabar .cs-share__link:after {
        top: 4px;
        left: 4px;
    }
}
@media (hover: hover) {
    :root .cs-entry__metabar .cs-share__link:hover, html[data-scheme=light] .cs-entry__metabar .cs-share__link:hover {
        color: var(--cs-color-accent);
    }
}
@media (hover: hover) and (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .cs-entry__metabar .cs-share__link:hover {
        opacity: 0.7;
    }
}
@media (hover: hover) {
    html[data-scheme=dark] .cs-entry__metabar .cs-share__link:hover {
        opacity: 0.7;
    }
}

.cs-share__copy-link {
    position: relative;
}
.cs-share__copy-link-tooltip {
    --cs-tooltip-border-width: 4px;
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    position: absolute;
    left: 50%;
    top: 100%;
    z-index: 1;
    transform: translateX(-50%);
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    border-radius: var(--cs-button-border-radius);
    white-space: nowrap;
    color: var(--cs-color-primary);
    background: var(--cs-layout-background);
    border-radius: var(--cs-tag-border-radius);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    opacity: 1;
    transition: 0.25s;
    cursor: default;
}
.cs-share__copy-link-tooltip.hide {
    opacity: 0;
}
.cs-share__copy-link-tooltip:before {
    content: "";
    position: absolute;
    border-left: var(--cs-tooltip-border-width) solid transparent;
    border-right: var(--cs-tooltip-border-width) solid transparent;
    bottom: 100%;
    left: 50%;
    margin-left: calc(var(--cs-tooltip-border-width) * -1);
}
.cs-share__copy-link-tooltip:before {
    border-bottom: var(--cs-tooltip-border-width) solid var(--cs-layout-background);
    margin-bottom: 0;
}

.cs-scroll-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
    color: var(--cs-color-primary);
    transition: 0.25s;
    animation: fade 0.5s;
    width: 48px;
    height: 48px;
    padding: 0;
}
@media (min-width: 1250px) {
    .cs-scroll-top {
        bottom: 2rem;
        right: 2rem;
    }
}
.cs-scroll-top:before {
    content: unset;
}
.cs-scroll-top:after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: -1;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--cs-layout-background);
    transition: 0.25s;
}
.cs-scroll-top.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cs-scroll-top-border, .cs-scroll-top-progress {
    position: absolute;
    top: 0;
    left: 0;
}
.cs-scroll-top-border path, .cs-scroll-top-progress path {
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 141.37px, 141.37px;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 0.5s linear;
}
.cs-scroll-top-border path {
    stroke: var(--cs-layout-background);
}
.cs-scroll-top-progress path {
    stroke: var(--cs-color-accent);
}
.cs-scroll-top i {
    font-size: 1.5rem;
    transition: 0.25s;
}
.cs-scroll-top:hover {
    background: inherit;
    color: var(--cs-color-primary);
}
.cs-scroll-top:hover i {
    opacity: 0.8;
}
.cs-scroll-top:focus {
    background: inherit;
    color: var(--cs-color-primary);
}

.cs-subscribe {
    width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}
@media (max-width: 575.98px) {
    .cs-subscribe {
        width: 100%;
    }
}
.cs-subscribe__content {
    text-align: center;
}
.cs-subscribe__heading {
    font-family: var(--cs-font-headings-family), sans-serif;
    font-weight: var(--cs-font-headings-weight);
    text-transform: var(--cs-font-headings-text-transform);
    line-height: var(--cs-font-headings-line-height);
    letter-spacing: var(--cs-font-headings-letter-spacing);
    font-size: var(--cs-heading-3-font-size);
    margin-bottom: 0;
}
.cs-subscribe__heading:last-child {
    margin-bottom: 1.5rem;
}
.cs-subscribe__description {
    margin-top: 0.625rem;
    margin-bottom: 1.375rem;
    color: var(--cs-color-secondary);
}
.cs-subscribe__short-description {
    font-size: 0.8125em;
    font-weight: bolder;
    letter-spacing: -0.03em;
    margin-top: 0.75rem;
}
.cs-subscribe__form {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.cs-subscribe__form-group {
    height: 50px;
}
@media (max-width: 575.98px) {
    .cs-subscribe__form-group {
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }
}
.cs-subscribe__form-group input {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
}
@media (max-width: 575.98px) {
    .cs-subscribe__form-group input {
        padding-top: 0;
        padding-bottom: 0;
        line-height: 1.2;
    }
}
.cs-subscribe__form-group button {
    min-width: 111px;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
:root :where(.is-layout-constrained) > *,
:root :where(.is-layout-flow) > * {
    margin-block-start: 1rem;
}

.widget {
    width: 100%;
    max-width: var(--cs-entry-content-width);
    margin-left: auto;
    margin-right: auto;
}
.cs-widget-area.cs-sidebar__area .widget {
    background: var(--cs-layout-background);
    padding: 2rem;
    border-radius: var(--cs-thumbnail-border-radius);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.12);
}
.cs-widget-area.cs-sidebar__area .widget:has(.is-style-cs-posts-slider) {
    background: none;
    padding: unset;
    border-radius: unset;
    box-shadow: unset;
}
@media (min-width: 768px) and (max-width: 1247.98px) {
    .cs-widget-area.cs-sidebar__area .widget:has(.is-style-cs-posts-slider) {
        display: inline-block;
    }
}
.widget:not(:last-child) {
    margin-bottom: 1rem;
}
.widget .cs-section-heading {
    margin-bottom: 1rem;
}
.widget .cs-search__form .cs-search__group {
    position: relative;
    border-radius: var(--cs-button-border-radius);
}
.widget .cs-search__form .cs-search__group .cs-search__input {
    display: block;
    width: 100%;
    font-size: var(--cs-font-input-size);
    background-color: var(--cs-color-input);
    color: var(--cs-color-input-contrast);
    line-height: var(--cs-font-input-line-height);
    font-weight: var(--cs-font-input-weight);
    border: 1px solid var(--cs-color-border);
    padding: var(--cs-input-padding-y, 0.5625rem) var(--cs-input-padding-x, 1rem);
    border-radius: var(--cs-button-border-radius);
    padding: 0.9375rem 1.5rem;
    border-radius: var(--cs-button-border-radius);
    border: none;
}
.widget .cs-search__form .cs-search__group .cs-search__submit {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    transition: 0.25s;
    box-shadow: none;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    padding: 0.625rem 1.125rem;
    border-radius: var(--cs-button-border-radius);
    margin-left: 0.5rem;
    padding: 0.9375rem 1.5rem 0.875rem;
}
.widget .cs-search__form .cs-search__group .cs-search__submit:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cs-color-button-hover);
    transition: opacity 0.25s ease;
    z-index: -1;
    opacity: 0;
}
.widget .cs-search__form .cs-search__group .cs-search__submit:focus::before, .widget .cs-search__form .cs-search__group .cs-search__submit:hover::before {
    opacity: 1;
}
.widget .cs-search__form .cs-search__group .cs-search__submit:focus, .widget .cs-search__form .cs-search__group .cs-search__submit:hover {
    color: var(--cs-color-button-hover-contrast);
    box-shadow: 0px 5px 20px 0px rgba(var(--cs-color-box-shadow-rgb), 0.4);
    outline: none;
}
.widget .cs-search__form .cs-search__group .cs-search__submit:disabled, .widget .cs-search__form .cs-search__group .cs-search__submit:disabled[disabled] {
    color: var(--cs-color-button-contrast);
    opacity: 0.5;
    padding: 0.875rem 1.25rem;
}
.widget .cs-search__form .cs-search__group .cs-search__submit:disabled:hover, .widget .cs-search__form .cs-search__group .cs-search__submit:disabled[disabled]:hover {
    background: var(--cs-color-button);
    color: var(--cs-color-button-contrast);
}

.widget .cs-search__form .cs-search__group .cs-search__input :root, html[data-scheme=light] .widget .cs-search__form .cs-search__group .cs-search__input {
    background: var(--cs-layout-background);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=light] .widget .cs-search__form .cs-search__group .cs-search__input {
        background: var(--cs-layout-background);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=light] .widget .cs-search__form .cs-search__group .cs-search__input {
        background: var(--cs-layout-background);
    }
}

@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto] .widget .cs-search__form .cs-search__group .cs-search__input {
        background: var(--cs-color-input);
    }
}
[data-scheme=dark] .widget .cs-search__form .cs-search__group .cs-search__input {
    background: var(--cs-color-input);
}
@media (prefers-color-scheme: dark) {
    :root html[data-scheme=auto][data-d=dark] .widget .cs-search__form .cs-search__group .cs-search__input {
        background: var(--cs-color-input);
    }
}
@media (prefers-color-scheme: light) {
    :root html[data-scheme=auto][data-l=dark] .widget .cs-search__form .cs-search__group .cs-search__input {
        background: var(--cs-color-input);
    }
}

.widgettitle {
    font-family: var(--cs-font-section-headings-family), sans-serif;
    font-size: var(--cs-font-section-headings-size);
    font-weight: var(--cs-font-section-headings-weight);
    font-style: var(--cs-font-section-headings-style);
    letter-spacing: var(--cs-font-section-headings-letter-spacing);
    text-transform: var(--cs-font-section-headings-text-transform);
    line-height: var(--cs-font-section-headings-line-height);
    margin-bottom: 1rem;
    color: var(--cs-color-secondary);
}
.cs-offcanvas .widgettitle {
    margin-bottom: 1rem;
}
.widgettitle a {
    text-decoration: none;
}
.widgettitle a:hover {
    color: var(--cs-color-primary);
}

.cs-widget-area .widget_block .wp-block-heading {
    font-family: var(--cs-font-section-headings-family), sans-serif;
    font-size: var(--cs-font-section-headings-size);
    font-weight: var(--cs-font-section-headings-weight);
    font-style: var(--cs-font-section-headings-style);
    letter-spacing: var(--cs-font-section-headings-letter-spacing);
    text-transform: var(--cs-font-section-headings-text-transform);
    line-height: var(--cs-font-section-headings-line-height);
    margin-bottom: 1.25rem;
    color: var(--cs-color-secondary);
}
.cs-offcanvas .cs-widget-area .widget_block .wp-block-heading {
    margin-bottom: 1rem;
}

.widget_categories ul,
.widget_pages ul,
.widget_archive ul,
.widget_meta ul {
    padding-left: 30px;
}
.widget_categories ul li,
.widget_pages ul li,
.widget_archive ul li,
.widget_meta ul li {
    font-family: var(--cs-font-entry-title-family), sans-serif;
    line-height: var(--cs-font-entry-title-line-height);
    font-weight: var(--cs-font-entry-title-weight);
    letter-spacing: var(--cs-font-entry-title-letter-spacing);
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 400;
    color: var(--cs-color-secondary);
}
.widget_categories ul li:last-child,
.widget_pages ul li:last-child,
.widget_archive ul li:last-child,
.widget_meta ul li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.widget_categories ul li:first-child:last-child,
.widget_pages ul li:first-child:last-child,
.widget_archive ul li:first-child:last-child,
.widget_meta ul li:first-child:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
}
.widget_categories ul li:first-child:last-child > .sub-menu,
.widget_pages ul li:first-child:last-child > .sub-menu,
.widget_archive ul li:first-child:last-child > .sub-menu,
.widget_meta ul li:first-child:last-child > .sub-menu {
    padding-bottom: 0;
    margin-bottom: 0;
}
.widget_categories ul li a,
.widget_pages ul li a,
.widget_archive ul li a,
.widget_meta ul li a {
    font-family: var(--cs-font-entry-title-family), sans-serif;
    line-height: var(--cs-font-entry-title-line-height);
    font-weight: var(--cs-font-entry-title-weight);
    letter-spacing: var(--cs-font-entry-title-letter-spacing);
    font-size: 1rem;
    color: var(--cs-color-primary);
    padding-right: 0.6666666667rem;
    margin-right: auto;
    text-decoration: none;
    transition: 0.25s;
}
.widget_categories ul li a:hover,
.widget_pages ul li a:hover,
.widget_archive ul li a:hover,
.widget_meta ul li a:hover {
    color: var(--cs-color-secondary);
}
.widget_categories ul ul.children,
.widget_pages ul ul.children,
.widget_archive ul ul.children,
.widget_meta ul ul.children {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0.5rem;
}
.widget_categories ul ul.children li,
.widget_pages ul ul.children li,
.widget_archive ul ul.children li,
.widget_meta ul ul.children li {
    padding: 0.5rem 0;
}
.widget_categories ul ul.children li:last-child,
.widget_pages ul ul.children li:last-child,
.widget_archive ul ul.children li:last-child,
.widget_meta ul ul.children li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.widget_categories ul ul.children ul.children li,
.widget_pages ul ul.children ul.children li,
.widget_archive ul ul.children ul.children li,
.widget_meta ul ul.children ul.children li {
    margin-left: 1rem;
    padding-left: 0;
}
.widget_categories ul ul.sub-menu,
.widget_pages ul ul.sub-menu,
.widget_archive ul ul.sub-menu,
.widget_meta ul ul.sub-menu {
    margin-top: 0.5rem;
}
.widget_categories ul ul.sub-menu li,
.widget_pages ul ul.sub-menu li,
.widget_archive ul ul.sub-menu li,
.widget_meta ul ul.sub-menu li {
    padding: 0.5rem 0;
}
.widget_categories ul ul.sub-menu li:last-child,
.widget_pages ul ul.sub-menu li:last-child,
.widget_archive ul ul.sub-menu li:last-child,
.widget_meta ul ul.sub-menu li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.widget_categories ul ul.sub-menu ul.sub-menu li,
.widget_pages ul ul.sub-menu ul.sub-menu li,
.widget_archive ul ul.sub-menu ul.sub-menu li,
.widget_meta ul ul.sub-menu ul.sub-menu li {
    margin-left: 1rem;
    padding-left: 0;
}
.widget_categories ul .screen-reader-text,
.widget_pages ul .screen-reader-text,
.widget_archive ul .screen-reader-text,
.widget_meta ul .screen-reader-text {
    display: none;
}
.widget_categories > ul,
.widget_pages > ul,
.widget_archive > ul,
.widget_meta > ul {
    margin: 0;
    padding-left: 0;
}

.widget_calendar table, .widget_calendar .wp-block-table {
    margin: 0;
}
.widget_calendar td,
.widget_calendar th {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    padding: 0.25rem;
    line-height: 2.75rem;
    text-align: center;
    border-top: 1px solid var(--cs-color-border);
    color: var(--cs-color-secondary);
}
.widget_calendar th {
    border-bottom: none;
    color: var(--cs-color-primary);
    border-top: 2px solid var(--cs-color-border);
    border-bottom: 2px solid var(--cs-color-border);
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.widget_calendar tr {
    border: none;
}
.widget_calendar tbody td a {
    position: relative;
    display: block;
    color: var(--cs-color-primary);
    background: var(--cs-layout-background);
    transition: 0.25s;
    text-decoration: none;
}
.widget_calendar tbody td a:hover {
    background-color: var(--cs-color-secondary);
    color: var(--cs-color-secondary-contrast);
}
.widget_calendar tbody td#today a:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 10px solid var(--cs-color-secondary);
    border-left: 10px solid transparent;
    transition: 0.25s;
    content: "";
}
.widget_calendar tfoot td {
    text-align: left;
}
.widget_calendar tfoot td a {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    padding-right: 10px;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.widget_calendar tfoot td a:after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    width: 2px;
    background-color: var(--cs-color-border);
}
.widget_calendar tfoot td a:hover {
    color: var(--cs-color-primary);
}
.widget_calendar caption {
    color: var(--cs-color-primary);
    caption-side: top;
    padding-top: 0;
    text-align: left;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}
.widget_calendar .wp-calendar-nav {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}
.widget_calendar .wp-calendar-nav a {
    color: var(--cs-color-primary);
    text-decoration: none;
    transition: 0.25s;
}
.widget_calendar .wp-calendar-nav a:hover {
    color: var(--cs-color-secondary);
}
.widget_calendar .wp-calendar-nav .pad {
    width: 1rem;
}

.widget_recent_comments ul {
    padding: 0;
    list-style: none;
}
.widget_recent_comments li {
    font-family: var(--cs-font-secondary-family), sans-serif;
    font-size: var(--cs-font-secondary-size);
    font-weight: var(--cs-font-secondary-weight);
    font-style: var(--cs-font-secondary-style);
    letter-spacing: var(--cs-font-secondary-letter-spacing);
    text-transform: var(--cs-font-secondary-text-transform);
    position: relative;
    padding: 0.5rem 0;
    color: var(--cs-color-secondary);
}
.widget_recent_comments li:not(:first-child) {
    border-top: 1px solid var(--cs-color-border);
}
.widget_recent_comments li:first-child {
    padding-top: 0;
}
.widget_recent_comments li:first-child:last-child {
    padding-bottom: 0;
}
.widget_recent_comments li a {
    color: var(--cs-color-primary);
    text-decoration: none;
    transition: 0.25s;
}
.widget_recent_comments li a:hover {
    color: var(--cs-color-secondary);
}
.widget_recent_comments li .comment-author-link {
    color: var(--cs-color-secondary);
    transition: 0.25s;
}
.widget_recent_comments li .comment-author-link + a {
    font-family: var(--cs-font-entry-title-family), sans-serif;
    line-height: var(--cs-font-entry-title-line-height);
    font-weight: var(--cs-font-entry-title-weight);
    letter-spacing: var(--cs-font-entry-title-letter-spacing);
    font-size: 1rem;
    display: block;
    margin-top: 0.25rem;
    color: var(--cs-color-primary);
}
.widget_recent_comments li .comment-author-link:hover {
    color: var(--cs-color-primary);
}

.widget .wp-block-latest-comments {
    padding: 0;
    margin: 0 auto;
}
.widget .wp-block-latest-comments .wp-block-latest-comments__comment {
    margin: 1rem 0 0;
}

.widget_recent_entries ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.widget_recent_entries li {
    position: relative;
}
.widget_recent_entries li:not(:last-child) {
    border-bottom: 1px solid var(--cs-color-border);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}
.widget_recent_entries li a {
    font-family: var(--cs-font-entry-title-family), sans-serif;
    line-height: var(--cs-font-entry-title-line-height);
    font-weight: var(--cs-font-entry-title-weight);
    letter-spacing: var(--cs-font-entry-title-letter-spacing);
    text-decoration: none;
    color: var(--cs-color-primary);
    transition: 0.25s;
}
.widget_recent_entries li a:hover {
    color: var(--cs-color-secondary);
}
.widget_recent_entries li:last-child {
    padding-bottom: 0;
}
.widget_recent_entries li .post-date {
    display: block;
    margin-top: 0.25rem;
    color: var(--cs-color-primary);
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
}

.widget_rss .rss-widget-icon {
    display: none;
}
.widget_rss ul {
    padding: 0;
    list-style: none;
}
.widget_rss ul li {
    position: relative;
    font-family: var(--cs-font-entry-excerpt-family), sans-serif;
    font-weight: var(--cs-font-entry-excerpt-weight);
    font-size: var(--cs-font-entry-excerpt-size);
    letter-spacing: var(--cs-font-entry-excerpt-letter-spacing);
    line-height: var(--cs-font-entry-excerpt-line-height);
}
.widget_rss ul li:not(:last-child) {
    border-bottom: 1px solid var(--cs-color-border);
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
}
.widget_rss ul li a {
    font-family: var(--cs-font-entry-title-family), sans-serif;
    line-height: var(--cs-font-entry-title-line-height);
    font-weight: var(--cs-font-entry-title-weight);
    letter-spacing: var(--cs-font-entry-title-letter-spacing);
    text-decoration: none;
    color: var(--cs-color-primary);
    transition: 0.25s;
}
.widget_rss ul li a:hover {
    color: var(--cs-color-secondary);
}
.widget_rss ul li .rss-date {
    font-family: var(--cs-font-post-meta-family), sans-serif;
    font-size: var(--cs-font-post-meta-size);
    line-height: var(--cs-font-post-meta-line-height);
    font-weight: var(--cs-font-post-meta-weight);
    font-style: var(--cs-font-post-meta-style);
    letter-spacing: var(--cs-font-post-meta-letter-spacing);
    text-transform: var(--cs-font-post-meta-text-transform);
    display: block;
    margin-top: 0.25rem;
    color: var(--cs-color-secondary);
}
.widget_rss ul li .rssSummary {
    margin-top: 0.25rem;
    color: var(--cs-color-primary);
}
.widget_rss ul li cite {
    display: block;
    margin-top: 0.25rem;
    font-style: normal;
    text-align: right;
    color: var(--cs-color-primary);
}

.widget_tag_cloud {
    overflow: hidden;
}
.widget_tag_cloud .tagcloud {
    margin-top: -0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    padding: 0;
    margin: 0;
}
.widget_tag_cloud .tagcloud li {
    position: relative;
    line-height: 1;
}
.widget_tag_cloud .tagcloud li a {
    position: relative;
    z-index: 2;
    text-decoration: none;
}
.widget_tag_cloud .tagcloud a {
    font-family: var(--cs-font-category-family), sans-serif;
    font-size: var(--cs-font-category-size);
    line-height: var(--cs-font-category-line-height);
    font-weight: var(--cs-font-category-weight);
    font-style: var(--cs-font-category-style);
    letter-spacing: var(--cs-font-category-letter-spacing);
    text-transform: var(--cs-font-category-text-transform);
    display: flex;
    padding: 0.375rem 0.75rem;
    justify-content: center;
    align-items: center;
    color: var(--cs-color-primary);
    background: var(--cs-layout-background);
    text-decoration: none;
    transition: 0.25s;
    border-radius: var(--cs-tag-border-radius);
    margin-right: 0;
}
.widget_tag_cloud .tagcloud a:hover {
    color: var(--cs-color-secondary);
}
.widget_tag_cloud .tagcloud a {
    font-size: var(--cs-font-category-size) !important;
}

.widget_media_video .mejs-container {
    max-width: 100%;
    overflow: hidden;
}
.widget_media_video .mejs-container video,
.widget_media_video .mejs-container iframe,
.widget_media_video .mejs-container object,
.widget_media_video .mejs-container embed {
    max-width: 100%;
    overflow: hidden;
}

.widget_media_gallery {
    overflow: hidden;
}
.widget_media_gallery [class^=gallery-columns-],
.widget_media_gallery [class*=" gallery-columns-"] {
    display: flex;
    flex-wrap: wrap;
    margin-top: -1rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: 0;
}
.widget_media_gallery [class^=gallery-columns-] .gallery-item,
.widget_media_gallery [class*=" gallery-columns-"] .gallery-item {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 0;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.widget_media_gallery [class^=gallery-columns-] .gallery-item img,
.widget_media_gallery [class*=" gallery-columns-"] .gallery-item img {
    display: block;
    border-radius: 0;
    transition: 0.25s;
    backface-visibility: hidden;
}
.widget_media_gallery [class^=gallery-columns-] .gallery-item:hover img,
.widget_media_gallery [class*=" gallery-columns-"] .gallery-item:hover img {
    opacity: 0.6;
}
.widget_media_gallery [class^=gallery-columns-] .gallery-item .gallery-caption,
.widget_media_gallery [class*=" gallery-columns-"] .gallery-item .gallery-caption {
    padding: 1rem 1rem 0;
}
.widget_media_gallery [class^=gallery-columns-] .gallery-item .gallery-icon,
.widget_media_gallery [class*=" gallery-columns-"] .gallery-item .gallery-icon {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.widget_media_gallery .gallery-columns-4 .gallery-caption,
.widget_media_gallery .gallery-columns-5 .gallery-caption,
.widget_media_gallery .gallery-columns-6 .gallery-caption,
.widget_media_gallery .gallery-columns-7 .gallery-caption,
.widget_media_gallery .gallery-columns-8 .gallery-caption,
.widget_media_gallery .gallery-columns-9 .gallery-caption {
    display: none;
}
.widget_media_gallery .gallery-columns-1 .gallery-item {
    flex: 0 0 100%;
    max-width: 100%;
}
.widget_media_gallery .gallery-columns-2 .gallery-item {
    flex: 0 0 50%;
    max-width: 50%;
}
.widget_media_gallery .gallery-columns-3 .gallery-item {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}
.widget_media_gallery .gallery-columns-4 .gallery-item {
    flex: 0 0 25%;
    max-width: 25%;
}
.widget_media_gallery .gallery-columns-5 .gallery-item {
    flex: 0 0 20%;
    max-width: 20%;
}
.widget_media_gallery .gallery-columns-6 .gallery-item {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}
.widget_media_gallery .gallery-columns-7 .gallery-item {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
}
.widget_media_gallery .gallery-columns-8 .gallery-item {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}
.widget_media_gallery .gallery-columns-9 .gallery-item {
    flex: 0 0 11.1111111111%;
    max-width: 11.1111111111%;
}

/* Text widget */
.widget_text {
    color: var(--cs-color-primary);
    word-wrap: break-word;
}
.widget_text ul {
    list-style: disc;
    margin: 0 0 1rem 1rem;
}
.widget_text ol {
    list-style: decimal;
}
.widget_text ul li,
.widget_text ol li {
    border: none;
}
.widget_text ul li:last-child,
.widget_text ol li:last-child {
    padding-bottom: 0;
}
.widget_text ul li ul {
    margin: 0 0 0 1rem;
}
.widget_text ul li li {
    padding-left: 0;
    padding-right: 0;
}
.widget_text ol li {
    list-style-position: inside;
}
.widget_text ol li + li {
    margin-top: -1px;
}
.widget_text img {
    display: inline-block;
    max-width: 100%;
    width: auto;
    height: auto;
}
.widget_text .wp-caption-text {
    display: flex;
}
.widget_text .emoji {
    width: 1rem;
}
.widget_text .emoji:not(:last-of-type) {
    margin-right: 10px;
    margin-left: 0;
}

.widget_nav_menu + .widget_nav_menu {
    border-top: 1px solid var(--cs-color-border);
    padding-top: 2rem;
    margin-top: 0.625rem;
}
.widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget_nav_menu ul > li.menu-item-has-children > span:after {
    font-size: 1.25rem;
}
.widget_nav_menu a {
    display: block;
    padding: 0.625rem 0;
    transition: 0.25s;
    color: var(--cs-color-primary);
    text-decoration: none;
    font-family: var(--cs-font-menu-family), sans-serif;
    font-size: var(--cs-font-menu-size);
    line-height: var(--cs-font-menu-line-height);
    font-weight: var(--cs-font-menu-weight);
    font-style: var(--cs-font-menu-style);
    letter-spacing: var(--cs-font-menu-letter-spacing);
    text-transform: var(--cs-font-menu-text-transform);
}
@media (hover: hover) {
    .widget_nav_menu a:hover {
        color: var(--cs-color-secondary);
    }
}
.widget_nav_menu .menu-item-has-children {
    position: relative;
    width: 100%;
}
.widget_nav_menu .menu-item-has-children > span {
    position: absolute;
    right: 0;
    top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    margin-left: auto;
    padding-right: 0.25rem;
    cursor: pointer;
}
.widget_nav_menu .menu-item-has-children > span:after {
    font-family: "cs-icons";
    font-size: 1.25rem;
    content: "\e90c";
}
.widget_nav_menu .menu-item-has-children > ul {
    width: 100%;
    order: 3;
}
.widget_nav_menu .menu-item-has-children .menu-item-has-children > span {
    top: 0.25rem;
}
.widget_nav_menu .menu-item-expanded > span:after {
    content: "\e90f";
}
.widget_nav_menu .menu > .menu-item:not(.menu-item-has-children) > a:after {
    visibility: hidden;
}
.widget_nav_menu .sub-menu {
    display: none;
}
.widget_nav_menu .sub-menu a {
    padding: 0.5rem 0 0.5rem 0.625rem;
    line-height: 1;
    font-family: var(--cs-font-submenu-family), sans-serif;
    font-size: var(--cs-font-submenu-size);
    line-height: var(--cs-font-submenu-line-height);
    font-weight: var(--cs-font-submenu-weight);
    font-style: var(--cs-font-submenu-style);
    letter-spacing: var(--cs-font-submenu-letter-spacing);
    text-transform: var(--cs-font-submenu-text-transform);
}
.widget_nav_menu .sub-menu .sub-menu {
    padding: 0 0 0 10px;
}
.widget_nav_menu .menu {
    margin: -0.625rem 0;
}
.widget_nav_menu .menu > .menu-item > .sub-menu {
    padding-bottom: 0.5rem;
}
.widget_nav_menu .menu-item-has-children > a {
    padding-right: 20px;
    width: calc(100% - 20px);
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Image
--------------------------------------------------------------*/
img {
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    max-width: 100%;
    margin-bottom: 1rem;
}
.wp-caption img[class*=wp-image-] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.wp-caption .wp-caption-text {
    margin: 1rem 0;
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
}

.wp-caption-text {
    margin-top: 1rem;
    color: var(--cs-color-primary);
    font-size: 0.75em;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    div[class^=gallery-columns-],
    div[class*=" gallery-columns-"] {
        display: flex;
        flex-wrap: wrap;
        margin-right: -24px;
        margin-left: -24px;
        margin-left: -10px;
        margin-right: -10px;
    }
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}
@media (min-width: 576px) {
    .gallery-columns-2 .gallery-item {
        max-width: 50%;
        position: relative;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) {
    .gallery-columns-3 .gallery-item {
        max-width: 33.33%;
        position: relative;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) {
    .gallery-columns-4 .gallery-item {
        max-width: 25%;
        position: relative;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) {
    .gallery-columns-5 .gallery-item {
        max-width: 20%;
        position: relative;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) {
    .gallery-columns-6 .gallery-item {
        max-width: 16.66%;
        position: relative;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) {
    .gallery-columns-7 .gallery-item {
        max-width: 14.28%;
        position: relative;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) {
    .gallery-columns-8 .gallery-item {
        max-width: 12.5%;
        position: relative;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}
@media (min-width: 576px) {
    .gallery-columns-9 .gallery-item {
        max-width: 11.11%;
        position: relative;
        width: 100%;
        padding-right: 24px;
        padding-left: 24px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 20px;
    }
}

.gallery-caption {
    display: block;
    width: 100%;
    color: var(--cs-color-primary);
    text-align: center;
}

.wp-block-gallery > .blocks-gallery-grid {
    width: 100%;
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    font-family: var(--cs-font-primary-family), sans-serif;
    font-size: var(--cs-font-primary-size);
    line-height: var(--cs-font-primary-line-height);
    font-weight: var(--cs-font-primary-weight);
    font-style: var(--cs-font-primary-style);
    letter-spacing: var(--cs-font-primary-letter-spacing);
    text-transform: var(--cs-font-primary-text-transform);
    background: transparent;
    color: var(--cs-color-primary);
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    position: initial;
    padding: 0;
    margin-top: 1rem;
}

.blocks-gallery-grid .blocks-gallery-image figure,
.blocks-gallery-grid .blocks-gallery-item figure,
.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure {
    display: flex;
    flex-direction: column;
}

.blocks-gallery-caption {
    display: block;
    width: 100%;
    text-align: center;
}

/*--------------------------------------------------------------
# Vendors
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Contact Form 7
--------------------------------------------------------------*/
.wpcf7 {
    margin: 0;
    padding: 0;
}
.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0;
}
.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output,
.wpcf7 .wpcf7-display-none { /* support version below 5.4 */
    display: none;
}
.wpcf7 form .wpcf7-response-output {
    margin: 1rem 0;
    padding: 0.5rem 1rem;
    background: #6cdcff;
    font-size: 0.75rem;
    color: #00526c;
    border-radius: var(--cs-layout-elements-border-radius);
}
.wpcf7 form.sent .wpcf7-response-output {
    background: #d8f6df;
    color: #145523;
    border-radius: var(--cs-layout-elements-border-radius);
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
    background: #ff918a;
    color: #8a0900;
    border-radius: var(--cs-layout-elements-border-radius);
}
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
    background: #fff4d3;
    color: #a07800;
    border-radius: var(--cs-layout-elements-border-radius);
}
.wpcf7 .wpcf7-form-control-wrap {
    position: relative;
    display: block;
}
.wpcf7 label .wpcf7-form-control-wrap {
    margin-top: 0.375rem;
}
.wpcf7 .wpcf7-not-valid-tip {
    color: #F00F00;
    font-size: 0.75rem;
    font-weight: normal;
    display: block;
    margin-top: 0.375rem;
}
.wpcf7 .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    z-index: 100;
    border: 1px solid #F00F00;
    background: var(--cs-color-secondary);
    padding: 0.2em 0.8em;
}
.wpcf7 .wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em;
}
.wpcf7 .wpcf7-list-item-label:before,
.wpcf7 .wpcf7-list-item-label:after {
    content: " ";
}
.wpcf7 .ajax-loader {
    visibility: hidden;
    display: inline-block;
    margin-left: 1rem;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(206, 212, 218, 0.25);
    border-top-color: #ced4da;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
}
@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.wpcf7 form.submitting .ajax-loader,
.wpcf7 .ajax-loader.is-active { /* support version below 5.4 */
    visibility: visible;
}
.wpcf7 div.ajax-error {
    display: none;
}
.wpcf7 .placeheld {
    color: var(--cs-color-primary);
}
.wpcf7 .wpcf7-recaptcha iframe {
    margin-bottom: 0;
}
.wpcf7 input[type=file] {
    cursor: pointer;
}
.wpcf7 input[type=file]:disabled {
    cursor: default;
}
.wpcf7 .wpcf7-submit {
    vertical-align: middle;
}
.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
}

/*--------------------------------------------------------------
## Swiper
--------------------------------------------------------------*/
/* FONT_END */
:root {
    --swiper-theme-color: #007aff;
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    overflow: clip;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
    display: block;
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper-vertical {
    touch-action: pan-x;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.swiper-3d {
    perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
    transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
}

:root {
    --swiper-navigation-size: 44px;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
    display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
    transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

.swiper-button-lock {
    display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: "next";
}

/* Navigation font end */
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}

.swiper-pagination-bullet:only-child {
    display: none !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
    position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
}

.swiper-pagination-lock {
    display: none;
}
/*# sourceMappingURL=style.css.map */
