/* Lib - Local component imports (must be FIRST for postcss-import) */
/* Variables
/* ---------------------------------------------------------- */
:root {

    /* Colours */
    --color-primary: var(--ghost-accent-color, #3eb0ef);
    --color-base: #131313;
    --color-border: #ddd;
    --color-bg: #f5f5f5;
    --color-success: #80b912;
    --color-error: #f05230;

    /* Fonts */
    --font-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    --font-serif: Georgia, Times, serif;
    --font-mono: Menlo, Courier, monospace;
    
    /* Ghost Font Variables */
    --gh-font-heading: var(--font-sans-serif);
    --gh-font-body: var(--font-sans-serif);
    --font-light: 100;
    --font-normal: 400;
    --font-bold: 700;
    --font-heavy: 800;

    /* Breakpoints */
    --xlarge: 1680px;
    --large: 1280px;
    --medium: 980px;
    --small: 740px;
    --xsmall: 480px;

    /* Sizes */
    --height: 4rem;
    --margin: 2rem;
    --radius: 0.5rem;

}
/* Reset
/* ---------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #464646;
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.6em;
    font-weight: 400;
    font-style: normal;
    background: #fff;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
p,
ul,
ol,
li,
dl,
dd,
hr,
pre,
form,
table,
video,
figure,
figcaption,
blockquote {
    margin: 0;
    padding: 0;
}
ul[class],
ol[class] {
    padding: 0;
    list-style: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
input,
button,
select,
textarea {
    font: inherit;
    -webkit-appearance: none;
}
fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}
label {
    display: block;
    font-size: 0.9em;
    font-weight: 700;
}
hr {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    border: 0;
    border-top: 1px solid currentcolor;
    opacity: 0.2;
}
::-moz-selection {
    text-shadow: none;
    background: #cbeafb;
}
::selection {
    text-shadow: none;
    background: #cbeafb;
}
mark {
    background-color: #fdffb6;
}
small {
    font-size: 80%;
}
sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
ul:not([class]) li + li {
    margin-top: 0.6em;
}
a:not([class]) {
    color: var(--color-primary);
    -webkit-text-decoration-skip: ink;
            text-decoration-skip-ink: auto;
}
a[class] {
    color: inherit;
    text-decoration: none;
    transition: 0.4s ease;
}
a[class]:hover {
    transition: 0.2s ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    line-height: 1.15em;
    font-weight: 700;
}
h1 {
    font-size: 4.6rem;
    letter-spacing: -0.5px;
}
@media (max-width: 500px) {
    h1 {
        font-size: 2.7rem;
    }
}
h2 {
    font-size: 3.6rem;
}
@media (max-width: 500px) {
    h2 {
        font-size: 2.2rem;
    }
}
h3 {
    font-size: 3.2rem;
}
@media (max-width: 500px) {
    h3 {
        font-size: 1.8rem;
    }
}
h4 {
    font-size: 2.6rem;
}
h5 {
    font-size: 2.4rem;
}
h6 {
    font-size: 2.2rem;
}
/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* Forms
/* ---------------------------------------------------------- */
.gh-input,
.gh-textarea {
    background: var(--color-bg);
    border-radius: var(--radius);
    border: none;
    border: solid 1px var(--color-border);
    color: inherit;
    display: block;
    outline: 0;
    padding: 0 0.6em;
    text-decoration: none;
    width: 100%;
}
.gh-input:focus {
    border-color: var(--color-primary);
}
.gh-select {
    height: var(--height);
    padding-right: var(--height);
    text-overflow: ellipsis;
}
.gh-select option {
    color: var(--color-primary);
    background: var(--color-bg);
}
.gh-select:focus::-ms-value {
    background-color: transparent;
}
.gh-select::-ms-expand {
    display: none;
}
.gh-input,
.gh-select {
    height: var(--height);
}
.gh-textarea {
    padding: 0.3em 0.6em;
    resize: vertical;
}
.gh-check {
    display: block;
    margin-right: -2em;
    opacity: 0;
    width: 1em;
    z-index: -1;
}
.gh-check + label,
.gh-check + label {
    display: flex;
    align-items: center;
    color: var(--color-base);
    cursor: pointer;
    font-size: 1em;
    font-weight: var(--font-normal);
    padding-left: calc((var(--height) * 0.6) + 0.75em);
    padding-right: 2rem;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
}
.gh-check + label:before,
.gh-check + label:before {
    background: var(--color-bg);
    border-radius: var(--radius);
    border: solid 1px var(--color-border);
    content: '';
    display: inline-block;
    height: calc(var(--height) * 0.6);
    line-height: calc(var(--height) * 0.56);
    text-align: center;
    width: calc(var(--height) * 0.6);
    margin-right: 1rem;
}
.gh-check:checked + label:before,
.gh-check:checked + label:before {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg);
    content: '✓';
}
.gh-check:focus + label:before,
.gh-check:focus + label:before {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}
.gh-check + label:before {
    border-radius: var(--radius);
    border-radius: 100%;
}
/* Buttons
/* ---------------------------------------------------------- */
.gh-button {
    display: inline-block;
    min-width: 75px;
    height: var(--height);
    padding: 0 2rem;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-sans-serif);
    font-size: 1.4rem;
    font-weight: var(--font-normal);
    line-height: var(--height);
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    transition: 0.4s ease;
}
.gh-button.gh-button-fit {
    width: 100%;
}
.gh-button.gh-button-small {
    height: calc(var(--height) * 0.9);
    line-height: calc(var(--height) * 0.9);
    padding: 0 1.5rem;
    font-size: 1.2rem;
}
.gh-button.gh-button-large {
    height: calc(var(--height) * 1.2);
    line-height: calc(var(--height) * 1.2);
    padding: 0 2.5rem;
    font-size: 1.7rem;
}
.gh-button.gh-button-disabled,
.gh-button:disabled {
    pointer-events: none;
    opacity: 0.4;
}
.gh-button {
    color: inherit;
    background-color: transparent;
    box-shadow: inset 0 0 0 2px currentColor
}
.gh-button:hover {
    text-decoration: none;
    color: var(--color-primary) !important;
    box-shadow: inset 0 0 0 2px var(--color-primary);
    transition: 0.2s ease;
}
.gh-button.gh-button-primary {
    color: #fff !important;
    background-color: var(--color-primary);
    box-shadow: none;
}
.gh-button.gh-button-primary:hover {
    background-color: var(--color-primary);
}
/* Global Header
/* ---------------------------------------------------------- */
.gh-head {
    padding: 3vmin 4vmin;
    font-size: 1.6rem;
    line-height: 1.3em;
    background: inherit;
}
.gh-head a {
    color: inherit;
    text-decoration: none;
}
.gh-head-inner {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 1fr auto 1fr;
    grid-auto-flow: row dense;
}
/* Brand
/* ---------------------------------------------------------- */
.gh-head-brand {
    grid-column-start: 2;
    display: flex;
    align-items: center;
    max-width: 200px;
    text-align: center;
    word-break: break-all;
}
.gh-head-logo {
    display: block;
    padding: 10px 0;
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.2em;
}
.gh-head-logo img {
    max-height: 40px;
}
/* Primary Navigation
/* ---------------------------------------------------------- */
.gh-head-menu {
    display: flex;
    align-items: center;
}
.gh-head-menu .nav {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
}
.gh-head-menu .nav li {
    margin: 0 1.5vmin 0 0;
    padding: 0;
}
.gh-head-menu .nav a {
    display: inline-block;
    padding: 5px 0;
}
.gh-head-menu .nav-current a {
    box-shadow: 0 -1px 0 0 currentcolor inset;
}
/* Secondary Navigation
/* ---------------------------------------------------------- */
.gh-head-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    text-align: right;
}
.gh-head-actions-list {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}
.gh-head-actions-list a:not([class]) {
    display: inline-block;
    margin: 0 0 0 1.5vmin;
    padding: 5px 0;
}
/* Mobile Menu Trigger
/* ---------------------------------------------------------- */
.gh-burger {
    position: relative;
    display: none;
    cursor: pointer;
}
.gh-burger-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
}
.gh-burger-inner {
    width: 100%;
    height: 100%;
}
.gh-burger-box::before {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 1px;
    background: currentcolor;
    transition: transform 300ms cubic-bezier(.2,.6,.3,1), width 300ms cubic-bezier(.2,.6,.3,1);
    will-change: transform, width;
}
.gh-burger-inner::before,
.gh-burger-inner::after {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    content: '';
    width: 100%;
    height: 1px;
    background: currentcolor;
    transition: transform 250ms cubic-bezier(.2,.7,.3,1), width 250ms cubic-bezier(.2,.7,.3,1);
    will-change: transform, width;
}
.gh-burger-inner::before {
    transform: translatey(-6px);
}
.gh-burger-inner::after {
    transform: translatey(6px);
}
body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner::before {
    transform: translatey(-8px);
}
body:not(.gh-head-open) .gh-burger:hover .gh-burger-inner::after {
    transform: translatey(8px);
}
.gh-head-open .gh-burger-box::before {
    width: 0;
    transform: translatex(19px);
    transition: transform 200ms cubic-bezier(.2,.7,.3,1), width 200ms cubic-bezier(.2,.7,.3,1);
}
.gh-head-open .gh-burger-inner::before {
    width: 26px;
    transform: translatex(6px) rotate(135deg);
}
.gh-head-open .gh-burger-inner::after {
    width: 26px;
    transform: translatex(6px) rotate(-135deg);
}
/* Layout Variants
/* ---------------------------------------------------------- */
.gh-head-brandnavactions .gh-head-brand {
    grid-column-start: 1;
}
.gh-head-brandnav .gh-container {
    grid-gap: 0;
    grid-template-columns: auto max-content max-content;
}
.gh-head-brandnav .gh-head-brand {
     grid-column-start: 1;
}
.gh-head-brandnav .gh-head-menu {
    margin-left: 40px;
}
.gh-head-brandnav .gh-head-menu .nav li {
    margin: 0 0 0 1.5vmin;
    padding: 0;
}
/* Center Stacked */
.gh-head-stacked .gh-container {
    grid-template-columns: 1fr;
    grid-gap: 2vmin;
}
.gh-head-stacked .gh-head-brand {
     grid-column-start: 1;
     width: 100%;
     max-width: none;
     display: flex;
     justify-content: center;
     text-align: center;
}
.gh-head-stacked .gh-head-menu,
.gh-head-stacked .gh-head-actions,
.gh-head-stacked .gh-head-actions-list {
    justify-content: center;
}
.gh-head-stacked .gh-head-actions a:first-child svg {
    margin-left: 0;
}
/* Mobile Menu
/* ---------------------------------------------------------- */
/* IDs needed to ensure sufficient specificity */
@media (max-width: 900px) {
    .gh-burger {
        display: inline-block;
    }
    #gh-head {
        transition: all 0.4s ease-out;
        overflow: hidden;
    }
    #gh-head .gh-head-inner {
        height: 100%;
        grid-template-columns: 1fr;
    }
    #gh-head .gh-head-brand {
        position: relative;
        z-index: 10;
        grid-column-start: auto;
        max-width: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        -webkit-user-select: none;
           -moz-user-select: none;
                user-select: none;
    }
    #gh-head .gh-head-logo {
        font-size: 2.2rem;
    }
    #gh-head .gh-head-logo img {
        max-height: 40px;
    }
    #gh-head .gh-head-menu {
        align-self: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 0 10vh 0;
        font-weight: 300;
        font-size: 3.6rem;
        line-height: 1.1em;
    }
    #gh-head .gh-head-menu .nav li {
        margin: 5px 0;
    }
    #gh-head .gh-head-menu .nav a {
        padding: 8px 0;
    }
    #gh-head .gh-head-menu .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #gh-head .gh-head-actions {
        padding: 20px 0;
        justify-content: center;
        text-align: left;
    }
    #gh-head .gh-head-actions a {
        margin: 0 10px;
    }
    /* Hide collapsed content */
    #gh-head .gh-head-actions,
    #gh-head .gh-head-menu {
        display: none;
    }
    /* Open the menu */
    .gh-head-open {
        overflow: hidden;
        height: 100vh;
    }
    .gh-head-open #gh-head {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 900;
        overflow-y: scroll;
    }
    .gh-head-open #gh-head .gh-head-inner {
        grid-template-rows: auto 1fr auto;
    }
    .gh-head-open #gh-head .gh-head-actions,
    .gh-head-open #gh-head .gh-head-menu {
        display: flex;
    }
}
@media (max-width: 600px) {
    #gh-head .gh-head-menu {
        font-size: 6vmin;
    }
}
/* Content grid
/* ---------------------------------------------------------- */
.gh-canvas,
.kg-width-full.kg-content-wide {
    --gap: 4vw;
    --main: min(var(--content-width, 720px), 100% - var(--gap) * 2);
    --wide: minmax(0, calc((var(--container-width, 1200px) - var(--content-width, 720px)) / 2));
    --full: minmax(var(--gap), 1fr);

    display: grid;
    grid-template-columns:
        [full-start] var(--full)
        [wide-start] var(--wide)
        [main-start] var(--main) [main-end]
        var(--wide) [wide-end]
        var(--full) [full-end];
}
.gh-canvas > * {
    grid-column: main-start / main-end;
}
.kg-width-wide,
.kg-content-wide > div {
    grid-column: wide-start / wide-end;
}
.kg-width-full {
    grid-column: full-start / full-end;
}
.kg-width-full img {
    width: 100%;
}
/* Content & Typography
/* ---------------------------------------------------------- */
.gh-content > * + * {
    margin-top: 4vmin;
}
.gh-content [id]:not(:first-child) {
    margin: 1.5em 0 0;
}
.gh-content > [id] + * {
    margin-top: 1.5rem;
}
.gh-content [id] + .kg-card,
.gh-content blockquote + .kg-card {
    margin-top: 6vmin;
}
.gh-canvas > blockquote,
.gh-canvas > ol,
.gh-canvas > ul,
.gh-canvas > dl,
.gh-canvas > p {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.6em;
}
.gh-content > ul,
.gh-content > ol,
.gh-content > dl {
    padding-left: 1.9em;
}
.gh-content hr {
    margin-top: 6vmin;
}
.gh-content hr + * {
    margin-top: 6vmin !important;
}
.gh-content blockquote {
    position: relative;
    font-style: italic;
}
.gh-content blockquote::before {
    content: "";
    position: absolute;
    left: -1.5em;
    top: 0;
    bottom: 0;
    width: 0.3rem;
    background: var(--color-primary);
}
@media (max-width: 650px) {
    .gh-canvas blockquote,
    .gh-canvas ol,
    .gh-canvas ul,
    .gh-canvas dl,
    .gh-canvas p {
        font-size: 1.8rem;
    }

    .gh-content blockquote::before {
        left: -4vmin;
    }
}
/* Cards
/* ---------------------------------------------------------- */
.gh-content :not(.kg-card):not([id]) + .kg-card {
    margin-top: 6vmin;
}
.gh-content .kg-card + :not(.kg-card) {
    margin-top: 6vmin;
}
figcaption {
    padding: 1.5rem 1.5rem 0;
    text-align: center;
    color: rgba(0,0,0,0.5);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.4em;
}
figcaption strong {
    color: rgba(0,0,0,0.8);
}
.gh-canvas :not(pre) code {
    vertical-align: middle;
    padding: 0.15em 0.4em 0.15em;
    border: #e1eaef 1px solid;
    font-weight: 400 !important;
    font-size: 0.9em;
    line-height: 1em;
    color: #dc0050;
    background: #f0f6f9;
    border-radius: 0.25em;
}
.gh-canvas > pre {
    overflow: scroll;
    padding: 16px 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 5px;
    box-shadow: 0 2px 6px -2px rgba(0,0,0,.1), 0 0 1px rgba(0,0,0,.4);
}
.kg-embed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
/* Default to 16 / 9 aspect ratio for YouTube & Vimeo embeds  */
.kg-embed-card > :where(iframe[src*="youtube.com"],iframe[src*="vimeo.com"]) {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.kg-image-card img {
    margin: auto;
}
/* Card captions
/* ---------------------------------------------------------- */
.kg-width-full.kg-card-hascaption {
    display: grid;
    grid-template-columns: inherit;
}
.kg-width-wide.kg-card-hascaption img {
    grid-column: wide-start / wide-end;
}
.kg-width-full.kg-card-hascaption img {
    grid-column: 1 / -1;
}
.kg-width-full.kg-card-hascaption figcaption {
    grid-column: main-start / main-end;
}
/* Tables
/* ---------------------------------------------------------- */
.gh-content table {
    border-collapse: collapse;
    width: 100%;
}
.gh-content th {
    padding: 0.5em 0.8em;
    text-align: left;
    font-size: .75em;
    text-transform: uppercase;
}
.gh-content td {
    padding: 0.4em 0.7em;
}
.gh-content tbody tr:nth-child(2n + 1) {
    background-color: rgba(0,0,0,0.1);
    padding: 1px;
}
.gh-content tbody tr:nth-child(2n + 2) td:last-child {
    box-shadow:
        inset 1px 0 rgba(0,0,0,0.1),
        inset -1px 0 rgba(0,0,0,0.1);
}
.gh-content tbody tr:nth-child(2n + 2) td {
    box-shadow: inset 1px 0 rgba(0,0,0,0.1);
}
.gh-content tbody tr:last-child {
    border-bottom: 1px solid rgba(0,0,0,.1);
}
/* Daily Tips Cards
/* ---------------------------------------------------------- */
/* Uses data-tip-sport attribute for sport-specific styling */
/* GPT generates: <div class="fab-tip" data-tip-sport="racing|football|tennis|golf|boxing"> */
/* Main wrapper for daily tips - this is the outermost element */
.fab-daily-tips {
    max-width: 720px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    border-left: none !important;
    box-shadow: none !important;
}
.fab-tips,
.gh-content .fab-tips,
.kg-card .fab-tips,
div.fab-tips {
    max-width: 720px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    background: transparent !important;
    background-color: transparent !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    border-left: none !important;
}
/* Greeting and closing sections */
.fab-greeting,
.fab-closing,
.gh-content .fab-greeting,
.gh-content .fab-closing,
.kg-card .fab-greeting,
.kg-card .fab-closing {
    max-width: 720px !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}
/* Single tip card */
.fab-tip,
.gh-content .fab-tip,
.kg-card .fab-tip {
    max-width: 720px !important;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border-left: 4px solid;
}
/* Sport-specific colors */
.fab-tip[data-tip-sport="racing"] {
    background-color: #fef3c7;
    border-left-color: #FFD23F;
}
.fab-tip[data-tip-sport="football"] {
    background-color: #dbeafe;
    border-left-color: #58CEFF;
}
.fab-tip[data-tip-sport="tennis"] {
    background-color: #dcfce7;
    border-left-color: #22c55e;
}
.fab-tip[data-tip-sport="golf"] {
    background-color: #f3e8ff;
    border-left-color: #a855f7;
}
.fab-tip[data-tip-sport="boxing"] {
    background-color: #fce7f3;
    border-left-color: #FF3366;
}
/* Tip card header row */
.fab-tip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
/* Sport badge */
.fab-tip-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.fab-tip[data-tip-sport="racing"] .fab-tip-badge {
    background-color: #FFD23F;
    color: #0A0463;
}
.fab-tip[data-tip-sport="football"] .fab-tip-badge {
    background-color: #58CEFF;
    color: #0A0463;
}
.fab-tip[data-tip-sport="tennis"] .fab-tip-badge {
    background-color: #22c55e;
    color: white;
}
.fab-tip[data-tip-sport="golf"] .fab-tip-badge {
    background-color: #a855f7;
    color: white;
}
.fab-tip[data-tip-sport="boxing"] .fab-tip-badge {
    background-color: #FF3366;
    color: white;
}
/* Event time/location */
.fab-tip-event {
    font-size: 13px;
    color: #64748b;
}
/* Match/selection info */
.fab-tip-match {
    font-size: 16px;
    font-weight: 600;
    color: #0A0463;
    margin: 0 0 4px 0;
}
.fab-tip-selection {
    font-size: 18px;
    font-weight: 700;
    color: #0A0463;
    margin: 0 0 8px 0;
}
/* Odds display */
.fab-tip-odds {
    font-size: 24px;
    font-weight: 900;
    color: #0A0463;
    margin: 0 0 12px 0;
}
/* Rationale text */
.fab-tip-rationale {
    font-size: 14px;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
}
/* Greeting/intro section */
.fab-greeting {
    max-width: 720px;
    margin: 0 0 24px 0;
}
.fab-greeting h2 {
    color: #0A0463;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 12px 0;
}
.fab-greeting p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
/* Closing section */
.fab-closing {
    max-width: 720px;
    margin: 24px 0 0 0;
}
.fab-closing p {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 12px 0;
}
.fab-closing .fab-signature {
    color: #0A0463;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
/* Read More
/* ---------------------------------------------------------- */
.gh-readmore {
    padding: 8vmin 4vmin;
    font-size: 2.6rem;
}
.gh-readmore-inner {
    display: grid;
    grid-gap: 8vmin;
    grid-template-columns: 1fr 1fr;
}
.gh-readmore-prev {
    justify-content: flex-end;
    text-align: right;
}
.gh-readmore a {
    display: flex;
    color: currentColor;
    text-decoration: none;
}
.gh-readmore h4 {
    width: 100%;
    font-size: inherit;
}
.gh-readmore svg {
    display: inline-block;
    vertical-align: middle;
    height: 1em;
    margin: 0.15em 0 0;
}
.gh-readmore svg + h4,
.gh-readmore h4 + svg {
    margin-left: 2vmin;
}
@media (max-width: 700px) {
    .gh-readmore {
        font-size: 1.6rem;
    }
    .gh-readmore svg {
        margin: 0.1em 0 0;
    }
}
/* Members Auth Template
/* ---------------------------------------------------------- */
.gh-auth-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 10vmin;
    text-align: center;
}
.gh-auth-title {
    margin: 0 0 0.1em;
    font-size: 4.2rem;
}
.gh-auth-form p {
    margin: 10px 0 4vmin 0;
    font-size: 1.7rem;
    color: rgba(0,0,0,0.6)
}
.gh-auth-form p small {
    display: inline-block;
    margin: 15px 0 0 0;
    font-size: 1.4rem;
}
.gh-auth-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 460px;
    margin: 0 auto;
}
.gh-auth-box .gh-button {
    margin-left: 10px;
}
@media (max-width: 600px) {
    .gh-auth-box {
        flex-direction: column;
        max-width: 400px;
    }
    .gh-auth-box .gh-button {
        width: 100%;
        margin: 15px 0 0 0;
    }
}
/* Members Forms
/* ---------------------------------------------------------- */
form[data-members-form] .gh-button-loader,
form[data-members-form] .message-success,
form[data-members-form] .message-error {
    display: none;
}
.gh-button-content {
    min-width: 100px;
}
.message-success svg,
.message-error svg {
    position: relative;
    top: -1px;
    margin-right: 5px;
    height: 15px;
    width: 15px;
}
.message-success svg {
    fill: #fff;
}
.message-error svg {
    fill: var(--color-error);
}
form[data-members-form].success .message-success,
form[data-members-form].error .message-error {
    position: fixed;
    top: 20px;
    left: 4vmin;
    right: 4vmin;
    z-index: 9999;
    max-width: calc(1400px - 8vmin);
    margin: 0 auto;
    padding: 10px 0;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.5em;
    font-weight: 500;
    text-align: center;
    background: var(--color-base);
    border-radius: var(--radius);
}
form[data-members-form].success .message-success {
    background: var(--color-success);
}
form[data-members-form].error .message-error {
    color: var(--color-error);
    background: #fff;
    box-shadow: var(--color-error) 0 0 0 1px;
}
form[data-members-form] .gh-button {
    position: relative;
    min-width: 120px;
}
/*-- Loading --*/
/* Hide button text */
form[data-members-form].loading .gh-button-content {
    visibility: hidden;
}
/* Show loading spinner */
form[data-members-form].loading .gh-button-loader {
    display: inline-block;
    position: absolute;
    left: 50%;
    bottom: -30%;
    margin: 0 0 0 -19px;
    transform: scale(0.6);
}
.gh-button-loader svg path,
.gh-button-loader svg rect{
  fill: #fff;
}
/*-- Show success message on success --*/
form[data-members-form].success .message-success {
    display: block;
}
/*-- Show error message on error --*/
form[data-members-form].error .message-error {
    display: block;
}
/* Error Templates
/* ---------------------------------------------------------- */
.gh-error {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 2vmin;
}
.gh-error-content {
    flex: 1 0 auto;
    text-align: center;
}
.gh-error-code {
    margin: 0;
    font-size: 14vmin;
}
.gh-error-description {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 4vmin;
    line-height: 1.2em;
    font-weight: 300;
    opacity: 0.6;
}
.gh-error-link {
    display: block;
    margin-top: 4vmin;
    font-size: 1.6rem;
}
.gh-error-stack {
    max-width: 600px;
    margin: 0 auto 0;
    padding: 8vmin 0;
    text-align: left;
}
.gh-error-stack-list {
    margin: 4vmin 0 0;
    font-size: 1.4rem;
}
.gh-error-stack-list > li {
    padding: 2rem 0;
    margin: 0;
    border-top: rgba(0,0,0,0.1) 1px solid;
}
.gh-error-stack-function {
    margin: 0 0 0.5em;
    font-size: 1.8rem;
    color: red;
}
/* Global Footer
/* ---------------------------------------------------------- */
.gh-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8vmin 4vmin 4vmin;
}
.gh-foot .gh-container {
    width: auto;
}
.gh-foot a {
    color: inherit;
}
.gh-foot-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gh-foot-menu .nav {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    list-style: none;
    font-size: 1.8rem;
}
.gh-foot-menu .nav li {
    margin: 0 1.5vmin;
    padding: 0;
}
.gh-foot-menu .nav a {
    display: inline-block;
    padding: 3px 0;
    text-decoration: none;
    box-shadow: 0 -1px 0 0 currentcolor inset;
}
.gh-foot-meta {
    margin: 2rem 0;
    font-size: 1.5rem;
    text-align: center;
    opacity: 0.75;
}
@media (max-width: 700px) {
    .gh-foot-menu .nav {
        font-size: 1.6rem;
    }
}
a.gh-powered,
a.gh-powered:hover {
    display: inline-flex;
    align-items: center;
    padding: 6px 9px 6px 6px;
    border: none;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: -0.3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 600;
    text-decoration: none;
    color: #383838;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.08);
    cursor: pointer;
}
a.gh-powered svg {
    height: 16px;
    width: 16px;
    margin: 0 6px 0 0;
}
.gh-pagination .pagination {
    display: flex;
    justify-content: space-between;
    margin-block: 4vmin;
}
.gh-post-comments {
    margin-block: 8vmin 4vmin;
}
*, ::before, ::after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;

}
::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;

}
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.font-heading {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  }
.container {
    width: 100%;

}
@media (min-width: 640px) {
    .container {
        max-width: 640px;

    }

}
@media (min-width: 768px) {
    .container {
        max-width: 768px;

    }

}
@media (min-width: 1024px) {
    .container {
        max-width: 1024px;

    }

}
@media (min-width: 1280px) {
    .container {
        max-width: 1280px;

    }

}
@media (min-width: 1536px) {
    .container {
        max-width: 1536px;

    }

}
.prose {
    color: var(--tw-prose-body);
    max-width: 65ch;

}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;

}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-lead);
    font-size: 1.25em;
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 1.2em;

}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-links);
    text-decoration: underline;
    font-weight: 500;

}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-bold);
    font-weight: 600;

}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;

}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;

}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;

}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;

}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-alpha;

}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-alpha;

}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-alpha;

}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-alpha;

}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-roman;

}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-roman;

}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: upper-roman;

}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: lower-roman;

}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: decimal;

}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;

}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
    font-weight: 400;
    color: var(--tw-prose-counters);

}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker {
    color: var(--tw-prose-bullets);

}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.25em;

}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-color: var(--tw-prose-hr);
    border-top-width: 1px;
    margin-top: 3em;
    margin-bottom: 3em;

}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 500;
    font-style: italic;
    color: var(--tw-prose-quotes);
    border-inline-start-width: 0.25rem;
    border-inline-start-color: var(--tw-prose-quote-borders);
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-inline-start: 1em;

}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: open-quote;

}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: close-quote;

}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;

}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 900;
    color: inherit;

}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;

}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 800;
    color: inherit;

}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;

}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 700;
    color: inherit;

}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;

}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 700;
    color: inherit;

}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;

}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    display: block;
    margin-top: 2em;
    margin-bottom: 2em;

}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;

}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-weight: 500;
    font-family: inherit;
    color: var(--tw-prose-kbd);
    box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
    font-size: 0.875em;
    border-radius: 0.3125rem;
    padding-top: 0.1875em;
    padding-inline-end: 0.375em;
    padding-bottom: 0.1875em;
    padding-inline-start: 0.375em;

}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-code);
    font-weight: 600;
    font-size: 0.875em;

}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: "`";

}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: "`";

}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;

}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;

}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.875em;

}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;
    font-size: 0.9em;

}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;

}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;

}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: inherit;

}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-pre-code);
    background-color: var(--tw-prose-pre-bg);
    overflow-x: auto;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-inline-end: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-inline-start: 1.1428571em;

}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;

}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before {
    content: none;

}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after {
    content: none;

}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    width: 100%;
    table-layout: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;

}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-th-borders);

}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-headings);
    font-weight: 600;
    vertical-align: bottom;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;

}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-td-borders);

}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-bottom-width: 0;

}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    vertical-align: baseline;

}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    border-top-width: 1px;
    border-top-color: var(--tw-prose-th-borders);

}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    vertical-align: top;

}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    text-align: start;

}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;

}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    color: var(--tw-prose-captions);
    font-size: 0.875em;
    line-height: 1.4285714;
    margin-top: 0.8571429em;

}
.prose {
    --tw-prose-body: #374151;
    --tw-prose-headings: #111827;
    --tw-prose-lead: #4b5563;
    --tw-prose-links: #111827;
    --tw-prose-bold: #111827;
    --tw-prose-counters: #6b7280;
    --tw-prose-bullets: #d1d5db;
    --tw-prose-hr: #e5e7eb;
    --tw-prose-quotes: #111827;
    --tw-prose-quote-borders: #e5e7eb;
    --tw-prose-captions: #6b7280;
    --tw-prose-kbd: #111827;
    --tw-prose-kbd-shadows: 17 24 39;
    --tw-prose-code: #111827;
    --tw-prose-pre-code: #e5e7eb;
    --tw-prose-pre-bg: #1f2937;
    --tw-prose-th-borders: #d1d5db;
    --tw-prose-td-borders: #e5e7eb;
    --tw-prose-invert-body: #d1d5db;
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: #9ca3af;
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: #9ca3af;
    --tw-prose-invert-bullets: #4b5563;
    --tw-prose-invert-hr: #374151;
    --tw-prose-invert-quotes: #f3f4f6;
    --tw-prose-invert-quote-borders: #374151;
    --tw-prose-invert-captions: #9ca3af;
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: 255 255 255;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: #d1d5db;
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: #4b5563;
    --tw-prose-invert-td-borders: #374151;
    font-size: 1rem;
    line-height: 1.75;

}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;

}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5em;
    margin-bottom: 0.5em;

}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.375em;

}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.375em;

}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.75em;
    margin-bottom: 0.75em;

}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;

}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.25em;

}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;

}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.25em;

}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.75em;
    margin-bottom: 0.75em;

}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.25em;
    margin-bottom: 1.25em;

}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.5em;
    padding-inline-start: 1.625em;

}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;

}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;

}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-top: 0.5714286em;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;

}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;

}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;

}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 2em;
    margin-bottom: 2em;

}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;

}
.prose-lg {
    font-size: 1.125rem;
    line-height: 1.7777778;

}
.prose-lg :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;

}
.prose-lg :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.2222222em;
    line-height: 1.4545455;
    margin-top: 1.0909091em;
    margin-bottom: 1.0909091em;

}
.prose-lg :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.6666667em;
    margin-bottom: 1.6666667em;
    padding-inline-start: 1em;

}
.prose-lg :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 2.6666667em;
    margin-top: 0;
    margin-bottom: 0.8333333em;
    line-height: 1;

}
.prose-lg :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.6666667em;
    margin-top: 1.8666667em;
    margin-bottom: 1.0666667em;
    line-height: 1.3333333;

}
.prose-lg :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 1.3333333em;
    margin-top: 1.6666667em;
    margin-bottom: 0.6666667em;
    line-height: 1.5;

}
.prose-lg :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 0.4444444em;
    line-height: 1.5555556;

}
.prose-lg :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;

}
.prose-lg :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;

}
.prose-lg :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;

}
.prose-lg :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;

}
.prose-lg :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
    border-radius: 0.3125rem;
    padding-top: 0.2222222em;
    padding-inline-end: 0.4444444em;
    padding-bottom: 0.2222222em;
    padding-inline-start: 0.4444444em;

}
.prose-lg :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;

}
.prose-lg :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8666667em;

}
.prose-lg :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.875em;

}
.prose-lg :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
    line-height: 1.75;
    margin-top: 2em;
    margin-bottom: 2em;
    border-radius: 0.375rem;
    padding-top: 1em;
    padding-inline-end: 1.5em;
    padding-bottom: 1em;
    padding-inline-start: 1.5em;

}
.prose-lg :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
    padding-inline-start: 1.5555556em;

}
.prose-lg :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;
    padding-inline-start: 1.5555556em;

}
.prose-lg :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.6666667em;
    margin-bottom: 0.6666667em;

}
.prose-lg :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.4444444em;

}
.prose-lg :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0.4444444em;

}
.prose-lg :where(.prose-lg > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;

}
.prose-lg :where(.prose-lg > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;

}
.prose-lg :where(.prose-lg > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.3333333em;

}
.prose-lg :where(.prose-lg > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;

}
.prose-lg :where(.prose-lg > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 1.3333333em;

}
.prose-lg :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.8888889em;
    margin-bottom: 0.8888889em;

}
.prose-lg :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;
    margin-bottom: 1.3333333em;

}
.prose-lg :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.3333333em;

}
.prose-lg :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0.6666667em;
    padding-inline-start: 1.5555556em;

}
.prose-lg :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 3.1111111em;
    margin-bottom: 3.1111111em;

}
.prose-lg :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose-lg :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose-lg :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose-lg :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose-lg :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
    line-height: 1.5;

}
.prose-lg :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0.75em;
    padding-bottom: 0.75em;
    padding-inline-start: 0.75em;

}
.prose-lg :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;

}
.prose-lg :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;

}
.prose-lg :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-top: 0.75em;
    padding-inline-end: 0.75em;
    padding-bottom: 0.75em;
    padding-inline-start: 0.75em;

}
.prose-lg :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-start: 0;

}
.prose-lg :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    padding-inline-end: 0;

}
.prose-lg :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 1.7777778em;
    margin-bottom: 1.7777778em;

}
.prose-lg :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;
    margin-bottom: 0;

}
.prose-lg :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    font-size: 0.8888889em;
    line-height: 1.5;
    margin-top: 1em;

}
.prose-lg :where(.prose-lg > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-top: 0;

}
.prose-lg :where(.prose-lg > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) {
    margin-bottom: 0;

}
.container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding-left: 1rem;
    padding-right: 1rem;

}
@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;

    }

}
@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;

    }

}
.prose iframe {
    width: 100%;
    border-radius: 0.5rem;
    max-width: none !important;
    aspect-ratio: 16/9;
    height: auto;

}
.prose figure {
    width: 100%;
    max-width: none !important;

}
.prose figure iframe {
    width: 100%;
    border-radius: 0.5rem;
    aspect-ratio: 16/9;
    height: auto;

}
/* Responsive video wrapper */
.prose iframe[src*="youtube"],
  .prose iframe[src*="vimeo"],
  .prose iframe[src*="youtu.be"] {
    aspect-ratio: 16/9;
    height: auto !important;
  }
/* TikTok embed styling */
.prose iframe[src*="tiktok"],
  .prose blockquote[cite*="tiktok"],
  .prose .tiktok-embed {
    margin: 0px;
    width: 100%;
    max-width: none;
    border-width: 0px;
    background-color: transparent;
    padding: 0px;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;

}
/* Remove any blockquote styling from social embeds */
.prose blockquote[cite*="tiktok"],
  .prose blockquote[cite*="twitter"],
  .prose blockquote[cite*="x.com"] {
    border-width: 0px;
    background-color: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    font-style: normal !important;
    background: transparent !important;
    border-left: none !important;
    padding-left: 0 !important;

}
/* Full-width media support for post content */
.post-content iframe {
    width: 100%;
    border-radius: 0.5rem;
    max-width: none !important;
    aspect-ratio: 16/9;
    height: auto;

}
/* Responsive video wrapper for posts */
.post-content iframe[src*="youtube"],
  .post-content iframe[src*="vimeo"],
  .post-content iframe[src*="youtu.be"] {
    aspect-ratio: 16/9;
    height: auto !important;
  }
/* TikTok embed styling for posts */
.post-content iframe[src*="tiktok"],
  .post-content blockquote[cite*="tiktok"],
  .post-content .tiktok-embed {
    margin: 0px;
    width: 100%;
    max-width: none;
    border-width: 0px;
    background-color: transparent;
    padding: 0px;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;

}
/* Remove any blockquote styling from social embeds in posts */
.post-content blockquote[cite*="tiktok"],
  .post-content blockquote[cite*="twitter"],
  .post-content blockquote[cite*="x.com"] {
    border-width: 0px;
    background-color: transparent;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 0px;
    font-style: normal !important;
    background: transparent !important;
    border-left: none !important;
    padding-left: 0 !important;

}
.pointer-events-none {
    pointer-events: none;

}
.visible {
    visibility: visible;

}
.collapse {
    visibility: collapse;

}
.fixed {
    position: fixed;

}
.absolute {
    position: absolute;

}
.relative {
    position: relative;

}
.sticky {
    position: sticky;

}
.inset-0 {
    inset: 0px;

}
.inset-y-0 {
    top: 0px;
    bottom: 0px;

}
.-bottom-6 {
    bottom: -1.5rem;

}
.-bottom-8 {
    bottom: -2rem;

}
.-left-10 {
    left: -2.5rem;

}
.-left-6 {
    left: -1.5rem;

}
.-left-8 {
    left: -2rem;

}
.-right-4 {
    right: -1rem;

}
.-right-6 {
    right: -1.5rem;

}
.-right-8 {
    right: -2rem;

}
.-top-10 {
    top: -2.5rem;

}
.-top-4 {
    top: -1rem;

}
.-top-6 {
    top: -1.5rem;

}
.-top-8 {
    top: -2rem;

}
.bottom-0 {
    bottom: 0px;

}
.bottom-4 {
    bottom: 1rem;

}
.left-0 {
    left: 0px;

}
.left-1\/2 {
    left: 50%;

}
.left-1\/3 {
    left: 33.333333%;

}
.left-1\/4 {
    left: 25%;

}
.left-3 {
    left: 0.75rem;

}
.left-4 {
    left: 1rem;

}
.right-0 {
    right: 0px;

}
.right-1\/3 {
    right: 33.333333%;

}
.right-1\/4 {
    right: 25%;

}
.right-2 {
    right: 0.5rem;

}
.right-4 {
    right: 1rem;

}
.top-0 {
    top: 0px;

}
.top-2 {
    top: 0.5rem;

}
.top-3 {
    top: 0.75rem;

}
.top-4 {
    top: 1rem;

}
.top-8 {
    top: 2rem;

}
.z-0 {
    z-index: 0;

}
.z-10 {
    z-index: 10;

}
.z-20 {
    z-index: 20;

}
.z-50 {
    z-index: 50;

}
.col-span-full {
    grid-column: 1 / -1;

}
.mx-auto {
    margin-left: auto;
    margin-right: auto;

}
.mb-1 {
    margin-bottom: 0.25rem;

}
.mb-10 {
    margin-bottom: 2.5rem;

}
.mb-12 {
    margin-bottom: 3rem;

}
.mb-16 {
    margin-bottom: 4rem;

}
.mb-2 {
    margin-bottom: 0.5rem;

}
.mb-3 {
    margin-bottom: 0.75rem;

}
.mb-4 {
    margin-bottom: 1rem;

}
.mb-6 {
    margin-bottom: 1.5rem;

}
.mb-8 {
    margin-bottom: 2rem;

}
.ml-2 {
    margin-left: 0.5rem;

}
.mt-1 {
    margin-top: 0.25rem;

}
.mt-12 {
    margin-top: 3rem;

}
.mt-16 {
    margin-top: 4rem;

}
.mt-2 {
    margin-top: 0.5rem;

}
.mt-4 {
    margin-top: 1rem;

}
.mt-6 {
    margin-top: 1.5rem;

}
.mt-8 {
    margin-top: 2rem;

}
.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

}
.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;

}
.block {
    display: block;

}
.inline-block {
    display: inline-block;

}
.flex {
    display: flex;

}
.inline-flex {
    display: inline-flex;

}
.table {
    display: table;

}
.grid {
    display: grid;

}
.hidden {
    display: none;

}
.aspect-\[16\/10\] {
    aspect-ratio: 16/10;

}
.aspect-\[21\/9\] {
    aspect-ratio: 21/9;

}
.aspect-square {
    aspect-ratio: 1 / 1;

}
.h-1\.5 {
    height: 0.375rem;

}
.h-10 {
    height: 2.5rem;

}
.h-12 {
    height: 3rem;

}
.h-14 {
    height: 3.5rem;

}
.h-16 {
    height: 4rem;

}
.h-2 {
    height: 0.5rem;

}
.h-20 {
    height: 5rem;

}
.h-24 {
    height: 6rem;

}
.h-3 {
    height: 0.75rem;

}
.h-32 {
    height: 8rem;

}
.h-4 {
    height: 1rem;

}
.h-40 {
    height: 10rem;

}
.h-48 {
    height: 12rem;

}
.h-5 {
    height: 1.25rem;

}
.h-6 {
    height: 1.5rem;

}
.h-64 {
    height: 16rem;

}
.h-7 {
    height: 1.75rem;

}
.h-8 {
    height: 2rem;

}
.h-96 {
    height: 24rem;

}
.h-full {
    height: 100%;

}
.min-h-\[280px\] {
    min-height: 280px;

}
.min-h-screen {
    min-height: 100vh;

}
.w-10 {
    width: 2.5rem;

}
.w-12 {
    width: 3rem;

}
.w-14 {
    width: 3.5rem;

}
.w-16 {
    width: 4rem;

}
.w-24 {
    width: 6rem;

}
.w-3 {
    width: 0.75rem;

}
.w-32 {
    width: 8rem;

}
.w-4 {
    width: 1rem;

}
.w-40 {
    width: 10rem;

}
.w-5 {
    width: 1.25rem;

}
.w-6 {
    width: 1.5rem;

}
.w-64 {
    width: 16rem;

}
.w-7 {
    width: 1.75rem;

}
.w-8 {
    width: 2rem;

}
.w-96 {
    width: 24rem;

}
.w-full {
    width: 100%;

}
.min-w-0 {
    min-width: 0px;

}
.max-w-2xl {
    max-width: 42rem;

}
.max-w-3xl {
    max-width: 48rem;

}
.max-w-4xl {
    max-width: 56rem;

}
.max-w-6xl {
    max-width: 72rem;

}
.max-w-lg {
    max-width: 32rem;

}
.max-w-md {
    max-width: 28rem;

}
.max-w-none {
    max-width: none;

}
.max-w-sm {
    max-width: 24rem;

}
.flex-1 {
    flex: 1 1 0%;

}
.flex-shrink {
    flex-shrink: 1;

}
.flex-shrink-0 {
    flex-shrink: 0;

}
.grow {
    flex-grow: 1;

}
.border-collapse {
    border-collapse: collapse;

}
.-translate-x-1\/2 {
    --tw-translate-x: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.-translate-y-1\/2 {
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.-translate-y-full {
    --tw-translate-y: -100%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.translate-x-1\/2 {
    --tw-translate-x: 50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.translate-y-1\/2 {
    --tw-translate-y: 50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.rotate-2 {
    --tw-rotate: 2deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.rotate-3 {
    --tw-rotate: 3deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.rotate-6 {
    --tw-rotate: 6deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.cursor-pointer {
    cursor: pointer;

}
.appearance-none {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;

}
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));

}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));

}
.flex-col {
    flex-direction: column;

}
.flex-wrap {
    flex-wrap: wrap;

}
.items-start {
    align-items: flex-start;

}
.items-center {
    align-items: center;

}
.justify-end {
    justify-content: flex-end;

}
.justify-center {
    justify-content: center;

}
.justify-between {
    justify-content: space-between;

}
.gap-1 {
    gap: 0.25rem;

}
.gap-12 {
    gap: 3rem;

}
.gap-2 {
    gap: 0.5rem;

}
.gap-3 {
    gap: 0.75rem;

}
.gap-4 {
    gap: 1rem;

}
.gap-6 {
    gap: 1.5rem;

}
.gap-8 {
    gap: 2rem;

}
.-space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(-1rem * var(--tw-space-x-reverse));
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse)));

}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));

}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));

}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));

}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));

}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));

}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(2rem * var(--tw-space-y-reverse));

}
.divide-y > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));

}
.overflow-hidden {
    overflow: hidden;

}
.whitespace-nowrap {
    white-space: nowrap;

}
.rounded {
    border-radius: 0.25rem;

}
.rounded-2xl {
    border-radius: 1rem;

}
.rounded-3xl {
    border-radius: 1.5rem;

}
.rounded-full {
    border-radius: 9999px;

}
.rounded-lg {
    border-radius: 0.5rem;

}
.rounded-xl {
    border-radius: 0.75rem;

}
.border {
    border-width: 1px;

}
.border-4 {
    border-width: 4px;

}
.border-8 {
    border-width: 8px;

}
.border-b {
    border-bottom-width: 1px;

}
.border-t {
    border-top-width: 1px;

}
.border-none {
    border-style: none;

}
.border-gray-100 {
    --tw-border-opacity: 1;
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));

}
.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));

}
.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));

}
.border-white {
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));

}
.border-white\/10 {
    border-color: rgb(255 255 255 / 0.1);

}
.border-white\/20 {
    border-color: rgb(255 255 255 / 0.2);

}
.bg-\[\#0A0463\] {
    --tw-bg-opacity: 1;
    background-color: rgb(10 4 99 / var(--tw-bg-opacity, 1));

}
.bg-\[\#1877F2\] {
    --tw-bg-opacity: 1;
    background-color: rgb(24 119 242 / var(--tw-bg-opacity, 1));

}
.bg-\[\#1DA1F2\] {
    --tw-bg-opacity: 1;
    background-color: rgb(29 161 242 / var(--tw-bg-opacity, 1));

}
.bg-\[\#34D399\] {
    --tw-bg-opacity: 1;
    background-color: rgb(52 211 153 / var(--tw-bg-opacity, 1));

}
.bg-\[\#58CEFF\] {
    --tw-bg-opacity: 1;
    background-color: rgb(88 206 255 / var(--tw-bg-opacity, 1));

}
.bg-\[\#58CEFF\]\/20 {
    background-color: rgb(88 206 255 / 0.2);

}
.bg-\[\#EF4444\] {
    --tw-bg-opacity: 1;
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));

}
.bg-\[\#FF3366\] {
    --tw-bg-opacity: 1;
    background-color: rgb(255 51 102 / var(--tw-bg-opacity, 1));

}
.bg-\[\#FF3366\]\/10 {
    background-color: rgb(255 51 102 / 0.1);

}
.bg-\[\#FFD23F\] {
    --tw-bg-opacity: 1;
    background-color: rgb(255 210 63 / var(--tw-bg-opacity, 1));

}
.bg-\[\#FFD23F\]\/20 {
    background-color: rgb(255 210 63 / 0.2);

}
.bg-\[\#FFFDF9\] {
    --tw-bg-opacity: 1;
    background-color: rgb(255 253 249 / var(--tw-bg-opacity, 1));

}
.bg-emerald-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(16 185 129 / var(--tw-bg-opacity, 1));

}
.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));

}
.bg-gray-200 {
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));

}
.bg-gray-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));

}
.bg-gray-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity, 1));

}
.bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));

}
.bg-transparent {
    background-color: transparent;

}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));

}
.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);

}
.bg-white\/20 {
    background-color: rgb(255 255 255 / 0.2);

}
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));

}
.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));

}
.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-stops));

}
.from-\[\#0A0463\] {
    --tw-gradient-from: #0A0463 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(10 4 99 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.from-\[\#FF3366\] {
    --tw-gradient-from: #FF3366 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(255 51 102 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.from-amber-500 {
    --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.from-black\/80 {
    --tw-gradient-from: rgb(0 0 0 / 0.8) var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.from-blue-500 {
    --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.from-gray-100 {
    --tw-gradient-from: #f3f4f6 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(243 244 246 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.from-green-500 {
    --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.from-orange-500 {
    --tw-gradient-from: #f97316 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.from-yellow-500 {
    --tw-gradient-from: #eab308 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(234 179 8 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.to-\[\#1a1c5e\] {
    --tw-gradient-to: #1a1c5e var(--tw-gradient-to-position);

}
.to-\[\#E02050\] {
    --tw-gradient-to: #E02050 var(--tw-gradient-to-position);

}
.to-\[\#FF3366\] {
    --tw-gradient-to: #FF3366 var(--tw-gradient-to-position);

}
.to-emerald-600 {
    --tw-gradient-to: #059669 var(--tw-gradient-to-position);

}
.to-gray-200 {
    --tw-gradient-to: #e5e7eb var(--tw-gradient-to-position);

}
.to-indigo-600 {
    --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);

}
.to-orange-500 {
    --tw-gradient-to: #f97316 var(--tw-gradient-to-position);

}
.to-red-500 {
    --tw-gradient-to: #ef4444 var(--tw-gradient-to-position);

}
.to-transparent {
    --tw-gradient-to: transparent var(--tw-gradient-to-position);

}
.to-yellow-600 {
    --tw-gradient-to: #ca8a04 var(--tw-gradient-to-position);

}
.fill-current {
    fill: currentColor;

}
.object-cover {
    -o-object-fit: cover;
       object-fit: cover;

}
.p-1 {
    padding: 0.25rem;

}
.p-2 {
    padding: 0.5rem;

}
.p-3 {
    padding: 0.75rem;

}
.p-4 {
    padding: 1rem;

}
.p-5 {
    padding: 1.25rem;

}
.p-6 {
    padding: 1.5rem;

}
.p-8 {
    padding: 2rem;

}
.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;

}
.px-2\.5 {
    padding-left: 0.625rem;
    padding-right: 0.625rem;

}
.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;

}
.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;

}
.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;

}
.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;

}
.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;

}
.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;

}
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;

}
.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;

}
.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;

}
.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;

}
.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;

}
.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;

}
.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;

}
.pb-20 {
    padding-bottom: 5rem;

}
.pb-4 {
    padding-bottom: 1rem;

}
.pr-2 {
    padding-right: 0.5rem;

}
.pr-8 {
    padding-right: 2rem;

}
.pt-10 {
    padding-top: 2.5rem;

}
.pt-12 {
    padding-top: 3rem;

}
.pt-2 {
    padding-top: 0.5rem;

}
.pt-4 {
    padding-top: 1rem;

}
.pt-6 {
    padding-top: 1.5rem;

}
.pt-8 {
    padding-top: 2rem;

}
.text-left {
    text-align: left;

}
.text-center {
    text-align: center;

}
.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;

}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;

}
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;

}
.text-5xl {
    font-size: 3rem;
    line-height: 1;

}
.text-base {
    font-size: 1rem;
    line-height: 1.5rem;

}
.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;

}
.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;

}
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;

}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;

}
.font-black {
    font-weight: 900;

}
.font-bold {
    font-weight: 700;

}
.font-medium {
    font-weight: 500;

}
.font-semibold {
    font-weight: 600;

}
.uppercase {
    text-transform: uppercase;

}
.capitalize {
    text-transform: capitalize;

}
.italic {
    font-style: italic;

}
.leading-relaxed {
    line-height: 1.625;

}
.leading-snug {
    line-height: 1.375;

}
.leading-tight {
    line-height: 1.25;

}
.tracking-wide {
    letter-spacing: 0.025em;

}
.tracking-wider {
    letter-spacing: 0.05em;

}
.text-\[\#0A0463\] {
    --tw-text-opacity: 1;
    color: rgb(10 4 99 / var(--tw-text-opacity, 1));

}
.text-\[\#0A0463\]\/70 {
    color: rgb(10 4 99 / 0.7);

}
.text-\[\#34D399\] {
    --tw-text-opacity: 1;
    color: rgb(52 211 153 / var(--tw-text-opacity, 1));

}
.text-\[\#58CEFF\] {
    --tw-text-opacity: 1;
    color: rgb(88 206 255 / var(--tw-text-opacity, 1));

}
.text-\[\#FF3366\] {
    --tw-text-opacity: 1;
    color: rgb(255 51 102 / var(--tw-text-opacity, 1));

}
.text-\[\#FFD23F\] {
    --tw-text-opacity: 1;
    color: rgb(255 210 63 / var(--tw-text-opacity, 1));

}
.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));

}
.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));

}
.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));

}
.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));

}
.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));

}
.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));

}
.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));

}
.text-green-600 {
    --tw-text-opacity: 1;
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));

}
.text-purple-600 {
    --tw-text-opacity: 1;
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));

}
.text-red-600 {
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));

}
.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));

}
.text-white\/60 {
    color: rgb(255 255 255 / 0.6);

}
.text-white\/70 {
    color: rgb(255 255 255 / 0.7);

}
.text-white\/80 {
    color: rgb(255 255 255 / 0.8);

}
.text-white\/90 {
    color: rgb(255 255 255 / 0.9);

}
.underline {
    text-decoration-line: underline;

}
.opacity-10 {
    opacity: 0.1;

}
.opacity-15 {
    opacity: 0.15;

}
.opacity-20 {
    opacity: 0.2;

}
.opacity-30 {
    opacity: 0.3;

}
.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.shadow-2xl {
    --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.shadow-lg {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.shadow-xl {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.ring-4 {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);

}
.ring-gray-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(243 244 246 / var(--tw-ring-opacity, 1));

}
.blur-3xl {
    --tw-blur: blur(64px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);

}
.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);

}
.backdrop-blur-sm {
    --tw-backdrop-blur: blur(4px);
    -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
    backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);

}
.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;

}
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;

}
.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;

}
.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;

}
.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;

}
.duration-200 {
    transition-duration: 200ms;

}
.duration-300 {
    transition-duration: 300ms;

}
.duration-500 {
    transition-duration: 500ms;

}
.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

}
/* Custom container class */
/* Full-width media support for page content */
/* Post content media styling (for post.hbs template) */
/* Custom fonts */
/* Main - Your styles here! Edit below
/* ---------------------------------------------------------- */
html,
.gh-viewport {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #ffffff;
}
.gh-main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}
.gh-page {
    padding: 0 4vmin;
}
.gh-article {
    padding: 8vmin 0;
}
.gh-postfeed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 4.8vmin 4vmin;
    padding: 8vmin 0;
}
.gh-postfeed > *:first-child {
    grid-column: 1 / -1;
}
.gh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.gh-head-actions a:not(.gh-button) {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 10px;
}
.gh-head-actions a svg {
    height: 1.8rem;
    fill: currentcolor;
}
.gh-head-actions a:first-child svg {
    margin-left: 20px;
}
.gh-head-actions a:last-child svg {
    height: 2rem;
}
/* Index
/* ---------------------------------------------------------- */
/* .gh-card:not(:first-child) {
    margin: 8vmin auto 0;
} */
.gh-card-link {
    display: flex;
    flex-direction: column;
}
.gh-card-image {
    width: 100%;
    /* max-height: 700px; */
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 4vmin;
    aspect-ratio: 1 / 1;
}
.gh-card-image:first-of-type {
    aspect-ratio: 16 / 9;
}
.gh-card-meta {
    display: block;
    margin: 0 0 1rem;
    font-size: 1.4rem;
    line-height: 1.2em;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}
.gh-card-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.6rem;
}
.gh-card-content p {
    margin: 1.2rem 0;
    padding: 0 3vmin;
}
.gh-card-content > strong {
    display: inline-block;
    padding: 1px 0;
    font-weight: 500;
    box-shadow: 0 -1px 0 0 inset currentColor;
    opacity: 0.75;
}
/* Page
/* ---------------------------------------------------------- */
.gh-page-head {
    margin: 0 auto;
    padding: 8vmin 0 4vmin;
    text-align: center;
}
.gh-page-image {
    margin: 4vmin 0 0 0;
}
.gh-page-head > p {
    max-width: 720px;
    margin: 0.3em auto 0;
    padding: 0 6vmin;
    font-size: 1.3em;
    line-height: 1.4em;
    opacity: 0.5;
}
@media (max-width: 700px) {
    .gh-page-head > p {
        font-size: 1.6rem;
    }
}
/* Post
/* ---------------------------------------------------------- */
.gh-header {
    padding: 0 0 8vmin 0;
    text-align: center;
}
.gh-post-meta {
    display: block;
    margin: 0 0 1rem;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}
.gh-excerpt {
    margin: 1rem 0 0 0;
}
.gh-feature-image {
    grid-column: wide-start / wide-end;
    width: 100%;
    margin: 8vmin 0 0;
}
.gh-feature-image img {
    margin-inline: auto;
    width: 100%;
}
.gh-post-footer {
    margin: 2rem 0;
}
/* Author Archive
/* ---------------------------------------------------------- */
.gh-author-image {
    height: 12vmin;
    width: 12vmin;
    margin: 0 auto 1.5em;
    border-radius: 100%;
    overflow: hidden;
    -o-object-fit: cover;
       object-fit: cover;
}
.gh-author-meta {
    margin: 2vmin 0 0 0;
    font-size: 1.2em;
}
.gh-author-links {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gh-author-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 0.75vmin;
}
.gh-author-links a + a:before {
    display: block;
    content: "";
    margin: 0 1.25vmin 0 0;
    height: 1em;
    width: 1px;
    background: rgba(0,0,0,0.3);
    transform: rotate(20deg);
}
@media (max-width: 700px) {
    .gh-author-meta {
        font-size: 1.6rem;
    }
}
.prose-headings\:font-heading :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  }
.hover\:-translate-y-2:hover {
    --tw-translate-y: -0.5rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.hover\:border-\[\#0A0463\]:hover {
    --tw-border-opacity: 1;
    border-color: rgb(10 4 99 / var(--tw-border-opacity, 1));

}
.hover\:border-\[\#FF3366\]:hover {
    --tw-border-opacity: 1;
    border-color: rgb(255 51 102 / var(--tw-border-opacity, 1));

}
.hover\:border-gray-400:hover {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));

}
.hover\:bg-\[\#0A0463\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(10 4 99 / var(--tw-bg-opacity, 1));

}
.hover\:bg-\[\#0d8bd9\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(13 139 217 / var(--tw-bg-opacity, 1));

}
.hover\:bg-\[\#166fe5\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(22 111 229 / var(--tw-bg-opacity, 1));

}
.hover\:bg-\[\#1a1c5e\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(26 28 94 / var(--tw-bg-opacity, 1));

}
.hover\:bg-\[\#E02050\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(224 32 80 / var(--tw-bg-opacity, 1));

}
.hover\:bg-\[\#e02050\]:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(224 32 80 / var(--tw-bg-opacity, 1));

}
.hover\:bg-gray-100:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));

}
.hover\:bg-gray-50:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));

}
.hover\:bg-gray-500:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));

}
.hover\:bg-white\/10:hover {
    background-color: rgb(255 255 255 / 0.1);

}
.hover\:bg-white\/20:hover {
    background-color: rgb(255 255 255 / 0.2);

}
.hover\:bg-white\/30:hover {
    background-color: rgb(255 255 255 / 0.3);

}
.hover\:bg-white\/90:hover {
    background-color: rgb(255 255 255 / 0.9);

}
.hover\:text-\[\#0A0463\]:hover {
    --tw-text-opacity: 1;
    color: rgb(10 4 99 / var(--tw-text-opacity, 1));

}
.hover\:text-\[\#E02050\]:hover {
    --tw-text-opacity: 1;
    color: rgb(224 32 80 / var(--tw-text-opacity, 1));

}
.hover\:text-\[\#FF3366\]:hover {
    --tw-text-opacity: 1;
    color: rgb(255 51 102 / var(--tw-text-opacity, 1));

}
.hover\:text-\[\#e02050\]:hover {
    --tw-text-opacity: 1;
    color: rgb(224 32 80 / var(--tw-text-opacity, 1));

}
.hover\:text-blue-800:hover {
    --tw-text-opacity: 1;
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));

}
.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));

}
.hover\:underline:hover {
    text-decoration-line: underline;

}
.hover\:shadow-lg:hover {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.hover\:shadow-md:hover {
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.hover\:shadow-xl:hover {
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
.focus\:border-transparent:focus {
    border-color: transparent;

}
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;

}
.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);

}
.focus\:ring-\[\#0A0463\]:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(10 4 99 / var(--tw-ring-opacity, 1));

}
.focus\:ring-\[\#58CEFF\]:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(88 206 255 / var(--tw-ring-opacity, 1));

}
.focus\:ring-\[\#FF3366\]:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 51 102 / var(--tw-ring-opacity, 1));

}
.group:hover .group-hover\:translate-x-1 {
    --tw-translate-x: 0.25rem;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.group:hover .group-hover\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));

}
.group:hover .group-hover\:gap-3 {
    gap: 0.75rem;

}
.group:hover .group-hover\:text-\[\#E02050\] {
    --tw-text-opacity: 1;
    color: rgb(224 32 80 / var(--tw-text-opacity, 1));

}
.group:hover .group-hover\:text-\[\#FF3366\] {
    --tw-text-opacity: 1;
    color: rgb(255 51 102 / var(--tw-text-opacity, 1));

}
.group:hover .group-hover\:ring-\[\#FF3366\] {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(255 51 102 / var(--tw-ring-opacity, 1));

}
.prose-headings\:font-black :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-weight: 900;

}
.prose-headings\:text-\[\#0A0463\] :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-text-opacity: 1;
    color: rgb(10 4 99 / var(--tw-text-opacity, 1));

}
.prose-h1\:text-4xl :is(:where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-size: 2.25rem;
    line-height: 2.5rem;

}
.prose-h2\:text-3xl :is(:where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-size: 1.875rem;
    line-height: 2.25rem;

}
.prose-h3\:text-2xl :is(:where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-size: 1.5rem;
    line-height: 2rem;

}
.prose-p\:leading-relaxed :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    line-height: 1.625;

}
.prose-p\:text-gray-700 :is(:where(p):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));

}
.prose-a\:text-\[\#FF3366\] :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-text-opacity: 1;
    color: rgb(255 51 102 / var(--tw-text-opacity, 1));

}
.prose-a\:no-underline :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    text-decoration-line: none;

}
.hover\:prose-a\:underline :is(:where(a):not(:where([class~="not-prose"],[class~="not-prose"] *))):hover {
    text-decoration-line: underline;

}
.prose-blockquote\:rounded-r-lg :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;

}
.prose-blockquote\:border-l-4 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-left-width: 4px;

}
.prose-blockquote\:border-\[\#58CEFF\] :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-border-opacity: 1;
    border-color: rgb(88 206 255 / var(--tw-border-opacity, 1));

}
.prose-blockquote\:bg-blue-50 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-bg-opacity: 1;
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));

}
.prose-blockquote\:py-4 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    padding-top: 1rem;
    padding-bottom: 1rem;

}
.prose-blockquote\:pl-6 :is(:where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    padding-left: 1.5rem;

}
.prose-strong\:font-bold :is(:where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-weight: 700;

}
.prose-strong\:text-\[\#0A0463\] :is(:where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-text-opacity: 1;
    color: rgb(10 4 99 / var(--tw-text-opacity, 1));

}
.prose-code\:rounded :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-radius: 0.25rem;

}
.prose-code\:bg-gray-100 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));

}
.prose-code\:px-2 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    padding-left: 0.5rem;
    padding-right: 0.5rem;

}
.prose-code\:py-1 :is(:where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;

}
.prose-pre\:bg-\[\#0A0463\] :is(:where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-bg-opacity: 1;
    background-color: rgb(10 4 99 / var(--tw-bg-opacity, 1));

}
.prose-pre\:text-white :is(:where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));

}
.prose-table\:my-8 :is(:where(table):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    margin-top: 2rem;
    margin-bottom: 2rem;

}
.prose-table\:w-full :is(:where(table):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    width: 100%;

}
.prose-table\:border-collapse :is(:where(table):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-collapse: collapse;

}
.prose-thead\:bg-gradient-to-r :is(:where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));

}
.prose-thead\:from-\[\#0A0463\] :is(:where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-gradient-from: #0A0463 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(10 4 99 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);

}
.prose-thead\:to-\[\#1a1c5e\] :is(:where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-gradient-to: #1a1c5e var(--tw-gradient-to-position);

}
.prose-th\:border :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-width: 1px;

}
.prose-th\:border-gray-200 :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));

}
.prose-th\:bg-gray-50 :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-bg-opacity: 1;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));

}
.prose-th\:px-6 :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;

}
.prose-th\:py-4 :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    padding-top: 1rem;
    padding-bottom: 1rem;

}
.prose-th\:text-left :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    text-align: left;

}
.prose-th\:font-bold :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    font-weight: 700;

}
.prose-th\:text-\[\#0A0463\] :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-text-opacity: 1;
    color: rgb(10 4 99 / var(--tw-text-opacity, 1));

}
.prose-th\:text-white :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));

}
.prose-th\:first\:rounded-tl-lg:first-child :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-top-left-radius: 0.5rem;

}
.prose-th\:last\:rounded-tr-lg:last-child :is(:where(th):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-top-right-radius: 0.5rem;

}
.prose-td\:border :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-width: 1px;

}
.prose-td\:border-gray-200 :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));

}
.prose-td\:px-6 :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;

}
.prose-td\:py-4 :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    padding-top: 1rem;
    padding-bottom: 1rem;

}
.prose-td\:text-gray-700 :is(:where(td):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));

}
.prose-img\:rounded-lg :is(:where(img):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    border-radius: 0.5rem;

}
.prose-img\:shadow-lg :is(:where(img):not(:where([class~="not-prose"],[class~="not-prose"] *))) {
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);

}
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;

    }
    .sm\:items-center {
        align-items: center;

    }
    .sm\:justify-between {
        justify-content: space-between;

    }
    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;

    }

}
@media (min-width: 768px) {
    .md\:block {
        display: block;

    }
    .md\:flex {
        display: flex;

    }
    .md\:inline-flex {
        display: inline-flex;

    }
    .md\:grid {
        display: grid;

    }
    .md\:hidden {
        display: none;

    }
    .md\:h-40 {
        height: 10rem;

    }
    .md\:h-96 {
        height: 24rem;

    }
    .md\:h-\[500px\] {
        height: 500px;

    }
    .md\:h-full {
        height: 100%;

    }
    .md\:w-1\/2 {
        width: 50%;

    }
    .md\:w-1\/3 {
        width: 33.333333%;

    }
    .md\:w-40 {
        width: 10rem;

    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));

    }
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));

    }
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));

    }
    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));

    }
    .md\:flex-row {
        flex-direction: row;

    }
    .md\:items-center {
        align-items: center;

    }
    .md\:justify-between {
        justify-content: space-between;

    }
    .md\:p-10 {
        padding: 2.5rem;

    }
    .md\:p-8 {
        padding: 2rem;

    }
    .md\:px-16 {
        padding-left: 4rem;
        padding-right: 4rem;

    }
    .md\:py-10 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;

    }
    .md\:py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;

    }
    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;

    }
    .md\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;

    }
    .md\:py-28 {
        padding-top: 7rem;
        padding-bottom: 7rem;

    }
    .md\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;

    }
    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;

    }
    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;

    }
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;

    }
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;

    }
    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;

    }

}
@media (min-width: 1024px) {
    .lg\:col-span-1 {
        grid-column: span 1 / span 1;

    }
    .lg\:col-span-2 {
        grid-column: span 2 / span 2;

    }
    .lg\:col-span-3 {
        grid-column: span 3 / span 3;

    }
    .lg\:w-1\/2 {
        width: 50%;

    }
    .lg\:w-1\/4 {
        width: 25%;

    }
    .lg\:w-2\/5 {
        width: 40%;

    }
    .lg\:w-3\/5 {
        width: 60%;

    }
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));

    }
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));

    }
    .lg\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));

    }
    .lg\:flex-row {
        flex-direction: row;

    }
    .lg\:px-16 {
        padding-left: 4rem;
        padding-right: 4rem;

    }
    .lg\:px-24 {
        padding-left: 6rem;
        padding-right: 6rem;

    }
    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;

    }
    .lg\:py-0 {
        padding-top: 0px;
        padding-bottom: 0px;

    }

}