::-moz-selection {
    color: var(--backgroundColor);
    background-color: var(--textColor);
    text-shadow: none;
}

::selection {
    color: var(--backgroundColor);
    background-color: var(--textColor);
    text-shadow: none;
}

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    margin: 0;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

img,
video {
    display: block;
    height: auto;
    max-width: 100%;
}

iframe {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

td:not([align]),
th:not([align]) {
    text-align: left;
}

html {
    height: 100%;
    font-size: 16px;
    font-size: clamp(16px, 1.5vw, 18px);
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

article,
aside,
figure,
footer,
header,
hgroup,
section {
    display: block;
}

body,
button,
input,
select,
textarea {
    font-family: Pretendard, BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

code,
pre {
    font-family: Courier, 'Courier New', monospace;
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: auto;
}

body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.0125em;
    line-height: 1.5;
    word-break: keep-all;
    color: var(--textColor, black);
    background-color: var(--backgroundColor, silver);
    background-image: linear-gradient(to bottom, var(--gradientColorA), var(--gradientColorB));
    background-attachment: fixed;
    cursor: default;
}

body.is-fixed {
    overflow: hidden;
}

html.is-bw,
body.is-bw {
    filter: grayscale(100%);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.panel {
    position: sticky;
    z-index: 999;
    top: 0;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--backgroundColor);
    background-color: var(--textColor);
    opacity: 0.25;
}

@media screen and (min-width: 900px) {
    .panel {
        padding: 0.75rem 2rem;
    }
}

.panel:hover {
    opacity: 1;
}

.panel a:hover {
    opacity: 0.5;
}

.preloader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--backgroundColor);
    z-index: 9999;
}

.header {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 1rem 1rem 2rem;
    font-weight: 700;
}

@media screen and (min-width: 900px) {
    .header {
        padding: 1rem 2rem 2rem;
    }
}

.header .container {
    display: flex;
    justify-content: space-between;
}

.header-logo {
    font-size: 1em;
    font-weight: 700;
    line-height: 1.375;
}

.header-logo div:nth-child(2) {
    font-size: 95%;
    font-weight: 700;
    opacity: 0.375;
}

.header-nav ul {
    display: flex;
    gap: 0.75rem;
}

.header-nav a:hover,
.header-nav a[aria-current='page'],
.header-nav a.is-active {
    opacity: 0.5;
}

.about {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    transition: top 0.25s;
}

@media screen and (min-width: 900px) {
    .about {
        padding: 1rem 2rem;
    }
}

.about.is-hidden {
    display: none;
}

.about-header,
.search-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-header-nav,
.search-header-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.search {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    color: black;
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
    transition: top 0.25s;
}

@media screen and (min-width: 900px) {
    .search {
        padding: 1rem 2rem;
    }
}

.search.is-hidden {
    display: none;
}

.search-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    padding: 1rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: black;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 0;
    outline: 0;
}

.search-input::placeholder {
    opacity: 1;
}

.search-input:focus::placeholder {
    opacity: 0.5;
}

.tabs {
    position: sticky;
    top: 0;
    z-index: 888;
    font-size: 1rem;
    font-weight: 600;
    margin-top: -1rem;
    padding: 1rem 1rem 0;
    background-color: var(--backgroundColor);
    background-image: linear-gradient(to bottom, var(--gradientColorA), var(--gradientColorB));
    background-attachment: fixed;
    box-shadow: 0 1rem 1rem var(--backgroundColor);
}

@media screen and (min-width: 900px) {
    .tabs {
        padding: 1rem 2rem 0;
    }
}

@media screen and (max-width: 599px) {
    .tabs .container::before,
    .tabs .container::after {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        z-index: 999;
        top: 0;
        height: 100%;
        opacity: 0.5;
        transition: opacity 0.25s;
    }
    .tabs .container::before {
        content: '←';
        left: 0.75rem;
    }
    .tabs .container::after {
        content: '→';
        right: 0.75rem;
    }
    .tabs .container:hover::before,
    .tabs .container:hover::after {
        opacity: 0;
    }
}

.tabs.is-expanded {
    padding: 0;
    transition: padding 0.25s;
}

.tabs.is-expanded .container {
    max-width: 100%;
}

.tabs ul {
    display: flex;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border: 1px solid var(--borderColor);
    background-color: var(--backgroundColor);
    background-image: linear-gradient(to bottom, var(--gradientColorA), var(--gradientColorB));
    background-attachment: fixed;
    -webkit-overflow-scrolling: touch;
}

.tabs ul::-webkit-scrollbar {
    display: none;
}

.tabs li {
    flex: 0 0 10rem;
    white-space: nowrap;
}

@media screen and (min-width: 600px) {
    .tabs li {
        flex: 1 1 0;
        min-width: auto;
    }
}

.tabs li:not(:last-child) {
    border-right: 1px solid var(--borderColor);
}

.tabs a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0.75rem;
    text-align: center;
    transition: opacity 0.25s;
}

.tabs a:hover,
.tabs a[aria-current='page'] {
    color: var(--backgroundColor);
    background-color: var(--textColor);
}

.tabs:hover a:not(:hover) {
    color: var(--textColor);
    background-color: var(--backgroundColor);
    opacity: 0.5;
}

.main {
    flex: 1 1 auto;
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transition: opacity 0.5s;
}

.is-loaded .main {
    opacity: 1;
}

.footer {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    position: relative;
    padding: 0 1rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.5s;
    transition-delay: 0.25s;
}

@media screen and (min-width: 900px) {
    .footer {
        padding: 0 2rem;
    }
}

.is-loaded .footer {
    opacity: 1;
}

.footer .container {
    padding: 0.5rem 0 2rem;
    border-top: 1px solid var(--borderColor);
}

.container {
    position: relative;
    max-width: 1600px;
    width: auto;
    margin: 0 auto;
}

.container.advertisement {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
    background-color: #333;
    /* background-image: linear-gradient(to bottom, #333, black 95%); */
}

.container.advertisement img {
    width: 40%;
    max-width: 500px;
}

.container.advertisement .image-caption {
    position: absolute;
    bottom: 4px;
    right: 4px;
    margin: 0;
}

.section {
    padding: 2rem 1rem;
}

@media screen and (min-width: 900px) {
    .section {
        padding: 2rem;
    }
}

.section[id] {
    margin-top: -6rem;
    padding-top: 6rem;
}

.section[id='main-content'] {
    padding-top: 8rem;
}

.section[id]:target {
    min-height: 50svh;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.section-header .title a:not(:last-child)::after {
    content: ', ';
}

.block {
    position: relative;
}

.block:not(:last-child) {
    margin-bottom: 4rem;
}

.block-header {
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    border-top: 1px dotted var(--borderColor);
}

.title {
    position: relative;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.5;
}

:lang(ko) .title {
    line-height: 1.5;
}

:lang(en) .title {
    line-height: 1.375;
}

.title.is-small {
    font-size: 1rem;
}

.title.is-medium {
    font-size: 1.25rem;
}

.title.is-large {
    font-size: 1.5rem;
}

.title span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 0.25rem;
    font-size: 0.875em;
    font-weight: 600;
    opacity: 0.25;
}

.metadata {
    position: relative;
    font-size: 0.875rem;
    line-height: 1.625;
}

.metadata:not(:last-child) {
    margin-bottom: 1rem;
}

.metadata li {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
    border-top: 1px dotted var(--borderColor);
}

.metadata-title {
    flex: 0 0 calc(100% / 12 * 2);
    font-weight: 600;
}

.metadata-item {
    flex: 1 1 0;
}

.metadata-item div:not(:first-child) {
    margin-top: 0.5rem;
}

.metadata-item a:not(:last-child)::after {
    content: ', ';
}

.metadata-item a:hover {
    opacity: 0.5;
}

.links {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.links a {
    display: block;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    text-align: center;
    color: var(--textColor);
    background-color: var(--backgroundColor);
    border: 1px dotted var(--borderColor);
}


/* .links a::after {
  content: "→";
  position: absolute;
  top: 0rem;
  right: 0rem;
  transform: rotate(-45deg);
  padding: .75rem 1rem;
} */


/* .links a:not(:last-child) {
  margin-bottom: .5rem;
} */

.links a:hover {
    border-style: solid;
}

.content {
    --gap: 1rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.625;
}

:lang(ko) .content {
    line-height: 1.625;
}

:lang(en) .content {
    line-height: 1.375;
}

.content.is-small {
    font-size: 0.875rem;
}

.content.is-large {
    font-size: 1.25rem;
    line-height: 1.5;
}

.content:not(:last-child) {
    margin-bottom: var(--gap, 1rem);
}

.content>*:not(:last-child) {
    margin-bottom: var(--gap, 1rem);
}

.content a:not([class]) {
    border-bottom: 1px dotted var(--borderColor);
}

.content a:not([class]):hover {
    border-bottom-style: solid;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    line-height: 1.375;
}

.content h1,
.content h2,
.content h3 {
    font-weight: 800;
}

.content h1 {
    font-size: 1em;
}

.content h1:not(:first-child) {
    margin-top: 1em;
}

.content h2 {
    font-size: 1.5em;
}

.content h2:not(:first-child),
.content h3:not(:first-child),
.content h4:not(:first-child),
.content h5:not(:first-child),
.content h6:not(:first-child) {
    margin-top: 1em;
}

.content ul,
.content ol {
    margin-left: 2em;
}

.content ul {
    list-style-type: disc;
}

.content ul li {
    margin-left: 1em;
    text-indent: -1em;
}

.content blockquote {
    padding-left: 1em;
    font-size: 1.25em;
    border-left: 1px solid currentColor;
}

.content blockquote:not(:first-child) {
    margin-top: 2em;
}

.content blockquote:not(:last-child) {
    margin-bottom: 2em;
}

.content figure {
    position: relative;
    margin: 0 auto;
}

.content figure:not(:first-child) {
    margin-top: 2em;
}

.content figure:not(:last-child) {
    margin-bottom: 2em;
}

.content figure img {
    display: block;
    position: relative;
    width: 100%;
    height: auto;
}

.content figcaption {
    margin-top: 0.5em;
    font-size: 0.75em;
    line-height: 1.625;
    opacity: 0.5;
}

.content .video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.content .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content hr {
    border: 0;
    color: inherit;
}

.content hr::after {
    content: '* * *';
    display: block;
    position: relative;
    top: 0.125em;
    text-align: center;
    color: inherit;
}

.content sup,
.content sub {
    position: relative;
    font-size: 0.75em;
}

.content sup {
    top: 0.25em;
}

.content sub {
    bottom: 0.25em;
}

.footnote-ref {
    display: inline-flex;
    padding: 0 0.5em;
    color: black;
    background-color: gainsboro;
}

.footnotes {
    margin-top: 2rem;
    font-size: 0.75em;
}

.footnotes hr {
    display: none;
}

.footnote-backref {
    display: inline-block;
    position: relative;
    left: -0.25em;
    width: 1rem;
    height: 1rem;
    color: transparent;
}

[id^='fn'] {
    scroll-margin-top: calc(4rem + 20px);
}

.footnote-backref::after {
    content: '↑';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: black;
    background-color: white;
}

.image {
    position: relative;
}

.image img {
    display: block;
    position: relative;
    width: 100%;
}

.image[data-ratio='auto'] {
    padding-top: 56.25%;
}

.image[data-ratio='1/1'] {
    aspect-ratio: 1 / 1;
}

.image[data-ratio='4/3'] {
    aspect-ratio: 4 / 3;
}

.image[data-ratio='7/5'] {
    aspect-ratio: 7 / 5;
}

.image[data-ratio='16/10'] {
    aspect-ratio: 16 / 10;
}

.image[data-ratio] img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.image[data-crop] img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.image.is-square {
    aspect-ratio: 1;
}

.image.is-square img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.image.is-4by3 {
    aspect-ratio: 4 / 3;
}

.image.is-4by3 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.image.is-16by9 {
    position: relative;
    aspect-ratio: 16 / 9;
}

.image.is-16by9 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.image.is-16by10 {
    position: relative;
    aspect-ratio: 16 / 10;
    background-color: var(--textColor);
}

.image.is-16by10 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 75%;
    object-fit: cover;
    object-position: center center;
}

.image.is-figure {
    position: relative;
    aspect-ratio: 1;
}

.image.is-figure:hover::before {
    opacity: 0.125;
}

.image.is-figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--textColor);
    opacity: 0.1;
}

.image.is-figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(100% - 2rem);
    width: auto;
    max-height: calc(100% - 2rem);
    height: auto;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
}

.image.is-none {
    position: relative;
    aspect-ratio: 1;
}

.image.is-none::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--textColor);
    opacity: 0.1;
}

.image.is-none::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 1px;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: var(--textColor);
}


/* .image.is-none::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: var(--textColor);
} */

.image-caption {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.625;
    opacity: 0.5;
}

.index {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    margin: -0.75rem;
}

.index li {
    width: 50%;
    padding: 0.75rem;
}

.index li.is-12-12-600 {
    width: 100%;
}

@media screen and (min-width: 900px) {
    .index li {
        width: calc(100% / 4);
    }
    .index li.is-2-12 {
        width: calc(100% / 12 * 2);
    }
    .index li.is-3-12 {
        width: calc(100% / 12 * 3);
    }
    .index li.is-4-12 {
        width: calc(100% / 12 * 4);
    }
    .index li.is-6-12 {
        width: calc(100% / 12 * 6);
    }
}


/*@media screen and (min-width: 1200px) {
  .index li {
    width: calc(100% / 5);
  }
}*/

.list {
    margin-top: -0.5rem;
}

.list li:not(:last-child) {
    border-bottom: 1px dotted var(--borderColor);
}

.list a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.list a:hover {
    opacity: 0.5;
}

.list a div {
    flex: 1 1 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list img {
    height: 2rem;
}

.card {
    position: relative;
}

.card-image {
    position: relative;
}

.card-text {
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    padding-right: 1rem;
    .columns {
        --gap: 1rem;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: var(--gap);
        position: relative;
    }
    .columns:not(:last-child) {
        margin-bottom: var(--gap);
    }
    .column {
        grid-column: span 12;
    }
    .column.is-1-12 {
        grid-column: span 1;
    }
    .column.is-2-12 {
        grid-column: span 2;
    }
    .column.is-3-12 {
        grid-column: span 3;
    }
    .column.is-4-12 {
        grid-column: span 4;
    }
    .column.is-5-12 {
        grid-column: span 5;
    }
    .column.is-6-12 {
        grid-column: span 6;
    }
    .column.is-7-12 {
        grid-column: span 7;
    }
    .column.is-8-12 {
        grid-column: span 8;
    }
    .column.is-9-12 {
        grid-column: span 9;
    }
    .column.is-10-12 {
        grid-column: span 10;
    }
    .column.is-11-12 {
        grid-column: span 11;
    }
    .column.is-12-12 {
        grid-column: span 12;
    }
    @media screen and (min-width: 600px) {
        .column.is-1-12-600 {
            grid-column: span 1;
        }
        .column.is-2-12-600 {
            grid-column: span 2;
        }
        .column.is-3-12-600 {
            grid-column: span 3;
        }
        .column.is-4-12-600 {
            grid-column: span 4;
        }
        .column.is-5-12-600 {
            grid-column: span 5;
        }
        .column.is-6-12-600 {
            grid-column: span 6;
        }
        .column.is-7-12-600 {
            grid-column: span 7;
        }
        .column.is-8-12-600 {
            grid-column: span 8;
        }
        .column.is-9-12-600 {
            grid-column: span 9;
        }
        .column.is-10-12-600 {
            grid-column: span 10;
        }
        .column.is-11-12-600 {
            grid-column: span 11;
        }
        .column.is-12-12-600 {
            grid-column: span 12;
        }
        .column-sticky {
            position: sticky;
            top: calc(var(--gap) * 2.5);
        }
    }
    @media screen and (min-width: 900px) {
        .column.is-1-12-900 {
            grid-column: span 1;
        }
        .column.is-2-12-900 {
            grid-column: span 2;
        }
        .column.is-3-12-900 {
            grid-column: span 3;
        }
        .column.is-4-12-900 {
            grid-column: span 4;
        }
        .column.is-5-12-900 {
            grid-column: span 5;
        }
        .column.is-6-12-900 {
            grid-column: span 6;
        }
        .column.is-7-12-900 {
            grid-column: span 7;
        }
        .column.is-8-12-900 {
            grid-column: span 8;
        }
        .column.is-9-12-900 {
            grid-column: span 9;
        }
        .column.is-10-12-900 {
            grid-column: span 10;
        }
        .column.is-11-12-900 {
            grid-column: span 11;
        }
        .column.is-12-12-900 {
            grid-column: span 12;
        }
    }
    @media screen and (min-width: 1200px) {
        .column.is-1-12-1200 {
            grid-column: span 1;
        }
        .column.is-2-12-1200 {
            grid-column: span 2;
        }
        .column.is-3-12-1200 {
            grid-column: span 3;
        }
        .column.is-4-12-1200 {
            grid-column: span 4;
        }
        .column.is-5-12-1200 {
            grid-column: span 5;
        }
        .column.is-6-12-1200 {
            grid-column: span 6;
        }
        .column.is-7-12-1200 {
            grid-column: span 7;
        }
        .column.is-8-12-1200 {
            grid-column: span 8;
        }
        .column.is-9-12-1200 {
            grid-column: span 9;
        }
        .column.is-10-12-1200 {
            grid-column: span 10;
        }
        .column.is-11-12-1200 {
            grid-column: span 11;
        }
        .column.is-12-12-1200 {
            grid-column: span 12;
        }
    }
    @media screen and (min-width: 1500px) {
        .column.is-1-12-1500 {
            grid-column: span 1;
        }
        .column.is-2-12-1500 {
            grid-column: span 2;
        }
        .column.is-3-12-1500 {
            grid-column: span 3;
        }
        .column.is-4-12-1500 {
            grid-column: span 4;
        }
        .column.is-5-12-1500 {
            grid-column: span 5;
        }
        .column.is-6-12-1500 {
            grid-column: span 6;
        }
        .column.is-7-12-1500 {
            grid-column: span 7;
        }
        .column.is-8-12-1500 {
            grid-column: span 8;
        }
        .column.is-9-12-1500 {
            grid-column: span 9;
        }
        .column.is-10-12-1500 {
            grid-column: span 10;
        }
        .column.is-11-12-1500 {
            grid-column: span 11;
        }
        .column.is-12-12-1500 {
            grid-column: span 12;
        }
    }
    @media screen and (min-width: 1800px) {
        .column.is-1-12-1800 {
            grid-column: span 1;
        }
        .column.is-2-12-1800 {
            grid-column: span 2;
        }
        .column.is-3-12-1800 {
            grid-column: span 3;
        }
        .column.is-4-12-1800 {
            grid-column: span 4;
        }
        .column.is-5-12-1800 {
            grid-column: span 5;
        }
        .column.is-6-12-1800 {
            grid-column: span 6;
        }
        .column.is-7-12-1800 {
            grid-column: span 7;
        }
        .column.is-8-12-1800 {
            grid-column: span 8;
        }
        .column.is-9-12-1800 {
            grid-column: span 9;
        }
        .column.is-10-12-1800 {
            grid-column: span 10;
        }
        .column.is-11-12-1800 {
            grid-column: span 11;
        }
        .column.is-12-12-1800 {
            grid-column: span 12;
        }
    }
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 1;
}

:lang(ko) .card-text {
    line-height: 1.5;
}

:lang(en) .card-text {
    line-height: 1.375;
}

.card-text.project {
    padding-right: 0.625rem;
}

.card-text div {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.5;
}

.card-text .card-title {
    opacity: 1;
}

.card-text .card-title.project {
    width: 100%;
    height: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.card-text span:not(:last-child)::after {
    content: ', ';
}

.text-card {
    margin-bottom: 3rem;
}

.video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.columns {
    --gap: 1rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gap);
    position: relative;
}

.columns:not(:last-child) {
    margin-bottom: var(--gap);
}

.column {
    grid-column: span 12;
}

.column.is-1-12 {
    grid-column: span 1;
}

.column.is-2-12 {
    grid-column: span 2;
}

.column.is-3-12 {
    grid-column: span 3;
}

.column.is-4-12 {
    grid-column: span 4;
}

.column.is-5-12 {
    grid-column: span 5;
}

.column.is-6-12 {
    grid-column: span 6;
}

.column.is-7-12 {
    grid-column: span 7;
}

.column.is-8-12 {
    grid-column: span 8;
}

.column.is-9-12 {
    grid-column: span 9;
}

.column.is-10-12 {
    grid-column: span 10;
}

.column.is-11-12 {
    grid-column: span 11;
}

.column.is-12-12 {
    grid-column: span 12;
}

.column.is-shown-900 {
    display: none;
}

@media screen and (min-width: 600px) {
    .column.is-1-12-600 {
        grid-column: span 1;
    }
    .column.is-2-12-600 {
        grid-column: span 2;
    }
    .column.is-3-12-600 {
        grid-column: span 3;
    }
    .column.is-4-12-600 {
        grid-column: span 4;
    }
    .column.is-5-12-600 {
        grid-column: span 5;
    }
    .column.is-6-12-600 {
        grid-column: span 6;
    }
    .column.is-7-12-600 {
        grid-column: span 7;
    }
    .column.is-8-12-600 {
        grid-column: span 8;
    }
    .column.is-9-12-600 {
        grid-column: span 9;
    }
    .column.is-10-12-600 {
        grid-column: span 10;
    }
    .column.is-11-12-600 {
        grid-column: span 11;
    }
    .column.is-12-12-600 {
        grid-column: span 12;
    }
    .column-sticky {
        position: sticky;
        top: calc(var(--gap) * 2.5);
    }
}

@media screen and (min-width: 900px) {
    .column.is-1-12-900 {
        grid-column: span 1;
    }
    .column.is-2-12-900 {
        grid-column: span 2;
    }
    .column.is-3-12-900 {
        grid-column: span 3;
    }
    .column.is-4-12-900 {
        grid-column: span 4;
    }
    .column.is-5-12-900 {
        grid-column: span 5;
    }
    .column.is-6-12-900 {
        grid-column: span 6;
    }
    .column.is-7-12-900 {
        grid-column: span 7;
    }
    .column.is-8-12-900 {
        grid-column: span 8;
    }
    .column.is-9-12-900 {
        grid-column: span 9;
    }
    .column.is-10-12-900 {
        grid-column: span 10;
    }
    .column.is-11-12-900 {
        grid-column: span 11;
    }
    .column.is-12-12-900 {
        grid-column: span 12;
    }
    .column.is-shown-900 {
        display: block;
    }
    .column.is-hidden-900 {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    .column.is-1-12-1200 {
        grid-column: span 1;
    }
    .column.is-2-12-1200 {
        grid-column: span 2;
    }
    .column.is-3-12-1200 {
        grid-column: span 3;
    }
    .column.is-4-12-1200 {
        grid-column: span 4;
    }
    .column.is-5-12-1200 {
        grid-column: span 5;
    }
    .column.is-6-12-1200 {
        grid-column: span 6;
    }
    .column.is-7-12-1200 {
        grid-column: span 7;
    }
    .column.is-8-12-1200 {
        grid-column: span 8;
    }
    .column.is-9-12-1200 {
        grid-column: span 9;
    }
    .column.is-10-12-1200 {
        grid-column: span 10;
    }
    .column.is-11-12-1200 {
        grid-column: span 11;
    }
    .column.is-12-12-1200 {
        grid-column: span 12;
    }
}

@media screen and (min-width: 1500px) {
    .column.is-1-12-1500 {
        grid-column: span 1;
    }
    .column.is-2-12-1500 {
        grid-column: span 2;
    }
    .column.is-3-12-1500 {
        grid-column: span 3;
    }
    .column.is-4-12-1500 {
        grid-column: span 4;
    }
    .column.is-5-12-1500 {
        grid-column: span 5;
    }
    .column.is-6-12-1500 {
        grid-column: span 6;
    }
    .column.is-7-12-1500 {
        grid-column: span 7;
    }
    .column.is-8-12-1500 {
        grid-column: span 8;
    }
    .column.is-9-12-1500 {
        grid-column: span 9;
    }
    .column.is-10-12-1500 {
        grid-column: span 10;
    }
    .column.is-11-12-1500 {
        grid-column: span 11;
    }
    .column.is-12-12-1500 {
        grid-column: span 12;
    }
}

@media screen and (min-width: 1800px) {
    .column.is-1-12-1800 {
        grid-column: span 1;
    }
    .column.is-2-12-1800 {
        grid-column: span 2;
    }
    .column.is-3-12-1800 {
        grid-column: span 3;
    }
    .column.is-4-12-1800 {
        grid-column: span 4;
    }
    .column.is-5-12-1800 {
        grid-column: span 5;
    }
    .column.is-6-12-1800 {
        grid-column: span 6;
    }
    .column.is-7-12-1800 {
        grid-column: span 7;
    }
    .column.is-8-12-1800 {
        grid-column: span 8;
    }
    .column.is-9-12-1800 {
        grid-column: span 9;
    }
    .column.is-10-12-1800 {
        grid-column: span 10;
    }
    .column.is-11-12-1800 {
        grid-column: span 11;
    }
    .column.is-12-12-1800 {
        grid-column: span 12;
    }
}

.tags {
    --gap: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    position: relative;
}

.tags:not(:last-child) {
    margin-bottom: var(--gap);
}

.tags.is-small {
    --gap: 0.25rem;
    font-size: 0.75rem;
}

.tags.is-application {
    position: absolute;
    top: 8px;
    left: 8px;
    opacity: 0.95;
}

.tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.25em 0.625em;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--borderColor);
    border-radius: 0.25rem;
}

.tag:hover,
.tag.is-active {
    color: var(--backgroundColor);
    background-color: var(--textColor);
    border-color: var(--textColor);
}

.tag.is-small {
    font-size: 0.75rem;
    opacity: 1;
}

.tag.is-available {
    border: 1px solid white;
    background-color: white;
    color: black;
}

.tag.is-reserved {
    border: 1px solid #111;
    background-color: #111;
    color: #eee;
}

.field:not(:last-child) {
    margin-bottom: 1rem;
}

.field.sessions {
    border-top: 1px dotted var(--borderColor);
    padding-top: 1rem;
}

.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
}

.label:not(:last-child) {
    margin-bottom: 0.5rem;
}

.control {
    box-sizing: border-box;
    clear: both;
    font-size: 1rem;
    position: relative;
    text-align: inherit;
}

.help {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
}

.input:not([type='file']):not([type='checkbox']) {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    align-items: center;
    display: inline-flex;
    /* padding: 0.5rem; */
    padding: 0;
    font-size: 1rem;
    justify-content: flex-start;
    position: relative;
    vertical-align: top;
    max-width: 100%;
    width: 100%;
    background-color: transparent;
    /* border: 1px dotted var(--borderColor); */
    border: none;
    outline: none;
}

.textarea {
    display: block;
    width: 100%;
    font-size: 1rem;
    min-height: 6rem;
    /* padding: 0.5rem; */
    padding: 0;
    background-color: transparent;
    /* border: 1px dotted var(--borderColor); */
    border: none;
    outline: none;
    resize: none;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.buttons:last-child {
    margin-bottom: -0.5rem;
}

.buttons .button {
    margin-bottom: 0.5rem;
    flex: 1 1 auto;
}

.buttons .button:not(:last-child) {
    margin-right: 0.5rem;
}

.button {
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: var(--textColor);
    background-color: transparent;
    border: 1px dotted var(--borderColor);
    white-space: nowrap;
    cursor: pointer;
}

.button:hover {
    border-style: solid;
}

.toggle {
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    appearance: none;
    font-size: 1em;
    color: inherit;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
}

.toggle-bw {
    cursor: pointer;
}


/*.main .toggle {
  all: unset;
  appearance: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: .25rem;
  font-size: 1rem;
  color: inherit;
  color: black;
  background-color: gainsboro;
  border: 0;
  cursor: pointer;
}*/

.filters {
    position: relative;
    margin-bottom: 2rem;
    padding: 1rem;
}

.filters::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--textColor);
    opacity: 0.1;
    z-index: -1;
}

.filters.is-hidden {
    display: none;
}

.breadcrumb {
    white-space: nowrap;
}

.breadcrumb ol {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    display: block;
    max-width: 12rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0.5;
}

.breadcrumb a:hover,
.breadcrumb a[aria-current='page'] {
    cursor: default;
    opacity: 1;
}

.breadcrumb a[aria-current='page'] {
    pointer-events: none;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5em;
    opacity: 0.25;
}

.box {
    display: block;
}

.pagination {
    position: relative;
    margin-top: 4rem;
    font-weight: 600;
}

.pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a,
.pagination span {
    padding: 0 0.5rem;
    opacity: 0.25;
}

.pagination a:hover,
.pagination a[aria-current='page'] {
    opacity: 1;
}

.carousel {
    position: relative;
    width: auto;
    overflow: hidden;
    outline: 0;
}

.swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

.swiper-slide {
    width: 100%;
}

.swiper-slide.is-1-12 {
    width: calc(100% / 12 * 1);
}

.swiper-slide.is-2-12 {
    width: calc(100% / 12 * 2);
}

.swiper-slide.is-3-12 {
    width: calc(100% / 12 * 3);
}

.swiper-slide.is-4-12 {
    width: calc(100% / 12 * 4);
}

.swiper-slide.is-5-12 {
    width: calc(100% / 12 * 5);
}

.swiper-slide.is-6-12 {
    width: calc(100% / 12 * 6);
}

.swiper-slide.is-7-12 {
    width: calc(100% / 12 * 7);
}

.swiper-slide.is-8-12 {
    width: calc(100% / 12 * 8);
}

.swiper-slide.is-9-12 {
    width: calc(100% / 12 * 9);
}

.swiper-slide.is-10-12 {
    width: calc(100% / 12 * 10);
}

.swiper-slide.is-11-12 {
    width: calc(100% / 12 * 11);
}

.swiper-slide.is-12-12 {
    width: calc(100% / 12 * 12);
}

@media screen and (min-width: 600px) {
    /* .swiper-slide {
    flex: 1 1 0;
  } */
    .swiper-slide.is-1-12-600 {
        width: calc(100% / 12 * 1);
    }
    .swiper-slide.is-2-12-600 {
        width: calc(100% / 12 * 2);
    }
    .swiper-slide.is-3-12-600 {
        width: calc(100% / 12 * 3);
    }
    .swiper-slide.is-4-12-600 {
        width: calc(100% / 12 * 4);
    }
    .swiper-slide.is-5-12-600 {
        width: calc(100% / 12 * 5);
    }
    .swiper-slide.is-6-12-600 {
        width: calc(100% / 12 * 6);
    }
    .swiper-slide.is-7-12-600 {
        width: calc(100% / 12 * 7);
    }
    .swiper-slide.is-8-12-600 {
        width: calc(100% / 12 * 8);
    }
    .swiper-slide.is-9-12-600 {
        width: calc(100% / 12 * 9);
    }
    .swiper-slide.is-10-12-600 {
        width: calc(100% / 12 * 10);
    }
    .swiper-slide.is-11-12-600 {
        width: calc(100% / 12 * 11);
    }
    .swiper-slide.is-12-12-600 {
        width: calc(100% / 12 * 12);
    }
}

@media screen and (min-width: 900px) {
    .swiper-slide.is-1-12-900 {
        width: calc(100% / 12 * 1);
    }
    .swiper-slide.is-2-12-900 {
        width: calc(100% / 12 * 2);
    }
    .swiper-slide.is-3-12-900 {
        width: calc(100% / 12 * 3);
    }
    .swiper-slide.is-4-12-900 {
        width: calc(100% / 12 * 4);
    }
    .swiper-slide.is-5-12-900 {
        width: calc(100% / 12 * 5);
    }
    .swiper-slide.is-6-12-900 {
        width: calc(100% / 12 * 6);
    }
    .swiper-slide.is-7-12-900 {
        width: calc(100% / 12 * 7);
    }
    .swiper-slide.is-8-12-900 {
        width: calc(100% / 12 * 8);
    }
    .swiper-slide.is-9-12-900 {
        width: calc(100% / 12 * 9);
    }
    .swiper-slide.is-10-12-900 {
        width: calc(100% / 12 * 10);
    }
    .swiper-slide.is-11-12-900 {
        width: calc(100% / 12 * 11);
    }
    .swiper-slide.is-12-12-900 {
        width: calc(100% / 12 * 12);
    }
}

@media screen and (min-width: 1200px) {
    .swiper-slide.is-1-12-1200 {
        width: calc(100% / 12 * 1);
    }
    .swiper-slide.is-2-12-1200 {
        width: calc(100% / 12 * 2);
    }
    .swiper-slide.is-3-12-1200 {
        width: calc(100% / 12 * 3);
    }
    .swiper-slide.is-4-12-1200 {
        width: calc(100% / 12 * 4);
    }
    .swiper-slide.is-5-12-1200 {
        width: calc(100% / 12 * 5);
    }
    .swiper-slide.is-6-12-1200 {
        width: calc(100% / 12 * 6);
    }
    .swiper-slide.is-7-12-1200 {
        width: calc(100% / 12 * 7);
    }
    .swiper-slide.is-8-12-1200 {
        width: calc(100% / 12 * 8);
    }
    .swiper-slide.is-9-12-1200 {
        width: calc(100% / 12 * 9);
    }
    .swiper-slide.is-10-12-1200 {
        width: calc(100% / 12 * 10);
    }
    .swiper-slide.is-11-12-1200 {
        width: calc(100% / 12 * 11);
    }
    .swiper-slide.is-12-12-1200 {
        width: calc(100% / 12 * 12);
    }
}

@media screen and (min-width: 1500px) {
    .swiper-slide.is-1-12-1500 {
        width: calc(100% / 12 * 1);
    }
    .swiper-slide.is-2-12-1500 {
        width: calc(100% / 12 * 2);
    }
    .swiper-slide.is-3-12-1500 {
        width: calc(100% / 12 * 3);
    }
    .swiper-slide.is-4-12-1500 {
        width: calc(100% / 12 * 4);
    }
    .swiper-slide.is-5-12-1500 {
        width: calc(100% / 12 * 5);
    }
    .swiper-slide.is-6-12-1500 {
        width: calc(100% / 12 * 6);
    }
    .swiper-slide.is-7-12-1500 {
        width: calc(100% / 12 * 7);
    }
    .swiper-slide.is-8-12-1500 {
        width: calc(100% / 12 * 8);
    }
    .swiper-slide.is-9-12-1500 {
        width: calc(100% / 12 * 9);
    }
    .swiper-slide.is-10-12-1500 {
        width: calc(100% / 12 * 10);
    }
    .swiper-slide.is-11-12-1500 {
        width: calc(100% / 12 * 11);
    }
    .swiper-slide.is-12-12-1500 {
        width: calc(100% / 12 * 12);
    }
}

@media screen and (min-width: 1800px) {
    .swiper-slide.is-1-12-1800 {
        width: calc(100% / 12 * 1);
    }
    .swiper-slide.is-2-12-1800 {
        width: calc(100% / 12 * 2);
    }
    .swiper-slide.is-3-12-1800 {
        width: calc(100% / 12 * 3);
    }
    .swiper-slide.is-4-12-1800 {
        width: calc(100% / 12 * 4);
    }
    .swiper-slide.is-5-12-1800 {
        width: calc(100% / 12 * 5);
    }
    .swiper-slide.is-6-12-1800 {
        width: calc(100% / 12 * 6);
    }
    .swiper-slide.is-7-12-1800 {
        width: calc(100% / 12 * 7);
    }
    .swiper-slide.is-8-12-1800 {
        width: calc(100% / 12 * 8);
    }
    .swiper-slide.is-9-12-1800 {
        width: calc(100% / 12 * 9);
    }
    .swiper-slide.is-10-12-1800 {
        width: calc(100% / 12 * 10);
    }
    .swiper-slide.is-11-12-1800 {
        width: calc(100% / 12 * 11);
    }
    .swiper-slide.is-12-12-1800 {
        width: calc(100% / 12 * 12);
    }
}

.swiper-button-prev,
.swiper-button-next {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 999;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    color: var(--textColor);
    opacity: 0;
    border: 1px solid var(--borderColor);
    background-color: var(--backgroundColor);
}

.swiper:hover .swiper-button-prev,
.swiper:hover .swiper-button-next {
    opacity: 1;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.swiper-button-prev {
    left: 0.5rem;
}

.swiper-button-next {
    right: 0.5rem;
}

.swiper-button-lock {
    display: none;
}

.flickity-button {
    position: absolute;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--backgroundColor);
    border: 1px solid var(--borderColor);
    border-radius: 0;
    opacity: 0;
}

.carousel:hover .flickity-button {
    opacity: 1;
}

.flickity-button:hover,
.flickity-button:active {
    opacity: 1;
}

.flickity-button.previous {
    left: 0.5rem;
}

.flickity-button.next {
    right: 0.5rem;
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    fill: var(--textColor);
}


/* .flickity-prev-next-button:hover .flickity-button-icon {
  color: var(--backgroundColor);
} */

.flickity-button[disabled] {
    opacity: 0;
}


/* #nodes {
  position: relative;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 50svh;
  overflow: hidden;
  color: var(--textColor);
  border: 1px solid var(--textColor);
}

#nodes .nodes text {
  font-size: .875rem;
  pointer-events: none;
  text-anchor: middle;
  padding-bottom: .5rem;
}

#nodes .nodes circle {
  cursor: pointer;
}

#nodes .link {
  stroke: var(--textColor);
  stroke-opacity: 1;
  stroke-width: 1px;
} */

@media screen and (max-width: 599px) {
    #nodes {
        aspect-ratio: 3 / 5 !important;
    }
}

.button-map {
    position: fixed;
    z-index: 999;
    bottom: 1rem;
    right: 1rem;
    width: 6rem;
    height: 6rem;
    background-color: silver;
    border-radius: 50%;
}

.bars {
    display: flex;
    flex-direction: column;
    position: sticky;
    z-index: 999;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    transition: bottom 0.5s;
}

.bars.is-hidden {
    bottom: -10.5rem;
}

.bar {
    position: relative;
    width: 100%;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    background-image: linear-gradient(to bottom, var(--gradientColorA), var(--gradientColorB));
}

@media screen and (min-width: 900px) {
    .bar {
        padding: 1rem 2rem;
    }
}

.bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.background {
    position: fixed;
    z-index: 888;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen {
    .print-only {
        display: none;
    }
}

@media print {
    body {
        margin: 1.5rem 3rem 3rem;
        font-size: 1.5rem;
        line-height: 1.625;
        color: black !important;
        background-color: white !important;
    }
    .header-logo {
        font-size: .75rem;
    }
    .metadata {
        font-size: .75rem;
        border-bottom: 1px dotted black;
    }
    .metadata li {
        border-top: 1px dotted black;
    }
    .print-only {
        display: block !important;
    }
    .image,
    .content figure,
    .print-only img {
        break-inside: avoid;
        width: 50% !important;
        margin: 0 auto;
    }
    .panel,
    .tabs,
    .links,
    .application-form,
    .bars,
    .swiper,
    .related,
    .header nav,
    .footer,
    .toggle-details,
    .toggle-details.button::after,
    .button,
    .screensaver,
    .column:has(.image.is-none),
    .column:has(.video),
    .block:has(.related),
    iframe {
        display: none !important;
    }
}

.related {
    position: relative;
    margin-top: -0.5rem;
}

.related-nav ul {
    display: flex;
    gap: 1rem;
}

.related-nav a {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.5;
}

.related-nav a:hover,
.related-nav a.is-active {
    opacity: 1;
}

.related-block {
    margin-top: -2rem;
    padding-top: 2rem;
    min-height: 50svh;
}

.related-block:not(:last-child) {
    margin-bottom: 3rem;
}

.related-block-header {
    margin-bottom: 1rem;
}

.text {
    position: relative;
    line-height: 1.625;
}

.text a {
    opacity: 0.5;
    transition: opacity 0.5s;
}

.text a:hover {
    opacity: 1;
}

.text-ellipsis {
    display: block;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.modal-message {
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem 1rem;
    text-align: center;
    color: var(--backgroundColor);
    background-color: var(--textColor);
}

.screensaver {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    color: var(--backgroundColor);
    background-color: var(--textColor);
}

.screensaver.is-active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.screensaver-line {
    width: 100%;
    height: 0.5rem;
    background-color: var(--backgroundColor);
}

.screensaver-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
}

.subscribe-form {
    display: flex;
    align-items: center;
}

.subscribe-input {
    appearance: none;
    width: 100%;
    padding: 0;
    font: inherit;
    font-weight: 400;
    color: var(--textColor);
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    opacity: 0.5;
}

.subscribe-input::placeholder {
    color: var(--textColor);
}

.subscribe-input:focus {
    opacity: 1;
}

.subscribe-button {
    appearance: none;
    padding: 0;
    font: inherit;
    font-weight: 600;
    color: var(--textColor);
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
}

#speakButton {
    appearance: none;
    padding: 0;
    font: inherit;
    color: var(--textColor);
    background-color: transparent;
    border: 0;
    border-radius: 0;
    outline: 0;
    cursor: pointer;
}

.show-application-form {
    display: block;
}

.application-form {
    width: 100%;
    font-size: 0.875rem;
    padding: 1rem;
    /* background-color: var(--backgroundColor); */
    background-color: #222;
    color: var(--textColor);
    border: 1px dotted var(--borderColor);
    margin-top: 1rem;
}

.application-form :not(.field.sessions) .columns {
    gap: .5rem var(--gap);
}

.application-form .input,
.application-form .textarea {
    font-size: 0.875rem !important;
    color: white;
}

.application-form.is-hidden {
    display: none;
}

.application-form .label {
    font-weight: 400;
}

.application-form .field {
    margin-bottom: 1.5rem;
}

.application-form .announcement {
    font-size: 0.75rem;
}

.application-form .announcement ul {
    list-style: outside;
    padding-inline-start: 0.875rem;
}

.application-form .announcement.check {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0.5rem;
}

.application-form .announcement .label {
    font-size: 0.75rem;
    margin-bottom: 0;
}

.field.is-honeypot {
    display: none;
}

.toggle-details::after {
    content: '↓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.toggle-details.is-active::after {
    content: '↑';
}

.details {
    margin-top: 2.5rem;
    border-top: 1px dotted var(--borderColor);
    padding-top: 0.5rem;
}

.details.is-hidden {
    display: none;
}

.button-top {
    position: sticky;
    z-index: 999;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5rem;
    height: 2.5rem;
    color: var(--textColor);
    background-color: var(--backgroundColor);
    border: 1px solid var(--borderColor);
}

.button-top:hover {
    color: var(--backgroundColor);
    background-color: var(--textColor);
    border-color: var(--textColor);
}

.section-collection {
    position: relative;
    height: 14rem;
    padding-bottom: 6rem;
    overflow: hidden;
}

.section-collection::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 666;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3rem;
    background-image: linear-gradient(to bottom, transparent, var(--backgroundColor));
}

.section-collection.is-expanded {
    height: auto;
}

.expand-section-collection {
    appearance: none;
    position: absolute;
    z-index: 777;
    bottom: 0;
    right: 0;
    height: 2.5rem;
    width: 2.5rem;
    font: inherit;
    font-weight: 600;
    color: var(--textColor);
    background-color: var(--backgroundColor);
    border: 1px solid var(--borderColor);
    cursor: pointer;
}

.expand-section-collection::after {
    content: '↓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.expand-section-collection.is-active {
    opacity: 0.5;
}

.expand-section-collection.is-active::after {
    content: '↑';
}

.expand-section-collection:hover {
    color: var(--backgroundColor);
    background-color: var(--textColor);
    border-color: var(--textColor);
}

.teaser-video {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.teaser-video::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--backgroundColor);
}

.teaser-video iframe {
    position: absolute;
    z-index: 99999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 75%;
    width: 75%;
    max-height: 75%;
    height: 75%;
    /* width: 100%; */
    /* max-height: 80%;
    height: 100%; */
}

.close-teaser-video {
    appearance: none;
    position: absolute;
    z-index: 99999;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    font: inherit;
    font-weight: 600;
    color: var(--textColor);
    background-color: var(--backgroundColor);
    border: 1px solid var(--borderColor);
    cursor: pointer;
}

.dont-show-again-today {
    appearance: none;
    position: absolute;
    z-index: 99999;
    top: 1rem;
    right: 4rem;
    width: auto;
    height: 2.5rem;
    padding: 0 1rem;
    font: inherit;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--textColor);
    background-color: var(--backgroundColor);
    border: 1px solid var(--borderColor);
    cursor: pointer;
}

.close-teaser-video:hover,
.dont-show-again-today:hover {
    background-color: white;
    color: black;
}

.group {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
}

.group>*:not(:last-child)::after {
    content: ',';
    margin-right: 0.25em;
}