@font-face {
    font-family: "PP Editorial New";
    src: url("/fonts/PPEditorialNew-Bold.woff2") format("woff2");
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "PP Object Sans";
    src: url("/fonts/PPObjectSans-Regular.woff2") format("woff2");
    font-display: swap;
}

@font-face {
    font-family: "PP Object Sans";
    src: url("/fonts/PPObjectSans-Bold.woff2") format("woff2");
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "PP Object Sans";
    src: url("/fonts/PPObjectSans-Slanted.woff2") format("woff2");
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "PP Object Sans";
    src: url("/fonts/PPObjectSans-BoldSlanted.woff2") format("woff2");
    font-style: italic;
    font-weight: bold;
    font-display: swap;
}

@font-face {
    font-family: "Ultra Hi-Gloss";
    src: url("/fonts/UltraHi-GlossFinal-UltraBoldItalic.woff2") format("woff2");
    font-display: swap;
}

/* set the font family */
body {
    font-family: "PP Object Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h1 {
    font-family: "PP Editorial New", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

/* root */
.gavide--root-main {
    margin: auto;
    grid-area: main;
    padding: 0;
    width: 100%;
    margin-top: 3rem;
    min-height: 70vh;
    max-width: 95%;
}

.gavide--root-section {
    display: grid;
    grid-template-columns: max-content 64px minmax(0, 1fr);
    grid-template-rows: 1fr min-content;
    grid-template-areas:
        "header divider main  "
        "header divider footer";
    max-width: 80rem;
    margin-inline: auto;
    align-items: flex-start;
    min-height: 100vh;
    overflow: hidden;
}


:root {
    --latex-color: #000000;
    --accent-color: #79a184;
    --logo-color: var(--accent-color);

    /* Olive Theme Palette */
    --olive-bg-main: #cbe6d1; /* Main light green background */
    --olive-bg-secondary: #dffce7; /* Lighter green for elements */
    --olive-bg-tertiary: #b8d8c0; /* Slightly darker green */
    --olive-text-main: #222222; /* Dark text for contrast */
    --olive-text-secondary: #4a4a4a; /* Muted text */
    --olive-accent-primary: #79a184; /* Main olive accent */
    --olive-accent-secondary: #62856c; /* Darker olive accent */
    --olive-accent-highlight: #9bc0a7; /* Lighter olive for highlights */

    /* RGB versions for alpha */
    --olive-accent-primary-rgb: 121, 161, 132;
    --olive-accent-secondary-rgb: 98, 133, 108;
    --olive-text-secondary-rgb: 74, 74, 74;

    /* Generic Semantic Variables */
    --font-family-sans-serif: "PP Object Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: "Fira Code", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

    --text-color: var(--olive-text-main);
    --text-color-secondary: var(--olive-text-secondary);
    --text-color-muted: var(--olive-text-secondary);
    --text-color-on-accent: #ffffff; /* White text on olive accents */

    --background-primary: var(--olive-bg-main);
    --background-secondary: var(--olive-bg-secondary);
    --background-tertiary: var(--olive-bg-tertiary);

    --border-color: var(--olive-accent-secondary);
    --border-color-soft: rgba(var(--olive-accent-secondary-rgb), 0.3);
    --border-color-muted: var(--olive-accent-secondary);
    --border-color-secondary: var(--olive-accent-secondary);

    --shadow-color: rgba(0, 0, 0, 0.1); /* Generic shadow */

    --heading-color: var(--olive-accent-secondary);

    --button-background-primary: var(--olive-accent-primary);
    --button-text-primary: var(--text-color-on-accent);
    --button-background-disabled: var(--olive-bg-tertiary);
    --button-text-disabled: var(--olive-text-secondary);

    --input-background: var(--olive-bg-secondary);
    --input-text-color: var(--olive-text-main);
    --input-border-color: var(--olive-accent-secondary);
    --input-background-disabled: var(--olive-bg-main);
    --input-text-color-disabled: var(--olive-text-secondary);

    --pre-background: var(--olive-bg-secondary);
    --pre-text-color: var(--olive-text-main);

    --accent-color-primary: var(--olive-accent-primary);
    --accent-color-primary-translucent: rgba(var(--olive-accent-primary-rgb), 0.5);
    --accent-color-primary-strong: var(--olive-accent-primary);

    --accent-color-secondary: var(--olive-accent-secondary);
    
    /* For demo graph - using Olive palette */
    --accent-color-success: #62856c; /* Darker olive as success */
    --accent-color-success-translucent: rgba(98, 133, 108, 0.5);
    --accent-color-warning: #b08a51; /* Brownish-orange for warning */
    --accent-color-warning-translucent: rgba(176, 138, 81, 0.5);
    --accent-color-danger: #a35b5b; /* Muted red for danger */
    --accent-color-danger-translucent: rgba(163, 91, 91, 0.5);
    --accent-color-danger-strong: #a35b5b;
    --accent-color-info: var(--olive-accent-highlight);
    --accent-color-info-strong: var(--olive-accent-highlight);

    --canvas-background: var(--olive-bg-secondary);

    letter-spacing: 0.03rem;
    background-color: var(--background-primary);
    color: var(--text-color);
    transition: 1s ease-out;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background-color: #dffce7;
}

::-webkit-scrollbar-track {
    background-color: #dffce7;
}

::-webkit-scrollbar-corner {
    background-color: #dffce7;
}

::-webkit-scrollbar-thumb {
    background-color: #79a184;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #62856c;
}

::-webkit-scrollbar-thumb:active {
    background-color: #4b6f5c;
}

/* ------------------ */
/*  page post (not blog) */

@media (min-width: 991.98px) {
    .gavide--pagepost {
        max-width: 70%;
    }
}

.gavide--pagepost {
    max-width: 95%;
}

.gavide--pagepost h1 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.gavide--pagepost h3 {
    font-size: 1.5rem;
    font-weight: bold;
    padding-left: 0.5rem;
    margin: 1.25rem 0px;
}

.gavide--pagepost h4 {
    font-size: 1.1rem;
    font-weight: bold;
    padding-left: 0.5rem;
    margin: 1.25rem 0px;
}

.gavide--pagepost h5 {
    font-size: 1rem;
    font-weight: bold;
    padding-left: 0.5rem;
    margin: 1.25rem 0px;
}

.gavide--pagepost a,
.gavide--blog-article ol li a {
    cursor: pointer;
    /* text-decoration: underline; */
    line-height: 1.2;
    transition: 0.25s ease-out;
}

.gavide--pagepost a {
    text-decoration: underline;
}

.gavide--pagepost p {
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.gavide--pagepost hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: #454138;
    border-color: #454138;
}

.gavide--pagepost ul {
    list-style-type: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.gavide--pagepost blockquote {
    position: relative;
    margin: 1rem 0px;
    padding: 0 1.5rem;
    box-sizing: border-box;
    font-style: italic;
}

.gavide--pagepost blockquote cite {
    display: block;
    margin-top: 0.5rem;
    text-align: right;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}

.gavide--pagepost blockquote cite::before {
    content: "— ";
}

.gavide--pagepost blockquote::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    height: 100%;
    width: 0.3rem;
    padding: 0.15rem;
    border-style: solid;
    border-color: rgb(186, 181, 161);
    border-image: none;
    border-width: 0px 0.2rem 0px 0.6rem;
}

.gavide--url-path {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.gavide--url-path li.bef::after {
    content: ">";
    margin: 0 0.5rem;
}

/* ------------------ */
/*  blog post */

.gavide--sidebar {
    display: none;
}

@media (min-width: 991.98px) {
    .gavide--sidebar {
        display: block;
    }

    .gavide--blog-article.sidebar-expanded {
        width: 75%;
    }
}

.gavide--blog-article {
    max-width: 100%;
}

.gavide--blog-article>ol {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.gavide--blog-article>ol li.bef::after {
    content: ">";
    margin: 0 0.5rem;
}

.gavide--blog-article h1 {
    font-family: "PP Editorial New", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.gavide--blog-article hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: #454138;
    border-color: #454138;
}

.gavide--blog-section {
    display: flex;
}

.gavide--sidebar {
    padding: 1rem 0 0 1rem;
    width: 25%;
}

.gavide--blog-article>figure {
    margin-top: 1rem !important;
}

.gavide--blog-article>figure,
.gavide--sidebar>figure {
    display: flex;
    flex-direction: column;
    margin: 0px 0px 1rem;
    background-color: #dffce7;
    padding: 0.5rem;
    animation: 0.5s ease-in-out slidein;
}

.gavide--blog-article>figure>figcaption,
.gavide--sidebar>figure>figcaption {
    order: -1;
    margin: -0.5rem -0.5rem 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    background-color: #79a184;
    color: #FFFFFF;
}

.gavide--blog-article>figure>ul>li,
.gavide--sidebar>figure>ul>li {
    color: rgb(69, 65, 56);
    position: relative;
    display: inline-block;
    margin: 0.25rem;
    padding: 0;
    line-height: 1;
    text-decoration: none;
    font-size: 1rem;
    background-color: transparent;
    border: 0.03rem solid #222;
    transition: 0.1s ease-in;
}

.gavide--blog-article>figure>ul>li>a,
.gavide--sidebar>figure>ul>li>a {
    display: block;
    padding: 0.25rem 0.5rem;
    color: inherit;
    text-decoration: none;
}

.gavide--blog-article>figure>ul>li:hover,
.gavide--sidebar>figure>ul>li:hover {
    color: #dffce7;
    background-color: #222;
}

.gavide--blog-tof {
    position: relative;
    flex-direction: column;
    margin: 1rem 0px;
    background-color: #dffce7;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    box-shadow: #88988b 0.2em 0.2em;
    animation: 0.5s ease-in-out slidein;
}


.gavide--blog-tof::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 0.3rem;
    padding: 0.15rem;
    border-style: solid;
    border-color: #79a184;
    border-image: none;
    border-width: 0px 0px 0px 0.6rem;
}

.gavide--blog-tof>ol {
    list-style-type: decimal;
    margin: 1rem 0px;
    padding-left: 1.5rem;
}

.gavide--blog-tof>ol>li>a {
    text-decoration: underline;
    cursor: pointer;
    line-height: 1.2;
    transition: 0.25s ease-out;
}

.gavide--blog-post h1,
.gavide--tag-section h1 {
    font-family: "PP Editorial New", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.gavide--blog-post h2,
.gavide--blog-post h3,
.gavide--blog-post h4,
.gavide--blog-post h5 {
    font-family: "PP Editorial New", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}

.gavide--blog-post h2 {
    font-size: 1.5rem;
    border-style: solid;
    border-color: rgb(69, 65, 56);
    border-image: none;
    border-width: 0px 0px 0.1rem 0px;
    padding: 0.1rem 0px;
    margin: 1rem 0;
}

.gavide--blog-post h3 {
    font-size: 1.25rem;
    border-style: solid;
    border-color: rgb(69, 65, 56);
    border-image: none;
    border-width: 0.1rem 0px;
    padding: 0.1rem 1rem;
    margin: 1rem 0;
}

.gavide--blog-post h4 {
    font-size: 1.1rem;
    border-style: solid;
    border-color: rgb(69, 65, 56);
    border-image: none;
    border-width: 0.1rem 0px;
    padding: 0.1rem 1rem;
    margin: 1rem 0;
}

.gavide--blog-post h5 {
    font-size: 1rem;
    border-style: solid;
    border-color: rgb(69, 65, 56);
    border-image: none;
    border-width: 0.1rem 0px;
    padding: 0.1rem 1rem;
    margin: 1rem 0;
}

.gavide--blog-post a {
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid;
    line-height: 1.2;
    word-break: break-word;
}

.gavide--blog-post a:hover {
    border-bottom: 1.5px solid;
}

.gavide--blog-post p {
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.2;
    word-break: break-word;
}

.gavide--blog-post hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: #454138;
    border-color: #454138;
}

.gavide--blog-post ul {
    list-style-type: disc;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.gavide--blog-post blockquote {
    position: relative;
    margin: 1rem 0px;
    padding: 0 1.5rem;
    box-sizing: border-box;
    font-style: italic;
}

.gavide--blog-post blockquote cite {
    display: block;
    margin-top: 0.5rem;
    text-align: right;
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-color-secondary);
}

.gavide--blog-post blockquote cite::before {
    content: "— ";
}

.gavide--blog-post blockquote::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    height: 100%;
    width: 0.3rem;
    padding: 0.15rem;
    border-style: solid;
    border-color: #79a184;
    border-image: none;
    border-width: 0px 0px 0px 0.6rem;
}

/* ------------------ */
/* post preview */

.gavide--post-preview {
    text-decoration: none;
}

.gavide--post-preview h2 {
    margin: 0 0;
    text-decoration: underline;
    text-decoration-thickness: 0.1rem;
}

.gavide--post-preview h2:hover {
    text-decoration-thickness: 0.2rem;
    text-decoration-style: solid;
    text-underline-offset: 0.2rem;
}

.gavide--post-preview p {
    font-size: 1.1rem;
    margin-top: 0px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

/* .gavide--post-preview>* {
    text-decoration: none !important;
} */

.gavide--post-preview ul {
    padding: 0;
    margin: 0.5rem 0;
}

.gavide--post-preview {
    text-decoration: none;
    display: block;
    position: relative;
    flex-direction: column;
    margin: 2rem 0px;
    /* background-color: #dffce7; */
    /* box-shadow: #88988b 0.2em 0.2em; */
    animation: 0.5s ease-in-out slidein;
}

.gavide--post-preview h2 {
    /*PP Object Sans bold sans serif*/
    font-family: "PP Object Sans", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: bold;
    font-size: 2rem;
    font-size: 1.5rem;
}

.gavide--post-preview p time {
    font-size: 1.1rem;
    margin-top: 1rem;
    line-height: 1.2;
}

.gavide--post-preview ul li {
    color: rgb(69, 65, 56);
    position: relative;
    display: inline-block;
    margin: 0.25rem;
    padding: 0;
    line-height: 1;
    text-decoration: none;
    font-size: 1rem;
    color: #222;
    border: 0.03rem solid #222;
    transition: 0.1s ease-in;
}

.gavide--post-preview ul li a {
    display: block;
    padding: 0.25rem 0.5rem;
    color: inherit;
    text-decoration: none;
}

.gavide--post-preview ul li:hover {
    color: #dffce7;
    background-color: #222;
}

/* ------------------ */
/* nav */

.gavide--header {
    grid-area: header;
    height: 100%;
}

.gavide--header menu {
    width: 100%;
    padding-right: 1.25rem;
}

.gavide--nav-title {
    color: var(--text-color);
    display: block;
    font-family: var(--font-family-sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin: 1rem 0 0.45rem;
    text-transform: uppercase;
}

/* ------------------ */
/* nav links */

.gavide--root-bg-1 {
    display: none;
}

.gavide--root-bg-2 {
    display: none;
}

.gavide--nav-link-li {
    list-style: none;
    margin: 0;
}

.gavide--nav-link {
    display: block;
    width: 100%;
}

.gavide--nav-link:hover {
    background-color: rgba(var(--olive-accent-primary-rgb), 0.18);
    text-decoration-line: none;
}

.gavide--header-extra {
    width: 64px;
    grid-area: divider;
    height: 100%;
    background-position: 4rem 4rem;
    background-size: 64px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='18' viewBox='0 0 100 18'%3E%3Cpath fill='%23222222' fill-opacity='0.4' d='M61.82 18c3.47-1.45 6.86-3.78 11.3-7.34C78 6.76 80.34 5.1 83.87 3.42 88.56 1.16 93.75 0 100 0v6.16C98.76 6.05 97.43 6 96 6c-9.59 0-14.23 2.23-23.13 9.34-1.28 1.03-2.39 1.9-3.4 2.66h-7.65zm-23.64 0H22.52c-1-.76-2.1-1.63-3.4-2.66C11.57 9.3 7.08 6.78 0 6.16V0c6.25 0 11.44 1.16 16.14 3.42 3.53 1.7 5.87 3.35 10.73 7.24 4.45 3.56 7.84 5.9 11.31 7.34zM61.82 0h7.66a39.57 39.57 0 0 1-7.34 4.58C57.44 6.84 52.25 8 46 8S34.56 6.84 29.86 4.58A39.57 39.57 0 0 1 22.52 0h15.66C41.65 1.44 45.21 2 50 2c4.8 0 8.35-.56 11.82-2z'%3E%3C/path%3E%3C/svg%3E");
}
.gavide--nav-link span {
    padding: 0.45rem 0.65rem;
    text-decoration-line: none;
    border-bottom: 0;
    border-radius: 0.35rem;
    display: block;
}

.gavide--navigation-button {
    display: none;
}

.gavide--nav-title.sub {
    border-bottom: 1px dotted currentColor;
    font-family: "PP Editorial New", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    padding-right: 0;
    text-transform: none;
}

@media screen and (max-width: 1300px) {
    
    .gavide--root-main {
        margin-top: 0;
        max-width: 100%;
        padding: 0 1rem;
    }

    .gavide--navigation-button {
        display: block;
    }

    .gavide--root-section {
        display: flex;
    }

    .gavide--header menu {
        display: block !important;
        position: absolute;
        top: -90px;
        left: 0;
        width: 100%;
        height: 0vh;
        background-color: #dffce7;
        z-index: -5;
        padding: 2rem;
        overflow: hidden;
        transition: 0.5s;
    }

    .gavide--header.show menu {
        height: 100vh;
        top: 0px;
        z-index: 999;
    }

    .gavide--header-extra {
        display: none;
    }
    
}


/* ------------------ */
/* footer */

.gavide--footer {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    border-top: 0;
}

.gavide--footer section div {
    margin: 0 auto;
    padding: 0.85rem 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.gavide--footer section {
    position: relative;
    background-color: var(--background-secondary);
    border: 1px solid rgba(var(--olive-accent-secondary-rgb), 0.28);
    border-radius: 1rem;
    box-shadow: none;
    overflow: hidden;
}

.gavide--footer-copyright-text,
.gavide--footer-links {
    margin: 0;
    text-align: center;
}

.gavide--footer section::before {
    display: none;
}

/* ------------------ */
/* Tags */

.gavide--tags li {
    color: rgb(69, 65, 56);
    position: relative;
    display: inline-block;
    margin: 0.25rem;
    padding: 0;
    line-height: 1;
    text-decoration: none;
    font-size: 1rem;
    background-color: rgb(186, 181, 161);
    border-left: 0.25rem solid rgb(69, 65, 56);
}

.gavide--tags li a {
    display: block;
    padding: 0.25rem 0.5rem;
    text-decoration: none !important;
    color: inherit;
}

.gavide--tags {
    padding: 0;
    margin: 0;
}

/* ------------------ */
/* Selector (for language and search) */

.gavide--search-input {
    padding: 0.5rem;
    font-size: 1em;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border-radius: 0;
    background-color: #dffce7;
    color: inherit;
    font-family: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
}

#lang-show {
    display: none;
}

.gavide--selector ul {
    display: none;
}

#lang-show:checked+ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 2rem;
    background-color: #dffce7;
    z-index: 999;
    list-style-type: none;
    margin: 0;
    padding: 1rem;
    gap: 0.5rem;
    border: 1px solid #79a184;
}

.gavide--selector {
    display: flex;
    margin-top: 1rem;
    position: relative;
}

label[for="lang-show"] {
    display: inline-block;
    padding: 0.5rem;
    font-size: 1em;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    border-radius: 0;
    background-color: #79a184;
    color: #FFFFFF;
    font-family: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
    cursor: pointer;
}



.gavide--loading {
    background-color: #cbe6d1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: 1s ease-out;
}

.gavide--loading-spinner {
    border: 0.5rem solid #f3f3f3;
    border-top: 0.5rem solid #454138;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* KaTeX styling */
.latex-container .katex,
.katex-math .katex,
.katex {
    color: var(--latex-color) !important;
    font-size: 1.1em;
}

.logo-skeleton {
    width: 8em;
    height: 8em;
    transition: transform .5s ease-in-out;
    /* clip-path: circle(50%); */
    will-change: transform;
}
.logo-skeleton:hover {
    transform: rotate(360deg);
}

.social-icon {
    fill: var(--logo-color, white);
    display: inline-block;
    width: 2rem;
    height: 2rem;
    transition: filter 0.25s ease-out, transform 0.25s ease-out;
}
.social-icon:hover {
    filter: brightness(0.5);
    transform: scale(1.2);
}
