@font-face {
    font-family: 'Inter var';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('https://rsms.me/inter/font-files/InterVariable.woff2?v=4.0') format('woff2');
}
@font-face {
    font-family: 'Inter --nav-bgvar';
    font-style: italic;
    font-weight: 100 900;
    font-display: swap;
    src: url('https://rsms.me/inter/font-files/InterVariable-Italic.woff2?v=4.0') format('woff2');
}
:root {
    --font-sans-serif: 'Inter Var', -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
    font-family: var(--font-sans-serif);
    font-feature-settings: "cv11", "cv10", "cv05", "ss03";
    font-feature-settings: 'liga' 1, 'calt' 1;
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    --blue: #6495ed;
    --white: #ffffff;
    --black: #000;
    --highlight: #ff9;
    --Gray28: #474747;
    --offwhite: #EEEEEE;
    --darkbg: #18191A;
    --darkbgshade: #242526;
    --darktxtcolour: #efefef;
    --accent-colour: #6495ed;

    /* Light mode colors */
    --bg-color: #ffffff;
    --text-color: var(--Gray28);
    --nav-bg: var(--bg-color);
    --nav-text: rgba(71, 71, 71, 0.8);
    --nav-text-hover: var(--Gray28);
    --nav-bg-hover: #f3f3f3;
    --nav-border: #efefef;
    --nav-active-bg: #f3f3f3;
    --hamburger-color: var(--Gray28);
    --overlay-bg: rgba(0, 0, 0, 0.5);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: var(--darkbg);
        --text-color: var(--darktxtcolour);
        --nav-bg: var(--bg-color);
        --nav-text: rgba(239, 239, 239, 0.8);
        --nav-text-hover: var(--white);
        --nav-bg-hover: rgba(255, 255, 255, 0.1);
        --nav-border: #333;
        --nav-active-bg: rgba(255, 255, 255, 0.15);
        --hamburger-color: var(--darktxtcolour);
        --overlay-bg: rgba(0, 0, 0, 0.7);
        --accent-colour: #6495ed;
    }

    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }

    a {
        color: var(--nav-text-hover);
    }

    header.module.text .inner-wrap .navigation {
        background-color: var(--nav-bg);
    }

    header.module.text .inner-wrap .navigation ul li {
        border-color: var(--nav-border);
    }

    header.module.text .inner-wrap .navigation ul li a {
        color: var(--nav-text);
    }

    header.module.text .inner-wrap .navigation ul li a:hover {
        color: var(--nav-text-hover);
        background-color: var(--nav-bg-hover);
    }

    header.module.text .inner-wrap .navigation ul li.active a {
        background-color: var(--nav-active-bg);
    }
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
    line-height: 1;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
nav ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
ins {
    background-color: var(--highlight);
    color: var(--black);
    text-decoration: none;
}
mark {
    background-color: var(--highlight);
    color: var(--black);
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #e0e0e0;
    margin: 2rem auto;
    padding: 0;
    max-width: 560px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
}
input, select {
    vertical-align: middle;
}
html {
    overflow-x: hidden;
}
body {
    margin: 0 auto;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s linear, color 0.3s linear;
}

body.menu-open {
    overflow: hidden;
}

/* Overlay when menu is open */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-bg);
    z-index: 9998; /* below nav, above content */
    pointer-events: none;

}
::-moz-selection {
    background-color: var(--Gray28);
    color: #ffffff;
    text-shadow: none;
}
::selection {
    background-color: var(--Gray28);
    color: #ffffff;
    text-shadow: none;
}
a {
    text-decoration: none;
    color: #000000;
    transition: all 0.3 ease;
}
a:not([href]) {
    border-bottom: 0;
}
.module.text h1 a, .module.text h2 a, .module.text h3 a, .module.text h4 a, .module.text p a, .module.carousel h1 a, .module.carousel h2 a, .module.carousel h3 a, .module.carousel h4 a, .module.carousel p a {
    display: inline-block;
    border-bottom: 0;
    position: relative;
    cursor: pointer;
    background-image: linear-gradient(to right, var(--Gray28) 0%, var(--Gray28) 60%, transparent 60%);
    background-repeat: repeat-x;
    background-size: 5px 1px;
    background-position: 1px bottom;
    transition: background-position 0.6s;
}
.module.text h1 a:hover, .module.text h2 a:hover, .module.text h3 a:hover, .module.text h4 a:hover, .module.text p a:hover, .module.carousel h1 a:hover, .module.carousel h2 a:hover, .module.carousel h3 a:hover, .module.carousel h4 a:hover, .module.carousel p a:hover {
    background-image: linear-gradient(to right, #000000 0%, #000000 60%, transparent 60%);
    background-position: 15px bottom;
}
.module.text h1 a[href^="#"], .module.text h2 a[href^="#"], .module.text h3 a[href^="#"], .module.text h4 a[href^="#"], .module.text p a[href^="#"], .module.carousel h1 a[href^="#"], .module.carousel h2 a[href^="#"], .module.carousel h3 a[href^="#"], .module.carousel h4 a[href^="#"], .module.carousel p a[href^="#"] {
    margin-right: 12px;
}
.module.text h1 a[href^="#"] span.icon, .module.text h2 a[href^="#"] span.icon, .module.text h3 a[href^="#"] span.icon, .module.text h4 a[href^="#"] span.icon, .module.text p a[href^="#"] span.icon, .module.carousel h1 a[href^="#"] span.icon, .module.carousel h2 a[href^="#"] span.icon, .module.carousel h3 a[href^="#"] span.icon, .module.carousel h4 a[href^="#"] span.icon, .module.carousel p a[href^="#"] span.icon {
    width: 18px;
    height: 18px;
    position: absolute;
    right: -15px;
    top: -4px;
    color: #000000;
    text-align: center;
    font-size: 11px;
    line-height: 18px;
    transition: all 0.15s linear;
}
.module.text h1 span.highlight, .module.text h2 span.highlight, .module.text h3 span.highlight, .module.text h4 span.highlight, .module.text p span.highlight, .module.carousel h1 span.highlight, .module.carousel h2 span.highlight, .module.carousel h3 span.highlight, .module.carousel h4 span.highlight, .module.carousel p span.highlight {
    position: relative;
}
.module.text h1 span.highlight:before, .module.text h2 span.highlight:before, .module.text h3 span.highlight:before, .module.text h4 span.highlight:before, .module.text p span.highlight:before, .module.carousel h1 span.highlight:before, .module.carousel h2 span.highlight:before, .module.carousel h3 span.highlight:before, .module.carousel h4 span.highlight:before, .module.carousel p span.highlight:before {
    content: "";
    width: calc(100% + 2px);
    height: 19px;
    background-color: #FAF0BB;
    position: absolute;
    bottom: 0;
    left: -1px;
    z-index: -1;
    transition: all 0.07s ease-in;
}
img, svg, video {
    width: 100%;
    height: auto;
}
input, input:focus {
    outline: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
}
hr {
    content: "";
    width: 100%;
    max-width: 560px;
    margin: 30px auto;
    height: 1px;
    background-color: #cccccc;
    border: 0;
    display: block;
}
@media screen and (max-width: 500px) {
    hr {
        width: 100%;
        margin: 60px auto;
    }
}
@media (prefers-color-scheme: dark) {
    hr {
        border-top: 1px solid #444444 !important;
        opacity: 0.3;
    }
}

/* Hide hamburger menu on screens wider than 768px */
@media screen and (min-width: 769px) {
    .hamburger-menu {
        display: none !important;
    }
}

/* Show hamburger menu on mobile */
@media screen and (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }
}


.button {
    border: 1px solid #efefef;
    border-radius: 4px;
    padding: 5px 13px;
    font-size: 15px;
    margin: 5px 20px 15px 0;
    float: left;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.15s linear;
}
.button .icon {
    max-width: 20px;
    margin-right: 3px;
    display: inline-block;
    transition: all 0.15s linear;
}
.button .copy {
    position: relative;
    overflow-x: hidden;
}
.button .copy .copy-content {
    display: none;
}
.button .copy:before {
    content: "Copied";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 120%;
    text-align: center;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    transition: all 0.2s ease;
    transition-delay: 0s;
    z-index: 1;
    opacity: 0;
}
.button .copy:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #ffffff;
    transition: all 0.2s linear;
    transition-delay: 0.6;
    opacity: 0;
}
.button .copy.active:before {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 0.2s;
}
.button .copy.active:after {
    opacity: 1;
}

button.button.accent {
    all: unset;
    display: inline-block;
    border: 1px solid #efefef;
    border-radius: 4px;
    padding: 5px 13px;
    font-size: 15px;
    margin: 5px 20px 15px 0;
    font-family: var(--font-sans-serif);
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s linear;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

button.button.accent:hover {
    background-color: #474747;
}

@-webkit-keyframes wobbleVertical {
    16.65% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    33.3% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
    49.95% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    66.6% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes wobbleVertical {
    16.65% {
        -webkit-transform: translateY(4px);
        transform: translateY(4px);
    }
    33.3% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
    49.95% {
        -webkit-transform: translateY(2px);
        transform: translateY(2px);
    }
    66.6% {
        -webkit-transform: translateY(-1px);
        transform: translateY(-1px);
    }
    83.25% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@-webkit-keyframes wobbleHorizontal {
    16.65% {
        -webkit-transform: translateX(4px) rotate(10deg) scale(1.1);
        transform: translateX(4px) rotate(10deg) scale(1.1);
    }
    33.3% {
        -webkit-transform: translateX(-3px) rotate(-10deg) scale(1.05);
        transform: translateX(-3px) rotate(-10deg) scale(1.05);
    }
    49.95% {
        -webkit-transform: translateX(2px) rotate(5deg) scale(1.02);
        transform: translateX(2px) rotate(5deg) scale(1.02);
    }
    66.6% {
        -webkit-transform: translateX(-1px) rotate(-5deg) scale(0.99);
        transform: translateX(-1px) rotate(-5deg) scale(0.99);
    }
    83.25% {
        -webkit-transform: translateX(1px) rotate(1deg) scale(1.01);
        transform: translateX(1px) rotate(1deg) scale(1.01);
    }
    100% {
        -webkit-transform: translateX(0) rotate(0deg) scale(1);
        transform: translateX(0) rotate(0deg) scale(1);
    }
}
@keyframes wobbleHorizontal {
    16.65% {
        -webkit-transform: translateX(4px) rotate(10deg) scale(1.1);
        transform: translateX(4px) rotate(10deg) scale(1.1);
    }
    33.3% {
        -webkit-transform: translateX(-3px) rotate(-10deg) scale(1.05);
        transform: translateX(-3px) rotate(-10deg) scale(1.05);
    }
    49.95% {
        -webkit-transform: translateX(2px) rotate(5deg) scale(1.02);
        transform: translateX(2px) rotate(5deg) scale(1.02);
    }
    66.6% {
        -webkit-transform: translateX(-1px) rotate(-5deg) scale(0.99);
        transform: translateX(-1px) rotate(-5deg) scale(0.99);
    }
    83.25% {
        -webkit-transform: translateX(1px) rotate(1deg) scale(1.01);
        transform: translateX(1px) rotate(1deg) scale(1.01);
    }
    100% {
        -webkit-transform: translateX(0) rotate(0deg) scale(1);
        transform: translateX(0) rotate(0deg) scale(1);
    }
}
.button:hover, .button:focus {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}
.button:hover span, .button:focus span {
    -webkit-animation-name: wobbleHorizontal;
    animation-name: wobbleHorizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.button:active {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.button:active span {
    -webkit-animation-name: wobbleHorizontal;
    animation-name: wobbleHorizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
.wrapper {
    padding-top: 110px;
}
@media screen and (max-width: 500px) {
    .wrapper {
        padding-top: 75px;
    }
}
input::-webkit-input-placeholder {
    font-family: var(--font-sans-serif);
    font-size: 17px;
    line-height: 150%;
    font-weight: normal;
}
input::-moz-placeholder {
    font-family: var(--font-sans-serif);
    font-size: 17px;
    line-height: 150%;
    font-weight: normal;
}
body, input, input::placeholder {
    font-family: var(--font-sans-serif);
    font-size: 17px;
    line-height: 150%;
    font-weight: normal;
}
h1, h2, h3 {
    font-weight: normal;
}
strong, b {
    font-weight: normal;
    color: #000000;
}
.h1 {
    font-family: var(--font-sans-serif);
    font-size: 24px;
    font-weight: 400 !important;
    line-height: 140%;
    font-weight: normal;
    margin-bottom: 14px;
    color: #000000;
}
.h2 {
    font-family: var(--font-sans-serif);
    font-size: 18px;
    line-height: 140%;
    font-weight: 300 !important;
    margin-bottom: 14px;
    position: relative;
    color: #000000;
}
.h3 {
    font-family: var(--font-sans-serif);
    font-size: 16px;
    line-height: 150%;
    font-weight: normal;
    margin-bottom: 14px;
    color: #000000;
}
.module.text {
    margin: 75px 0;
}
@media screen and (max-width: 500px) {
    .module.text {
        margin: 35px 0;
    }
}
.module.text .inner-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
}
.module.text .inner-wrap:after {
    content: "";
    clear: both;
    display: block;
}
.module.text .inner-wrap h1 {
    font-family: var(--font-sans-serif);
    font-size: 27px;
    line-height: 150%;
    font-weight: normal;
}
.module.text .inner-wrap h1 br {
    display: none;
}
@media screen and (max-width: 500px) {
    .module.text .inner-wrap h1 br {
        display: inherit;
    }
}
.module.text .inner-wrap h1, .module.text .inner-wrap h2, .module.text .inner-wrap h3, .module.text .inner-wrap h4, .module.text .inner-wrap p {
    margin-bottom: 20px;
}
.module.text .inner-wrap ul {
    list-style: none;
}
.module.text .inner-wrap .icon-wrap {
    height: 100%;
    position: absolute;
    top: -1px;
    left: -35px;
}
.module.text .inner-wrap .icon-wrap .icon {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #efefef;
    border-radius: 50%;
    text-align: center;
    font-size: 14px;
    line-height: 30px;
    transition: all 0.15s linear;
}
.module.text .inner-wrap .icon-wrap a.icon:hover {
    background-color: #F8F8F8;
}
.module.text .inner-wrap .columns:after {
    content: "";
    clear: both;
    display: block;
}
.module.text .inner-wrap .columns .column {
    width: 50%;
    display: inline-block;
    float: left;
    margin-right: 10px;
}
@media screen and (max-width: 500px) {
    .module.text .inner-wrap .columns .column {
        width: 100%;
    }
}
.module.text .inner-wrap .columns .column[data-size="2-4"] {
    width: calc(50% - 10px);
}
@media screen and (max-width: 500px) {
    .module.text .inner-wrap .columns .column[data-size="2-4"] {
        width: 100%;
    }
}
.module.text .inner-wrap .columns .column[data-size="1-4"] {
    width: calc(25% - 10px);
}
@media screen and (max-width: 500px) {
    .module.text .inner-wrap .columns .column[data-size="1-4"] {
        width: calc(50% - 10px);
    }
    .module.text .inner-wrap .columns .column[data-size="1-4"] ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        margin-bottom: 40px;
    }
}
.module.text .inner-wrap .columns .column[data-size="2-3"] {
    width: 66.666%;
    margin-right: 0;
}
@media screen and (max-width: 500px) {
    .module.text .inner-wrap .columns .column[data-size="2-3"] {
        width: 100%;
    }
}
.module.text .inner-wrap .columns .column[data-size="1-3"] {
    width: 33.333%;
    margin-right: 0;
}
@media screen and (max-width: 500px) {
    .module.text .inner-wrap .columns .column[data-size="1-3"] {
        width: 50%;
    }
    .module.text .inner-wrap .columns .column[data-size="1-3"]:last-child {
        margin-left: 50%;
    }
    .module.text .inner-wrap .columns .column[data-size="1-3"]:last-child .title {
        display: none;
    }
}
.module.text .inner-wrap .columns .column ul li {
    margin-bottom: 8px;
}
.module.text .inner-wrap .columns .column ul li a {
    border: 0;
}
header.module.text {
    width: 100%;
    padding: 40px 0 0 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}
@media screen and (max-width: 500px) {
    header.module.text {
        padding: 28px 0 10px 0;
    }
}
header.module.text .inner-wrap {
    display: flex;
    z-index: 10;
}
header.module.text .inner-wrap .left {
    margin-right: 10px;
}
@media screen and (max-width: 500px) {
    header.module.text .inner-wrap .left {
        margin-right: 15px;
    }
}
header.module.text .inner-wrap .left .logo {
    border: 0;
}
header.module.text .inner-wrap .left .logo .avatar {
    width: 38px;
    height: 38px;
    margin-top: -4px;
    border-radius: 50%;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
@-webkit-keyframes boing {
    16.65% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    49.95% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    83.25% {
        -webkit-transform: scale(1.01);
        transform: scale(1.01);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes boing {
    16.65% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    49.95% {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
    }
    83.25% {
        -webkit-transform: scale(1.01);
        transform: scale(1.01);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
header.module.text .inner-wrap .left .logo span {
    color: rgba(71, 71, 71, 0.8);
    margin-left: 10px;
    transition: all 0.2s ease;
}
@media screen and (max-width: 500px) {
    header.module.text .inner-wrap .left .logo span {
        display: none;
    }
}
header.module.text .inner-wrap .left .logo:hover span, header.module.text .inner-wrap .left .logo:focus span, header.module.text .inner-wrap .left .logo:active span {
    color: var(--Gray28);
}
header.module.text .inner-wrap .left .logo:hover .avatar, header.module.text .inner-wrap .left .logo:focus .avatar, header.module.text .inner-wrap .left .logo:active .avatar {
    -webkit-animation-name: boing;
    animation-name: boing;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
header.module.text .inner-wrap .right {
    margin-left: auto;
    margin-right: -12px;
    position: relative;
}

/* Hamburger Menu Button */
header.module.text .inner-wrap .right .hamburger-menu {
    display: block; /* Always visible for all devices */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000; /* always above */
    position: relative;
    transition: all 0.3s ease;
    outline: none; /* Remove outline on focus */
    -webkit-tap-highlight-color: transparent; /* Prevent iOS tap highlight */
    touch-action: manipulation; /* Improve touch handling on iOS */
    -webkit-appearance: none; /* Fix for iOS button styling */
    pointer-events: auto; /* Ensure clicks are registered */
}

header.module.text .inner-wrap .right .hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: var(--hamburger-color);
    border-radius: 3px;
    transform-origin: center;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, background-color 0.3s;
}

header.module.text .inner-wrap .right .hamburger-menu span:last-child {
    margin-bottom: 0;
}

header.module.text .inner-wrap .right .hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

header.module.text .inner-wrap .right .hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

header.module.text .inner-wrap .right .hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

header.module.text .inner-wrap .right .hamburger-menu:hover span {
    background-color: var(--nav-text-hover, #666);
}

/* Hamburger menu is now always visible for all devices */

header.module.text .inner-wrap .navigation {
    z-index: 9999; /* ensure it's above backdrop */
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 768px) {
    header.module.text .inner-wrap .navigation {
        z-index: 9999; /* ensure it's above backdrop */
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        width: 100%;
        height: 100vh;
        height: -webkit-fill-available; /* iOS viewport height fix */
        background-color: var(--nav-bg, rgba(255, 255, 255, 0.98));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 80px 20px 20px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: none;
        visibility: hidden;
        opacity: 0; /* Add opacity for smoother transitions */
    }

    header.module.text .inner-wrap .navigation.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1; /* Show menu with opacity transition */
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }
}

header.module.text .inner-wrap .navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    header.module.text .inner-wrap .navigation ul {
        flex-direction: column;
        width: 60%;
        justify-content: center;
        text-align: center;
    }
}

header.module.text .inner-wrap .navigation ul li {
    position: relative;
    margin: 3px 0 5px 8px;
    transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
    header.module.text .inner-wrap .navigation ul li {
        margin: 0;
        width: 80%;
        text-align: center;
        border-bottom: 1px solid var(--nav-border, rgba(0, 0, 0, 0.05));
        padding: 5px 0;
    }

    header.module.text .inner-wrap .navigation ul li a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 1.25rem;
        color: var(--nav-text, #333);
        border-radius: 8px;
        transition: all 0.2s ease;
        margin: 5px 0;
    }

    header.module.text .inner-wrap .navigation ul li a:hover {
        color: var(--nav-text-hover, #000);
        background-color: var(--nav-bg-hover, rgba(0, 0, 0, 0.05));
        transform: translateY(-2px);
    }

    header.module.text .inner-wrap .navigation ul li.active a {
        background-color: var(--nav-active-bg, rgba(0, 0, 0, 0.08));
        color: var(--nav-text-hover, #000);
        font-weight: 500;
    }
}

@media screen and (max-width: 500px) {
    header.module.text .inner-wrap .navigation ul li {
        margin: 0;
    }
}
header.module.text .inner-wrap .navigation ul li a {
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 15px;
    border: 1px solid transparent;
    color: rgba(71, 71, 71, 0.8);
    transition: all 0.15s linear;
}
header.module.text .inner-wrap .navigation ul li a:hover {
    color: var(--Gray28);
    background-color: #f3f3f3;
    border: 1px solid #efefef;
}
header.module.text .inner-wrap .navigation ul li.active a {
    background-color: #f3f3f3;
}
.carousel {
    width: 100%;
    position: relative;
    margin-top: 40px;
}
.carousel .slick-list .slick-slide {
    width: 100%;
    max-width: 560px;
    margin: 0 60px;
    transition: all 0.5s ease;
}
@media screen and (max-width: 500px) {
    .carousel .slick-list .slick-slide {
        width: calc(100vw - 45px);
        margin: 0;
    }
}
.carousel .slick-list .slick-slide .slide .media {
    width: 100%;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    border: 1px solid #efefef;
}
@media screen and (max-width: 500px) {
    .carousel .slick-list .slick-slide .slide .media {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-bottom: 15px;
    }
}
.carousel .slick-list .slick-slide .slide .media img, .carousel .slick-list .slick-slide .slide .media video {
    float: left;
}
.carousel .slick-list .slick-slide .slide .text {
    padding: 0;
}
@media screen and (max-width: 500px) {
    .carousel .slick-list .slick-slide .slide .text {
        padding: 0 25px;
    }
}
.carousel .slick-list .slick-slide .slide .text .caption {
    width: calc(100% - 80px);
    display: inline-block;
    float: left;
    margin-top: 20px;
}
@media screen and (max-width: 500px) {
    .carousel .slick-list .slick-slide .slide .text .caption {
        width: 100%;
        float: right;
        margin-top: 0;
    }
}
.carousel .slick-list .slick-slide .slide .text .slide-count {
    width: 80px;
    display: inline-block;
    float: right;
    margin-top: 20px;
    text-align: right;
    opacity: 0.3;
}
@media screen and (max-width: 500px) {
    .carousel .slick-list .slick-slide .slide .text .slide-count {
        float: left;
        text-align: left;
        margin-top: 0;
        margin-bottom: 10px;
    }
}
.carousel .slick-list .slick-slide:not(.slick-current) {
    -webkit-filter: grayscale(0.5);
    filter: grayscale(0.5);
}
@media screen and (max-width: 500px) {
    .carousel .slick-list .slick-slide:not(.slick-current) {
        opacity: 0.6;
    }
    .carousel .slick-list .slick-slide:not(.slick-current) .caption {
        opacity: 0.15;
    }
}
.previous {
    width: calc((100vw - 640px) / 2);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: linear-gradient(90.15deg, #FFFFFF 0.12%, rgba(255, 255, 255, 0.9) 20.9%, rgba(255, 255, 255, 0) 99.86%);
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.previous:hover {
    opacity: 0.85;
}
.previous.slick-disabled {
    visibility: hidden;
}
.next {
    width: calc((100vw - 640px) / 2);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(90.15deg, #FFFFFF 0.12%, rgba(255, 255, 255, 0.9) 20.9%, rgba(255, 255, 255, 0) 99.86%);
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    opacity: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}
.next:hover {
    opacity: 0.85;
}
.module.intro {
    margin-top: 140px;
}
.module.card {
    margin: 35px 25px;
}
@media screen and (max-width: 500px) {
    .module.card {
        margin: 25px 25px;
    }
}
.module.card .inner-wrap {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    display: flex;
    background-color: #F8F8F8;
    border-radius: 3px;
    overflow: hidden;
}
.module.card .inner-wrap:after {
    content: "";
    clear: both;
    display: block;
}
@media screen and (max-width: 500px) {
    .module.card .inner-wrap {
        min-height: 430px;
        display: block;
    }
}
.module.card .inner-wrap a {
    min-height: 300px;
    border: 0;
    display: flex;
}
@media screen and (max-width: 500px) {
    .module.card .inner-wrap a {
        display: block;
    }
}
.module.card .inner-wrap p {
    margin-bottom: 10px;
}
.module.card .inner-wrap .button {
    display: inline-block;
    margin-top: 10px;
    display: none;
}
.module.card .inner-wrap .date {
    margin-top: -12px;
    margin-bottom: 15px;
    opacity: 0.6;
}
.module.card .inner-wrap .text {
    width: calc(50% - 30px);
    padding: 0 40px;
    align-self: center;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 500px) {
    .module.card .inner-wrap .text {
        width: calc(100% - 60px);
        padding: 25px 30px;
    }
}
.module.card .inner-wrap .media {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 0.3s ease;
}
@media screen and (max-width: 500px) {
    .module.card .inner-wrap .media {
        width: 110%;
        position: relative;
        margin-top: -50px;
        float: right;
    }
}
.module.card .inner-wrap .media img {
    -o-object-position: right center;
    object-position: right center;
    transition: all 0.3s ease;
}
.module.card .inner-wrap:hover .button {
    background-color: rgba(239, 239, 239, 0.8);
}
.module.card .inner-wrap:hover .media {
    opacity: 0.6;
}
.module.card.dark .h1, .module.card.dark .h2, .module.card.dark .h3, .module.card.dark a {
    color: #ffffff;
}
.module.card.dark .button {
    border-color: #F8F8F8;
}
.module.card.dark .inner-wrap {
    background-color: #000000;
}
.module.card.dark .inner-wrap:hover .button {
    background-color: rgba(71, 71, 71, 0.6);
}
.module.media {
    margin: 75px 0;
}
@media screen and (max-width: 500px) {
    .module.media {
        margin: 40px 0;
    }
}
.module.media[data-size=xxl] {
    position: relative;
}
.module.media[data-size=xxl]:after {
    content: "";
    clear: both;
    display: block;
}
.module.media[data-size=xl] {
    position: relative;
    padding: 0 80px;
}
.module.media[data-size=xl]:after {
    content: "";
    clear: both;
    display: block;
}
.module.media[data-size=m] {
    max-width: 560px;
    margin: 60px auto;
    position: relative;
}
.module.media[data-size=m]:after {
    content: "";
    clear: both;
    display: block;
}
.module.media[data-size=s] {
    max-width: 560px;
    margin: -35px auto;
}
.module.media[data-size=s]:after {
    content: "";
    clear: both;
    display: block;
}
@media screen and (max-width: 500px) {
    .module.media[data-size=s] {
        margin: 10px 25px;
    }
}
.module.code {
    margin: 75px 0;
}
@media screen and (max-width: 500px) {
    .module.code {
        margin: 25px 0;
    }
}
.module.code[data-size=full] {
    position: relative;
}
.module.code[data-size=full]:after {
    content: "";
    clear: both;
    display: block;
}
.module.code[data-size=medium] {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
}
.module.code[data-size=medium]:after {
    content: "";
    clear: both;
    display: block;
}
@media screen and (max-width: 1000px) {
    .module.code.producthunt img:first-child {
        width: 90%;
        right: -20%;
    }
}
@media screen and (max-width: 500px) {
    .module.code.producthunt img:first-child {
        width: 120%;
        right: -25%;
    }
}
.module.code.producthunt img:nth-child(2) {
    width: calc(100% - 50px);
    position: absolute;
    top: 0;
    left: -33.333%;
}
@media screen and (max-width: 1000px) {
    .module.code.producthunt img:nth-child(2) {
        width: calc(90% - 50px);
        left: -15%;
    }
}
@media screen and (max-width: 500px) {
    .module.code.producthunt img:nth-child(2) {
        width: 120%;
        position: relative;
        margin-top: -10%;
        left: -5%;
    }
}
.module.highlight {
    margin: -40px 0 0 0;
}
@media screen and (max-width: 500px) {
    .module.highlight {
        margin: 25px 25px;
    }
}
.module.highlight .inner-wrap {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    background-color: #efefef;
    transition: all 0.15s linear;
}
.module.highlight .inner-wrap:after {
    content: "";
    clear: both;
    display: block;
}
.module.highlight .inner-wrap .text {
    padding: 15px 20px;
}
.module.highlight .inner-wrap .text span {
    margin-right: 5px;
}
.module.highlight .inner-wrap:hover {
    background-color: #F8F8F8;
}
.module.figma {
    margin: -45px auto 0 auto;
}
@media screen and (max-width: 500px) {
    .module.figma {
        margin: 25px auto;
    }
}
.module.figma[data-size=medium] {
    max-width: 560px;
}
.module.figma .embed {
    width: 100%;
    height: 420px;
    position: relative;
}
.module.figma .embed iframe {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    border: 0;
}
.module.cards_mini {
    margin: 35px 0;
    overflow: hidden;
}
@media screen and (max-width: 500px) {
    .module.cards_mini {
        margin: 25px 0;
    }
}
.module.cards_mini a {
    max-width: 600px;
    display: block;
    margin: 0 auto;
    border: 0;
}
.module.cards_mini .inner-wrap {
    max-width: 630px;
    min-height: 330px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.module.cards_mini .inner-wrap .card {
    width: calc(25% - 30px);
    margin-bottom: 30px;
    margin: 15px;
    position: relative;
}
.module.cards_mini .inner-wrap .card:after {
    content: "";
    clear: both;
    display: block;
}
.module.cards_mini .inner-wrap .card:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #efefef;
    border-radius: 3px;
    padding: 15px;
    position: absolute;
    top: -15px;
    left: -15px;
    opacity: 0;
    -webkit-transform: scale(0.97, 0.8);
    transform: scale(0.97, 0.8);
    transition: all 0.25s ease-out;
}
.module.cards_mini .inner-wrap .card .media {
    overflow: hidden;
    border-radius: 3px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.module.cards_mini .inner-wrap .card .media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: right center;
    object-position: right center;
    transition: all 0.3s ease;
}
.module.cards_mini .inner-wrap .card .text {
    margin-top: 5px;
    position: relative;
    z-index: 1;
}
.module.cards_mini .inner-wrap .card .text h3 {
    font-size: 15px;
    line-height: 130%;
    margin-bottom: 0;
}
.module.cards_mini .inner-wrap .card:hover:before {
    height: 100%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.module.list {
    margin: 35px 0;
    overflow: hidden;
}
@media screen and (max-width: 500px) {
    .module.list {
        margin: 25px 20px;
    }
}
.module.list .inner-wrap {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.module.list .inner-wrap ul {
    width: 100%;
    list-style: none;
    border-top: 1px solid #EEEEEE;
}
.module.list .inner-wrap ul li {
    position: relative;
    padding: 25px 0 15px 0;
    border-bottom: 1px solid #EEEEEE;
}
.module.list .inner-wrap ul li:after {
    content: "";
    clear: both;
    display: block;
}
.module.list .inner-wrap ul li .text {
    margin-top: 5px;
    position: relative;
    z-index: 1;
}
.module.list .inner-wrap ul li .text h3 {
    letter-spacing: 0.01em;
}
.module.list .inner-wrap ul li .text .tag {
    position: absolute;
    top: -4px;
    right: 0;
    background-color: #FCF6D8;
    padding: 1px 7px;
    border-radius: 3px;
}
.module.list .inner-wrap ul li .text .tag span {
    opacity: 0.4;
}
.module.post a {
    width: 100%;
    display: block;
    padding: 15px 0;
    border: 0;
}
.module.post .inner-wrap {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    display: flex;
}
.module.post .inner-wrap:after {
    content: "";
    clear: both;
    display: block;
}
.module.post .inner-wrap:before {
    content: "";
    width: calc(100% - 20px);
    height: 100%;
    background-color: #F8F8F8;
    border-radius: 4px;
    padding: 0;
    position: absolute;
    top: 0;
    left: 10px;
    opacity: 1;
    transform: none;
    transition: background-color 0.2s ease-out;
}
.module.post .inner-wrap:hover:before {
    background-color: #e6e6e6;
}
@media (prefers-color-scheme: dark) {
    .module.post .inner-wrap:before {
        background-color: #2f2f2f;
        opacity: 1;
        transform: none;
        transition: background-color 0.2s ease-out;
    }
    .module.post .inner-wrap:hover:before {
        background-color: #262626;
    }
}
.module.post {
    margin-bottom: 0.5rem;
}
.module.post .inner-wrap .media {
    width: 60px;
    height: 60px;
    display: inline-block;
    float: left;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.15s ease-out;
}
@media screen and (max-width: 500px) {
    .module.post .inner-wrap .media {
        margin-right: 20px;
    }
}
.module.post .inner-wrap .media img {
    position: relative;
    transition: all 0.25s ease-out;
}
.module.post .inner-wrap .text {
    width: calc(100% - 90px);
    display: inline-block;
    float: left;
    position: relative;
    z-index: 1;
    margin-top: 5px;
}
@media screen and (max-width: 500px) {
    .module.post .inner-wrap .text h3, .module.post .inner-wrap .text p {
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.module.post .inner-wrap .text .title {
    width: 100%;
    float: left;
}
.module.post .inner-wrap .text .title .tag {
    display: inline-block;
    float: left;
    background-color: #DDF0E0;
    margin-top: 2px;
    padding: 1px 2px;
    display: none;
}
.module.post .inner-wrap .text .title h3 {
    display: inline-block;
    float: left;
    margin-right: 10px;
}
.module.post .inner-wrap .text .description {
    width: 100%;
    float: left;
    margin-top: -12px;
    opacity: 0.6;
}
.module.post .inner-wrap:hover:before {
    height: 100%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.module.post .inner-wrap:hover .media img {
    opacity: 0.9;
}
.module.post.text-only .inner-wrap .text {
    width: calc(100% - 80px);
    padding: 30px 40px;
}
.module.post.text-only .inner-wrap:before {
    content: "";
    background-color: #F8F8F8;
    padding: 0px;
    top: 0px;
    left: 0px;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.module.post.text-only .inner-wrap:hover:before {
    height: 100%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.module.newsletter {
    margin-top: -45px;
}
.module.newsletter form {
    width: 100%;
    max-width: 420px;
    position: relative;
    border: 1px solid #efefef;
    border-radius: 3px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: all 0.2s linear;
}
.module.newsletter form:after {
    content: "";
    clear: both;
    display: block;
}
.module.newsletter form:hover {
    border-color: rgba(0, 0, 0, 0.2);
}
.module.newsletter form:hover .mc-field-group:nth-child(2) {
    border-color: rgba(0, 0, 0, 0.2);
}
.module.newsletter form.active {
    border-color: rgba(0, 0, 0, 0.2);
}
.module.newsletter form.active .mc-field-group:nth-child(2) {
    border-color: rgba(0, 0, 0, 0.1);
}
.module.newsletter form.active input[type=submit] {
    background-color: #efefef;
}
.module.newsletter form .mc-field-group {
    display: inline-block;
    position: relative;
    float: left;
    z-index: 2;
}
.module.newsletter form .mc-field-group label {
    color: rgba(71, 71, 71, 0.5);
    position: absolute;
    padding: 12px 15px 13px 15px;
    cursor: text;
    transition: all 0.15s linear;
}
.module.newsletter form .mc-field-group input {
    width: calc(100% - 30px);
    height: 23px;
    background-color: transparent;
    color: var(--Gray28);
    border: 0;
    margin: 0;
    padding: 12px 15px 13px 15px;
    border-radius: 0;
}
.module.newsletter form .mc-field-group input:focus {
    outline: 0;
}
.module.newsletter form .mc-field-group:first-child {
    width: 45%;
}
.module.newsletter form .mc-field-group:nth-child(2) {
    width: 70%;
    border-left: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s linear;
}
.module.newsletter form .mc-field-group:nth-child(2) input {
    width: calc(100% - 40px);
}
.module.newsletter form .mc-field-group.active label {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
}
.module.newsletter form input[type=submit] {
    width: 30px;
    height: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("assets/arrow.svg");
    background-color: #efefef;
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: 45% 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    color: white;
    border: 0;
    border-radius: 50%;
    position: absolute;
    top: 9px;
    right: 10px;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: all 0.2s ease;
    cursor: pointer;
    z-index: 3;
}
.module.newsletter form input[type=submit]:hover {
    background-color: var(--Gray28);
}
.module.newsletter form input[type=submit]:focus {
    outline: 0;
}
.module.newsletter form .mc-status {
    width: 100%;
    position: absolute;
    top: 60px;
}
.module.newsletter form .mc-status.error-message:before {
    content: "→ ";
}
.module.newsletter form .mc-status:focus {
    outline: none;
}
.module.newsletter form .mc-status a {
    border-color: var(--Gray28);
}
.module.newsletter form .error-message:not(.mc-status) {
    display: none !important;
}
footer.module.text {
    color: rgba(71, 71, 71, 0.5);
}
footer.module.text .inner-wrap .bottom {
    float: left;
    color: rgba(71, 71, 71, 0.3);
}
footer.module.text .inner-wrap .bottom a {
    color: rgba(71, 71, 71, 0.5);
    border-bottom: 0 !important;
    background-image: none;
    transition: all 0.3s ease;
}
footer.module.text .inner-wrap .bottom a:hover {
    color: var(--Gray28);
}
footer.module.text .inner-wrap .columns {
    margin-bottom: -10px;
}
footer.module.text .inner-wrap .columns .column .title {
    color: var(--Gray28);
}
footer.module.text .inner-wrap .columns .column a {
    color: rgba(71, 71, 71, 0.5);
    border-bottom: 0 !important;
    transition: all 0.3s ease;
}
footer.module.text .inner-wrap .columns .column a:after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    margin-left: 10px;
    background-image: url("assets/arrow.svg");
    background-size: 100%;
    opacity: 0.5;
    transition: all 0.3s ease;
    display: none;
}
footer.module.text .inner-wrap .columns .column a:hover {
    color: var(--Gray28);
}
footer.module.text .inner-wrap .columns .column a:hover:after {
    opacity: 1;
}
footer.module.text .inner-wrap .columns .column .copy {
    display: inline-block;
    position: relative;
    margin-left: 5px;
    color: var(--Gray28);
    opacity: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
footer.module.text .inner-wrap .columns .column .copy:hover {
    opacity: 1;
}
footer.module.text .inner-wrap .columns .column .copy .copy-content {
    display: none;
}
footer.module.text .inner-wrap .columns .column li:hover .copy {
    opacity: 0.5;
}
footer.module.text .inner-wrap .columns .column li:hover .copy:hover {
    opacity: 1;
}
footer.module.text hr {
    margin: 70px 0;
}
.button.copy-email {
    display: none;
}
.button.accent:hover + .button.copy-email {
    display: inline-block;
}
.module.post .description p {
    font-size: 0.9rem;
}
.blog-home .module.post {
    background-color: #ececec !important;
    position: relative !important;
}
.blog-home .module.post:nth-child(even) {
    background-color: #dedede !important;
}
.blog-home .module.post .inner-wrap {
    position: relative !important;
    z-index: 1 !important;
}
@media screen and (max-width: 500px) {
    .module.text .inner-wrap .columns {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        align-items: stretch;
        gap: 1rem;
    }
    .module.text .inner-wrap .columns .column {
        float: none !important;
        width: auto !important;
        margin: 0 !important;
    }
}
@media (prefers-color-scheme: dark) {
    body, h1, h2, h3, h4, h5, h6, p, li, a, span {
        color: var(--darktxtcolour) !important;
    }
    hr {
        border-top: 1px solid #555555 !important;
    }
    header.module.text, footer.module.text, body {
        background-color: var(--darkbg) !important;
    }
    header.module.text .inner-wrap .navigation ul li a {
        color: var(--darktxtcolour) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }
    header.module.text .inner-wrap .navigation ul li a:hover {
        color: var(--white) !important;
        background-color: var(--darkbgshade) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    header.module.text .inner-wrap .navigation ul li.active a {
        background-color: rgba(255, 255, 255, 0.05) !important;
        color: #cccccc !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
    header.module.text .inner-wrap .left .logo img.avatar {
        filter: invert(1) !important;
    }
    header.module.text .left .logo svg {
        fill: var(--darktxtcolour) !important;
    }
    footer.module.text .inner-wrap .bottom a {
        color: var(--darktxtcolour) !important;
    }
    footer.module.text .inner-wrap .bottom a:hover {
        color: var(--white) !important;
    }
    .button {
        background-color: var(--darkbgshade) !important;
        color: var(--darktxtcolour) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
    }
    .button:hover, .button:focus {
        background-color: var(--darkbg) !important;
        color: var(--white) !important;
    }
    .module.card .inner-wrap, .module.highlight .inner-wrap, .module.newsletter form {
        background-color: var(--darkbgshade) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }
    .module.text .inner-wrap .columns .column, .module.text .inner-wrap .columns .column * {
        color: #cccccc !important;
    }
}
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1.2rem;
    background-color: #fff;
    color: #000;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.contact-form textarea {
    resize: vertical;
    margin-bottom: 1.5rem;
}
.contact-form .row {
    display: flex;
    gap: 3rem;
}
.contact-form .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
@media (prefers-color-scheme: dark) {
    .contact-form input, .contact-form textarea {
        background-color: #1f1f1f;
        color: #f0f0f0;
        border: 1px solid #444;
    }
    .contact-form input:focus, .contact-form textarea:focus {
        border-color: #888;
        background-color: #2a2a2a;
        outline: none;
    }
    .contact-form label {
        color: #cccccc;
    }
    .contact-form button {
        background-color: #333;
        color: #fff;
        border: none;
    }
    .contact-form button:hover {
        background-color: #444;
    }
}
.flag-icon {
    width: 16px;
    height: 12px;
    margin-left: 4px;
    vertical-align: text-bottom;
    object-fit: contain;
}
footer, .footer, .footer-inner {
    font-size: 0.85rem;
}
footer li, footer p, footer .copy {
    margin-bottom: 0.4rem;
    line-height: 1.4;
}
footer li, footer a, footer p, footer span {
    color: #999999;
}
@media (prefers-color-scheme: dark) {
    footer li, footer a, footer p, footer span {
        color: #cccccc;
        opacity: 0.7;
    }
}
.image-caption {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.4;
    opacity: 0.7;
}
@media (prefers-color-scheme: dark) {
    .image-caption {
        color: #aaa;
    }
}
.project-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    overflow-x: hidden;
}

.project-card {
    width: 100%;
    background-color: var(--theme-surface, #f9f9f9);
    border: 1px solid #ddd;
    border-left: 4px solid var(--accent-colour, #40bbed);
    border-radius: 12px;
    padding: 1.25rem 1.25rem 0.75rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}

.project-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border-left-color: var(--accent-colour-hover, #00796b);
}

.card-title {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--theme-text, #222);
    max-width: 100%;
    word-wrap: break-word;
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--theme-text-secondary, #555);
    margin-bottom: 0;
    max-width: 100%;
    word-wrap: break-word;
}

@media (prefers-color-scheme: dark) {
    .project-card {
        background-color: #1f1f1f;
        border-color: #333;
        border-left-color: var(--accent-colour-dark, #00bfa5);
    }

    .card-title {
        color: #fff;
    }

    .card-description {
        color: #ccc;
    }
}

@media screen and (max-width: 768px) {
    .project-card {
        width: 100% !important;
        margin: 0 auto;
        box-sizing: border-box;
    }
}
.research-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
.research-card {
    width: 100%;
    max-width: 100%;
    background-color: var(--theme-surface, #f9f9f9);
    border: 1px solid #ddd;
    border-left: 4px solid var(--accent-colour, #40bbed);
    border-radius: 12px;
    padding: 1.25rem 1.25rem 0.75rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
}
.research-card:hover {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    border-left-color: var(--accent-colour-hover, #00796b);
}
.card-title {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--theme-text, #222);
}
.card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--theme-text-secondary, #555);
    margin-bottom: 0;
}
@media (prefers-color-scheme: dark) {
    .research-card {
        background-color: #1f1f1f;
        border-color: #333;
        border-left-color: var(--accent-colour-dark, #00bfa5);
    }
    .card-title {
        color: #fff;
    }
    .card-description {
        color: #ccc;
    }
}

@media screen and (max-width: 768px) {
    .research-card {
        width: 100% !important;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 1rem 1rem 0.5rem 1rem;
    }
}