:root {
    --color-primary-text: #333;
    --color-secondary-text: #999;
    --color-white: #fff;
    --color-lighter-gray: #f6f6f6;
    --color-light-gray: #e6e6e6;
    --color-mid-gray: #ccc;
    --color-dark-gray: #444;
    --color-darker-gray: #15171a;
    --color-black: #000;
    --font-sans: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    --font-serif: Georgia, serif;
    --font-mono: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
    --head-nav-gap: 2.8rem;
    --h1-size: 4.6rem;
    --gap: 3.6rem;
    --header-spacing: 80px
}

@media (max-width:767px) {
    :root {
        --h1-size: 3.2rem !important;
        --gap: 2rem;
        --header-spacing: 48px
    }
}

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

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0
}

ol[role=list],
ul[role=list] {
    list-style: none
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    line-height: 1.5;
    min-height: 100vh;
    text-rendering: optimizespeed
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img,
picture {
    display: block;
    max-width: 100%
}

button,
input,
select,
textarea {
    font: inherit
}

@media (prefers-reduced-motion:reduce) {
    html:focus-within {
        scroll-behavior: auto
    }

    *,
    :after,
    :before {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }
}

html {
    font-size: 62.5%
}

body {
    background-color: var(--color-white);
    color: var(--color-primary-text);
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.6rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

img {
    height: auto
}

a {
    color: var(--color-darker-gray);
    text-decoration: none
}

a:hover {
    opacity: .8
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-darker-gray);
    font-family: var(--gh-font-heading, var(--font-sans));
    letter-spacing: -.02em;
    line-height: 1.15
}

h1 {
    font-size: var(--h1-size)
}

h2 {
    font-size: 2.8rem
}

h3 {
    font-size: 2.4rem
}

h4 {
    font-size: 2.2rem
}

h5 {
    font-size: 2rem
}

h6 {
    font-size: 1.8rem
}

hr {
    background-color: var(--color-light-gray);
    border: 0;
    height: 1px;
    width: 100%
}

blockquote:not([class]) {
    border-left: 4px solid var(--ghost-accent-color);
    padding-left: 2rem
}

figcaption {
    color: var(--color-secondary-text);
    font-size: 1.4rem;
    line-height: 1.4;
    margin-top: 1.6rem;
    text-align: center
}

.kg-width-full figcaption {
    padding: 0 1.6rem
}

.gh-content figcaption a {
    color: var(--color-darker-gray);
    text-decoration: none
}

pre {
    background-color: var(--color-lighter-gray);
    -webkit-hyphens: none;
    hyphens: none;
    line-height: 1.5;
    overflow-x: scroll;
    padding: 1.6rem 2.4rem;
    white-space: pre;
    -webkit-overflow-scrolling: touch
}

code {
    font-family: var(--font-mono);
    font-size: 15px
}

:not(pre)>code {
    background-color: var(--color-lighter-gray);
    border-radius: 3px;
    color: var(--ghost-accent-color);
    padding: .4rem
}

iframe {
    border: 0;
    display: block;
    overflow: hidden;
    width: 100%
}

@media (max-width:767px) {
    h2 {
        font-size: 2.4rem
    }

    h3 {
        font-size: 2.1rem
    }
}

.gh-site {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.gh-main {
    flex-grow: 1;
    padding-bottom: 8rem;
    padding-top: 8rem
}

.page-template .gh-main {
    padding-block: 0
}

.gh-outer {
    padding-left: var(--gap);
    padding-right: var(--gap)
}

.gh-inner {
    margin: 0 auto;
    /* max-width: var(--container-width, 1200px) */
    max-width: var(--container-width, 1260px)
}

.gh-canvas,
.kg-width-full.kg-content-wide {
    --main: min(var(--content-width, 720px), 100% - var(--gap) * 2);
    --wide: minmax(0, calc((var(--container-width, 1200px) - var(--content-width, 720px))/2));
    --full: minmax(var(--gap), 1fr);
    display: grid;
    grid-template-columns: [full-start] var(--full) [wide-start] var(--wide) [main-start] var(--main) [main-end] var(--wide) [wide-end] var(--full) [full-end]
}

.gh-canvas>* {
    grid-column: main
}

.kg-content-wide>div,
.kg-width-wide {
    grid-column: wide
}

.kg-width-full {
    grid-column: full
}

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

@media (max-width:767px) {
    #gh-main {
        padding-bottom: 4.8rem;
        padding-top: 4.8rem
    }
}

.gh-head {
    background-color: var(--color-white);
    height: 110px;
}

.gh-head-inner {
    align-items: center;
    -moz-column-gap: var(--head-nav-gap);
    column-gap: var(--head-nav-gap);
    display: grid;
    grid-auto-flow: row dense;
    grid-template-columns: 1fr auto auto;
    height: 100%
}

.gh-head-brand {
    line-height: 1
}

.gh-head-brand-wrapper {
    align-items: center;
    display: flex
}

.gh-head-logo {
    font-family: var(--gh-font-heading, var(--font-sans));
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -.02em;
    position: relative
}

.gh-head-logo img {
    max-height: 40px;
}

.gh-head-logo img:nth-child(2) {
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0
}

.gh-head-menu {
    display: flex
}

.gh-head .nav,
.gh-head-menu {
    align-items: center;
    /* gap: var(--head-nav-gap) */
    gap: 34px;
}

.gh-head .nav {
    display: inline-flex;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap
}

.gh-head .nav-more-toggle {
    font-size: inherit;
    margin: 0 -6px;
    position: relative;
    text-transform: inherit
}

.gh-head .nav-more-toggle svg {
    height: 24px;
    width: 24px
}

.gh-head-actions {
    align-items: center;
    display: flex;
    gap: var(--head-nav-gap);
    justify-content: flex-end
}

.gh-head-members {
    align-items: center;
    display: flex;
    gap: 20px;
    white-space: nowrap
}

.gh-head-btn.gh-btn {
    font-size: inherit;
    font-weight: 600
}

.gh-head-btn:not(.gh-btn) {
    align-items: center;
    color: var(--ghost-accent-color);
    display: inline-flex
}

.gh-head-btn svg {
    height: 1.3em;
    width: 1.3em
}

.gh-search {
    /* margin-left: -6px; */
    /* margin-right: -6px */
}

.gh-search:hover {
    opacity: .9
}

.gh-head-brand .gh-search {
    margin-right: 8px
}

@media (max-width:767px) {
    .gh-head-members {
        flex-direction: column-reverse;
        gap: 16px;
        width: 100%
    }

    .gh-head-actions .gh-search {
        display: none
    }
}

@media (min-width:768px) {
    .gh-head-brand .gh-search {
        display: none
    }

    body:not(.is-dropdown-loaded) .gh-head-menu .nav>li {
        opacity: 0
    }
}

.is-head-left-logo .gh-head-inner {
    grid-template-columns: auto 1fr auto
}

@media (min-width:992px) {
    .is-head-left-logo .gh-head-menu {
        /* margin-left: 16px;
        margin-right: 64px */
        margin-left: 70px;
    }
}

.is-head-middle-logo .gh-head-inner {
    grid-template-columns: 1fr auto 1fr
}

.is-head-middle-logo .gh-head-brand {
    grid-column-start: 2
}

.is-head-middle-logo .gh-head-actions {
    gap: 28px
}

@media (min-width:992px) {
    .is-head-middle-logo .gh-head-menu {
        margin-right: 64px
    }
}

.is-head-stacked .gh-head {
    height: auto;
    position: relative
}

.is-head-stacked .gh-head-inner {
    grid-template-columns: 1fr auto 1fr
}

.is-head-stacked .gh-head-brand {
    display: flex;
    grid-column-start: 2;
    grid-row-start: 1;
    min-height: 80px
}

@media (max-width:767px) {
    .is-head-stacked .gh-head-brand {
        min-height: unset
    }
}

@media (min-width:992px) {
    .is-head-stacked .gh-head-inner {
        padding: 0
    }

    .is-head-stacked .gh-head-brand {
        align-items: center;
        display: flex;
        height: 80px
    }

    .is-head-stacked .gh-head-menu {
        grid-column: 1/4;
        grid-row-start: 2;
        height: 56px;
        justify-content: center;
        margin: 0 48px
    }

    .is-head-stacked .gh-head-menu:after,
    .is-head-stacked .gh-head-menu:before {
        background-color: var(--color-light-gray);
        content: "";
        height: 1px;
        left: 0;
        position: absolute;
        top: 80px;
        width: 100%
    }

    .is-head-stacked .gh-head-menu:after {
        top: 136px
    }

    .is-head-stacked .gh-head-actions {
        grid-column: 1/4;
        grid-row-start: 1;
        justify-content: space-between
    }
}

.is-head-transparent .gh-head {
    background-color: transparent;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 90
}

.is-head-transparent .gh-head .nav>li a,
.is-head-transparent .gh-head-description,
.is-head-transparent .gh-head-link,
.is-head-transparent .gh-head-logo,
.is-head-transparent .gh-head-logo a,
.is-head-transparent .gh-search,
.is-head-transparent .gh-social,
.is-head-transparent .nav-more-toggle {
    color: var(--color-white)
}

.is-head-transparent .gh-burger:after,
.is-head-transparent .gh-burger:before {
    background-color: var(--color-white)
}

.is-head-transparent .gh-head-btn {
    background-color: #fff;
    color: #15171a
}

.is-head-transparent .gh-head-menu:after,
.is-head-transparent .gh-head-menu:before {
    background-color: hsla(0, 0%, 100%, .2)
}

.is-head-transparent #announcement-bar-root {
    left: 0;
    position: absolute;
    right: 0
}

.is-head-transparent #announcement-bar-root:not(:empty)+:is(.site, .gh-site) .gh-head {
    margin-top: 48px
}

.is-head-dark:not(.is-head-transparent) .gh-head {
    background-color: var(--color-darker-gray)
}

.is-head-dark:not(.is-head-transparent) .gh-head .nav a,
.is-head-dark:not(.is-head-transparent) .gh-head-description,
.is-head-dark:not(.is-head-transparent) .gh-head-link,
.is-head-dark:not(.is-head-transparent) .gh-head-logo,
.is-head-dark:not(.is-head-transparent) .gh-head-logo a,
.is-head-dark:not(.is-head-transparent) .gh-search,
.is-head-dark:not(.is-head-transparent) .gh-social,
.is-head-dark:not(.is-head-transparent) .nav-more-toggle {
    color: var(--color-white)
}

.is-head-dark:not(.is-head-transparent) .gh-burger:after,
.is-head-dark:not(.is-head-transparent) .gh-burger:before {
    background-color: var(--color-white)
}

.is-head-dark:not(.is-head-transparent) .gh-head-btn {
    background-color: #fff;
    color: #15171a
}

.is-head-dark:not(.is-head-transparent) .gh-head-menu:after,
.is-head-dark:not(.is-head-transparent) .gh-head-menu:before {
    background-color: hsla(0, 0%, 100%, .2)
}

.is-head-brand:not(.is-head-transparent) .gh-head {
    background-color: var(--ghost-accent-color)
}

.is-head-brand:not(.is-head-transparent) .gh-head .nav a,
.is-head-brand:not(.is-head-transparent) .gh-head-description,
.is-head-brand:not(.is-head-transparent) .gh-head-link,
.is-head-brand:not(.is-head-transparent) .gh-head-logo,
.is-head-brand:not(.is-head-transparent) .gh-head-logo a,
.is-head-brand:not(.is-head-transparent) .gh-search,
.is-head-brand:not(.is-head-transparent) .gh-social,
.is-head-brand:not(.is-head-transparent) .nav-more-toggle {
    color: var(--color-white)
}

.is-head-brand:not(.is-head-transparent) .gh-burger:after,
.is-head-brand:not(.is-head-transparent) .gh-burger:before {
    background-color: var(--color-white)
}

.is-head-brand:not(.is-head-transparent) .gh-head-btn {
    background-color: #fff;
    color: #15171a
}

.is-head-brand:not(.is-head-transparent) .gh-head-menu:after,
.is-head-brand:not(.is-head-transparent) .gh-head-menu:before {
    background-color: hsla(0, 0%, 100%, .3)
}

.gh-dropdown {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .04), 0 7px 20px -5px rgba(0, 0, 0, .15);
    margin-top: 24px;
    opacity: 0;
    padding: 12px 0;
    position: absolute;
    right: -16px;
    text-align: left;
    top: 100%;
    transform: translate3d(0, 6px, 0);
    transition: opacity .3s, transform .2s;
    visibility: hidden;
    width: 200px;
    z-index: 90
}

.is-head-middle-logo .gh-dropdown {
    left: -24px;
    right: auto
}

.is-dropdown-mega .gh-dropdown {
    -moz-column-gap: 40px;
    column-gap: 40px;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
    padding: 20px 32px;
    width: auto
}

.is-dropdown-open .gh-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible
}

.gh-dropdown li a {
    color: #15171a !important;
    display: block;
    padding: 6px 20px
}

.is-dropdown-mega .gh-dropdown li a {
    padding: 8px 0
}

.gh-burger {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 30px;
    margin-right: -3px;
    padding: 0;
    position: relative;
    width: 30px
}

.gh-burger:after,
.gh-burger:before {
    background-color: var(--color-darker-gray);
    content: "";
    height: 1px;
    left: 3px;
    position: absolute;
    transition: all .2s cubic-bezier(.04, .04, .12, .96) .1008s;
    width: 24px
}

.gh-burger:before {
    top: 11px
}

.gh-burger:after {
    bottom: 11px
}

.is-head-open .gh-burger:before {
    top: 15px;
    transform: rotate(45deg)
}

.is-head-open .gh-burger:after {
    bottom: 14px;
    transform: rotate(-45deg)
}

@media (max-width:767px) {
    #gh-head {
        height: 64px
    }

    #gh-head .gh-head-inner {
        gap: 48px;
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto
    }

    #gh-head .gh-head-brand {
        align-items: center;
        display: grid;
        grid-column-start: 1;
        grid-template-columns: 1fr auto auto;
        height: 64px
    }

    #gh-head .gh-head-logo {
        font-size: 2.2rem
    }

    .gh-burger {
        display: block
    }

    #gh-head .gh-head-actions,
    #gh-head .gh-head-menu {
        justify-content: center;
        opacity: 0;
        position: fixed;
        visibility: hidden
    }

    #gh-head .gh-head-menu {
        transform: translateY(0);
        transition: none
    }

    #gh-head .nav {
        align-items: center;
        gap: 20px;
        line-height: 1.4
    }

    #gh-head .nav a {
        font-size: 2.6rem;
        font-weight: 600;
        text-transform: none
    }

    #gh-head .nav li {
        opacity: 0;
        transform: translateY(-4px)
    }

    #gh-head .gh-head-actions {
        text-align: center
    }

    #gh-head :is(.gh-head-btn, .gh-head-link) {
        opacity: 0;
        transform: translateY(8px)
    }

    #gh-head .gh-head-btn {
        font-size: 1.8rem;
        text-transform: none;
        width: 100%
    }

    #gh-head .gh-head-btn:not(.gh-btn) {
        font-size: 2rem
    }

    #gh-main {
        transition: opacity .4s
    }

    .is-head-open #gh-head {
        height: 100%;
        inset: 0;
        overflow-y: scroll;
        position: fixed;
        z-index: 3999999;
        -webkit-overflow-scrolling: touch
    }

    .is-head-open:not(.is-head-brand):not(.is-head-dark):not(.is-head-transparent) #gh-head {
        background-color: var(--color-white)
    }

    .is-head-open.is-head-transparent #gh-head,
    .is-head-open:is(.is-head-transparent, .is-head-brand) #gh-head .gh-head-actions {
        background-color: var(--ghost-accent-color)
    }

    .is-head-open.is-head-dark #gh-head,
    .is-head-open.is-head-dark #gh-head .gh-head-actions {
        background-color: var(--color-darker-gray)
    }

    .is-head-open #gh-head .gh-head-actions,
    .is-head-open #gh-head .gh-head-menu {
        opacity: 1;
        position: static;
        visibility: visible
    }

    .is-head-open #gh-head .nav {
        display: flex;
        flex-direction: column
    }

    .is-head-open #gh-head .nav li {
        opacity: 1;
        transform: translateY(0);
        transition: transform .2s, opacity .2s
    }

    .is-head-open #gh-head .gh-head-actions {
        align-items: center;
        background-color: var(--color-white);
        bottom: 0;
        display: inline-flex;
        flex-direction: column;
        gap: 12px;
        left: 0;
        padding: var(--gap) 0 calc(var(--gap) + 8px);
        position: sticky;
        right: 0
    }

    .is-head-open #gh-head :is(.gh-head-btn, .gh-head-link) {
        opacity: 1;
        transform: translateY(0);
        transition: transform .4s, opacity .4s;
        transition-delay: .2s
    }

    .is-head-open #gh-head .gh-head-link {
        transition-delay: .4s
    }

    .is-head-open #gh-main {
        opacity: 0
    }
}

.gh-cover {
    min-height: var(--cover-height, 50vh);
    padding-bottom: 6.4rem;
    padding-top: 6.4rem;
    position: relative
}

.gh-cover-image {
    height: 100%;
    inset: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
    z-index: -1
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) .gh-cover-title {
    font-family: var(--gh-font-heading, var(--font-serif))
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-cover-description {
    font-family: var(--gh-font-body, var(--font-serif))
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) .gh-card-title {
    font-family: var(--gh-font-heading, var(--font-serif));
    letter-spacing: -.01em
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-card-excerpt {
    font-family: var(--gh-font-body, var(--font-serif))
}

.gh-card {
    word-break: break-word
}

.page-template .gh-article-header {
    margin-top: var(--header-spacing, 80px)
}

.gh-article-tag {
    color: var(--ghost-accent-color)
}

.gh-article-title {
    word-break: break-word
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) .gh-article-title {
    font-family: var(--gh-font-heading, var(--font-serif));
    letter-spacing: -.01em
}

.gh-article-excerpt {
    color: var(--color-secondary-text);
    font-size: 2.1rem;
    line-height: 1.5;
    margin-top: 2rem
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-article-excerpt {
    font-family: var(--gh-font-body, var(--font-serif))
}

.gh-article-image {
    grid-column: wide-start/wide-end;
    margin-top: 4rem
}

.gh-article-image img {
    width: 100%
}

@media (max-width:767px) {
    .gh-article-excerpt {
        font-size: 1.9rem
    }

    .gh-article-image {
        margin-top: 2.4rem
    }
}

.gh-content {
    font-size: var(--content-font-size, 1.8rem);
    letter-spacing: var(--content-letter-spacing, 0);
    margin-top: 4rem;
    word-break: break-word
}

.gh-content>*+* {
    margin-bottom: 0;
    margin-top: calc(1.6em*var(--content-spacing-multiplier, 1))
}

.gh-content>[id] {
    margin: 0
}

.gh-content>.kg-card+[id] {
    margin-top: calc(2em*var(--content-spacing-multiplier, 1)) !important
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) .gh-content>[id] {
    font-family: var(--gh-font-heading, var(--font-serif));
    letter-spacing: -.01em
}

.gh-content>[id]:not(:first-child) {
    margin-top: calc(1.6em*var(--content-spacing-multiplier, 1))
}

.gh-content>[id]+* {
    margin-top: calc(.8em*var(--content-spacing-multiplier, 1))
}

.gh-content>blockquote,
.gh-content>hr {
    position: relative
}

.gh-content>blockquote,
.gh-content>blockquote+*,
.gh-content>hr,
.gh-content>hr+* {
    margin-top: calc(2.4em*var(--content-spacing-multiplier, 1))
}

.gh-content h2 {
    font-size: 1.6em
}

.gh-content h3 {
    font-size: 1.4em
}

.gh-content a {
    color: var(--ghost-accent-color);
    text-decoration: underline;
    word-break: break-word
}

.gh-content .kg-callout-card .kg-callout-text,
.gh-content .kg-toggle-card .kg-toggle-content>ol,
.gh-content .kg-toggle-card .kg-toggle-content>p,
.gh-content .kg-toggle-card .kg-toggle-content>ul {
    font-size: .95em
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content .kg-callout-text,
.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content .kg-toggle-content>ol,
.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content .kg-toggle-content>p,
.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content .kg-toggle-content>ul,
.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content>blockquote,
.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content>dl,
.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content>ol,
.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content>p,
.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .gh-content>ul {
    font-family: var(--gh-font-body, var(--font-serif))
}

.gh-content dl,
.gh-content ol,
.gh-content ul {
    padding-left: 2.8rem
}

.gh-content :is(li+li, li :is(ul, ol)) {
    margin-top: .8rem
}

.gh-content ol ol li {
    list-style-type: lower-alpha
}

.gh-content ol ol ol li {
    list-style-type: lower-roman
}

.gh-content table:not(.gist table) {
    border-collapse: collapse;
    border-spacing: 0;
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 1.6rem;
    max-width: 100%;
    overflow-x: auto;
    vertical-align: top;
    white-space: nowrap;
    width: auto;
    -webkit-overflow-scrolling: touch;
    background: radial-gradient(ellipse at left, rgba(0, 0, 0, .2) 0, transparent 75%) 0, radial-gradient(ellipse at right, rgba(0, 0, 0, .2) 0, transparent 75%) 100%;
    background-attachment: scroll, scroll;
    background-repeat: no-repeat;
    background-size: 10px 100%, 10px 100%
}

.gh-content table:not(.gist table) td:first-child {
    background-image: linear-gradient(90deg, #fff 50%, hsla(0, 0%, 100%, 0));
    background-repeat: no-repeat;
    background-size: 20px 100%
}

.gh-content table:not(.gist table) td:last-child {
    background-image: linear-gradient(270deg, #fff 50%, hsla(0, 0%, 100%, 0));
    background-position: 100% 0;
    background-repeat: no-repeat;
    background-size: 20px 100%
}

.gh-content table:not(.gist table) th {
    background-color: var(--color-white);
    color: var(--color-darkgrey);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .2px;
    text-align: left;
    text-transform: uppercase
}

.gh-content table:not(.gist table) td,
.gh-content table:not(.gist table) th {
    border: 1px solid var(--color-light-gray);
    padding: 6px 12px
}

.page-template .gh-content:only-child {
    margin-top: 0 !important
}

.page-template .gh-content:only-child>:first-child:not(.kg-width-full) {
    margin-top: var(--header-spacing, 80px)
}

.page-template .gh-content>:last-child:not(.kg-width-full) {
    margin-bottom: var(--footer-spacing, 0)
}

@media (max-width:767px) {
    .gh-content {
        font-size: 1.7rem;
        margin-top: 3.2rem
    }
}

.gh-comments {
    margin-bottom: -24px;
    margin-top: 64px
}

.gh-comments-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px
}

.gh-comments .gh-comments-title {
    margin-bottom: 28px
}

.gh-comments-header .gh-comments-title {
    margin-bottom: 0
}

.gh-comments-count {
    color: var(--color-secondary-text)
}

.gh-cta-gradient {
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0), var(--color-white));
    content: "";
    grid-column: full-start/full-end;
    height: 160px;
    margin-bottom: 4rem;
    margin-top: -16rem;
    position: relative
}

.gh-cta-gradient:first-child {
    display: none
}

.gh-cta {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    text-align: center
}

.gh-cta-title {
    font-size: 2.2rem;
    letter-spacing: -.02em;
    margin-bottom: 3.2rem
}

.gh-cta-actions {
    align-items: center;
    display: flex;
    flex-direction: column
}

.gh-cta-link {
    color: var(--color-secondary-text);
    cursor: pointer;
    font-size: 1.4rem;
    margin-top: .8rem;
    text-decoration: none
}

.gh-cta-link:hover {
    color: var(--color-darker-gray)
}

@media (max-width:767px) {
    .gh-cta-actions {
        -moz-column-gap: .8rem;
        column-gap: .8rem
    }
}

.gh-content :not(.kg-card):not(table):not([id])+:is(.kg-card, table) {
    margin-top: calc(2em*var(--content-spacing-multiplier, 1))
}

.gh-content :is(.kg-card, table)+:not(.kg-card):not(table):not([id]) {
    margin-top: calc(2em*var(--content-spacing-multiplier, 1))
}

.gh-content>.kg-width-full+.kg-width-full:not(.kg-width-full.kg-card-hascaption+.kg-width-full) {
    margin-top: 0
}

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

.kg-embed-card {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%
}

.kg-gallery-image,
.kg-image[width][height] {
    cursor: pointer
}

.kg-gallery-image a:hover,
.kg-image-card a:hover {
    opacity: 1 !important
}

.kg-card.kg-toggle-card .kg-toggle-heading-text {
    font-size: 2rem;
    font-weight: 700
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) .kg-toggle-card .kg-toggle-heading-text {
    font-family: var(--gh-font-heading, var(--font-serif))
}

.kg-callout-card.kg-card {
    border-radius: .25em
}

.kg-callout-card-accent a {
    text-decoration: underline
}

blockquote.kg-blockquote-alt {
    color: var(--color-secondary-text);
    font-style: normal;
    font-weight: 400
}

.kg-card.kg-button-card .kg-btn {
    font-size: 1em
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) .kg-card.kg-header-card h2.kg-header-card-header {
    font-family: var(--gh-font-heading, var(--font-serif))
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .kg-header-card h3.kg-header-card-subheader {
    font-family: var(--gh-font-body, var(--font-serif))
}

.kg-audio-card,
.kg-bookmark-card a.kg-bookmark-container,
.kg-bookmark-card a.kg-bookmark-container:hover,
.kg-file-card-container,
.kg-file-card-container:hover,
.kg-product-card-container {
    background: var(--background-color, #fff) !important;
    color: var(--color-darker-gray, #222) !important;
    opacity: 1
}

.kg-bookmark-card .kg-bookmark-container {
    border-radius: .25em !important
}

.kg-bookmark-card .kg-bookmark-content {
    padding: 1.15em
}

.kg-bookmark-card .kg-bookmark-title {
    font-size: .9em
}

.kg-bookmark-card .kg-bookmark-description {
    font-size: .8em;
    margin-top: .3em;
    max-height: none
}

.kg-bookmark-card .kg-bookmark-metadata {
    font-size: .8em
}

.kg-bookmark-card .kg-bookmark-thumbnail img {
    border-radius: 0 .2em .2em 0
}

.has-light-text .kg-audio-card button {
    color: #fff
}

.has-light-text .kg-audio-card .kg-audio-volume-slider {
    color: hsla(0, 0%, 100%, .3)
}

.pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    margin-top: 6.4rem
}

.page-number {
    grid-column-start: 2
}

.older-posts {
    text-align: right
}

.gh-navigation {
    align-items: center;
    -moz-column-gap: 2.4rem;
    column-gap: 2.4rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr
}

.gh-navigation>div {
    align-items: center;
    display: flex
}

.gh-navigation-next {
    justify-content: flex-end
}

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

.gh-navigation-link svg {
    height: 16px;
    width: 16px
}

.gh-navigation-previous svg {
    margin-right: .4rem
}

.gh-navigation-next svg {
    margin-left: .4rem
}

@media (max-width:767px) {
    .gh-navigation-hide {
        display: none
    }
}

.gh-btn {
    align-items: center;
    background-color: var(--color-darker-gray);
    border: 0;
    border-radius: 100px;
    color: var(--color-white);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.6rem;
    font-weight: 700;
    gap: .4em;
    justify-content: center;
    letter-spacing: inherit;
    line-height: 1;
    padding: calc(.75em*var(--multiplier, 1)) calc(1.15em*var(--multiplier, 1))
}

.gh-btn:hover {
    opacity: .95
}

.gh-post-upgrade-cta .gh-btn {
    line-height: inherit
}

.gh-primary-btn {
    background-color: var(--ghost-accent-color)
}

.gh-outline-btn {
    background-color: transparent;
    border: 1px solid var(--color-light-gray);
    color: var(--color-darker-gray);
    text-decoration: none
}

.gh-outline-btn:hover {
    border-color: var(--color-mid-gray);
    opacity: 1
}

.gh-icon-btn {
    align-items: center;
    background-color: transparent;
    border: 0;
    color: var(--darker-gray-color);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    outline: none;
    padding: 0;
    width: 40px;
    height: 40px;
}

.gh-icon-btn svg {
    height: 20px;
    width: 20px
}

.flag-icon {
    width: 30px;
    border: 1px solid #ccc; 
}


.gh-text-btn {
    align-items: center;
    background-color: transparent;
    border: 0;
    color: var(--darker-gray-color);
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    letter-spacing: inherit;
    margin: 0;
    outline: none;
    padding: 0;
    will-change: opacity
}

.gh-text-btn:hover {
    opacity: .8
}

.gh-foot {
    color: var(--color-secondary-text);
    padding-bottom: 8rem;
    padding-top: 8rem;
    white-space: nowrap
}

.gh-foot-inner {
    display: grid;
    font-size: 1.3rem;
    gap: 40px;
    grid-template-columns: 1fr auto 1fr
}

.no-menu .gh-foot-inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.gh-foot-menu .nav {
    align-items: center;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    row-gap: 4px
}

.gh-foot-menu .nav li {
    align-items: center;
    display: flex
}

.gh-foot-menu .nav li+li:before {
    content: "•";
    font-size: .9rem;
    line-height: 0;
    padding: 0 1.2rem
}

.gh-powered-by {
    text-align: right
}

.gh-foot a {
    color: var(--color-secondary-text)
}

.gh-foot a:hover {
    color: var(--color-darker-gray);
    opacity: 1
}

@media (max-width:767px) {
    .gh-foot {
        padding-bottom: 12rem;
        padding-top: 6.4rem
    }

    .gh-foot-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .gh-foot-menu .nav {
        flex-direction: column
    }

    .gh-foot-menu .nav li+li {
        margin-top: .4rem
    }

    .gh-foot-menu .nav li+li:before {
        display: none
    }

    .gh-powered-by {
        text-align: center
    }
}

.pswp {
    backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    touch-action: none;
    width: 100%;
    z-index: 3999999;
    -webkit-text-size-adjust: 100%
}

.pswp img {
    max-width: none
}

.pswp--animate_opacity {
    opacity: .001;
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1);
    will-change: opacity
}

.pswp--open {
    display: block
}

.pswp--zoom-allowed .pswp__img {
    cursor: zoom-in
}

.pswp--zoomed-in .pswp__img {
    cursor: grab
}

.pswp--dragging .pswp__img {
    cursor: grabbing
}

.pswp__bg {
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .85);
    opacity: 0;
    transform: translateZ(0);
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1);
    will-change: opacity
}

.pswp__bg,
.pswp__scroll-wrap {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.pswp__scroll-wrap {
    overflow: hidden
}

.pswp__container,
.pswp__zoom-wrap {
    backface-visibility: hidden;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    touch-action: none
}

.pswp__container,
.pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.pswp__zoom-wrap {
    position: absolute;
    transform-origin: left top;
    transition: transform 333ms cubic-bezier(.4, 0, .22, 1);
    width: 100%
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
    transition: none
}

.pswp__item {
    bottom: 0;
    overflow: hidden;
    right: 0
}

.pswp__img,
.pswp__item {
    left: 0;
    position: absolute;
    top: 0
}

.pswp__img {
    height: auto;
    width: auto
}

.pswp__img--placeholder {
    backface-visibility: hidden
}

.pswp__img--placeholder--blank {
    background: var(--color-black)
}

.pswp--ie .pswp__img {
    height: auto !important;
    left: 0;
    top: 0;
    width: 100% !important
}

.pswp__error-msg {
    color: var(--color-secondary-text);
    font-size: 14px;
    left: 0;
    line-height: 16px;
    margin-top: -8px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%
}

.pswp__error-msg a {
    color: var(--color-secondary-text);
    text-decoration: underline
}

.pswp__button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    border: 0;
    box-shadow: none;
    cursor: pointer;
    display: block;
    float: right;
    height: 44px;
    margin: 0;
    overflow: visible;
    padding: 0;
    position: relative;
    transition: opacity .2s;
    width: 44px
}

.pswp__button:focus,
.pswp__button:hover {
    opacity: 1
}

.pswp__button:active {
    opacity: .9;
    outline: none
}

.pswp__button::-moz-focus-inner {
    border: 0;
    padding: 0
}

.pswp__ui--over-close .pswp__button--close {
    opacity: 1
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    background: url(../images/default-skin.png) 0 0 no-repeat;
    background-size: 264px 88px;
    height: 44px;
    width: 44px
}

@media (-webkit-min-device-pixel-ratio:1.09375),
(-webkit-min-device-pixel-ratio:1.1),
(min-resolution:1.1dppx),
(min-resolution:105dpi) {

    .pswp--svg .pswp__button,
    .pswp--svg .pswp__button--arrow--left:before,
    .pswp--svg .pswp__button--arrow--right:before {
        background-image: url(../images/default-skin.svg)
    }

    .pswp--svg .pswp__button--arrow--left,
    .pswp--svg .pswp__button--arrow--right {
        background: none
    }
}

.pswp__button--close {
    background-position: 0 -44px
}

.pswp__button--share {
    background-position: -44px -44px
}

.pswp__button--fs {
    display: none
}

.pswp--supports-fs .pswp__button--fs {
    display: block
}

.pswp--fs .pswp__button--fs {
    background-position: -44px 0
}

.pswp__button--zoom {
    background-position: -88px 0;
    display: none
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: block
}

.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0
}

.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
    visibility: hidden
}

.pswp__button--arrow--left,
.pswp__button--arrow--right {
    background: none;
    height: 100px;
    margin-top: -50px;
    position: absolute;
    top: 50%;
    width: 70px
}

.pswp__button--arrow--left {
    left: 0
}

.pswp__button--arrow--right {
    right: 0
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
    content: "";
    height: 30px;
    position: absolute;
    top: 35px;
    width: 32px
}

.pswp__button--arrow--left:before {
    background-position: -138px -44px;
    left: 6px
}

.pswp__button--arrow--right:before {
    background-position: -94px -44px;
    right: 6px
}

.pswp__counter {
    color: var(--color-white);
    font-size: 11px;
    font-weight: 700;
    height: 44px;
    left: 0;
    line-height: 44px;
    padding: 0 15px;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.pswp__caption {
    bottom: 0;
    left: 0;
    min-height: 44px;
    position: absolute;
    width: 100%
}

.pswp__caption__center {
    color: var(--color-white);
    font-size: 11px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 420px;
    padding: 25px 15px 30px;
    text-align: center
}

.pswp__caption__center .post-caption-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 7px;
    text-transform: uppercase
}

.pswp__caption__center .post-caption-meta-item+.post-caption-meta-item:before {
    content: "\02022";
    padding: 0 4px
}

.pswp__caption--empty {
    display: none
}

.pswp__caption--fake {
    visibility: hidden
}

.pswp__preloader {
    direction: ltr;
    height: 44px;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: opacity .25s ease-out;
    width: 44px;
    will-change: opacity
}

.pswp__preloader__icn {
    height: 20px;
    margin: 12px;
    width: 20px
}

.pswp__preloader--active {
    opacity: 1
}

.pswp__preloader--active .pswp__preloader__icn {
    background: url(../images/preloader.gif) 0 0 no-repeat
}

.pswp--css_animation .pswp__preloader--active {
    opacity: 1
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    animation: clockwise .5s linear infinite
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    animation: donut-rotate 1s cubic-bezier(.4, 0, .22, 1) infinite
}

.pswp--css_animation .pswp__preloader__icn {
    background: none;
    height: 14px;
    left: 15px;
    margin: 0;
    opacity: .75;
    position: absolute;
    top: 15px;
    width: 14px
}

.pswp--css_animation .pswp__preloader__cut {
    height: 14px;
    overflow: hidden;
    position: relative;
    width: 7px
}

.pswp--css_animation .pswp__preloader__donut {
    background: none;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    border-radius: 50%;
    border-right: 2px solid var(--color-white);
    border-top: 2px solid var(--color-white);
    box-sizing: border-box;
    height: 14px;
    left: 0;
    margin: 0;
    position: absolute;
    top: 0;
    width: 14px
}

@media screen and (max-width:1024px) {
    .pswp__preloader {
        float: right;
        left: auto;
        margin: 0;
        position: relative;
        top: auto
    }
}

@keyframes clockwise {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

@keyframes donut-rotate {
    0% {
        transform: rotate(0)
    }

    50% {
        transform: rotate(-140deg)
    }

    to {
        transform: rotate(0)
    }
}

.pswp__ui {
    opacity: 1;
    visibility: visible;
    z-index: 1550;
    -webkit-font-smoothing: auto
}

.pswp__top-bar {
    height: 44px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right,
.pswp__caption,
.pswp__top-bar {
    backface-visibility: hidden;
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1);
    will-change: opacity
}

.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right,
.pswp__ui--idle .pswp__top-bar {
    opacity: 0
}

.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__top-bar {
    opacity: .001
}

.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
    display: none
}

.pswp__element--disabled {
    display: none !important
}

.pswp--minimal--dark .pswp__top-bar {
    background: none
}

:root {
    --primary-color: var(--ghost-accent-color, #6c5ce7);
    --primary-text-color: #333;
    --secondary-text-color: #999;
    --red-color: #dc3545;
    --orange-color: #ffc107;
    --green-color: #28a745;
    --white-color: #fff;
    --lighter-gray-color: #f7f7f7;
    --light-gray-color: #f1f1f1;
    --mid-gray-color: #e6e6e6;
    --dark-gray-color: #1a1a1a;
    --black-color: #000;
    --animation-base: ease-in-out;
    --h1-size: 3.8rem;
    --header-spacing: 60px
}

input[type=email],
input[type=password],
input[type=search],
input[type=text] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--mid-gray-color);
    border-radius: 5px;
    font-size: 16px;
    height: 50px;
    outline: none;
    padding: 0 15px;
    width: 100%
}

input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=text]:focus {
    border-color: var(--primary-color)
}

.form-wrapper {
    position: relative
}

.form-button {
    align-items: center;
    background-color: var(--primary-color);
    border: 0;
    border-radius: 4px;
    color: var(--white-color);
    cursor: pointer;
    display: flex;
    font-size: 20px;
    height: 40px;
    justify-content: center;
    outline: none;
    padding: 0;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.site-content {
    flex-grow: 1;
    padding-bottom: 30px;
    padding-top: 60px
}

.page-template .site-content {
    padding-block: 0
}

@media (max-width:767px) {
    .site-content {
        padding-bottom: 0;
        padding-top: 40px;
    }
}

.gh-head-logo {
    letter-spacing: -.01em
}

.gh-head-link,
.gh-head-menu {
    /* font-size: 1.5rem; */
    font-size: 24px;
    font-weight: 500;
    font-family: 'Noto Sans KR', sans-serif; 
}

.gh-head-menu:after {
    display: none
}

.site-cover {
    display: flex;
    min-height: 500px;
    z-index: unset !important
}

.site-cover .search {
    margin: 30px auto 0;
    width: 400px
}

.site-cover .search-field {
    align-items: center;
    background-color: var(--white-color);
    border-radius: 5px;
    color: #a9a9a9;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    height: 50px;
    padding: 0 15px
}

.cover-content {
    color: var(--white-color);
    margin: auto;
    padding: 30px;
    position: relative;
    text-align: center;
    z-index: 20
}

.cover-description {
    font-family: var(--gh-font-heading, var(--font-sans));
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 auto;
    max-width: 720px;
    word-break: break-word
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) .cover-description {
    font-family: var(--gh-font-heading, var(--font-serif));
    font-weight: 700
}

@media (max-width:460px) {
    .site-cover .search {
        width: 100%
    }
}

@media (max-width:767px) {
    .site-cover {
        min-height: 400px
    }

    .cover-description {
        font-size: 24px
    }
}

.search {
    position: relative;
    text-align: left
}

.search-button svg:nth-child(2) {
    display: none
}

.search-button-clear {
    font-size: 18px
}

.search-button-clear svg:first-child {
    display: none
}

.search-button-clear svg:nth-child(2) {
    display: block
}

.search-result {
    background-color: var(--white-color);
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .15);
    color: var(--dark-gray-color);
    font-size: 15px;
    margin-top: 5px;
    max-height: 50vh;
    overflow: hidden;
    overflow-y: scroll;
    position: absolute;
    top: 100%;
    width: 100%;
    -webkit-overflow-scrolling: touch
}

.search-result-row+.search-result-row {
    border-top: 1px solid var(--mid-gray-color)
}

.search-result-row-link {
    display: block;
    padding: 15px 15px 12px
}

.search-result-row-link:hover {
    background-color: var(--light-gray-color);
    color: var(--dark-gray-color);
    opacity: 1
}

.search-result-row-title {
    font-weight: 600;
    line-height: 1.25
}

.search-result-row-excerpt {
    color: var(--secondary-text-color);
    display: block;
    font-size: 1.4rem;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.topic-feed {
    display: grid;
    gap: 80px 60px;
    grid-template-columns: 1fr 1fr
}

.topic-header {
    border-bottom: 1px solid var(--mid-gray-color);
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 12px
}

.topic-name {
    margin-bottom: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: bold;       /* Regular */
    font-size: 50px;        /* PC 기준 small */
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) /*.topic-name*/ {
    font-family: var(--gh-font-heading, var(--font-serif))
}

.topic-count {
    color: var(--secondary-text-color);
    margin-left: 15px
}

.topic-article-feed {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.topic-article-title {    
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    margin-bottom: 0;
    word-break: break-word
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^=gh-font-body]) .topic-article-title {
    font-family: var(--gh-font-heading, var(--font-serif))
}

.topic-article-link {
    display: flex;
    padding: 7px 0
}

.topic-article-link svg {
    height: 16px;
    margin: 3px 5px 0 -5px;
    width: 16px
}

.topic-more {
    color: var(--primary-color);
    display: inline-block;
    font-weight: 700;
    letter-spacing: -.005em;
    margin-top: 20px
}

@media (max-width:767px) {
    .topic-feed {
        grid-template-columns: 1fr;
    }
}

.term {
    margin-bottom: 24px;
    margin-top: 30px
}

.term-name {
    font-size: 2.8rem;
    letter-spacing: 0;
    margin-bottom: 0
}

.term-description {
    color: var(--secondary-text-color);
    line-height: 1.5;
    margin-top: 12px;
    max-width: 560px
}

.term-image {
    border-radius: 50%;
    height: 64px;
    margin-bottom: 12px;
    width: 64px
}

.post-image-link:hover {
    opacity: 1
}

.post-title {
    /* font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -.005em;
    line-height: 1.2;
    margin-bottom: 0;
     */
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 30px;
    word-break: break-word;
    text-align: center;

}

.post-link:hover+.post-wrapper .post-title {
    opacity: .8
}

.post-title-link {
    display: block
}

.post-meta {
    color: var(--secondary-text-color);
    font-size: 1.5rem;
    letter-spacing: -.005em;
    line-height: 1;
    margin-top: 16px;
}

.post-author,
.post-meta {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}

.post-author {
    margin: 0 14px 0 4px;
    position: relative;
    z-index: 60
}

.post-author-image-link {
    border-radius: 50%;
    display: block;
    height: 40px;
    margin: 0 -6px;
    overflow: hidden;
    position: relative;
    width: 40px
}

.post-author-image-link:first-child {
    z-index: 10
}

.post-author-image-link:nth-child(2) {
    z-index: 9
}

.post-author-image-link:nth-child(3) {
    z-index: 8
}

.post-author-image-link:nth-child(4) {
    z-index: 7
}

.post-author-image-link:nth-child(5) {
    z-index: 6
}

.post-author-image {
    border: 2px solid var(--white-color);
    border-radius: 50%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.post-author-name {
    font-weight: 600;
    margin-bottom: 6px
}

.post-author-name-link+.post-author-name-link:before {
    content: ", "
}

.post-meta-bottom {
    display: flex
}

.post-length:before {
    content: "—";
    padding: 0 4px
}

.post-excerpt {
    color: var(--secondary-text-color);
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 8px;
    word-break: break-word
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px
}

.post-tag {
    background-color: var(--white-color);
    border: 1px solid var(--mid-gray-color);
    border-radius: 15px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1;
    margin: 0 8px 8px 0;
    padding: 6px 12px
}

.post-feed .post {
    display: flex;
    padding: 35px 0 33px;
    position: relative
}

.post-feed .post+.post {
    border-top: 1px solid var(--mid-gray-color)
}

.post-feed .post-link:hover~.post-header .post-title-link {
    color: var(--primary-color)
}

.post-feed .post-media {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 28px;
    width: 160px
}

.post-feed .post.no-image .post-wrapper {
    margin-left: 0
}

@media (max-width:767px) {
    .post-feed .post {
        display: block
    }

    .post-feed .post-media {
        margin-bottom: 30px;
        width: auto
    }

    .post-feed .post-wrapper {
        margin-left: 0
    }
}

.pagination {
    align-items: center;
    display: flex;
    margin-bottom: 32px;
    margin-top: 48px
}

.post-template .pagination {
    align-items: flex-start;
    font-size: 2.2rem;
    gap: 32px;
    line-height: 1.3;
    margin-top: 64px
}

.pagination-left,
.pagination-right {
    flex: 2;
    font-weight: 700
}

.pagination-right {
    text-align: right
}

.pagination-right .button-arrow-right {
    justify-content: flex-end
}

.page-number {
    border: 1px solid var(--mid-gray-color);
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 0;
    padding: 16px
}

.page-number,
.pagination-label {
    color: var(--secondary-text-color)
}

.pagination-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    word-break: break-word
}

.featured-wrapper {
    margin: 30px 0 90px
}

/* .featured-wrapper .post-header,
.featured-wrapper .post-media {
    margin-bottom: 20px
} */

/* .featured-wrapper .post-title {
    font-size: 1.7rem;
    font-weight: 600
} */

.featured-wrapper .post-tag {
    margin: 0
}

.featured-header {
    margin-bottom: 20px;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^=gh-font-heading]) .featured-title {
    font-family: var(--gh-font-heading, var(--font-serif))
}

@media (max-width:767px) {
    .featured-wrapper {
        margin-bottom: 60px;
        margin-top: 0
    }

    .featured-wrapper .post-header {
        margin-bottom: 15px
    }

    .featured-wrapper .owl .owl-next,
    .featured-wrapper .owl .owl-prev {
        top: -71px
    }

    .featured-header {
        margin-bottom: 20px;
    }
}

.gh-article-image {
    grid-column: main-start/main-end
}

.related-posts {
    margin-top: 48px
}

.related-title {
    color: var(--secondary-text-color);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 0;
    text-transform: uppercase
}

.comment-container {
    margin-top: 48px
}

.u-object-fit {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%
}

.u-permalink {
    bottom: 0;
    left: 0;
    outline: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 50
}

.u-placeholder {
    background-color: var(--light-gray-color);
    position: relative;
    z-index: 10
}

.u-placeholder.same-height {
    height: 0
}

.u-placeholder.horizontal {
    padding-bottom: 50%
}

.u-placeholder.rectangle {
    padding-bottom: 62.5%
}

.u-placeholder.square {
    padding-bottom: 100%
}

.u-overlay {
    position: relative
}

.u-overlay:before {
    background-color: var(--black-color);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity 1s var(--animation-base);
    z-index: 10
}

.no-image.u-overlay:before {
    background-color: var(--ghost-accent-color)
}

.u-overlay:not(.no-image).initialized:before {
    opacity: .4
}

@media (max-width:575px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width:576px) and (max-width:767px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-lg {
        display: none !important
    }
}

@media (min-width:1200px) {
    .hidden-xl {
        display: none !important
    }
}

.owl {
    display: none;
    position: relative;
    width: 100%;
    z-index: 1;
    -webkit-tap-highlight-color: transparent
}

.owl .owl-stage {
    position: relative;
    touch-action: pan-y
}

.owl .owl-stage:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    line-height: 0;
    visibility: hidden
}

.owl .owl-stage-outer {
    overflow: hidden
}

.owl .owl-item,
.owl .owl-stage-outer {
    position: relative;
    transform: translateZ(0)
}

.owl .owl-item {
    backface-visibility: hidden;
    float: left;
    min-height: 1px;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.owl .owl-item>img {
    display: block;
    transform-style: preserve-3d;
    width: 100%
}

.owl .owl-dots.disabled,
.owl .owl-nav.disabled {
    display: none
}

.owl .owl-dot,
.owl .owl-next,
.owl .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.owl .owl-next,
.owl .owl-prev {
    align-items: center;
    background-color: var(--white-color);
    border: 1px solid var(--mid-gray-color);
    border-radius: 3px;
    color: var(--dark-gray-color);
    display: flex;
    font-size: 18px;
    height: 30px;
    justify-content: center;
    outline: none;
    padding: 0;
    position: absolute;
    text-align: center;
    top: -86px;
    transition: color .3s var(--animation-base);
    width: 30px
}

.owl .owl-next.disabled,
.owl .owl-prev.disabled {
    color: var(--secondary-text-color);
    cursor: default
}

.owl .owl-prev {
    right: 34px
}

.owl .owl-next {
    right: 0
}

.owl .owl-dots {
    margin-top: 20px
}

.owl .owl-dot,
.owl .owl-dots {
    display: flex;
    justify-content: center
}

.owl .owl-dot {
    align-items: center;
    border: 0;
    height: 20px;
    outline: none;
    padding: 0;
    width: 20px
}

.owl .owl-dot span {
    background-color: var(--mid-gray-color);
    border-radius: 50%;
    height: 8px;
    width: 8px
}

.owl .owl-dot.active span {
    background-color: var(--black-color)
}

.owl.owl-loaded {
    display: block
}

.owl.owl-loading {
    display: block;
    opacity: 0
}

.owl.owl-hidden {
    opacity: 0
}

.owl.owl-refresh .owl-item {
    visibility: hidden
}

.owl.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.owl.owl-grab {
    cursor: move
}

.no-js .owl {
    display: block
}

/*# sourceMappingURL=screen.css.map */

/* ===== 메인화면 이미지 영역 ===== */
.main-content {
    position: relative;
    width: 100%;
    aspect-ratio: 1440 / 533;
    overflow: hidden;
}

.main-cover-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* 음영 제거 */
.m-overlay {
    position: relative;
}
.m-overlay::before {
    display: none !important;
}

/* 커버 이미지가 없을 때 대체 */
.noimage {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 1.2rem;
    height: 100%;
}
.no-image-fallback {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* 설명 텍스트 오버레이 */
.main-cover-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  max-width: 100%;
}

.main-cover-description {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #FFFFFF;
  word-break: break-word;

}

/* 반응형 높이: 모바일에서 줄임 */
@media (max-width: 768px) {
    .main-content {
        height: 400px;
        aspect-ratio: 390 / 400;
    }
    .main-cover-description {
    font-size: min(5vw, 22px);   /* 화면 너비에 따라 글자 크기 자동 축소 */
    white-space: nowrap;         /* 줄바꿈 금지 */
    }
}

/* ===== 메인화면 이미지 영역 ===== */

/* ===== 언어 선택 모달 전체 영역 ===== */
.lang-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 배경 어둡게 + 블러 */
.lang-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1;
}

/* 중앙 박스 */
.lang-box {
  position: relative;
  z-index: 2;
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  width: 90vw;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* 제목 */
.lang-box h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111;
}

/* 언어 리스트 */
.lang-list {
  list-style: none; /* 동그라미 제거 */
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 왼쪽 정렬 */
  gap: 1rem;
}

/* 각 항목 */
.lang-list li {
  margin: 0.75rem 0;
}

/* 링크 스타일 + 수평 정렬 */
.lang-list a {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #0077cc;
  text-decoration: none;
  gap: 0.8rem; /* 국기와 텍스트 사이 간격 증가 */
}

/* 국기 이미지 스타일 */
.lang-list .flag {
  width: 26px;
  height: 18px;
  object-fit: cover;
  /* border-radius: 2px; */
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

/* 닫기 버튼 */
.lang-close {
  background: #0077cc;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lang-close:hover {
  background: #005fa3;
}

/* 숨김 처리 클래스 */
.hidden {
  display: none;
}
/* ===== 언어 선택 모달 전체 영역 ===== */

/* ===== 메인화면 메뉴 리스트 영역 ===== */
.menu-lists-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 1260px;
  margin: 0 auto 118px auto;
}

.menu-list {
  /* 별도 스타일 필요 없음 */

}

.menu-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: #fff;

}

.menu-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 4px 5px 0px #B2BBC9;
}

.menu-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-title {
  margin-top: 20px;
  text-align: center;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #333;
}

/* 폰트 크기만 모바일 대응 */
@media (max-width: 768px) {
    .menu-title {
        font-size: 20px;
    }
    
    .menu-lists-wrapper {
        margin: 0 auto 60px auto;
    }
}
/* ===== 메인화면 메뉴 리스트 영역 ===== */

/* ===== 메인화면 연구소개 영역 ===== */
.research-wrapper {
    max-width: 1260px;
    margin: 0 auto 120px auto;
}

.research-name {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 32px;
}

.research-card {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.research-image-wrapper {
    flex: 0 0 auto;
    width: 615px;
    height: 333px;
}

.research-image-wrapper .research-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.research-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.research-text-b {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;           /* Bold */
    font-size: 24px;            /* PC 기준 크기 */
    text-align: left;           /* 좌측 정렬 */
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 100%;
}

.research-text-s {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 400;       /* Regular */
    font-size: 20px;        /* PC 기준 small */
    line-height: 1.6;
    margin-bottom: 20px;
}

.research-topic-more {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1FA8DE;
    text-decoration: none;
    text-align: right;
}

.research-topic-more:hover {
    text-decoration: underline;
}

/* ===== 모바일 대응 ===== */
@media (max-width: 768px) {
    .research-wrapper {
        margin: 0 auto 60px auto;  
    }

    .research-card {
        flex-direction: column;
        gap: 20px;
    }
  
    .research-name {
        font-size: 28px;
    }

    .research-image-wrapper {
        width: 100%;
        height: auto;
    }

    .research-image-wrapper .menu-image {
        width: 100%;
        height: auto;
    }

    .research-text-b {
        font-size: 22px;
        /* line-height: 3.0; */
        line-height: 1.5;
    }

    .research-text-s {
        font-size: 16px;
        /* line-height: 2.235; */
        line-height: 1.8;
    }
    
    .research-topic-more {
        font-size: 14px;
        text-align: right;
    }
}

/* ===== 메인화면 연구소개 영역 ===== */

/* ===== 메인화면 교육수강실 영역 ===== */
.courses-featured-wrapper {
    max-width: 1260px;
    margin: 0 auto 120px auto;
}

.courses-featured-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 45px;
}

.courses-featured-topic {
    border-bottom: 1px solid var(--mid-gray-color);
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.courses-featured-buttons {
    display: flex;
    align-items: center;
    gap: 5px;
    /* margin-top: 30px; */
}

.courses-button-prev, .courses-button-next {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

/* svg 기본 stroke 명시 — 아이콘 사라짐 방지 핵심 */
.courses-button-prev svg, .courses-button-next svg {
    stroke: #666;
}

/* hover에서는 배경색과 테두리만 조작, svg는 건드리지 않는다 */
.courses-button-prev:hover, .courses-button-next:hover {
    background: #1FA8DE;
    border-color: #1FA8DE;
}

/* pressed 상태 (PC, 모바일 통일) */
.courses-button-prev.pressed, .courses-button-next.pressed {
    transform: scale(0.95);
    background: #137ca8;
    border-color: #137ca8;
}

.courses-button-prev.disabled, .courses-button-next.disabled {
    background: #eee;
    border-color: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    pointer-events: none;
}

.courses-featured-swiper {
    position: relative;
}

.courses-featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
}

.courses-featured-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    user-select: none;
    -webkit-user-drag: none;
}

.courses-featured-caption {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 0;
    user-select: auto;
}

/* 모바일에서 hover 무효화 */
@media (hover: none) {
    .courses-button-prev:hover, .courses-button-next:hover {
        background: initial;
        border-color: initial;
    }
}

@media (max-width: 768px) {
    .courses-featured-wrapper {
        margin: 0 auto 60px auto;
    }

    .courses-featured-header {
        margin-bottom: 20px;
    }

    .courses-featured-image {
        height: 183px;
    }

    .courses-featured-caption {
        font-size: 14px;
    }

    .courses-featured-buttons {
        margin-top: 0;
    }

    .courses-button-prev, .courses-button-next {
        width: 24px;
        height: 24px;
    }
}
/* ===== 메인화면 교육수강실 영역 ===== */

/* ===== 메인화면 공지사항 영역 ===== */
.single-feed {
    margin-bottom: 60px;
}

.single-header {
    border-bottom: 1px solid var(--mid-gray-color);
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 12px
}

.single-article-feed {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.single-article-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    word-break: break-word;
}

.single-article-link {
    display: flex;
    padding: 7px 0
}

.single-article-link svg {
    flex-shrink: 0; /* 아이콘 크기 줄어들지 않도록 고정 */
    width: 22px;
    height: 22px;
    margin: 0 8px 0 0;
}

.single-topic-more-link {
    text-align: left;
    margin-top: 40px;
}

.single-topic-more {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1FA8DE;
    text-decoration: none;
}

.single-topic-more:hover {
    text-decoration: underline;
}

.single-ellipsis {
    display: inline-block;
    max-width: 1260px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}

@media (max-width: 767px) {
    .single-article-title {
        font-size: 14px;
    }
    
    .single-article-link svg {
        display: none;
    }

    .single-topic-more-link {
        text-align: right;
        margin-top: 20px;
    }

    .single-topic-more {
        font-size: 14px;
    }
}
/* ===== 메인화면 공지사항 영역 ===== */

/* ===== 메인화면 전문가자료실, FAQ 영역 ===== */
.split-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1260px;
    margin: 0 auto 0 auto;
    /* padding: 40px 20px; */
}

.split-box {
    flex: 1 1 calc(50% - 30px);
    min-width: 0;
}

.split-header {
    border-bottom: 1px solid var(--mid-gray-color);
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 12px
}

.split-name {
    margin-bottom: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: bold;       /* Regular */
    font-size: 50px;        /* PC 기준 small */
}

.split-article-feed {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.split-article-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    word-break: break-word;
}

.split-article-link {
    display: flex;
    padding: 7px 0
}

.split-article-link svg {
    flex-shrink: 0; /* 아이콘 크기 줄어들지 않도록 고정 */
    width: 22px;
    height: 22px;
    margin: 0 8px 0 0;
}

.split-topic-more-link {
    text-align: left;
    margin-top: 40px;
}

.split-topic-more {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1FA8DE;
    text-decoration: none;
}

.split-topic-more:hover {
    text-decoration: underline;
}

.split-ellipsis {
    flex: 1;
    min-width: 0;              /* 필수 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


@media (max-width: 767px) {
    .split-container {
        margin: 0 auto 0px auto;
    }

    .split-box {
        flex: 1 1 100%;
    }

    .split-article-title {
        font-size: 14px;
    }
    
    .split-article-link svg {
        display: none;
    }

    .split-topic-more-link {
        text-align: right;
        margin-top: 20px;
    }
    
    .split-topic-more {
        font-size: 14px;
    }
}
/* ===== 메인화면 전문가자료실, FAQ 영역 ===== */

/* ===== 연구소개 페이지 ===== */
.rsc-wrapper {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 5px;
}

.rsc-wrapper img {
    /* margin: 20px 0 60px 0; */
    margin: 60px 0 60px 0;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.rsc-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 30px;
    /* margin: 60px 0 30px; */
    margin: 40px 0 10px 0; 
    text-align: left;
    color: #111;
}

.rsc-title-path {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 28px;
    color: #555;
    /* margin: 30px 0 30px; */
    text-align: left;
}

.rsc-excerpt {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;  /* 기본 여백 제거 (h2 기본 margin 제거) */
    text-align: left;
    color: #aaa;
}

.rsc-contents {
    background-color: #ffffff;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
}

.rsc-contents-section {
    margin-top: 60px;
}

.rsc-contents-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-left: 12px;
    border-left: 4px solid #5AB6E7;
    color: #111;
}

.rsc-contents-section ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
    word-break: break-word;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.rsc-contents-section ul li {
    margin-bottom: 8px;
    word-break: break-word;
    overflow-wrap: anywhere;
    word-wrap: break-word; /* 구형 브라우저 호환 */
}

.rsc-contents-section p {
    margin-bottom: 16px;
    word-break: break-word;
    overflow-wrap: anywhere;
    word-wrap: break-word; /* 구형 브라우저 호환 */
}

.map-iframe {
    margin-top: 60px;
}

/* 관련 콘텐츠 */
.cts-wrapper {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 5px;
}

.related-item {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-top: 15px;
    font-family: 'Noto Sans KR', sans-serif;
}

.related-img {
  width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.related-text {
  flex: 1;
}

.related-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.related-desc {
  font-size: 20px;
  color: #555;
  line-height: 1.6;
}
/* 관련 콘텐츠 */

/* 반응형 */
@media screen and (max-width: 768px) {
    .rsc-wrapper {
        padding: 0 16px;
    }

    .rsc-title {
        font-size: 23px;
        margin-top: 40px;
        text-align: left;
    }

    .rsc-wrapper img {
        margin: 45px 0 0px;
        border-radius: 8px;
    }

    .rsc-excerpt {
        font-size: 12px;
    } 

    .rsc-contents {
        font-size: 16px;
        line-height: 1.7;
    }

    .rsc-contents-title {
        font-size: 22px;
        padding-left: 10px;
    }

    .rsc-title-path {
        font-size: 22px;

    }

    .rsc-contents-section {
        margin-bottom: 40px;
        word-break: break-word;
        overflow-wrap: anywhere;
        word-wrap: break-word;
    }

    .rsc-contents-section ul {
        padding-left: 20px;
        word-break: break-word;
        overflow-wrap: anywhere;
        word-wrap: break-word;
    }

    .rsc-contents-section ul li {
        margin-bottom: 6px;
        word-break: break-word;
        overflow-wrap: anywhere;
        word-wrap: break-word; /* 구형 브라우저 호환 */
    }

    .rsc-contents-section p {
        margin-bottom: 14px;
        word-break: break-word;
        overflow-wrap: anywhere;
        word-wrap: break-word; /* 구형 브라우저 호환 */
    }

    /* 관련 콘텐츠 */
    .cts-wrapper {
        padding: 0 16px;
    }

    .related-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-img {
        width: 100%;
        /* height: auto; */
        margin-bottom: 12px;
    }

    .related-text {
        width: 100%;
    }

    .related-title, .related-desc {
        text-align: left;
    }
    
    .related-title {
        font-size: 22px;
    }

    .related-desc {
        font-size: 16px;
    }

    /* 관련 콘텐츠 */

}
/* ===== 연구소개 페이지 ===== */

/* ===== 공지사항 페이지 ===== */
.news-title-wrapper {
    max-width: 1260px;
    margin: 40px auto 30px;
    padding: 0 5px;
}

.news-title-wrapper-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 10px 0;   /* 하단 여백만 남김 */
    text-align: left;
    color: #111;
}

.news-title-wrapper-excerpt {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;  /* 기본 여백 제거 (h2 기본 margin 제거) */
    text-align: left;
    color: #aaa;
}

.news-wrapper {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 5px;
    font-family: 'Noto Sans KR', sans-serif;
}

.news-list {
    margin-top: 40px;
}

.news-item {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.news-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.author-info img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
    margin-bottom: 5px;
}

.author-info h1 {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.avatar-placeholder {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.title-excerpt {
    flex: 1;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.news-title a {
    color: inherit;
    text-decoration: none;
}

.news-title a:hover {
    text-decoration: underline;
}

.news-excerpt {
    font-size: 16px;
    color: #777;
}

.news-date {
    font-size: 14px;
    color: #aaa;
    white-space: nowrap;
}

/* ===== 반응형 ===== */
@media screen and (max-width: 768px) {
    .news-title-wrapper {
        padding: 0 16px;
    }

    .news-title-wrapper-title {
        font-size: 23px;
    }

    .news-title-wrapper-excerpt {
        font-size: 12px;
    }

    .news-wrapper {
        padding: 0 16px;
    }

    .news-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .author-info {
        display: none;
    }

    .news-title {
        font-size: 18px;
    }

    .news-excerpt {
        font-size: 14px;
    }

    .news-date {
        font-size: 12px;
        align-self: flex-end;
    }
}
/* ===== 공지사항 페이지 ===== */

/* ===== 교육수강실 페이지 ===== */
.courses-contents {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5px;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.courses-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  height: 380px;
  display: flex;
  flex-direction: column;
}

.courses-thumbnail {
    height: 310px;
}

.courses-thumbnail img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: contain;  
  display: block;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.courses-meta {
    font-family: 'Noto Sans KR', sans-serif;
    display: flex;
    padding: 10px 0 10px 0;
    gap: 10px;
    display: flex;
    align-items: center; 
}

.courses-author {
    width: 10%;
}

.courses-author img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.courses-title-date {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.courses-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
    color: #333;
}

.courses-date {
    font-size: 14px;
    color: #999;
    white-space: nowrap;
    text-align: right;
    /* padding-top: 10px; */
}

@media screen and (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .courses-card {
        height: 250px;
    }
    
    .courses-contents {
        padding: 0 16px;
    }
    
    .courses-title {
        font-size: 18px;
    }

    .courses-date {
        font-size: 12px;
    }

    .courses-author {
        width: 15%;
    }

    .courses-author img {
        width: 38px;
        height: 38px;
    }
    
    .courses-thumbnail {
        height: 180px;
    }
}

/* ===== 교육수강실 페이지 ===== */

/* ===== 전문가 자료실 페이지 ===== */
.resources-title-wrapper {
    max-width: 1260px;
    margin: 40px auto 30px;
    padding: 0 5px;
}

.resources-title-wrapper-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 10px 0;   /* 하단 여백만 남김 */
    text-align: left;
    color: #111;
}

.resources-title-wrapper-excerpt {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;  /* 기본 여백 제거 (h2 기본 margin 제거) */
    text-align: left;
    color: #aaa;
}

.resources-wrapper {
    max-width: 1260px;
    margin: 0 auto;
    font-family: 'Noto Sans KR', sans-serif;
}

.resources-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
    gap: 30px;
}

.resources-content-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background-color: #fff;
}

.resources-content-title {
    font-size: 20px;
    font-weight: 700;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.resources-content-excerpt {
    display: flex;
    justify-content: space-between;

}

.resources-content-info {
    display: flex;
    flex-direction: column;
    width: 100%;
 
}

.excerpt-txt {
    font-size: 16px;
    color: #777;
    min-height: 24px;
    white-space: normal;
    word-break: break-all;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 100%;
}

.resources-content-img {

}

.resources-content-img img {
    max-width: 100px;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 12px; 
}

.resources-content-info-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-img {
    display: flex;
    padding-top: 20px;
    align-items: center;
}

.author-img img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.author-nm {
    font-size: 16px;
    padding-left: 10px;
}

.author-date {
    font-size: 14px;
    color: #aaa;
    font-weight: 400;
    line-height: 1.2;
    padding: 55px 15px 0 0;
}

/* ===== 반응형 ===== */
@media screen and (max-width: 768px) {
    .resources-title-wrapper {
        padding: 0 16px;
    }

    .resources-title-wrapper-title {
        font-size: 23px;
    }

    .resources-title-wrapper-excerpt {
        font-size: 12px;
    }
    
    .resources-wrapper {
        padding: 0 16px;
    }

    .resources-content {
        grid-template-columns: 1fr;
    }

    .resources-content-title {
        font-size: 18px;
    }
    
    .excerpt-txt {
        font-size: 14px;
    }

    .author-img img {
        width: 38px;
        height: 38px;
    }

    .author-nm {
        display: none;
    }

    .author-date {
        font-size: 12px;
    }
    


	
}

/* ===== 전문가 자료실 페이지 ===== */

/* ===== footer ===== */
.custom-footer {
    background: #000000;
    /* border-top: 1px solid #ddd; */
    padding: 40px 0;
    font-family: 'Noto Sans KR', sans-serif;
    color: #B3B3B3;
    font-size: 15px;
    margin-top: 120px;
}

.footer-container {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    /* align-items: center; */
    /* justify-content: space-between; */
    /* flex-wrap: wrap; */
    flex-direction: column;
}

.footer-menu {
    display: flex;
    gap: 25px;
    font-weight: 700;
    align-items: center; 
}

.vertical-divider {
  display: flex;
  align-items: center; /* 세로 가운데 정렬 */
  justify-content: center; /* 가로 가운데 정렬 (원할 경우) */
  height: 48px; /* 부모 높이 지정 필수 */
}

.footer-menu a {
    color: #B3B3B3;
    text-decoration: none;
    padding: 0;
}

.footer-menu a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

.horizontal-divider {
  width: 100%;
  height: 1px;
  background-color: #E6E6E6;
  /* margin: 24px 0; */
  margin-top: 15px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    font-weight: 700;
    padding-top: 20px;
}

.footer-info-a {
    display: flex;
    gap: 40px;
}

.footer-point {
    color: #FFFFFF;
}

.footer-info-b {
    display: flex;
    font-size: 16px;
    padding-top: 20px;
    gap: 52px;
}

.footer-contact {
    color: #aaa;
    display: flex;
    /* align-items: center; */
    gap: 8px;
}

.phone-icon {
    width: 25px;
    height: 25px;
    display: inline-block;
}


.footer-contact a {
    color: #B3B3B3;
}

.footer-copy {
    padding-top: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.footer-copy strong {
    color: #4D4D4D;
}
.mobile-break {
    display: none;
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .custom-footer {
        margin-top: 80px;
        padding: 29px 19px;
        font-size: 14px;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-menu a {
        padding: 0;
    }

    .vertical-divider {
        display: none;
    }
    
    .footer-contact {
        gap: 14px;
    }

    .footer-info {
        padding-top: 19px;
    }

    .footer-info-a {
        flex-direction: row;
        gap: 67px;
    }

    .footer-info-b {
        flex-direction: column;
        font-size: 14px;
        padding-top: 10px;
        gap: 19px;
    }

    .footer-copy {
        padding-top: 19px;
        white-space: normal;
    }

    .mobile-break {
        /* display: inline; */
    }

}
/* ===== footer ===== */

