.panel {
    padding: 18px 60px;
}

.panel svg.logo {
    width: 150px;
    height: 100px;
    margin: 0;
}

body:not(.firstSlide) .panel.top, body.whiteSlide .panel.top {
    background: #fff;
    color: #313942;
    box-shadow: none;
}

body:not(.firstSlide) .panel svg {
    fill: #313942;
}

.orig-masthead {
    text-transform: uppercase;
    font-kerning: normal;
    background: linear-gradient(156deg, #fec84e 10%, #ffd067 52%, #ffdea8);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

.masthead {
    background-image: linear-gradient(178deg, #cfc09f 22%, #ffecb3 45%, #3a2c0f 92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    position: relative;
}

.masthead::after {
    background: none;
    content: attr(data-heading) / "";
    left: 0;
    top: 0;
    z-index: -1;
    position: absolute;
    text-shadow:
        -1px 0 1px #c6bb9f,
        0 1px 1px #c6bb9f,
        5px 5px 10px rgba(0, 0, 0, 0.4),
        -5px -5px 10px rgba(0, 0, 0, 0.4);
}

h1.huge.masthead {
    font-size: 80px;
}

.gh-card-title {
    line-height: 1.2;
}

.gh-card-excerpt {
    line-height: 1.4 !important;
    hyphens: auto;
    padding: 0 18px;
}

.gh-article-meta {
    display: flex;
    align-items: center;
}

.gh-article-author-image {
    display: flex;
    margin-right: 8px;
}

.gh-article-author-image a {
    position: relative;
    margin: 0 -8px;
    width: 56px;
    height: 56px;
    overflow: hidden;
    background-color: var(--color-light-gray);
    border-radius: 50%;
    border: 3px solid var(--background-color);
}

.gh-article-author-image a:first-child {
    z-index: 10;
}

.gh-article-author-image a:nth-child(2) {
    z-index: 9;
}

.gh-article-author-image a:nth-child(3) {
    z-index: 8;
}

.gh-article-author-image :is(img, svg) {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gh-article-meta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gh-article-author-name {
    font-size: 1.6rem;
    font-weight: 650;
    letter-spacing: -0.013em;
}

.gh-article-meta-content {
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.006em;
    color: var(--color-secondary-text);
}

.gh-article-image {
    grid-column: wide;
    margin-top: 40px;
}

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

hr {
    border: 0;
    height: 1px;
    width: 54px;
    background: #fff;
    margin-left: auto;
    margin-right: auto;
}

hr.left {
    margin-left: 0;
}

hr.tall {
    margin-top: 30px;
    margin-bottom: 29px;
}

hr.fullWidth {
    width: calc(100% - 30px);
}

.articleBody hr {
    margin-top: 30px;
    margin-bottom: 29px;
}

.whiteSlide hr,
.yellow hr {
    background: #303030;
}

.hscroll:not(.video) .background {
    background-position: left center;
    -webkit-animation: backgroundScroll 12000s linear infinite;
    -moz-animation: backgroundScroll 12000s linear infinite;
    -o-animation: backgroundScroll 12000s linear infinite;
    animation: backgroundScroll 12000s linear infinite;
}

@-webkit-keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -384000px 0;
    }
}

@-moz-keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -384000px 0;
    }
}

@-o-keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -384000px 0;
    }
}

@keyframes backgroundScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -384000px 0;
    }
}

.noCursor {
    cursor: inherit !important;
}

progress {
    vertical-align: baseline;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: 0.75rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
}

.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width 0.6s ease;
}

@media screen and (prefers-reduced-motion: reduce) {
    .progress-bar {
        transition: none;
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite;
}

section.blogArticle .articleBody p,
section.blogArticle .articleBody ul,
section.blogArticle .articleBody ol,
section.blogArticle .articleBody h2,
section.blogArticle .articleBody h3,
section.blogArticle .articleBody h4,
section.blogArticle .articleBody h5,
section.blogArticle .articleBody h6,
section.blogArticle .articleBody blockquote {
    text-align: left;
}

section.blogArticle .articleBody p {
    font-size: 22px;
    font-weight: 300;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    text-rendering: optimizeLegibility;
    margin-bottom: 1.2rem;
    color: #030303;
}

section.blogArticle .articleBody ul,
section.blogArticle .articleBody ol {
    margin-left: 60px;
}

section.blogArticle .articleBody ul li,
section.blogArticle .articleBody ol li {
    font-size: 22px;
    font-weight: 300;
}

section.blogArticle ul {
    list-style-type: none;
    margin-left: 44px;
}

section.blogArticle ul li {
    margin-bottom: 12px;
}

section.blogArticle ul li:before {
    content: '• ';
    position: absolute;
    margin-left: -22px;
}

section.blogArticle .articleBody p.small {
    font-size: 18px;
}

section.blogArticle .articleBody>p:first-child {
    margin-top: 60px;
}

section.blogArticle .articleBody>p:first-child::first-letter {
    float: left;
    font-size: 60px;
    line-height: 56px;
    padding: 0;
}

section.blogArticle .articleBody sup,
section.blogArticle .articleBody sub,
section.blogArticle td sup,
section.blogArticle td sub {
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
    font-size: 14px;
}

section.blogArticle .articleBody sub {
    top: 0.6em;
}

section.blogArticle td sub {
    font-size: 60%;
    top: 0.4em;
}

section.blogArticle .articleBody h3 {
    text-align: left;
    font-size: 28px;
    line-height: 28px;
    margin-top: 28px;
    margin-bottom: 14px;
}

section.blogArticle table tbody tr td,
section.blogArticle table thead tr th {
    font-size: 16px;
    line-height: 1.2;
    text-align: left;
    padding: 8px;
    vertical-align: baseline;
}

section.blogArticle blockquote {
    font-size: 18px;
    margin-left: 60px;
}

table.catalog tr td:first-child {
    font-size: 14px;
}

table.catalog tr td:first-child::after {
    content: '.';
}

table.catalog tr th:nth-child(2),
table.catalog tr td:nth-child(2) {
    max-width: 180px;
}

table.catalog sup {
    font-size: 10px;
}

.expandable {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.expandable:hover {
    opacity: 0.8;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Vendor */
/* These styles are required by Ghost 👻 and apply to editor cards. These styles are derived from Ghost defaults: https://ghost.org/docs/themes/content/ */
/* Image Card */
.kg-image-card img {
    max-width: 100%;
    height: auto;
}

/* By using CSS grid, you can have an elegant solution to accomodate wide/full image cards and other embeds */
.kg-width-wide {
    grid-column: 2 / -2;
}

.kg-width-full {
    grid-column: 1 / -1;
}

/* Gallery */
.kg-gallery-card {
    grid-column: 1 / -1;
}

.kg-gallery-card,
.kg-gallery-card * {
    box-sizing: border-box;
}

.kg-gallery-card,
.kg-image-card {
    --gap: 1.2rem;
}

.kg-image-card:not(.kg-card-hascaption)+.kg-image-card,
.kg-image-card:not(.kg-card-hascaption)+.kg-gallery-card,
.kg-gallery-card:not(.kg-card-hascaption)+.kg-image-card,
.kg-gallery-card:not(.kg-card-hascaption)+.kg-gallery-card {
    margin-top: 1rem;
    margin-top: var(--gap);
}

.kg-gallery-container {
    position: relative;
}

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

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

.kg-gallery-row:not(:first-of-type) {
    margin: 1rem 0 0;
    margin: var(--gap) 0 0;
}

.kg-gallery-image:not(:first-of-type) {
    margin: 0 0 0 1rem;
    margin: 0 0 0 var(--gap);
}

@media (max-width: 600px) {

    .kg-gallery-card,
    .kg-image-card {
        --gap: 0.6rem;
    }
}

/* Bookmark Card */
.kg-bookmark-card,
.kg-bookmark-card * {
    box-sizing: border-box;
}

.kg-bookmark-card,
.kg-bookmark-publisher {
    position: relative;
    width: 100%;
}

.kg-bookmark-card a.kg-bookmark-container,
.kg-bookmark-card a.kg-bookmark-container:hover {
    display: flex;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid rgba(124, 139, 154, 0.25);
    overflow: hidden;
    color: inherit;
}

.kg-bookmark-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-basis: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    overflow: hidden;
}

.kg-bookmark-title {
    font-size: 1.5rem;
    line-height: 1.4em;
    font-weight: 600;
}

.kg-bookmark-description {
    display: -webkit-box;
    font-size: 1.4rem;
    line-height: 1.5em;
    margin-top: 3px;
    font-weight: 400;
    max-height: 44px;
    overflow-y: hidden;
    opacity: 0.7;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.kg-bookmark-metadata {
    display: flex;
    align-items: center;
    margin-top: 22px;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 500;
    white-space: nowrap;
}

.kg-bookmark-metadata>*:not(img) {
    opacity: 0.7;
}

.kg-bookmark-icon {
    width: 20px;
    height: 20px;
    margin-right: 6px;
}

.kg-bookmark-author,
.kg-bookmark-publisher {
    display: inline;
}

.kg-bookmark-publisher {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 240px;
    white-space: nowrap;
    display: block;
    line-height: 1.65em;
}

.kg-bookmark-metadata>span:nth-of-type(2) {
    font-weight: 400;
}

.kg-bookmark-metadata>span:nth-of-type(2):before {
    content: '•';
    margin: 0 6px;
}

.kg-bookmark-metadata>span:last-of-type {
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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