:root {
    --color-gray-lightest: #e7e7e7;
    --color-gray-light: #d4d3d3;
    --color-gray: #adabac;
    --color-gray-rgb: 173 171 172;
    --color-gray-dark: #5a5a5a;
    --color-gray-dark-rgb: 90 90 90;
    --color-gray-darkest: #101012;
    --color-pale-yellow: #fffac4;
    --font-primary: "Lato", sans-serif;
    --font-secondary: "Playfair Display", serif;
    --font-mono: Consolas, "Andale Mono", "Courier New", Courier, monospace
}

*, :before, :after {
    box-sizing:inherit
}

html {
    box-sizing:border-box
}

body, button, input, select, textarea {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing:grayscale
}

html {
    font-size: 112.5%;
    font-family: var(--gh-font-body, var(--font-primary));
    scroll-behavior:smooth
}

body {
    background-color: #fff;
    color: var(--color-gray-dark);
    line-height:1.667
}

a {
    color: var(--ghost-accent-color);
    text-decoration: underline;
    text-decoration-thickness: from-font;
    text-underline-position: under;
    transition:color .25s linear
}

a:where(:hover, :focus) {
    color:var(--color-gray-dark)
}

:where(h1, .h1, h2, .h2, h3, .h3, h4, h5, h6) {
    color: var(--color-gray-darkest);
    font-family: var(--gh-font-heading, var(--font-secondary));
    font-weight: 400;
    line-height: 1.25;
    margin: 2.5rem 0 0;
    text-rendering:optimizeLegibility
}

:where(h1, h2, h3, h4, h5, h6) + :where(h1, h2, h3, h4, h5, h6) {
    margin-top:1rem
}

h1, .h1 {
    font-size:2rem
}

h2, .h2 {
    font-size:1.66667rem
}

h3, .h3 {
    font-size:1.33333rem
}

h4 {
    font-size:1.11111rem
}

h5, h6 {
    font-size:1rem
}

@media only screen and (min-width: 481px) {
    h1, .h1 {
        font-size:2.33333rem
    }
}

@media only screen and (min-width: 641px) {
    :where(h1, .h1, h2, .h2, h3, .h3, h4, h5, h6) {
        margin-top:3.33333rem
    }

    h1, .h1 {
        font-size:2.66667rem
    }

    h2, .h2 {
        font-size:2rem
    }
}

p {
    margin:1rem 0 0
}

mark, ins {
    background: var(--color-pale-yellow);
    color: var(--color-gray-dark);
    padding: .05em .25em;
    text-decoration:none
}

pre {
    background: var(--color-gray-darkest);
    color: var(--color-gray-light);
    font-size: .88889rem;
    line-height: 1.5;
    margin: 2rem 0 0;
    overflow: auto;
    padding: 1.25rem;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap:normal
}

blockquote {
    border-left: 2px solid var(--ghost-accent-color);
    color: var(--color-gray-darkest);
    font-family: var(--gh-font-heading, var(--font-secondary));
    font-weight: 400;
    font-size: 1.33333rem;
    font-style: italic;
    line-height: 1.4;
    margin: 2rem 0 0;
    padding: .125em 0 .125em 1em;
    text-align:left
}

blockquote p {
    margin-top:.5em
}

blockquote p:first-child {
    margin:0
}

blockquote :where(small, cite) {
    color: var(--color-gray);
    display: block;
    font-family: var(--gh-font-body, var(--font-primary));
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    margin-top:.5em
}

ul, ol {
    margin: 1rem 0 0;
    padding:0 0 0 1.25em
}

ul {
    list-style:disc
}

li > ul, li > ol {
    margin:.25em 0 0
}

dl {
    margin:1rem 0 0
}

dt {
    font-weight:700
}

li, dd {
    margin:0 0 .25em
}

li:last-child, dd:last-child {
    margin-bottom:0
}

hr {
    background-color: var(--color-gray-light);
    border: 0;
    height: 1px;
    margin:2.5rem 0 0
}

@media only screen and (min-width: 641px) {
    hr {
        margin-top:3.33333rem
    }
}

table {
    border-collapse: collapse;
    font-size: .88889rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    width:100%
}

:not(.responsive-table) > table {
    margin:2rem 0 0
}

.responsive-table {
    display: block;
    margin: 2rem 0 0;
    overflow-x: auto;
    width:100%
}

caption {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: .5em;
    text-align:left
}

th, td {
    border-bottom: 1px solid var(--color-gray-light);
    padding:.625em
}

th {
    color: var(--color-gray-darkest);
    font-weight:700
}

figure, .js-reframe {
    margin:2rem 0 0
}

figure img {
    display:block
}

figcaption {
    color: var(--color-gray);
    font-size: .88889rem;
    font-style: italic;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    max-width: 740px;
    padding-top: .5em;
    text-align:left
}

figcaption p {
    margin:0
}

embed, iframe, object, video {
    max-width:100%
}

img {
    height: auto;
    max-width:100%
}

label {
    font-size:.88889rem
}

input:where([type=text], [type=password], [type=email], [type=tel], [type=number], [type=search], [type=url]), select, textarea {
    background: #fff;
    border: 1px solid var(--color-gray-light);
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
    color: var(--color-gray-dark);
    cursor: pointer;
    font-family: var(--gh-font-body, var(--font-primary));
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 100%;
    padding: .5em .625em;
    width:100%
}

input:where([type=text], [type=password], [type=email], [type=tel], [type=number], [type=search], [type=url]):focus, select:focus, textarea:focus {
    outline: none;
    border-color:var(--color-gray-dark)
}

::placeholder {
    color: var(--color-gray);
    opacity:1
}

.button {
    align-items: center;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    box-sizing: border-box;
    box-shadow: none;
    color: inherit;
    display: inline-flex;
    font-family: var(--gh-font-body, var(--font-primary));
    font-size: 12px;
    font-weight: 400;
    justify-content: center;
    letter-spacing: .16667em;
    line-height: 1.5;
    padding: .75em 1.66667em;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
    vertical-align: middle;
    white-space:nowrap
}

.button:is(:hover, :focus, :active) {
    outline:0
}

.button svg {
    fill: currentColor;
    flex-shrink: 0;
    height: 1em;
    width:1em
}

.button-solid {
    background: var(--ghost-accent-color);
    color:#fff
}

.button-solid:is(:hover, :focus, :active) {
    opacity:.85
}

.button-outlined {
    border-color: var(--color-gray-light);
    color:var(--ghost-accent-color)
}

.button-outlined:is(:hover, :focus, :active) {
    color:var(--color-gray-darkest)
}

.button-outlined:before, .button-outlined:after {
    background: var(--color-gray-dark);
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    transition:.4s
}

.button-outlined span:before, .button-outlined span:after {
    background: var(--color-gray-dark);
    content: "";
    width: 1px;
    height: 0;
    position: absolute;
    transition:.4s
}

.button-outlined:before {
    left: -1px;
    top:-1px
}

.button-outlined:after {
    bottom: -1px;
    right:-1px
}

.button-outlined span:before {
    right: -1px;
    top:-1px
}

.button-outlined span:after {
    bottom: -1px;
    left:-1px
}

.button-outlined:is(:hover, :focus, :active):before, .button-outlined:is(:hover, :focus, :active):after {
    width:calc(100% + 2px)
}

.button-outlined:is(:hover, :focus, :active) span:before, .button-outlined:is(:hover, :focus, :active) span:after {
    height:calc(100% + 2px)
}

.button-link {
    border: 0;
    padding:.416667em
}

.button-icon {
    border: 0;
    font-size: 1rem;
    height: 1.77778rem;
    line-height: 1;
    padding: 0;
    width: 1.77778rem;
    cursor:pointer
}

.button-social {
    --shadow-opacity: 0;
    border-radius: 50%;
    border-color: var(--color-gray-light);
    color: var(--color-gray);
    font-size: 1rem;
    height: 2.33333rem;
    line-height: 1;
    padding: 0;
    width:2.33333rem
}

.button-social:is(:hover, :focus, :active) {
    --shadow-opacity: .45;
    border-color:var(--color-gray)
}

.button-social:after {
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgb(var(--color-gray-rgb) /var(--shadow-opacity));
    box-sizing: content-box;
    content: "";
    height: 100%;
    left: 0;
    opacity: 1;
    padding: 0;
    position: absolute;
    top: 0;
    transform: scale(1);
    transition: transform .2s, opacity .4s;
    width:100%
}

.button-social:is(:hover, :focus, :active):after {
    left: -7px;
    opacity: 0;
    padding: 7px;
    top: -7px;
    transform:scale(1.1)
}

@media only screen and (min-width: 641px) {
    .button-icon {
        font-size: 1.11111rem;
        height: 2rem;
        width:2rem
    }
}

.icon-menu, .icon-close {
    background-color: currentColor;
    color: currentColor;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width:20px
}

.icon-close {
    background-color:transparent
}

.icon-menu:before, .icon-menu:after, .icon-close:before, .icon-close:after {
    background-color: currentColor;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    transition: transform .2s;
    width:100%
}

.icon-menu:before {
    transform:translateY(-6px)
}

.icon-menu:after {
    transform:translateY(6px)
}

.icon-close:before {
    transform:rotate(45deg)
}

.icon-close:after {
    transform:rotate(-45deg)
}

@media only screen and (min-width: 641px) {
    .icon-menu, .icon-close {
        width:24px
    }

    .icon-menu:before {
        transform:translateY(-7px)
    }

    .icon-menu:after {
        transform:translateY(7px)
    }
}

@media only screen and (min-width: 1281px) {
    .button:hover .icon-menu:before {
        transform:rotate(90deg)
    }

    .button:hover .icon-menu:after {
        transform:rotate(-90deg)
    }

    .button:hover .icon-close:before, .button:hover .icon-close:after {
        transform:rotate(180deg)
    }
}

.menu, .actions {
    list-style: none;
    margin: 0;
    padding:0
}

.menu-item, .action-item {
    margin:0
}

.menu-item {
    font-size: 12px;
    letter-spacing: .16667em;
    line-height: 1.5;
    text-transform:uppercase
}

.menu-item a {
    text-decoration:none
}

.avatar {
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
    width:100%
}

.underline {
    text-align:center
}

.underline:after {
    background-color: var(--ghost-accent-color);
    content: "";
    display: block;
    height: 2px;
    margin: 1.66667rem auto 0;
    width:60px
}

@media only screen and (min-width: 641px) {
    .underline:after {
        width:80px
    }
}

.screen-reader-text {
    border-width: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space:nowrap
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
    position:relative
}

.site-content {
    display: flex;
    flex-direction: column;
    flex-grow:1
}

.outer {
    padding-left: min(4vw, 30px);
    padding-right:min(4vw, 30px)
}

.inner {
    margin-left: auto;
    margin-right: auto;
    max-width:740px
}

.site-header {
    box-sizing: border-box;
    color: var(--color-gray-lightest);
    padding-bottom: min(4.5vw, 1.66667rem);
    padding-top: min(4.5vw, 1.66667rem);
    width:100%
}

.site-header:not(.site-header-dark) {
    left: 0;
    position: absolute;
    top: 0;
    z-index:997
}

.site-header-dark {
    background-color:var(--color-gray-darkest)
}

.site-header-inside {
    align-items: center;
    display: flex;
    justify-content:space-between
}

.site-title, .site-logo {
    color: #fff;
    margin:0
}

.site-logo {
    display: block;
}

.home-template .site-title {
    display: block;
}

.post-template .site-header-inside {
    justify-content:center
}

.post-template .header-navigation {
    position: absolute;
    right:0
}

.site-title a {
    border-bottom: 1px solid var(--ghost-accent-color);
    color: inherit;
    text-decoration: none;
    transition:border .25s linear
}

.site-title a:is(:hover, :focus) {
    border-color:transparent
}

.header-navigation .actions {
    align-items: center;
    display:flex
}

.header-navigation .action-item {
    margin-left:.16667rem
}

.header-navigation .button-link:is(:hover, :focus) {
    color:var(--ghost-accent-color)
}

.header-navigation .action-item-sidebar {
    margin-right: -6px;
    display:block !important
}

@media only screen and (min-width: 641px) {
    .header-navigation .action-item {
        margin-left:15px
    }

    .header-navigation :is(.action-item-search, .action-item-sidebar) {
        margin-left:7px
    }

    .header-navigation :is(.action-item-account, .action-item-signin) .button-icon {
        display:none
    }
}

@media only screen and (max-width: 640px) {
    .header-navigation .action-item-subscribe, .header-navigation :is(.action-item-account, .action-item-signin) .button-link {
        display:none
    }
}

.cover {
    align-items: center;
    background-color: #000;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 30vh;
    padding-bottom: 3.33333rem;
    padding-top: 3.33333rem;
    position:relative
}

.cover-large {
    min-height:40vh
}

.cover-bg {
    animation-delay: .15s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeTo100;
    inset: 0;
    opacity: 1;
    position:absolute
}

.cover-bg-img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width:100%
}

.cover-content {
    padding-top: 3.33333rem;
    text-align:center
}

.cover-scroll-down {
    animation-duration: 2s;
    animation-name: blink;
    animation-iteration-count: infinite;
    bottom: .83333rem;
    color: var(--color-gray);
    font-size: 1.66667rem;
    left: 50%;
    margin-left: -20px;
    position:absolute
}

.cover-scroll-down:is(:hover, :focus, :active) {
    color:var(--color-gray)
}

@media only screen and (min-width: 861px) {
    .cover-large {
        min-height:50vh
    }
}

@media only screen and (max-width: 860px) {
    .cover-scroll-down {
        display:none
    }
}

.home-template .cover {
    display: none;
}

.hero-title {
    color: #fff;
    margin: 0 0 1.66667rem;
    position:relative
}

.hero-text {
    font-size: .77778rem;
    letter-spacing: .14285em;
    margin: 0 0 1.66667rem;
    position: relative;
    text-transform:uppercase
}

.hero-action {
    margin-bottom:1.66667rem
}

.post-header a {
    text-decoration:none
}

.post-title a {
    color: inherit;
    pointer-events: none;
    cursor:default
}

.post-title a:is(:hover, :focus) {
    color:var(--color-gray-darkest)
}

.post-tags {
    display:none !important
}

.post-tags {
    font-family: var(--gh-font-heading, var(--font-secondary));
    line-height:1.5
}

.post-tags a {
    margin-right:.5em
}

.post-tags a:before {
    content: "#"
}

.post-byline {
    align-items: center;
    display: flex;
    line-height:1.5
}

.post-author-avatar {
    display:none !important
}

.post-author-avatar {
    border-radius: 50%;
    flex-shrink: 0;
    height: 2.5rem;
    position: relative;
    width:2.5rem
}

.post-author-avatar + .post-author-avatar {
    margin-left:-.5rem
}

.post-byline-content:not(:first-child) {
    margin-left:.55556rem
}

.post-byline-content:not(:first-child) {
    margin-left:0 !important
}

.post-author {
    display: block;
    font-family: var(--gh-font-heading, var(--font-secondary));
    font-size: .88889rem;
    font-style:italic
}

.post-date {
    font-size: 12px;
    letter-spacing: .16667em;
    margin-top: .25em;
    text-transform:uppercase
}

.post-list {
    flex-grow: 1;
    padding-top:3.33333rem
}

.post-list .post {
    margin-bottom: 3.33333rem;
    position: relative;
    padding-bottom: 3.33333rem;
    border-bottom:1px solid var(--color-gray-light)
}

.post-list .post:last-child {
    border-bottom:0
}

.post-list .post-header {
    margin-bottom:0
}

.post-list .post-content {
    margin-top:.5rem
}

.post-list .post-tags {
    font-size:.77778rem
}

.post-list .post-tags + .post-header-group {
    padding-top:.55556rem
}

.post-list .post-title {
    margin:0 0 .83333rem
}

.post-list .post-byline {
    color:var(--color-gray)
}

.post-list .post-byline a {
    color:var(--color-gray-dark)
}

.post-list .post-byline a:is(:hover, :focus) {
    color:var(--ghost-accent-color)
}

.post-list .post-author-avatar {
    border:2px solid #fff
}

.post-read-more {
    margin-top:1.66667rem
}

@media only screen and (min-width: 861px) {
    .post-list {
        padding-top:5rem
    }

    .post-list .post {
        margin-bottom: 5rem;
        padding-bottom:5rem
    }

    .post-list .post:before {
        display:none !important
    }

    .post-list .post:before {
        background-color: var(--color-gray-light);
        content: "";
        height: 100%;
        left: -1.66667rem;
        position: absolute;
        top: 0;
        width:1px
    }

    .post-list .post.featured:before {
        background-color:var(--ghost-accent-color)
    }

    .post-list .post-header-group {
        padding-top: .55556rem;
        position:relative
    }

    .post-list .post-header-group:before {
        display:none !important
    }

    .post-list .post-header-group:before {
        background-color: #fff;
        border: 1px solid var(--color-gray);
        border-radius: 50%;
        box-sizing: border-box;
        content: "";
        height: .72222rem;
        left: -2rem;
        position: absolute;
        top: 1.44444rem;
        width:.72222rem
    }

    .post-list .post.featured .post-header-group:before {
        background-color: var(--ghost-accent-color);
        border-color:var(--ghost-accent-color)
    }
}

.post-full {
    --gap: min(4vw, 30px);
    --main: min(740px, 100% - var(--gap) * 2);
    --wide: minmax(0, 120px);
    --full: minmax(var(--gap), 1fr)
}

.post-template .cover-content {
    padding-bottom:2.5rem
}

.post-full .post-title {
    color: #fff;
    margin: 0 0 1.66667rem;
    position:relative
}

.post-full .post-tags {
    position:relative
}

.post-full .post-tags a:is(:hover, :focus), .post-full .post-byline a:is(:hover, :focus) {
    color:var(--color-gray-light)
}

.post-reading-time {
    display: block;
    font-size: 12px;
    letter-spacing: .16667em;
    margin: 0 0 1.66667rem;
    position: relative;
    text-transform:uppercase
}

.post-full .post-byline {
    bottom: 1.11111rem;
    left: .83333rem;
    margin-right: .83333rem;
    position: absolute;
    text-align:left
}

.post-full .post-author-avatar {
    border:2px solid var(--color-gray-dark)
}

@media only screen and (min-width: 641px) {
    .post-full .post-byline {
        bottom: 1.66667rem;
        left:1.66667rem
    }
}

@media only screen and (min-width: 861px) {
    .post-template .cover-content {
        padding-bottom:4.166667rem
    }

    .post-full .post-tags {
        font-size: 1.11111rem;
        margin-bottom:1.11111rem
    }

    .post-full .post-author-avatar {
        height: 3.55556rem;
        width:3.55556rem
    }

    .post-full .post-author-avatar + .post-author-avatar {
        margin-left:-.75rem
    }

    .post-full .post-byline-content:not(:first-child) {
        margin-left:1.11111rem
    }
}

.share-post {
    align-items: center;
    color: var(--color-gray);
    display: flex;
    margin-bottom: 3.33333rem;
    margin-top:2.5rem
}

.share-post > span {
    font-size: 12px;
    letter-spacing: .16667em;
    margin-right: 1em;
    text-transform:uppercase
}

.share-post .button-social {
    margin-right:1em
}

.share-post .button-social:is(:hover, :focus, :active) {
    color:var(--color-gray-dark)
}

.post-share-copy-url:before {
    background-color: rgb(var(--color-gray-dark-rgb) /.8);
    bottom: 100%;
    color: var(--color-gray-lightest);
    content: attr(aria-label);
    display: none;
    font-size: .75rem;
    left: 50%;
    min-width: 3.75rem;
    letter-spacing: normal;
    line-height: 1.375;
    padding: .5em .375em;
    position: absolute;
    text-transform: none;
    transform: translate(-50%, -.5rem);
    white-space:nowrap
}

.post-share-copy-url.is-visible-tooltip:before {
    display:block
}

.post-teaser {
    position:relative
}

.post-teaser:before {
    background: linear-gradient(to bottom, #fff0 0% 20%, #fff);
    bottom: 0;
    content: "";
    height: 90%;
    left: 0;
    position: absolute;
    right:0
}

.subscribe-cta {
    border: 1px solid var(--color-gray-light);
    box-sizing: border-box;
    margin-bottom: 3.33333rem;
    margin-top: 2.5rem;
    padding: 1.66667rem 1.11111rem;
    text-align:center
}

.subscribe-cta-title {
    margin: 0 auto;
    max-width:540px
}

.subscribe-cta .button {
    margin-top:1.66667rem
}

.subscribe-cta-note {
    font-size: .88889rem;
    margin:.83333rem 0 0
}

@media only screen and (min-width: 641px) {
    .subscribe-cta {
        padding:2.5rem 1.66667rem
    }
}

.post-content, .post-teaser, .kg-header-card.kg-content-wide, .kg-signup-card.kg-content-wide {
    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]
}

.post-content > *, .post-teaser > * {
    grid-column:main-start / main-end
}

.post-content > .kg-width-full:first-child, .post-teaser > .kg-width-full:first-child {
    margin-top:0
}

.post-content > :not(.kg-width-full):first-child, .post-teaser > :not(.kg-width-full):first-child {
    margin-top:2.5rem
}

.post-content > :last-child, .post-teaser > :last-child {
    margin-bottom:0
}

.page-template .post-content > :not(.kg-width-full):last-child, .page-template .post-teaser > :not(.kg-width-full):last-child {
    margin-bottom:3.33333rem
}

.post-content hr + * {
    margin-top:2.5rem
}

.post-content blockquote + *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(hr), .post-content pre + *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(hr), .post-content table + *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(hr) {
    margin-top:2rem
}

@media only screen and (min-width: 641px) {
    .post-content hr + * {
        margin-top:3.33333rem
    }
}

@media only screen and (min-width: 861px) {
    .post-content > :not(.kg-width-full):first-child, .post-teaser > :not(.kg-width-full):first-child {
        margin-top:3.33333rem
    }
}

.kg-card, .kg-card + *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(hr) {
    margin-top:2rem
}

.kg-card.kg-width-full + .kg-card.kg-width-full {
    margin-top:0
}

.kg-card > pre, .kg-card > .js-reframe {
    margin:0
}

.kg-video-card video {
    width:100%
}

.kg-image-card img {
    margin-left: auto;
    margin-right:auto
}

.kg-width-wide, .kg-content-wide > div, .kg-blockquote-alt {
    grid-column:wide-start / wide-end
}

.kg-width-full {
    grid-column:full-start / full-end
}

.kg-width-wide img, .kg-width-full img {
    width:100%
}

#main .kg-btn, #main .kg-product-card-button, #main .kg-header-card-button, #main .kg-signup-card-button, #main .kg-cta-button {
    align-items: center;
    border-radius: 0;
    box-sizing: border-box;
    box-shadow: none;
    display: inline-flex;
    font-family: var(--gh-font-body, var(--font-primary));
    font-size: 12px;
    font-weight: 400;
    height: auto;
    justify-content: center;
    letter-spacing: .16667em;
    line-height: 1.25;
    padding: 1.04167em 1.66667em;
    text-decoration: none;
    text-transform:uppercase
}

#main .kg-product-card-button:is(:hover, :focus, :active) {
    opacity:.85
}

.kg-blockquote-alt {
    border: 0;
    font-size: 1.66667rem;
    font-style: italic;
    line-height: 1.4;
    padding: 1.11111rem 0 1.66667rem;
    position: relative;
    text-align:center
}

.kg-blockquote-alt:before, .kg-blockquote-alt:after {
    background-color: var(--ghost-accent-color);
    content: "";
    height: 2px;
    left: 50%;
    margin-left: -12px;
    position: absolute;
    width:36px
}

.kg-blockquote-alt:before {
    top:0
}

.kg-blockquote-alt:after {
    bottom:0
}

#main .kg-audio-card, #main .kg-audio-thumbnail, #main .kg-file-card-container, #main .kg-file-card-icon:before {
    border-radius:0
}

#main .kg-file-card-container {
    border-color:var(--color-gray-light)
}

#main .kg-audio-card {
    box-shadow:inset 0 0 0 1px var(--color-gray-light)
}

#main .kg-file-card-title, #main .kg-audio-title {
    color: var(--color-gray-darkest);
    font-family: var(--gh-font-heading, var(--font-secondary));
    font-size: 1.11111rem;
    font-weight: 400;
    line-height:1.25
}

#main .kg-file-card-caption {
    font-size: .77778rem;
    margin:0
}

#main .kg-file-card-metadata {
    font-size: .77778rem;
    word-break:break-word
}

#main .kg-file-card-filesize:before {
    content: "\b7";
    margin:0 5px
}

.kg-bookmark-card {
    width:100%
}

.kg-bookmark-container {
    border: 1px solid var(--color-gray-light);
    color: inherit;
    display: flex;
    flex-direction: column;
    min-height: 140px;
    overflow: hidden;
    text-decoration: none;
    width:100%
}

.kg-bookmark-thumbnail {
    position: relative;
    flex-grow: 1;
    min-height: 160px;
    min-width:33%
}

.kg-bookmark-thumbnail img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width:100%
}

.kg-bookmark-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: start;
    gap: .83333rem;
    padding:1.11111rem
}

.kg-bookmark-title {
    color: var(--color-gray-darkest);
    font-family: var(--gh-font-heading, var(--font-secondary));
    font-size: 1.11111rem;
    font-weight: 400;
    line-height:1.25
}

.kg-bookmark-description {
    display: -webkit-box;
    font-size: .88889rem;
    font-weight: 400;
    line-height: 1.5;
    max-height: 4.5em;
    overflow-y: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient:vertical
}

.kg-bookmark-metadata {
    align-items: center;
    display: flex;
    font-size: .77778rem;
    line-height: 1.5;
    width:100%
}

.kg-bookmark-icon {
    border-radius: 0;
    height: 1.33333rem;
    margin-right: .75em;
    width:1.33333rem
}

.kg-bookmark-author {
    color:inherit
}

.kg-bookmark-publisher {
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space:nowrap
}

.kg-bookmark-publisher:before {
    content: "\b7";
    margin:0 5px
}

@media only screen and (min-width: 481px) {
    .kg-bookmark-container {
        flex-direction:row
    }

    .kg-bookmark-thumbnail {
        min-height:0
    }
}

#main .kg-callout-card {
    border-radius: 0;
    padding:1.11111rem
}

#main .kg-callout-card-white {
    box-shadow:inset 0 0 0 1px var(--color-gray-light)
}

#main .kg-callout-card-accent a:is(:hover, :focus) {
    text-decoration:none
}

#main .kg-cta-card {
    border-radius:0
}

#main .kg-cta-sponsor-label {
    font-family: var(--gh-font-body, var(--font-primary));
    font-weight: 400;
    letter-spacing:.075em
}

.kg-gallery-container {
    display: flex;
    flex-direction:column
}

.kg-gallery-row {
    display: flex;
    flex-direction: row;
    justify-content:center
}

.kg-gallery-row:not(:first-of-type) {
    margin:3px 0 0
}

.kg-gallery-image:not(:first-of-type) {
    margin:0 0 0 3px
}

.kg-gallery-image img {
    border-radius: 0;
    display: block;
    height: 100%;
    margin: 0;
    width:100%
}

#main .kg-header-card.kg-style-dark {
    background-color:var(--color-gray-darkest)
}

#main .kg-header-card.kg-style-light {
    background-color:var(--color-gray-lightest)
}

#main .kg-header-card-header {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.25;
    max-width: 740px;
    margin-bottom: 0;
    margin-top:0
}

#main .kg-header-card-header:after {
    background-color: var(--ghost-accent-color);
    content: "";
    display: block;
    height: 2px;
    margin: 1.66667rem auto 0;
    width:80px
}

#main .kg-header-card.kg-style-accent .kg-header-card-header:after {
    background-color:#fff
}

#main .kg-header-card-subheader {
    font-family: var(--gh-font-body, var(--font-primary));
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    max-width:740px
}

#main .kg-header-card-subheader:not(:first-child), #main .kg-header-card-button:not(:first-child) {
    margin-top:1.66667rem
}

@media only screen and (min-width: 481px) {
    #main .kg-header-card-header {
        font-size:2.33333rem
    }
}

@media only screen and (min-width: 641px) {
    #main .kg-header-card-header {
        font-size:2.66667rem
    }
}

#main .kg-card.kg-width-wide .kg-signup-card-text, #main .kg-card.kg-width-regular .kg-signup-card-text {
    padding-left: min(4vw, 30px);
    padding-right:min(4vw, 30px)
}

#main .kg-card.kg-width-wide .kg-signup-card-text {
    box-sizing: content-box;
    margin-left: auto;
    margin-right: auto;
    max-width:740px
}

#main .kg-header-card-heading, #main .kg-signup-card-heading {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing:normal
}

#main .kg-header-card-subheading, #main .kg-signup-card-subheading {
    font-family: var(--gh-font-body, var(--font-primary));
    font-size: 1rem;
    font-weight: 400;
    line-height:1.5
}

#main .kg-header-card-subheading:not(:first-child), #main .kg-signup-card-subheading:not(:first-child) {
    margin-top:1.11111rem
}

#main .kg-signup-card-form:not(:first-child) {
    margin-top:1.66667rem
}

#main .kg-signup-card-fields {
    border-radius: 0;
    gap: 2px;
    max-width: 480px;
    padding:2px
}

#main .kg-signup-card-input, #main .kg-signup-card-button {
    height: 2.33333rem;
    margin:0
}

#main .kg-signup-card-disclaimer {
    font-size: .77778rem;
    line-height: 1.5;
    opacity:.7
}

@media (min-width: 481px) {
    #main .kg-width-full:not(.kg-layout-split) .kg-header-card-heading, #main .kg-width-full:not(.kg-layout-split) .kg-signup-card-heading {
        font-size:2.22222rem
    }
}

@media (min-width: 641px) {
    #main .kg-width-full:not(.kg-layout-split) .kg-header-card-heading, #main .kg-width-full:not(.kg-layout-split) .kg-signup-card-heading {
        font-size:2.66667rem
    }
}

@media (max-width: 480px) {
    #main .kg-signup-card-fields {
        flex-direction:column
    }
}

#main .kg-product-card-container {
    border-radius: 0;
    box-shadow: inset 0 0 0 1px var(--color-gray-light);
    padding:1.11111rem
}

#main .kg-product-card-image {
    border-radius:0
}

#main .kg-product-card-title {
    font-family: var(--gh-font-heading, var(--font-secondary));
    font-size: 1.11111rem;
    font-weight: 400;
    line-height:1.25
}

#main .kg-product-card-description {
    font-size: .88889rem;
    line-height:1.5
}

#main .kg-product-card-description p, #main .kg-product-card-description ol, #main .kg-product-card-description ul {
    font-family:var(--gh-font-body, var(--font-primary))
}

#main .kg-toggle-card {
    border-radius: 0;
    box-shadow: inset 0 0 0 1px var(--color-gray-light);
    padding:1.11111rem
}

#main .kg-toggle-heading-text {
    font-size: 1.11111rem;
    font-weight: 400;
    line-height:1.25
}

#main .kg-toggle-card-icon svg {
    color:var(--color-gray)
}

.comments-area {
    border-top: 1px solid var(--color-gray-light);
    padding-bottom: 3.33333rem;
    padding-top:2.5rem
}

.comments-header {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.66667rem;
    justify-content: space-between;
    margin-bottom: 1.66667rem;
    row-gap:.5rem
}

.comments-title {
    font-size: 1.33333rem;
    margin:0
}

.comments-count {
    color: var(--color-gray);
    font-size: 12px;
    letter-spacing: .16667em;
    text-transform:uppercase
}

.comments-title-disqus {
    margin-bottom:1.11111rem
}

.pagination {
    border-top: 1px solid var(--color-gray-light);
    color: var(--color-gray);
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
    text-align: center;
    text-transform:uppercase
}

.pagination .inner {
    position:relative
}

.page-number {
    display: inline-block;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: .16667em;
    padding:.61111rem 2.22222rem
}

.newer-posts, .older-posts {
    color: var(--color-gray);
    font-size: 1.33333rem;
    position: absolute;
    top: 50%;
    transform:translateY(-50%)
}

.newer-posts:is(:hover, :focus, :active), .older-posts:is(:hover, :focus, :active) {
    color:var(--color-gray-dark)
}

.newer-posts {
    left:0
}

.older-posts {
    right:0
}

@media only screen and (min-width: 641px) {
    .pagination {
        padding-bottom: 3.33333rem;
        padding-top:3.33333rem
    }

    .newer-posts, .older-posts {
        font-size:1.66667rem
    }
}

.post-navigation {
    background-color: var(--color-gray-darkest);
    border-bottom: 1px solid rgb(var(--color-gray-dark-rgb) /.3);
    overflow:hidden
}

.post-navigation:after {
    clear:both
}

.post-navigation:before, .post-navigation:after {
    content: "";
    display:table
}

.nav-previous, .nav-next {
    box-sizing: border-box;
    color: #fff;
    display: block;
    overflow: hidden;
    padding-bottom: 300px;
    position:relative
}

.nav-next + .nav-previous {
    border-color: rgb(var(--color-gray-dark-rgb) /.3);
    border-style: solid;
    border-width:1px 0 0
}

.nav-previous:is(:hover, :focus), .nav-next:is(:hover, :focus) {
    color:#fff
}

.nav-bg {
    inset: 0;
    opacity: .5;
    position: absolute;
    transform: scale(1);
    transition:transform 1s
}

.nav-bg img {
    height: 100%;
    left: 0;
    object-fit: cover;
    position: absolute;
    top: 0;
    width:100%
}

:is(.nav-next, .nav-previous):is(:hover, :focus) .nav-bg {
    transform:scale(1.05)
}

.nav-inside {
    inset: 0;
    overflow: hidden;
    padding-bottom: 1.66667rem;
    padding-top: 3.33333rem;
    position:absolute
}

.nav-before {
    color: var(--ghost-accent-color);
    font-family: var(--gh-font-heading, var(--font-secondary));
    font-size: .88889rem;
    margin-bottom: 1.11111rem;
    padding-bottom: .25em;
    position:relative
}

.nav-before:after {
    background-color: var(--ghost-accent-color);
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width:80px
}

.nav-title {
    color: inherit;
    margin-bottom: .55556rem;
    margin-top: 0;
    max-width:540px
}

.nav-date {
    color: var(--color-gray);
    font-size: 12px;
    letter-spacing: .16667em;
    text-transform:uppercase
}

@media only screen and (min-width: 481px) {
    .nav-previous, .nav-next {
        padding-bottom:360px
    }

    .nav-inside {
        padding-top:5rem
    }
}

@media only screen and (min-width: 861px) {
    .nav-previous, .nav-next {
        width:50%
    }

    .nav-previous:only-child, .nav-next:only-child {
        width:100%
    }

    .nav-previous {
        float: right;
        text-align:right
    }

    .nav-previous .nav-before:after {
        left: auto;
        right:0
    }

    .nav-previous .nav-title {
        margin-left:auto
    }

    .nav-next {
        float: left;
        text-align:left
    }

    .nav-next + .nav-previous {
        border-width:0 0 0 1px
    }
}

.page-header .cover-content {
    position:relative
}

.page-header .author-avatar {
    border: 2px solid var(--color-gray-dark);
    border-radius: 50%;
    height: 5rem;
    margin: 0 auto 1.11111rem;
    width:5rem
}

.post-count {
    font-family: var(--gh-font-heading, var(--font-secondary));
    font-size: .88889rem;
    margin-bottom:.83333rem
}

.page-title {
    color: #fff;
    margin:0 0 1.66667rem
}

.page-description {
    font-size: .88889rem;
    margin-bottom:1.66667rem
}

.author-links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.5em;
    row-gap: .75em;
    font-size: 12px;
    justify-content: center;
    letter-spacing: .16667em;
    line-height: 1.25;
    margin-bottom: 1.66667rem;
    text-transform:uppercase
}

.author-link {
    align-items: center;
    display:inline-flex
}

.author-link a {
    text-decoration:none
}

.author-link a:is(:hover, :focus) {
    color:var(--color-gray-light)
}

.author-link svg {
    fill: currentColor;
    flex-shrink: 0;
    height: 1em;
    margin-right: .5em;
    width:1em
}

.custom-template {
    background-color: var(--color-gray-darkest);
    color: var(--color-gray-light);
    position:relative
}

.custom-template .site-content {
    justify-content: center;
    padding-bottom: 3.33333rem;
    padding-top: 3.33333rem;
    position: relative;
    text-align:center
}

.custom-template a {
    color:var(--ghost-accent-color)
}

.custom-template a:is(:hover, :focus) {
    color:var(--color-gray-light)
}

.custom-template .page-description {
    margin-bottom:1rem
}

.go-back-button svg {
    font-size: 1.25em;
    margin-left:.5em
}

.sidebar {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: var(--color-gray-darkest);
    bottom: 0;
    color: var(--color-gray-light);
    -webkit-overflow-scrolling: touch;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    transform: translate(100%);
    transition: transform .3s cubic-bezier(.65, .05, .36, 1), visibility 0s .3s;
    visibility: hidden;
    width: 100%;
    z-index:999
}

.sidebar .inner {
    padding-bottom: 3.33333rem;
    padding-top:4.16667rem
}

.sidebar-opened .site {
    height: 100%;
    overflow: hidden;
    position: fixed;
    width:100%
}

.sidebar-opened .sidebar {
    transform: translate(0);
    transition: transform .3s cubic-bezier(.65, .05, .36, 1);
    visibility:visible
}

.sidebar-scrollable {
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    position:relative
}

.sidebar .sidebar-toggle {
    color: var(--color-gray-lightest);
    left: 50%;
    position: absolute;
    top: 20px;
    transform:translate(-50%)
}

.sidebar .subscribe-button {
    margin:.5em 0
}

@media only screen and (min-width: 641px) {
    .sidebar .subscribe-button {
        display:none
    }
}

.widget-area {
    border-top: 1px solid var(--color-gray-dark);
    padding-top:2.5rem
}

.widget {
    margin-bottom:2.5rem
}

.widget-title {
    color: #fff;
    margin: 0 0 1.66667rem;
    position:relative
}

.widget-title:before, .widget-title:after {
    content: "\a0\2013\a0"
}

.widget a:is(:hover, :focus) {
    color:var(--color-gray-light)
}

.widget .button-outlined, .widget .button-outlined:is(:hover, :focus, :active) {
    border-color:var(--color-gray-dark)
}

.widget .button-outlined:before, .widget-outlined:after, .widget .button-outlined span:before, .widget .button-outlined span:after {
    background:var(--color-gray)
}

.widget-navigation .menu-item {
    margin-bottom:.83333rem
}

.tagcloud {
    display: flex;
    flex-wrap: wrap;
    justify-content:center
}

.tagcloud .button {
    margin:0 .375em .75em
}

@media only screen and (min-width: 861px) {
    .widget-area {
        padding-top:3.33333rem
    }

    .widget {
        margin-bottom:3.33333rem
    }
}

.site-footer {
    background-color: var(--color-gray-darkest);
    color: var(--color-gray-dark);
    padding-bottom: 1.66667rem;
    padding-top: 2.5rem;
    text-align:center
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom:1.11111rem
}

.social-links .button-social {
    border-color: var(--color-gray-dark);
    color: var(--color-gray);
    margin:0 .5rem .625rem
}

.social-links .button-social:is(:hover, :focus, :active) {
    border-color: var(--color-gray-dark);
    color:var(--ghost-accent-color)
}

.social-links .button-social:after {
    box-shadow:0 0 0 1px rgb(var(--color-gray-dark-rgb)/var(--shadow-opacity))
}

.footer-navigation {
    margin-bottom:1.66667rem
}

.footer-navigation .menu-item {
    margin:0 .75em .83333rem
}

:where(.footer-navigation, .site-info) a:is(:hover, :focus) {
    color:var(--color-gray)
}

.site-info {
    font-size: 11px;
    letter-spacing: .15em;
    margin-bottom: 1.25rem;
    text-transform:uppercase
}

.site-info a {
    text-decoration: none;
    color:var(--color-gray)
}

.back-to-top {
    color: var(--color-gray-dark);
    font-size:1.33333rem
}

.back-to-top:is(:hover, :focus, :active) {
    color:var(--ghost-accent-color)
}

@media only screen and (min-width: 641px) {
    .footer-navigation .menu {
        display: flex;
        justify-content:center
    }

    .back-to-top {
        font-size:1.66667rem
    }
}

@keyframes fadeIn {
    0% {
        opacity:0
    }

    to {
        opacity:1
    }
}

@keyframes fadeTo50 {
    0% {
        opacity:0
    }

    to {
        opacity:.5
    }
}

@keyframes fadeTo100 {
    0% {
        opacity:0
    }

    to {
        opacity:1
    }
}

@keyframes blink {
    0% {
        opacity: 1;
        transform:translateY(-10px)
    }

    25% {
        opacity:1
    }

    75% {
        opacity: 0;
        transform:translateY(0)
    }

    to {
        opacity:0
    }
}

.tag-hash-hide-title .post-title {
    display:none !important
}

.post-list .post-content > :first-child {
    margin-top:1rem !important
}

.infinite-scroll-loader {
    text-align: center;
    padding: 2rem;
    color: var(--color-gray);
    font-size: 12px;
    letter-spacing: .16667em;
    text-transform:uppercase
}

.tag-art .post-title, .tag-photos .post-title, .tag-quotes .post-title {
    display:none !important
}

.tag-art .post-author, .tag-photos .post-author, .tag-quotes .post-author {
    display:none !important
}

.tag-art .post-byline-content, .tag-photos .post-byline-content, .tag-quotes .post-byline-content {
    margin-left:0 !important
}

.post-excerpt {
    display:none
}

.post-read-more {
    display:none
}

.tag-essays .post-excerpt {
    display: block !important;
    margin-top: 1.5rem;
    line-height:1.667
}

.tag-essays .post-author {
    font-style:italic !important
}

.post-list .tag-essays .post-content {
    display:none !important
}

.tag-essays .post-read-more {
    display: block !important;
    text-align: center;
    margin-top:1rem
}

.tag-essays .post-read-more a {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .16667em;
    text-transform: uppercase;
    border-bottom: 2px solid #000;
    transition:opacity .2s
}

.tag-essays .post-read-more a:hover {
    opacity:.8
}

.post-list .tag-essays .post-header {
    text-align:center
}

.post-list .tag-essays .post-byline {
    justify-content:center
}

.post-list .tag-essays .post-excerpt {
    text-align:center
}

.post-template.tag-essays .site-logo {
    display:block !important
}

.post-template.tag-essays .cover {
    min-height:30vh
}

.post-template.tag-essays .cover-large {
    min-height:40vh
}

.post-template.tag-essays .cover-content {
    padding-top:6.66667rem
}

@media only screen and (min-width: 861px) {
    .post-template.tag-essays .cover-large {
        min-height:50vh
    }

    .post-template.tag-essays .cover-content {
        padding-top:8.33333rem
    }
}

.post-template.tag-essays .post-full .post-title {
    margin:0 0 .83333rem 0
}

.post-template.tag-essays .post-reading-time {
    order: 2;
    margin: 0;
    text-align:center
}

.post-template.tag-essays .post-full .post-byline {
    position: static;
    text-align: center;
    justify-content: center;
    order: 1;
    margin: 0 0 .83333rem 0;
    color:#fff
}

.post-template.tag-essays .post-full .post-byline a {
    color:#fff
}

.post-template.tag-essays .post-full .post-byline a:is(:hover, :focus) {
    color:var(--color-gray-light)
}

.post-template.tag-essays .cover-content {
    display: flex;
    flex-direction:column
}



.header-navigation .action-item-search, .header-navigation .action-item-subscribe, .header-navigation .action-item-account, .header-navigation .action-item-signin {
    display:none !important
}
ul.nested-menu {
    background: #000 !important;
    border: 1px solid var(--color-gray-dark) !important;
    padding: .5rem 0 !important;
    text-align:left !important
}

ul.nested-menu li a {
    background-color: #000 !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: .5rem 1rem !important;
    display: block !important;
    text-align:left !important
}

ul.nested-menu li a:hover {
    opacity: .7 !important;
    background-color: rgba(255, 255, 255, .1) !important
}


/* CENTER TITLES, AUTHOR, AND DATES */
.post-title,
.page-title,
.hero-title {
    text-align: center !important;
}

.post-byline {
    justify-content: center !important;
}

.post-author,
.post-date,
.post-byline-content {
    text-align: center !important;
}

/* KILL THE GRID */
.post-content {
    display: block !important;
}

/* CENTER CAPTIONS */
figcaption,
.kg-image-card figcaption {
    text-align: center !important;
}

/* HAMBURGER MENU - ABSOLUTE RIGHT POSITIONING */
.site-header-inside {
    position: relative !important;
}

.hamburger-menu {
    background: transparent !important;
    border: 0 !important;
    cursor: pointer !important;
    padding: 10px !important;
    color: #fff !important;
    width: 44px !important;
    height: 44px !important;
    position: absolute !important;
    right: min(4vw, 30px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 1000 !important;
}

.hamburger-box {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger-inner {
    top: 11px;
    left: 0;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    left: 0;
}

.hamburger-inner::before {
    top: -7px;
}

.hamburger-inner::after {
    top: 7px;
}

.hamburger-menu.is-active .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger-menu.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger-menu.is-active .hamburger-inner::after {
    top: 0;
    transform: rotate(-90deg);
}

.dropdown-menu {
    position: fixed !important;
    top: 0 !important;
    right: -350px !important;
    width: 300px !important;
    height: 100vh !important;
    background-color: #101012 !important;
    transition: right 0.3s ease-in-out !important;
    z-index: 999 !important;
    overflow-y: auto !important;
    padding: 80px 30px 30px !important;
    box-sizing: border-box !important;
}

.dropdown-menu.is-open {
    right: 0 !important;
}

.dropdown-menu .menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu .menu-item {
    margin: 0 0 1.5rem 0;
}

.dropdown-menu .menu-item a {
    color: #fff !important;
    text-decoration: none !important;
    display: block !important;
    padding: 0.75rem 0 !important;
    font-size: 14px !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
}

.dropdown-menu .menu-item a:hover {
    color: var(--ghost-accent-color) !important;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}


.page-header .post-logo-link {
    display: block !important;
    margin-bottom: 2.5rem !important;
}

.post-template .site-logo {
max-width: 200px;
height: auto;
}

.tag-template .site-header .site-logo {
display: block !important;
}


}.post-template .site-title{display:block!important}.post-template.tag-essays .site-logo{display:block!important}media only screen and (max-width: 640px) {
    .site-header {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .site-logo {
        max-width: 50px !important;
        margin-right: 15px !important;
    }

    .site-title {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    .header-navigation .actions {
        gap: 10px;
    }

    .post-template .site-logo {
        max-width: 50px !important;
    }
}