/* Table of contents
/* ------------------------------------------------------------

This is a development CSS file which is built to a minified
production stylesheet in assets/built/screen.css

1. Variables
2. Fonts
3. Resets
4. Globals
5. Layout
6. Navigation
  6.1. Navigation styles
  6.2. Navigation layouts
  6.3. Dropdown menu
  6.4. Mobile menu
7. Card
8. Header
  8.1. Magazine layout
  8.2. Highlight layout
  8.3. Classic layout
9. CTA
10. Featured posts
11. Container
  11.1. With sidebar
  11.2. Without sidebar
12. Post list
  12.1. List style
  12.2. Grid style
  12.3. No image list
13. Sidebar
14. Post/page
  14.1. Article
  14.2. Page template
  14.3. Page without header
  14.4. Schedule
  14.5. Standings
  14.6. About
15. Content
16. Cards
17. Comments
18. Recent posts
19. Archive
20. Design settings
21. Footer
  21.1. Footer styles
  21.2. Footer bar
  21.3. Footer signup
22. Lightbox
23. Ad Spots
24. Editors Picks

*/

/* 1. Variables
/* ---------------------------------------------------------- */

:root {
    --border-width: 1px;
    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-round: 999999px; 

    --typography-buttons-regular: 1.6rem;

    --button-letter-spacing: 0.01rem;

    --color-grey-100: #f2f2f2;
    --color-grey-200: #DBDBDB;
    --color-grey-300: #B3B3B3;
    --color-grey-400: #8d8d8d;
    --color-grey-450: #787878;
    --color-grey-500: #383838;
    --color-grey-700: #1B1B1B;
    --color-grey-900: #15171A;

    --gradient-fade: linear-gradient(to right, rbga(27,27,27,1), rbga(27,27,27, 0));

    --color-white: #fff;

    --gradient-step-1: ;
    --color-black: #000;
    --color-primary-text: var(--color-grey-700);
    --color-secondary-text: #383838;
    --color-border: #DBDBDB;
    --color-dark-border: #DBDBDB;
    --color-link-primary: #DA7B38;
    --color-background-accent: #DA7B38;
    --font-sans: "Roboto Flex", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    --font-serif: "Literata", "EB Garamond", Georgia, Times, serif;
    --font-serif-alt: Georgia, Times, serif;
    --font-mono: "Roboto Mono", "JetBrains Mono", Menlo, Consolas, Monaco, "Liberation Mono", "Lucida Console", monospace;
    --container-width: 1664px;
    --container-gap: clamp(24px, 1.7032rem + 1.9355vw, 48px);
    --grid-gap: 32px;

}

:root.has-light-text,
:is(.gh-navigation, .gh-footer).has-accent-color {
    --color-grey-100: rgb(255 255 255 / 0.1);
    --color-grey-900: #fff;
    --color-secondary-text: rgb(255 255 255 / 0.64);
    --color-border: rgb(255 255 255 / 0.15);
    --color-dark-border: rgb(255 255 255 / 0.5);
}

/* 2. Fonts
/* ---------------------------------------------------------- */

/* Fonts are preloaded and defined in default.hbs to avoid layout shift */

/* 3. Resets
/* ---------------------------------------------------------- */

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

* {
    margin: 0;
}

html {
    font-size: 62.5%;
}

body {
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

iframe {
    display: block;
}

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

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

/* 4. Globals
/* ---------------------------------------------------------- */

body {
    font-family: var(--gh-font-body, var(--font-sans));
    font-size: 1.8rem;
    background-color: var(--background-color);
    color: var(--color-secondary-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gh-font-heading, var(--font-sans));
}

a {
    color: var(--color-grey-900);
    text-decoration: none;
    font-family: 'Roboto Flex';
    font-weight: bold;
}

a:hover {
    opacity: 0.8;
}

.gh-button {
    display: inline-flex;
    gap: 0.4em;
    align-items: center;
    justify-content: center;
    padding: 1.3rem 2.2rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: var(--button-letter-spacing);
    line-height: 1;
    color: var(--color-white);
    cursor: pointer;
    background-color: var(--color-link-primary);
    border: 0;
    border-radius: var(--border-radius-small);
}

@media (max-width: 767px) {
    .gh-button {
        padding: 0.8rem 1.2rem;
    }
}

.gh-button:hover {
    opacity: 0.95;
}

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

.gh-icon-button:hover :is(svg, span) {
    opacity: 0.8;
}

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

.gh-form {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 560px;
    width: 100%;
    height: 56px;
    font-size: 1.7rem;
    font-weight: 450;
    letter-spacing: -0.008em;
    border-radius: 40px;
    background-color: var(--color-grey-100);
    transition: background-color 0.2s ease;
}

.gh-form.success {
    pointer-events: none;
}

.gh-form.error {
    box-shadow: 0 0 0 1px red;
}

.gh-form:hover {
    background-color: rgb(0 0 0 / 0.065);
}

.has-light-text .gh-form:hover,
.gh-footer.has-accent-color .gh-form:hover {
    background-color: rgb(255 255 255 / 0.15);
}

.gh-form-input {
    position: absolute;
    inset: 0;
    padding-inline: 26px;
    width: 100%;
    height: 100%;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: 1.1;
    border: 0;
    border-radius: var(--border-radius-small);
    background-color: transparent;
    outline: none;
    transition: 0.3s ease-in-out;
    background-color: var(--color-white);
}

.gh-form .gh-button {
    left: 0;
    top: 68px;
    background-color: var(--color-grey-700);
    height: 48px;
}

.gh-form-input::placeholder,
button.gh-form-input {
    color: rgb(0 0 0 / 0.3);
}

:is(.has-serif-title, .has-mono-title):not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-form-input,
body[class*=" gh-font-heading"]:not(.gh-font-heading-fira-sans):not(.gh-font-heading-inter):not(.gh-font-heading-manrope):not(.gh-font-heading-noto-sans):not(.gh-font-heading-nunito):not(.gh-font-heading-poppins):not(.gh-font-heading-roboto):not(.gh-font-heading-space-grotesk) .gh-form-input {
    padding-inline: 20px;
}

.gh-form.gh-form.success .gh-form-input {
    opacity: 0.5;
}

.has-light-text .gh-form-input,
.gh-footer.has-accent-color .gh-form-input {
    color: #fff;
}

.has-light-text .gh-form-input::placeholder,
.has-light-text button.gh-form-input,
.gh-footer.has-accent-color .gh-form-input::placeholder {
    color: rgb(255 255 255 / 0.55);
}

.gh-header.is-classic.has-image .gh-form-input {
    color: #15171a;
}

.gh-header.is-classic.has-image .gh-form-input::placeholder,
.gh-header.is-classic.has-image button.gh-form-input,
.gh-header.is-classic.has-image .gh-form > svg {
    color: rgb(0 0 0 / 0.5);
}

button.gh-form-input {
    padding-inline-start: 56px;
    text-align: left;
    color: var(--color-secondary-text);
    cursor: pointer;
}

:is(.has-serif-title,.has-mono-title):not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) button.gh-form-input,
body[class*=" gh-font-heading"]:not(.gh-font-heading-fira-sans):not(.gh-font-heading-inter):not(.gh-font-heading-manrope):not(.gh-font-heading-noto-sans):not(.gh-font-heading-nunito):not(.gh-font-heading-poppins):not(.gh-font-heading-roboto):not(.gh-font-heading-space-grotesk) button.gh-form-input {
    padding-inline-start: 50px;
}

.gh-form .gh-button {
    position: absolute;
    right: 6px;
    padding-inline: 32px;
    height: 47px;
    font-size: inherit;
}

.category-listing .gh-form {
    height: 51px;
    background-color: transparent;
    grid-row-start: 2;
    width: 100%;
    grid-column: 1 / 12;
    max-width: unset;
}

.latest-from-category .gh-header-middle .gh-card .gh-card-excerpt {
    display: none !important;
}

.latest-from-category .gh-header-middle .gh-card .gh-card-image {
    display: block !important;
}

.latest-from-category .gh-header-middle .gh-card .gh-card-tag {
    display: none;
}

.category-listing.latest-from-category .gh-form .gh-button {
    top: 0px;
    height: inherit;
    background-color: transparent;
    border: 1px solid var(--color-grey-700);
    font-family: var(--font-sans);
    color: var(--color-grey-700);
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .category-listing.latest-from-category .gh-form {
        max-width: 200px;
        grid-column: 4 / 12;
    }

    .category-listing.latest-from-category .post-card-inline .gh-card-title {
        font-size: 2.0rem;
    }

    .category-listing.latest-from-category .gh-form .gh-button {
        font-size: 1.6rem;
        letter-spacing: -0.32px;
    }

    .category-listing .gh-form button {
        padding: 14px 9px;
    }
}

.gh-form > svg {
    position: relative;
    left: 22px;
    width: 20px;
    height: 20px;
    color: var(--color-secondary-text);
}

:is(.has-serif-title,.has-mono-title):not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-form > svg {
    left: 16px;
}

.gh-form .gh-button svg {
    display: none;
    position: absolute;
    margin-top: 1px;
}

.gh-form:is(.loading, .success) .gh-button span {
    visibility: hidden;
}

.gh-form.loading .gh-button svg:first-of-type {
    display: block;
}

.gh-form.success .gh-button svg:last-of-type {
    display: block;
}

.gh-form [data-members-error] {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .gh-form {
        font-size: 1.6rem;
    }

    .gh-form .gh-button,
    .custom-table .gh-button {
        padding-inline: 12px;
    }

    .gh-form .gh-button span span {
        display: none;
    }

    .gh-form .gh-button span svg {
        display: inline;
        position: static;
        margin-top: 2px;
        width: 20px;
        height: 20px;
    }
}

/* 5. Layout
/* ---------------------------------------------------------- */

.gh-viewport {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.gh-outer {
    padding: 0 max(4vmin, 24px);
}

.gh-outer .gh-outer {
    padding: 0;
}

.gh-inner {
    margin: 0 auto;
    max-width: var(--container-width);
    width: 100%;
}

.gh-main {
    flex-grow: 1;
}

.gh-canvas,
.kg-width-full.kg-content-wide {
    --main: min(var(--content-width, 816px), 100% - var(--container-gap) * 2);
    --wide: minmax(0, calc((var(--container-width, 1200px) - var(--content-width, 720px)) / 2));
    --full: minmax(var(--container-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-width-wide,
.kg-content-wide > div {
    grid-column: wide;
}

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

/* 6. Navigation
/* ---------------------------------------------------------- */

.gh-navigation {
    height: 100px;
    font-size: 1.6rem;
    font-weight: 550;
    background-color: var(--background-color);
    color: var(--color-grey-900);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: transform 0.3s ease;
}

.gh-navigation.nav-hidden {
    transform: translateY(-100%);
}

@media (min-width: 767px) {
    .gh-navigation {
        height: 76px;
    }

    .gh-navigation.gh-outer {
        padding-left: calc(max(4vmin, 24px) / 2);
    }
}

.gh-navigation :is(.gh-navigation-logo, a:not(.gh-button), .gh-icon-button) {
    color: inherit;
}

.gh-navigation-inner {
    display: grid;
    grid-auto-flow: row dense;
    column-gap: 24px;
    align-items: center;
    height: 100%;
    gap: 41px;
}

.gh-navigation-brand {
    line-height: 1;
}

@media (min-width: 767px) {
    .gh-navigation-brand {
        border-right: 1px solid var(--color-border);
        padding-right: 46px;
        height: 38px;
        display: flex;
        align-items:center ;
    }

}

.gh-navigation-logo {
    position: relative;
    font-family: var(--gh-font-heading, var(--font-sans));
    font-size: calc(2.4rem * var(--factor, 1));
    font-weight: 725;
    letter-spacing: -0.015em;
    white-space: nowrap;
}

.gh-navigation-logo img {
    max-height: 20vw;
}

@media (min-width: 767px) {
    .gh-navigation-logo img {
        max-height: 8vw;
    }

    .gh-navigation-menu {
        margin-top: -3px;
    }
}

@media (min-width: 1200px) {
    .gh-navigation-logo img {
        max-height: 5vw;
    }
}

.gh-navigation-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.gh-navigation .nav {
    display: inline-flex;
    gap: 28px;
    align-items: center;
    padding: 0;
    margin: 0;
    white-space: nowrap;
    list-style: none;
}

@media (min-width: 767px) {
    .gh-navigation .nav {
        gap: 0;
    }

    .gh-navigation .nav li:not(.gh-dropdown li) {
        padding-right: 20px;
        padding-left: 20px;
        border-right: var(--border-width) solid var(--color-link-primary);
        height: 20px;
        display: flex;
        align-items: center;
    }

    .gh-navigation .nav li:not(.gh-dropdown li) a {
        position: relative;
    }

    .gh-navigation .nav li:not(.gh-dropdown li).nav-current a::after {
        content: '';
        position: absolute;
        left: 0px;
        height: 3px;
        width: -webkit-fill-available;
        display: block;
        background-color: var(--color-background-accent);
        bottom: -27px;
    }

    .gh-navigation .nav li:not(.gh-dropdown li):last-of-type {
        border-right: 0;
    }

    .gh-navigation .nav li:not(.gh-dropdown li):first-child {
        padding-left: 0;
    }
}

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

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

.gh-navigation-actions {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--background-color);
}

.gh-navigation.has-accent-color .gh-navigation-actions {
    background-color: var(--ghost-accent-color);
}

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

.gh-navigation-members .gh-button {
    font-size: var(--typography-buttons-regular);
    font-weight: 600;
}

.gh-search {
    margin-right: -2px;
    margin-left: -2px;
}

.gh-search svg {
    position: relative;
    top: 1px;
}
.gh-search:focus-visible {
    outline: -webkit-focus-ring-color auto 1px;
}

@media (max-width: 767px) {
    .gh-navigation.gh-outer {
        padding-left: 0;
    }

    .gh-navigation-logo {
        white-space: normal;
    }

    .gh-navigation-members {
        flex-direction: column-reverse;
        gap: 16px;
        width: 100%;
    }

    .gh-navigation-actions .gh-search {
        display: none;
    }
}

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

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

/* 6.1. Navigation styles */

.gh-navigation.has-accent-color {
    background-color: var(--ghost-accent-color);
}

.gh-navigation.has-accent-color .gh-button {
    background-color: #fff;
    color: #15171a;
}

/* 6.2. Navigation layouts */
#gh-navigation.subnav {
    position: relative;
    z-index: 99;
    margin-top: 0;
    border-bottom: 0;
    background-color: var(--color-grey-700);
    overflow-x: scroll;
    height: 41px;
    -ms-overflow-style: none;
}

#gh-navigation.subnav.is-open {
    display: none;
}

#gh-navigation.subnav::-webkit-scrollbar {
    display: none;
}

#gh-navigation.subnav::after {
    content: '';
    position: absolute;
    top: 145px;
    right: 0px;
    height: inherit;
    width: 21.88295165%;
    background-color: var(--color-grey-700);
    background: linear-gradient(90deg, rgb(27 27 27 / 0%) 0%, rgba(27, 27, 27, 1) 100%);
}

@media (max-width: 767px) {
    #gh-navigation.subnav::after {
        display: none;
    }

    #gh-navigation.subnav .subnav-links {
        padding-left: var(--container-gap);
        padding-right: var(--container-gap);
    }
}

/* The subnav is not shown on all pages, this means the subnav 'gradient' has different offsets per page type */
.home-template #gh-navigation.subnav::after {
    display: none;
}

.post-template #gh-navigation.subnav::after {
    display: none;
}

#gh-navigation.subnav .subnav-links {
    height: 100%;
}

#gh-navigation.subnav .gh-navigation-inner,
#gh-navigation.subnav .subnav-links,
#gh-navigation.subnav .subnav-links ul {
    display: flex;
}

#gh-navigation.subnav .subnav-links ul {
    align-items: center;
    padding-left: 0;
}

#gh-navigation.subnav .subnav-links li {
    list-style-type: none;
    padding-right: 15px;
    border-right: 1px solid var(--color-background-accent);
    white-space: nowrap;
    line-height: 0;
    padding: 3px 15px 3px 0px;
}

#gh-navigation.subnav .subnav-links ul li.is-active a::after {
    content: '';
    position: absolute;
    height: 3px;
    width: -webkit-fill-available;
    background: var(--color-background-accent);
    left: 0px;
    bottom: -14px;
    display: block;
}

#gh-navigation.subnav .subnav-links ul li a {
    font-family: "Roboto Flex";
    font-size: 1.2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
}

#gh-navigation.subnav .subnav-links li:last-of-type {
    border-right: 0;
}

#gh-navigation.subnav .subnav-links li:not(:first-of-type) {
    padding-left: 15px;
}

#gh-navigation.subnav .gh-navigation-inner {
    grid-template-rows: 0;
    grid-template-columns: 0;
    gap: 0;
    display: flex;
}

#gh-navigation.subnav .subnav-links li a {
    color: var(--color-white);
}

@media (min-width: 768px) {
    #gh-navigation.subnav {
        height: 63px;
    }

    #gh-navigation.subnav::after {
        content: none;
    }

    #gh-navigation.subnav .subnav-links ul li.is-active a::after {
        bottom: -25px;
    }
}

/* Breadcrumbs */

.breadcrumbs {
    height: 41px;
    display: flex;
    align-items: center;
    padding: 0 max(4vmin, 24px);
}

.breadcrumbs li {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.breadcrumbs li + li::before {
    content: '\203A';
    margin: 0 8px;
    color: var(--color-grey-450);
    font-size: 1.4rem;
}

.breadcrumbs li a {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-grey-450);
    text-decoration: none;
    line-height: 1;
}

.breadcrumbs .breadcrumb-current a {
    color: var(--color-grey-600);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 180px;
}

@media (min-width: 1024px) {
    .breadcrumbs {
        display: none;
    }

}

/*
======================================================================
LOGO   Home About Collection Author Portal             Login Subscribe
======================================================================
*/

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

@media (min-width: 768px) {
    .gh-navigation.is-left-logo .gh-navigation-logo:not(:has(img)) {
        top: -2px;
    }
}

@media (min-width: 992px) {
    .gh-navigation.is-left-logo .gh-navigation-menu {
        margin-right: 100px;
        margin-left: 16px;
    }
}

/*
======================================================================
Home About Collection            LOGO                  Login Subscribe
======================================================================
*/

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

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

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

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

/*
======================================================================
Search                         LOGO                    Login Subscribe
                 Home About Collection Author Portal
======================================================================
*/

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

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

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

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

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

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

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

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

    .gh-navigation.is-stacked .gh-navigation-menu::after {
        top: 140px;
    }

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

    .gh-navigation.is-stacked .gh-navigation-actions .gh-search {
        display: flex;
        gap: 10px;
        width: auto;
    }
}

/* 6.3. Dropdown menu */

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

.gh-dropdown.is-left {
    right: auto;
    left: -16px;
}

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

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

.gh-dropdown li a {
    display: block;
    padding: 8px 20px;
    line-height: 1.5;
    white-space: normal;
    color: #15171a !important;
}

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

/* 6.4. Mobile menu */

.gh-burger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    display: none;
    margin-right: -7px;
    margin-left: 6px;
}

.gh-burger svg {
    width: 23px;
    height: 16px;
}

.gh-burger svg:last-child {
    display: none;
}

.is-open .gh-burger svg:first-child {
    display: none;
}

.is-open .gh-burger svg:last-child {
    display: block;
}

@media (min-width: 767px) {
    #gh-navigation .gh-button.mobile-only-button {
        opacity: 0;
    }

    .header-buttons {
        display: none;
    }   
}

#gh-navigation {
    border-bottom: var(--border-width) solid var(--color-grey-200);   
}

@media (max-width: 767px) {
    .gh-burger {
        display: flex;
    }

    #gh-navigation {
        height: 64px;
    }

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

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

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

    #gh-navigation .header-buttons {
        display: flex;
        width: 100%;
        justify-content: end;
        align-items: center;
    }

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

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

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

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

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

    #gh-navigation .gh-navigation-actions {
        text-align: center;
    }

    #gh-navigation :is(.gh-button, a[data-portal="signin"]) {
        opacity: 0;
    }

    #gh-navigation :is(.gh-button.gh-button.mobile-only-button) {
        opacity: 1;
        margin-right: 12px;
        margin-top: 2px;
    }

    #gh-navigation.is-open :is(.gh-button.gh-button.mobile-only-button) {
        opacity: 0;
    }

    #gh-navigation .gh-button {
        width: auto;
        font-size: 1.75rem;    
        text-transform: none;
    }

    @media (max-width: 767px) {
        #gh-navigation .gh-button {
            font-size: 1.2rem;
        }
    }

    #gh-navigation a[data-portal="signin"] {
        font-size: 1.75rem;
    }

    #gh-main {
        transition: opacity 0.4s;
    }

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

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

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

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

    .is-open#gh-navigation .gh-navigation-actions {
        position: sticky;
        right: 0;
        bottom: 30px;
        left: 0;
        display: inline-flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        padding: var(--container-gap) 0;
    }

    .is-open#gh-navigation :is(.gh-button, a[data-portal="signin"]) {
        opacity: 1;
        transition: transform 0.4s, opacity 0.4s;
        transition-delay: 0.2s;
        transform: translateY(0);
    }

    .is-open#gh-navigation a[data-portal="signin"] {
        transition-delay: 0.4s;
    }

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

/* 7. Card
/* ---------------------------------------------------------- */

.gh-card {
    position: relative;
}

.gh-card.tag-video .gh-card-link .gh-card-title.is-title::before {
    content: "";
    background-image: url(../images/camera.svg);
    width: 20px;
    display: inline-flex;
    height: 17px;
    transform: scale(0.75);
    top: 2px;
    position: relative;
}

@media (min-width: 1200px) {
    .gh-card.tag-video .gh-card-link .gh-card-title.is-title::before {
        top: 0px;
        transform: none;
        margin-right: 8px;
    }
}

.gh-card-link {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gh-card-link:hover {
    opacity: 1;
}

.gh-card-image {
    position: relative;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
}

.gh-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gh-card-wrapper {
    flex-grow: 1;
}

.gh-card-tag,
.gh-article-tag {
    display: none;
    margin-bottom: 4px;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 1.3px;
    color: var(--color-link-primary);
}

@media (min-width: 767px) {
    .gh-card-tag,
    .gh-article-tag {
        font-size: 1.2rem;
        letter-spacing: 1.8px;
    }
}

.gh-card-title {
    font-size: calc(1.9rem * var(--factor, 1));
    font-weight: 725;
    letter-spacing: -0.014em;
    line-height: 1.3;
}

.post-card-inline .gh-card-title {
    font-size: 1.4rem;
    line-height: 1.14em;
}

.gh-card-link:hover .gh-card-title {
    opacity: 0.6;
}

.gh-card-excerpt {
    display: -webkit-box;
    overflow-y: hidden;
    margin-top: 8px;
    font-size: 1.45rem;
    line-height: 1.4;
    -webkit-box-orient: vertical;
}

.gh-card-meta {
    align-items: center;
    padding-bottom: 1px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.004em;
    color: var(--color-secondary-text);
}

.gh-card-meta svg {
    position: relative;
    top: 1px;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 2px;
}

.gh-card-meta:not(:empty) {
    margin-top: 8px;
}

.gh-card-author + .gh-card-date::before {
    content: "—";
    margin-right: 4px;
}

.post-card-inline-noExcerpt .gh-card-link,
.post-card-inline .gh-card-link,
.gh-featured-feed .post-card-inline-noExcerpt .gh-card-link {
    flex-direction: row-reverse;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    align-items: center;
}

.gh-featured-feed .post-card-inline-noExcerpt:last-of-type .gh-card-link {
    border-bottom: 1px solid var(--color-grey-700);
}

@media (min-width: 1200px) {
    .category-listing .post-card-inline:last-of-type .gh-card-link {
        border-bottom: none;
        padding-bottom: 0;
    }
}

.post-card-inline .gh-card-link {
    flex-direction: row;
    align-items: start;
    align-items: center;
}

.gh-header.is-highlight .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt {
    display: none;
}

.post-card-inline-noExcerpt .gh-card-link .gh-card-tag {
    display: block;
    margin-bottom: 7px;
}

.post-card-inline-noExcerpt .gh-card-link .gh-card-image,
.post-card-inline .gh-card-link .gh-card-image {
    width: 33%;
    max-width: 231px;
}

.post-card-inline-noExcerpt .gh-card-link .gh-card-title,
.gh-header.is-highlight.category-listing .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt,
.gh-header.is-highlight.category-listing .gh-header-middle .gh-card .gh-card-excerpt {
    font-size: 1.4rem;
    line-height: 1.15em;
}

.gh-featured-feed .gh-card.post-card-bullet::before {
    background-color: transparent;
}

.gh-header.is-highlight .gh-featured-feed .post-card-bullet {
    margin-bottom: 0;
}

.gh-header.is-highlight .gh-featured-feed .post-card-bullet .gh-card-wrapper {
    display: flex;
    align-items: first baseline;
    gap: 8px;
}

.gh-header.is-highlight .gh-featured-feed .post-card-bullet .gh-card-wrapper::before {
    content: none;
}

.gh-header.is-highlight .gh-featured-feed .post-card-bullet .bullet-arrow {
    display: inline-flex;
    flex-shrink: 0;
    transform: translateY(2px);
}

.gh-header.is-highlight .gh-featured-feed .post-card-bullet .bullet-arrow svg {
    display: block;
}

.gh-header.is-highlight .gh-featured-feed .post-card-bullet .gh-card-title {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 0;
    padding: 0;
}

@media (min-width: 1200px) {
    .post-card-inline-noExcerpt .gh-card-link {
        margin-left: var(--grid-gap);
        margin-right: calc(var(--grid-gap) - 15px);
        padding-bottom: 28px;
        padding-top: 15px;   
    }

    .post-card-inline .gh-card-link {
        gap: 32px;
        padding-bottom: 18px;
    }

    .post-card-inline-noExcerpt:first-of-type .gh-card-link {
        padding-top: 0;
    }

    .post-card-inline-noExcerpt:last-of-type .gh-card-link  {
        border-bottom: 0;
    }

    .gh-header.is-highlight .gh-header-inner .gh-header-middle::after {
        right: calc(var(--grid-gap) / -2);
    }

    .post-card-inline-noExcerpt .gh-card-link .gh-card-title,
    .gh-header.is-highlight.category-listing .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt,
    .gh-header.is-highlight.category-listing .gh-header-middle .gh-card .gh-card-excerp,
    .category-listing .post-card-inline .gh-card-title {
        font-size: 1.8rem;
    }

    .post-card-inline-noExcerpt .gh-card-link .gh-card-tag {
        margin-bottom: 10px;
    }

    .post-card-inline-noExcerpt .gh-card-link .gh-card-image {
        width: 34%;
    }

    .gh-header.is-highlight .gh-header-right {
        margin-left: 15px;
    }

    .gh-header.is-highlight .gh-featured-feed .bullet-wrapper {
        margin-bottom: 5px;
    }
}

/* 8. Header
/* ---------------------------------------------------------- */

.gh-header {
    position: relative;
    margin-top: 24px;
}
.gh-header:first-of-type {
    margin-top: 50px;
}

.gh-header.category-listing .category-title,
.editors-picks.gh-header .category-title,
.gh-article .gh-content h2 {
    font-size: 3.2rem;
    line-height: 1.17em;
}

.gh-article .gh-content h3 {
    font-size: 2.8rem;
    line-height: 1.17em;
}

.gh-article .gh-content h2 strong,
.gh-article .gh-content h3 strong,
.gh-article .gh-content h4 strong,
.gh-article .gh-content h5 strong {
    font-weight: 700;
}

@media (min-width: 768px) {
    .gh-header.category-listing .category-title,
    .gh-header.editors-picks .category-title {
        font-size: 3.6rem;
    }

    .gh-article .gh-content h2 {
        font-size: 3.6rem;
    }

    .gh-article .gh-content h3 {
        font-size: 3.2rem;
    }
}

.post-card-inline .gh-card-title {
    font-size: 1.4rem;
    line-height: 1.14em;
    color: var(--color-grey-700);
}

.gh-header-inner {
    position: relative;
    overflow: hidden;
}

/* 8.1. Magazine layout */

.gh-header.is-magazine .gh-header-inner {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    gap: var(--grid-gap);
}

.gh-header.is-magazine .gh-header-inner > div {
    display: flex;
    flex-direction: column;
    gap: var(--grid-gap);
    grid-row: 1;
}

.gh-header.is-magazine .gh-header-left {
    grid-column: 1 / span 4;
}

.gh-header.is-magazine .gh-header-inner > .gh-card {
    position: relative;
    grid-column: 5 / span 8;
}

.gh-header.is-magazine .gh-header-right {
    grid-column: 13 / -1;
}

.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-link {
    gap: 28px;
}

.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-image {
    aspect-ratio: 1.618033;
}

.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-tag {
    display: block;
    margin-bottom: 12px;
}

.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-title {
    font-size: clamp(2.8rem, 1.36vw + 2.25rem, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.022em;
}

.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-excerpt {
    margin-top: clamp(12px, 0.45vw + 10.18px, 16px);
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    max-width: 90%;
}

.gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-meta:not(:empty) {
    margin-top: 14px;
}

.gh-header.is-magazine :is(.gh-header-left, .gh-header-right) .gh-card:last-child .gh-card-image {
    display: none;
}

.gh-header.is-magazine .gh-header-inner > div .gh-card-excerpt {
    display: none;
}

.gh-header.is-magazine .gh-header-inner > .gh-card::before,
.gh-header.is-magazine .gh-header-inner > .gh-card::after {
    position: absolute;
    top: 0;
    left: calc(var(--grid-gap) / -2);
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--color-border);
}

.gh-header.is-magazine .gh-header-inner > .gh-card::after {
    right: calc(var(--grid-gap) / -2);
    left: auto;
}

.gh-header.is-magazine .gh-header-inner > div .gh-card + .gh-card::before {
    position: absolute;
    top: calc(var(--grid-gap) / -2);
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
}

@media (max-width: 1199px) {
    .gh-header.is-magazine .gh-header-inner {
        grid-template-columns: repeat(12, 1fr);
    }

    .gh-header.is-magazine .gh-header-inner > .gh-card {
        grid-column: 1 / span 8;
    }

    .gh-header.is-magazine .gh-header-left {
        grid-column: 9 / -1;
    }

    .gh-header.is-magazine .gh-header-inner > div.gh-header-right {
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: row;
    }

    .gh-header.is-magazine .gh-header-right .gh-card {
        flex: 1;
    }

    .gh-header.is-magazine .gh-header-right .gh-card:last-child .gh-card-image {
        display: block;
    }

    .gh-header.is-magazine .gh-header-right {
        position: relative;
    }

    .gh-header.is-magazine .gh-header-right::before {
        position: absolute;
        top: calc(var(--grid-gap) / -2);
        left: 0;
        content: "";
        width: 100%;
        height: 1px;
        background-color: var(--color-border);
    }

    .gh-header.is-magazine .gh-header-right .gh-card::before {
        display: none;
    }

    .gh-header.is-magazine .gh-header-right .gh-card::after {
        position: absolute;
        top: 0;
        right: calc(var(--grid-gap) / -2);
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--color-border);
    }
}

@media (max-width: 991px) {
    .gh-header.is-magazine .gh-header-left .gh-card:nth-child(2) .gh-card-image {
        display: none;
    }
}

@media (max-width: 767px) {
    .gh-header.is-magazine .gh-header-inner {
        display: flex;
        flex-direction: column;
        gap: var(--grid-gap);
    }

    .gh-header.is-magazine .gh-header-inner > div.gh-header-right {
        flex-direction: column;
    }

    .gh-header.is-magazine .gh-card-image {
        display: block !important;
    }

    .gh-header.is-magazine .gh-card::before {
        display: block !important;
        position: absolute;
        top: calc(var(--grid-gap) / -2);
        left: 0;
        content: "";
        width: 100%;
        height: 1px;
        background-color: var(--color-border);
    }
}

/* 8.2. Highlight layout */

.gh-header.is-highlight .gh-header-inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--grid-gap);
}

.gh-header.is-highlight.category-listing .gh-header-inner {
    column-gap: calc(var(--grid-gap) - 15px);
}

.gh-header.is-highlight .gh-header-left {
    position: relative;
    grid-column: span 4;
}

.gh-header.is-highlight.category-listing .gh-header-inner {
    margin-bottom: 20px;
}

@media (min-width: 767px) {
    .gh-header.is-highlight.category-listing .gh-header-left {
        grid-column: span 6;
        
    }

    .gh-header.is-highlight.category-listing .gh-header-inner { 
        row-gap: calc(var(--grid-gap) - 9px);
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .gh-header.is-highlight.category-listing.latest-from-category .gh-header-inner {
        border-bottom: none;
        overflow: visible;
    }
}

.post-template .gh-header.is-highlight.category-listing .gh-header-inner {
    border-bottom: 0;
    border-top: 1px solid var(--color-border);
}

.gh-header.is-highlight .gh-header-left .gh-card {
    grid-column: span 8;
    grid-row: span 3;
}

.gh-header.is-highlight .gh-header-left .gh-card .gh-card-link {
    gap: 17px;
}

.gh-header.is-highlight.category-listing .gh-header-left .gh-card .gh-card-link {
    gap: 20px;
}

.gh-header.is-highlight .gh-header-left .gh-card .gh-card-image {
    aspect-ratio: 3 / 1.7;
}

.gh-header.is-highlight .gh-header-left .gh-card .gh-card-tag {
    display: block;
    margin-bottom: 12px;
}

.gh-header.is-highlight .gh-header-left .gh-card .gh-card-link {
    text-decoration: none;
}

.gh-header.is-highlight .gh-header-left .gh-card .gh-card-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.022em;
    color: var(--color-grey-700);
    text-decoration: none;
}

.gh-header.is-highlight .gh-header-left .gh-card .gh-card-title,
.gh-header.is-highlight .gh-header-left .gh-card .gh-card-excerpt,
.gh-header.is-highlight.category-listing .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt,
.gh-header.is-highlight.category-listing .gh-header-middle .gh-card .gh-card-excerpt {
    color: var(--color-grey-700);
}

@media (min-width: 767px) {
    .gh-header.is-highlight .gh-header-left .gh-card .gh-card-title {
        font-size: 2.8rem;
        line-height: 1.178em;
    }

    .gh-header.is-highlight .gh-header-left .gh-card .gh-card-link {
        gap: 22px;
    }
}

.gh-header.is-highlight .gh-header-left .gh-card .gh-card-excerpt,
.gh-header.is-highlight.category-listing .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt, 
.gh-header.is-highlight.category-listing .gh-header-middle .gh-card .gh-card-excerpt {
    margin-top: 12px;
    font-size: 1.6rem;
    font-weight: 400;
}

.gh-header.is-highlight .gh-header-left .gh-card .gh-card-meta:not(:empty) {
    margin-top: 12px;
}

.gh-header.is-highlight .gh-header-middle {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: calc(var(--grid-gap) - 23px);
    grid-column: 5 /10
}

.gh-header.is-highlight.category-listing .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt,
.gh-header.is-highlight.category-listing .gh-header-middle .gh-card .gh-card-excerpt {
    display: none;
}

@media (min-width: 767px) {
    .gh-header.is-highlight.category-listing .gh-header-middle {
        grid-column: 7 / 13;
        padding-left: 32px;
    }

    .gh-header.is-highlight.category-listing.latest-from-category .gh-header-middle {
        grid-column: 1 / 12;
        padding-left: 0;
    }

    .gh-header.is-highlight.category-listing .gh-header-middle::after,
    .gh-header.is-highlight.category-listing .gh-header-left::after {
        content: none;
    }
}

@media (min-width: 1200px) {
    .gh-header.is-highlight.category-listing .gh-header-middle {
        padding-left: 49px;
    }

    .gh-header.is-highlight.category-listing .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt,
    .gh-header.is-highlight.category-listing .gh-header-middle .gh-card .gh-card-excerpt {
        display: flow-root;
        line-height: 1.4em;
    }

    .gh-header.is-highlight.category-listing.latest-from-category .gh-header-middle {
        grid-column: 1 / 9;

    }
}

.gh-header.is-highlight .gh-header-middle .gh-card .gh-card-excerpt {
    display: none;
}

.gh-header.is-highlight .gh-header-right {
    grid-column: 10 / 13
}

.gh-header.is-highlight .gh-featured {
    margin-top: 0;
    padding: 0;
}

.gh-header.is-highlight .gh-featured-feed {
    display: flex;
    flex-direction: column;
}

.gh-header.is-highlight .gh-featured-feed .gh-card-title {
    font-size: clamp(1.4rem, 0.23vw + 1.31rem, 1.6rem);
}

@media (min-width: 767px) {
    .gh-header.is-highlight .gh-header-left::after,
    .gh-header.is-highlight .gh-header-middle::after {
        position: absolute;
        top: 0;
        right: calc(var(--grid-gap) / -2);
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--color-border);
    }

    .gh-header.is-highlight .gh-card::before {
        position: absolute;
        top: calc(var(--grid-gap) / -2);
        left: 0;
        content: "";
        width: 100%;
        height: 1px;
        background-color: var(--color-border);
    }

    .gh-header.is-highlight .gh-header-middle .post-card-inline-noExcerpt::before {
        content: none;
    }
}

@media (min-width: 1200px) {
.gh-header.is-highlight .gh-header-left::after,
.gh-header.is-highlight .gh-header-middle::after {
        right: calc(var(--grid-gap) / -1);
    }

    .gh-header.is-highlight .gh-header-middle::after {
        position: absolute;
        top: 0;
        right: calc(var(--grid-gap) / -2);
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--color-border);
    }

    .gh-header.is-highlight.category-listing .gh-header-left::after {
        position: absolute;
        top: 0;
        right: calc(var(--grid-gap) / -1);
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--color-border);
    }

    .gh-header.is-highlight .gh-card::before {
        top: calc(var(--grid-gap) / -1);
    }
}

.gh-header.is-highlight .gh-featured .gh-card:first-child::before {
    display: none;
}

@media (max-width: 1199px) {
    .gh-header.is-highlight .gh-header-inner {
        grid-template-columns: repeat(9, 1fr);
    }

    .gh-header.is-highlight .gh-header-left {
        grid-column: span 6;
    }

    .gh-header.is-highlight .gh-header-middle {
        grid-column: 7 / -1;
    }

    .gh-header.is-highlight .gh-header-right {
        grid-column: 1 / -1;
    }

    .gh-header.is-highlight .gh-featured-feed {
        display: flex;
        grid-template-columns: repeat(3, 1fr);
    }

    .gh-header.is-highlight .gh-featured-feed .gh-card:before {
        width: calc(100% + var(--grid-gap));
    }

    .gh-header.is-highlight .gh-featured-feed .gh-card::after {
        position: absolute;
        top: 0;
        left: calc(var(--grid-gap) / -2);
        content: "";
        width: 1px;
        height: 100%;
        background-color: var(--color-border);
    }
}

.gh-header.is-highlight .gh-featured-feed .bullet-wrapper {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: baseline;
letter-spacing: 2.5px;
}

.gh-header.is-highlight .gh-featured-feed .bullet-wrapper h4,
.post-template .gh-featured-feed h4 {
font-family: var(--font-sans);
font-size: 1.6rem;
text-transform: uppercase;
letter-spacing: 2.5px;
}

.gh-header.is-highlight .gh-featured-feed .bullet-wrapper button.gh-button,
.gh-button.back-button {
font-size: 1.4rem;
color: var(--color-grey-450);
background-color: transparent;
letter-spacing: -0.4px;
font-weight: 500;
padding: 0;
}

.gh-header.is-highlight .gh-featured-feed .bullet-wrapper button a,
.gh-button.back-button a {
font-size: inherit;
font-family: inherit;
color: inherit;
letter-spacing: inherit;
font-weight: inherit;
display: flex;
align-items: center;
gap: 4px;
}

.gh-button.back-button {
    justify-content: flex-start;
    margin-bottom: 20px;
}

@media (min-width: 1200px) {
    .gh-button.back-button {
        margin-bottom: 36px
    }
}

.gh-button.back-button a {
    display: flex;
    flex-direction: row-reverse;
}

@media (min-width: 767px) {
    .gh-header.is-highlight .gh-featured-feed {
        display: flex;
    }

    .gh-header.is-highlight .gh-featured-feed .post-card-bullet::before {
        content: none;
    }

    .gh-header.is-highlight .gh-featured-feed {
        display: flex;
        /* gap: var(--grid-gap); */
        margin-bottom: 14px;
    }

}

@media (max-width: 991px) {
    .gh-header.is-highlight .gh-header-middle .gh-card:nth-child(2) .gh-card-image {
        display: none;
    }

    .gh-header.is-highlight.category-listing .gh-header-middle .gh-card:nth-child(2) .gh-card-image {
        display: block;
    }
}

@media (max-width: 767px) {
    .gh-header.is-highlight .gh-header-inner {
        display: flex;
        flex-direction: column;
    }

    .gh-header.is-highlight .gh-card-image {
        display: block !important;
    }

    .gh-header.is-highlight .gh-header-middle .gh-card .gh-card-excerpt {
        display: -webkit-box;
    }
}

/* 8.3. Classic layout */

.gh-header.is-classic {
    display: flex;
    margin-top: 0;
    padding-block: 160px;
}

.gh-header.is-classic .gh-header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    overflow: unset;
    margin: auto;
    max-width: 1020px;
    text-align: center;
}

.gh-header.is-classic .gh-header-title {
    font-size: calc(clamp(3rem, 1.82vw + 2.27rem, 4.6rem) * var(--factor, 1));
    line-height: 1.1;
    letter-spacing: -0.028em;
}

.gh-header.is-classic.has-image {
    margin-top: 0;
}

.gh-header.is-classic.has-image::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.3;
    background-color: var(--color-black);
    transition: opacity 1.5s ease;
}

.gh-header.is-classic.has-image .gh-header-inner {
    color: #fff;
}

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

.gh-header.is-classic.has-image .gh-form {
    background-color: #fff;
}

/* 9. CTA
/* ---------------------------------------------------------- */

.gh-cta {
    display: none;
    margin-top: max(4vw, 40px);
}

.gh-header:is(.is-highlight, .is-magazine) + .gh-cta {
    display: block;
}

.gh-cta-inner {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: clamp(48px, 3.64vw + 33.45px, 80px) clamp(40px, 2.73vw + 29.09px, 64px);
    text-align: center;
    background-color: var(--color-grey-100);
}

.gh-cta-content {
    max-width: 640px;
}

.gh-cta-title {
    font-size: clamp(2.8rem,1.36vw + 2.25rem,4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.021em;
}

.gh-cta-description {
    margin-top: 12px;
    font-size: 1.8rem;
    line-height: 1.4;
    letter-spacing: -0.015em;
}

/* 10. Featured posts
/* ---------------------------------------------------------- */

.gh-featured {
    margin-top: 100px;
}

.gh-navigation + .gh-featured {
    margin-top: 64px;
}

.gh-header.is-classic:not(.has-image) + .gh-featured {
    margin-top: 0;
}

.gh-featured-inner {
    overflow: hidden;
}

.gh-featured-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 550;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
}

.gh-featured-feed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: calc(var(--grid-gap) - 13px);
}

.gh-featured-feed .gh-card {
    container-type: inline-size;
    container-name: featured-card;
}

.gh-featured-feed .gh-card-link {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
}

.gh-featured-feed .gh-card-image {
    width: 72px;
    aspect-ratio: 16 /9;
}

@container featured-card (width < 240px) {
    .gh-featured-feed .gh-card-image {
        display: none;
    }
}

@container featured-card (240px <= width <= 270px) {
    .gh-featured-feed .gh-card-image {
        width: 64px;
    }
}

.gh-featured-feed .gh-card-wrapper {
    container-type: inline-size;
    container-name: featured-card-wrapper;
}

.gh-featured-feed .gh-card-title {
    font-size: 1.6rem;
    font-weight: 650;
    letter-spacing: -0.011em;
}

@container featured-card-wrapper (width < 170px) {
    .gh-featured-feed .gh-card-title {
        font-size: 1.6rem;
    }
}

.gh-featured-feed .gh-card-excerpt {
    display: none;
}

.gh-featured-feed .gh-card-meta:not(:empty) {
    margin-top: 8px;
}

.gh-featured-feed .gh-card::before {
    position: absolute;
    top: 0;
    left: calc(var(--grid-gap) / -2);
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--color-border);
}

@media (max-width: 1199px) {
    .gh-viewport > .gh-featured .gh-featured-feed {
        grid-template-columns: repeat(3, 1fr);
    }

    .gh-viewport > .gh-featured .gh-featured-feed .gh-card:nth-child(4) {
        display: none;
    }
}

@media (max-width: 767px) {
    .gh-viewport > .gh-featured .gh-featured-feed {
        display: flex;
        flex-direction: column;
    }
}

/* 11. Container
/* ---------------------------------------------------------- */

.gh-container {
    flex-grow: 1;
    margin-top: 64px;
}

.youtube-shorts {
    margin-top: 0;
    position: relative;
    padding-right: 0;
}

.youtube-shorts-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.youtube-shorts-arrow-right {
    right: 44px;
}

.youtube-shorts-arrow-left {
    left: 44px;
    transform: translateY(-50%) scaleX(-1);
}

.youtube-shorts-arrow svg {
    display: block;
}

.youtube-shorts::after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    height: 100%;
    width: 136px;
}

.youtube-shorts .gh-inner {
    display: flex;
    overflow-x: scroll;
    gap: 16px;
}

.youtube-shorts .youtube-card {
    width: auto;
    flex-shrink: 0;
}

.youtube-shorts .youtube-card a {
    text-decoration: none;
    color: #fff;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}


.youtube-shorts .youtube-card img {
    width: 250px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 1920px) {
    .youtube-shorts {
        overflow: clip;
    }

    .youtube-shorts .gh-inner {
        max-width: 1875px;
        margin-left: 83px;
    }

    .youtube-shorts::after {
        content: none;
    }
}

@media (min-width: 1921px) {
    .youtube-shorts {
        padding-right: max(4vmin, 24px);
    }
    .youtube-shorts .gh-inner {
        max-width: var(--container-width);
        margin-left: auto;
    }

    .youtube-shorts-arrow {
        display: none;
    }

    .youtube-shorts::after {
        content: none;
    }
    
}

.gh-container-inner {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    column-gap: var(--grid-gap);
}

:is(.gh-featured, .gh-cta) + .gh-container {
    margin-top: max(4vw, 40px);
}

.gh-header.is-classic:not(.has-image) + .gh-container {
    margin-top: 0;
}

.gh-navigation + .gh-container .gh-container-title,
:is(.paged, .tag-template, .author-template) .gh-container:not(.has-sidebar) .gh-container-title {
    display: none;
}

.gh-more {
    display: none;
    grid-column: 1 / -1;
    margin-top: 48px;
    font-size: calc(1.9rem * var(--factor, 1));
    font-weight: 725;
    letter-spacing: -0.014em;
}

.gh-container.has-sidebar .gh-more {
    grid-column: span 12;
}

.home-template .gh-feed:has(> :nth-child(12):last-child) ~ .gh-more {
    display: block;
}

.gh-more a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gh-more svg {
    margin-top: -1px;
    width: 18px;
    height: 18px;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-more svg {
    margin-top: 0;
}

/* 11.1. With sidebar */

.gh-container.has-sidebar .gh-main {
    grid-column: 1 / span 12;
    position: relative;
}

.gh-container.has-sidebar .gh-sidebar {
    grid-column: 13 / -1;
}

.gh-container.has-sidebar .gh-main::after {
    position: absolute;
    top: 0;
    right: calc(var(--grid-gap) / -2);
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--color-border);
}

/* 11.2. Without sidebar */

.gh-container:not(.has-sidebar) :is(.gh-container-title, .gh-main, .gh-more) {
    grid-column: 3 / span 12;
}

.gh-container.is-list.no-image:not(.has-sidebar) :is(.gh-container-title, .gh-main, .gh-more) {
    grid-column: 4 / span 10;
}

.gh-header:is(.is-highlight, .is-magazine) ~ .gh-container.is-grid:not(.has-sidebar) :is(.gh-container-title, .gh-main, .gh-more) {
    grid-column: 1 / -1;
}

@media (max-width: 1199px) {
    .gh-container-inner {
        display: block;
        overflow: hidden;
    }

    .gh-container.has-sidebar .gh-sidebar {
        display: none;
    }
}

/* 12. Post list
/* ---------------------------------------------------------- */

.gh-container-title {
    grid-column: 1 / -1;
    margin-bottom: calc(var(--grid-gap) / 2);
    padding-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 550;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
}

.gh-container:not(:has(.gh-card)) .gh-container-title {
    display: none;
}

.gh-container .gh-feed {
    gap: var(--grid-gap);
}

.gh-container .gh-card-meta:not(:empty) {
    margin-top: 12px;
}

/* 12.1. List style */

.gh-container.is-list .gh-feed {
    display: flex;
    flex-direction: column;
    container-type: inline-size;
    container-name: list-feed;
}

.gh-container.is-list .gh-card-link {
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.gh-container.is-list .no-image .gh-card-link {
    padding-block: 20px;
}

.gh-container.is-list .gh-card-image {
    flex-shrink: 0;
    width: 220px;
    aspect-ratio: 1.618033;
}

@container list-feed (width < 600px) {
    .gh-container.is-list .gh-card-image {
        width: 160px;
    }
}

.gh-container.is-list .gh-card:not(.no-image) .gh-card-wrapper {
    max-width: 600px;
}

.gh-container.is-list .gh-card-title {
    --factor: 1.05;
}

.gh-container.is-list .no-image .gh-card-title {
    --factor: 1.2;
}

.gh-container.is-list .gh-card-excerpt {
    margin-top: 6px;
}

.gh-container.is-list .gh-card + .gh-card::before {
    position: absolute;
    top: calc(var(--grid-gap) / -2);
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
}

.home-template .gh-container.is-list .gh-card:first-child:before {
    display: none;
}

@media (max-width: 767px) {
    .gh-container.is-list .gh-card-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .gh-container.is-list .gh-card-image {
        width: 100%;
    }
}

/* 12.1. Post List style*/

.gh-header .ad-slot {
    flex: 1;
    min-height: 250px;
    position: relative;
    padding: 16px;
}

.gh-header .ad-slot h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .gh-header .ad-slot {
        margin-top: 24px;
    }
}

/* 12.2. Grid style */

.gh-container.is-grid .gh-feed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
    row-gap: calc(var(--grid-gap) * 1.5);
    overflow: hidden;
}

.gh-container.is-grid .gh-card::before {
    position: absolute;
    top: calc(var(--grid-gap) / -2);
    right: calc(var(--grid-gap) / -2);
    left: calc(var(--grid-gap) / -2);
    content: "";
    height: 1px;
    background-color: var(--color-border);
}

.gh-container.is-grid .gh-card::after {
    position: absolute;
    top: 0;
    left: calc(var(--grid-gap) / -2);
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--color-border);
}

@media (max-width: 767px) {
    .gh-container.is-grid .gh-feed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gh-container.is-grid .gh-feed {
        display: flex;
        flex-direction: column;
    }
}

/* 12.3. No image list */

.gh-container.is-list.no-image .gh-card-image {
    display: none;
}

/* 13. Sidebar
/* ---------------------------------------------------------- */

.gh-sidebar-inner {
    position: sticky;
    top: calc(var(--grid-gap) / 2);
}

.gh-sidebar-title {
    grid-column: 1 / -1;
    margin-bottom: calc(var(--grid-gap) / 2);
    padding-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 550;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
}

.gh-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 48px 24px;
    min-height: 380px;
    text-align: center;
    background-color: var(--color-grey-100);
}

.gh-about-icon {
    margin-bottom: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.gh-about-title {
    font-size: calc(2.4rem * var(--factor, 1));
    font-weight: 700;
    letter-spacing: -0.019em;
}

.gh-about-description {
    margin-top: 12px;
    font-size: 1.45rem;
    line-height: 1.4;
}

.gh-about .gh-button {
    margin-top: 32px;
}

.gh-recommendations {
    margin-top: 48px;
}

.gh-recommendations .recommendations {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.gh-recommendations .recommendation:first-child {
    margin-top: 4px;
}

.gh-recommendations .recommendation a {
    display: grid;
    grid-template-columns: 24px auto;
    gap: 4px 12px;
}

.gh-recommendations .recommendation a:hover {
    opacity: 1;
}

.gh-recommendations .recommendation-favicon {
    grid-row: span 2;
    width: 100%;
    border-radius: 4px;
}

.gh-recommendations .recommendation-title {
    margin-top: -2px;
    font-size: 1.5rem;
    font-weight: 650;
    letter-spacing: -0.009em;
}

.gh-recommendations .recommendation a:hover .recommendation-title {
    opacity: 0.8;
}

.gh-recommendations .recommendation-url {
    order: 1;
    overflow: hidden;
    font-size: 1.4rem;
    line-height: 1.25;
    color: var(--color-secondary-text);
    text-overflow: ellipsis;
}

.gh-recommendations .recommendation-description {
    display: -webkit-box;
    display: none;
    overflow-y: hidden;
    grid-column: 2;
    font-size: 1.4rem;
    line-height: 1.4;
    color: var(--color-secondary-text);
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.gh-recommendations button {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    margin-top: 24px;
    padding: 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 550;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    background-color: transparent;
    border: 0;
    color: var(--color-grey-900);
}

.gh-recommendations button svg {
    margin-top: -1px;
    width: 12px;
}

.gh-recommendations button:hover {
    opacity: 0.8;
}

/* 14. Post/page
/* ---------------------------------------------------------- */

/* 14.1. Article */

.gh-article {
    --container-width: 1664px;

    word-break: break-word;
}

.gh-article-header {
    margin: clamp(40px, 3.64vw + 25.45px, 72px) 0 40px;
    margin-bottom: 23px;
    margin-top: 17px;
}

@media (min-width: 1200px) {
    .gh-article-header {
        margin-top: 49px;
        margin-bottom: 53px;
}
}

.gh-article-header .gh-article-tag {
    margin-bottom: 11px;
}

.gh-article-tag {
    display: block;

}

.post-template .gh-featured-feed .bullet-wrapper,
.post-template .gh-featured-feed .gh-card {
    grid-column: 1 / 12;
}

.post-template .gh-featured-feed .bullet-wrapper {
    border-top: 1px solid var(--color-grey-700);
    padding-top: 16px;
}

.post-template .gh-header.category-listing {
    margin-top: 52px;
}

.gh-header.is-highlight.category-listing .gh-header-left {
    margin-top: -15px;
}

.post-template .gh-header.is-highlight.category-listing .gh-header-inner {
    padding-top: 44px;
}

.gh-article .bullet-wrapper h4 {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2.4px;
}

.gh-article-title {
    font-size: 2.8rem;
    line-height: 1.17857143em;
    letter-spacing: -0.022em;
}


@media (min-width: 768px) {
    .gh-header.is-highlight.category-listing .gh-header-left {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .gh-article-title {
        font-size: 4.8rem;
    }

    .post-template .gh-header.category-listing {
        margin-top: 100px;
    }

}

.gh-article-excerpt {
    margin-top: clamp(12px, 0.45vw + 10.18px, 16px);
    max-width: 720px;
    font-size: clamp(1.7rem, 0.23vw + 1.61rem, 1.9rem);
    line-height: 1.45;
    letter-spacing: -0.018em;
}

.gh-article-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 13px;
    justify-content: space-between;
}

@media (min-width: 1200px) {
    .gh-article-meta {
        margin-top: 25px;
    }
}

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

.gh-article-author-image a {
    position: relative;
    margin: 0 -8px;
    width: 56px;
    height: 56px;
    overflow: hidden;
    background-color: var(--color-grey-200);
    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-reverse;
    gap: 4px;
}

@media (min-width: 1200px) {
    .gh-article-meta-wrapper {
        gap: 14px;
    }
}

.comment-bubble {
    display: flex;
    gap: 4px;
    background: #f2f2f2;
    border: 1px solid #dbdbdb;
    padding: 8px 11px 8px 13px;
    border-radius: 4px;
    cursor: pointer;
}

.gh-article-author-name,
.gh-article-author-name a {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--font-serif);
    text-transform: uppercase;
}

.gh-article-author-name::before {
    content: "By ";
}

.gh-article-meta-content {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.35em;
    letter-spacing: -0.28px;
    color: var(--color-secondary-text);
    font-family: var(--font-serif);
}

.gh-article-image {
    grid-column: main;
    margin-top: 15px;
}

@media (min-width: 1200px) {
    .gh-article-image {
        margin-top: 36px;
    }

    .gh-article-meta-content {
        font-size: 1.6rem;
        line-height: 1.35em;
    }

    .gh-article-author-name,
    .gh-article-author-name a {
        font-size: 1.2rem;
    }
}

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

.template-schedule .gh-header.category-listing .category-title {
    font-size: 2.4rem;
}

.template-schedule .gh-header.is-highlight.category-listing:not(.schedule-page-header-content) .gh-header-inner {
    padding-top: 44px;
    border-top: 1px solid var(--color-border);
}

.template-schedule .gh-header.is-highlight.category-listing:not(.schedule-page-header-content) .gh-header-inner .category-title {
    margin-bottom: 10px;
}

.template-schedule .gh-header.category-listing .category-title {
    font-size: 2.8rem;
}

@media (min-width: 1200px) {

    .template-schedule .gh-header.category-listing .category-title {
        font-size: 3.6rem;
    }

}

/* 15. Content
/* ---------------------------------------------------------- */

/* Content refers to styling all page and post content that is
created within the Ghost editor. The main content handles
headings, text, images and lists. We deal with cards lower down. */
.template-schedule .gh-header.is-highlight.category-listing:not(.schedule-page-header-content, .standings-page-header-content) .gh-header-inner {
    padding-top: 44px;
    border-top: 1px solid var(--color-border);
}

.template-schedule .gh-header.is-highlight.category-listing:not(.schedule-page-header-content) .gh-header-inner .category-title {
    margin-bottom: 10px;
}

@media (min-width: 1200px) {

    .template-schedule .gh-header.category-listing .category-title {
        font-size: 3.6rem;
    }
}

/* 14.6 About page */
.template-about .gh-article-header .gh-article-image {
    position: relative;
}

.template-about .gh-article-header .gh-article-image::after,
.template-about .gh-header.is-highlight .gh-card-image::after {
    content: "";
    background: rgba(0, 0, 0, 4.56);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 15%, rgba(0, 0, 0, 0.75) 100%);
    height: 100%;
    display: block;
    position: absolute;
    bottom: 0px;
    width: 100%;
}

.template-about .gh-article-header .gh-article-image img {
    aspect-ratio: 1 / 0.6;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 45.65%, rgba(0, 0, 0, 0.80) 89.47%);
}

.template-about .gh-article-header {
    position: relative;
    align-items: center;
}

.template-about .gh-article-header .hero-image-caption h2 {
    text-align: center;
    font-family: "Roboto Flex";
    font-size: 2.8rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.56px;
}

.template-about .gh-article-header .hero-image-caption h5 {
    text-transform: uppercase;
    text-align: center;
    font-family: "Roboto Flex";
    font-size: 1.2rem;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
}

.template-about .gh-article-header .hero-image-caption h2,
.template-about .gh-article-header .hero-image-caption h5 {
    color: var(--color-white);
    font-family: var(--font-sans);

}

.template-about .gh-card-wrapper {
        position: absolute;
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    align-self: end;
    padding: 0 23px 13px 24px;
}

.template-about .gh-card-wrapper svg {
    margin-top: 4px;
}

.template-about .gh-header.is-highlight .gh-card-image {
    width: 100%;
    max-width: unset;
    aspect-ratio: 23 / 10;
}

.template-about .post-card-inline .gh-card-link {
    border-bottom: none;
    padding-bottom: 7px;
}

.template-about .gh-card-tag {
    display: block;
}

.template-about .gh-content.is-body {
    position: relative;
}

.template-about .gh-content.is-body .intro-section::before {
    content: "";
    width: 100%;
    height: 200%;
    position: absolute;
    background-color: var(--color-grey-100);
    left: 0px;
    z-index: -1;
    top: -100%;
}

.template-about .members-card .gh-card-link {
    justify-content: flex-end;
}

.template-about .members-card .gh-card-wrapper {
    flex-direction: column;
    width: 65%;
}

.template-about .podcast-list.gh-header.is-highlight .gh-header-inner p,
.template-about .contact-card-group .contact-card h3 {
    margin-top: 0;
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: -0.4px;
    color: var(--color-white);
    text-transform: none;
}

.template-about .members-card .gh-card-wrapper {
    padding-bottom: 30px;
}

.template-about .podcast-list.gh-header.is-highlight .gh-header-inner .members-card p {
    line-height: normal;
    text-align: left;
}

.template-about .gh-content.is-body .intro-section {
    padding: 0 12px;
    margin-top: 12px;
    margin-bottom: 35px;
}

.template-about .gh-content .text-section {
    margin-top: 37px;
    margin-bottom: 20px;
}

.template-about .gh-content p {
    font-size: 2.0rem;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.4px;
    text-align: center;
}

.template-about .gh-article-header .hero-image-caption {
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 32px;
}

.template-about .contact-card-group .contact-card {
    background: var(--color-grey-700);
    padding: 28px;
    margin-bottom: 16px;
}

.template-about .contact-card-group .contact-card h3 {
    margin-bottom: 4px;
}

.template-about .contact-card-group .contact-card p {
    color: var(--color-white);
    font-size: 1.6rem;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.32px;
    text-align: left;
    margin-bottom: 14px;
}

@media (min-width: 600px) {
    .template-about .podcast-list.gh-header.is-highlight .gh-header-inner .members-card img {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .template-about .gh-article-header .hero-image-caption h2 {
        font-size: 4.8rem;
        letter-spacing: -0.96px;
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .template-about .gh-header.is-highlight .gh-card-image,
    .template-about .podcast-list.gh-header.is-highlight .gh-header-inner .members-card img {
        aspect-ratio: 251 / 432;
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle article {
        width: 32%;
    }

    .template-about .members-card .gh-card-wrapper {
        width: 100%;
        align-items: center;
    }

    .template-about .podcast-list.gh-header.is-highlight .gh-header-inner .members-card p {
        text-align: center;
    }

    .template-about .gh-content.is-body .intro-section::before {
        height: 300%;
        top: -200%;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .template-about .gh-content.is-body .intro-section {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .template-about .gh-content .intro-section p {
        max-width: 600px;
        margin: auto;
    }

}

@media (min-width: 1200px) {
    .template-about .gh-article-header .gh-article-image {
        position: relative;
        grid-column: 1 / 13; 
    }

    .template-about .gh-article-header .gh-article-image img {
        aspect-ratio: 26 / 9;
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle article {
        width: 20%;
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle,
    .template-about .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle {
        grid-column: 1 / 15;
    }

    .template-about .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle {
        flex-wrap: nowrap;
    }

    .template-about .gh-header.category-listing.podcast-list .category-title {
        font-size: 3.6rem;
        font-weight: 700;
        line-height: normal;
        letter-spacing: -0.72px;
    }

    .template-about .gh-content.is-body .intro-section p,
    .template-about .text-section p {
        font-size: 2.8rem;
        letter-spacing: -0.56px;
        max-width: 1245px;
        margin-top: 100px;
        margin-bottom: 60px;
    }

    .template-about .text-section,
    .template-about .contact-card-group {
        grid-column: 1 / 13;
        margin-left: auto;
        margin-right: auto;
    }

    .template-about .gh-article-header .hero-image-caption h2 {
        max-width: 675px;
        margin: auto;
    }

    .template-about .gh-article-header .hero-image-caption {
        bottom: 12%;
    }

    .template-about .members-card .gh-card-wrapper {
        padding: 0 10px 20px 10px;
    }

}

@media (min-width: 1920px) {

    .template-about .gh-content.is-body .intro-section p {
        margin-top: 50px;
    }

    .template-about .gh-content.is-body .intro-section::before {
        height: 250%;
        top: -150%;
    }

.template-about .contact-card-group {
    display: flex;
    gap: var(--grid-gap);
}

    .template-about .contact-card-group .contact-card {
        width: 533px;
        padding: 40px;

    }

    .template-about .contact-card-group .contact-card p {
        margin-bottom: 59px;
    }
}

.podcast-list.gh-header.is-highlight .gh-header-inner {
    gap: 24px;
    border-bottom: 0;
}

.template-podcasts.gh-article .full-width-ad-spot {
    margin-top: 0;
}

.podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
    padding-top: 20px;
}

.podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast:first-child {
    padding-top: 0;
}

.podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast img {
    width: 90px;
    margin-bottom: 16px;
}

.podcast-list.gh-header.is-highlight .gh-header-inner h3 {
    font-size: 2.0rem;
    font-weight: 700;
}

.podcast-list.gh-header.is-highlight .gh-header-inner .button-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.podcast-list.gh-header.is-highlight .gh-header-inner .button-group a {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: -0.32px;
    background: transparent;
    border: 1px solid var(--color-grey-700);
    color: var(--color-grey-700);

}

.podcast-list.gh-header.is-highlight .gh-header-inner h4 {
    font-size: 1.6rem;
    font-family: var(--font-serif);
    font-weight: 600;
}

.podcast-list.gh-header.is-highlight .gh-header-inner p {
    margin-top: -12px;

}

.gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt, 
.gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card .gh-card-excerpt {
    display: block;
    font-size: 1.4rem;
    line-height: 1.4em;
    color: var(--color-grey-500);
}

.gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt,
.gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card .gh-card-excerpt {
    margin-top: 8px;
    margin-bottom: 17px;
}

.gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt a, 
.gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card .gh-card-excerpt a {
    color: var(--color-black);
    text-decoration: underline;
}

.podcast-list .sidebar {
    display: none;
}

.podcast-list-with-ad {
    display: contents;
}

.sticky-ad {
    display: none;
    width: 300px;
    height: 600px;
}

@media (min-width: 1200px) {
    .podcast-list.gh-header.is-highlight .gh-header-inner {
        overflow: visible;
    }

    .podcast-list-with-ad {
        display: flex;
        gap: 48px;
        grid-column: 1 / -1;
    }

    .podcast-list-with-ad .gh-header-middle {
        flex: 1;
        min-width: 0;
    }

    .sticky-ad {
        display: block;
        flex-shrink: 0;
        position: sticky;
        top: 80px;
        align-self: start;
    }
}

@media (min-width: 600px) {
    .podcast-list.gh-header.is-highlight .gh-header-inner p,
    .template-podcasts.gh-article .full-width-ad-spot,
    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle {
        grid-column: 1 / 13;
    }

     .podcast-list.gh-header.is-highlight .gh-header-inner p {
        grid-column: 1 / 6
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle {
        padding-left: 0;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast img {
        width: 40%;
    }
}

@media (min-width: 767px) {
    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle {
        padding-left: 0;
    }
}

@media (min-width: 1200px) {

    .podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast .gh-card-wrapper {
        display: flex;
        gap: var(--grid-gap);
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner p {
        grid-column: 1 / 6;
    }

    .podcast-list .sidebar {
        display: block;
        grid-row-start: 3;
    }

    .template-podcasts.gh-article .full-width-ad-spot {
        display: none;
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle {
        grid-column: 1 / -1;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .podcast-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .button-group {
        flex-direction: row;
        align-items: center;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner h3 {
        font-size: 3.2rem;
    }

    .gh-header.category-listing.podcast-list .category-title {
        font-size: 4.8rem;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast img {
        width: 251px;
        margin-bottom: 16px;
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt,
    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card .gh-card-excerpt {
        font-size: 1.6rem;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast:first-child {
        border-top: 1px solid var(--color-border);
        padding-top: 20px;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .description {
        font-size: 24px;
        grid-column: 1 / 9;
        margin-top: 2px;
        margin-bottom: 8px;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast:first-child {
        padding-top: 40px;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .is-podcast {
        padding-top: 40px;
        padding-bottom: 23px;
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card.post-card-inline .gh-card-excerpt,
    .gh-header.is-highlight.category-listing.podcast-list .gh-header-middle .gh-card .gh-card-excerpt {
        margin-top: 13px;
    }

    .gh-header.is-highlight.category-listing.podcast-list .gh-button.outline {
        padding: 8px 16px;
    }

    .podcast-list.gh-header.is-highlight .gh-header-inner .button-group button {
        height: 38px;
    }
}

/* 15. Content
/* ---------------------------------------------------------- */

/* Content refers to styling all page and post content that is
created within the Ghost editor. The main content handles
headings, text, images and lists. We deal with cards lower down. */

.gh-content {
    font-size: var(--content-font-size, 1.7rem);
    letter-spacing: -0.01em;
}

/* Default vertical spacing */
.gh-content > * + * {
    margin-top: calc(28px * var(--content-spacing-factor, 1));
    margin-bottom: 0;
}

/* Remove space between full-width cards */
.gh-content > .kg-width-full + .kg-width-full:not(.kg-width-full.kg-card-hascaption + .kg-width-full) {
    margin-top: 0;
}

/* Add back a top margin to all headings,
unless a heading is the very first element in the post content */
.gh-content > [id]:not(:first-child) {
    margin-top: 46px;
}

/* Add drop cap setting */
.post-template .gh-content.drop-cap > p:first-of-type:first-letter {
    margin :0 0.2em 0em 0;
    font-size: 3.1em;
    float:left;
    line-height: 1;
    margin-left: -1px;
    font-weight: 700;
}

.has-serif-body.post-template:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-content.drop-cap > p:first-of-type:first-letter {
    font-size: 3.2em;
}

/* Add a small margin between a heading and paragraph after it */
.gh-content > [id] + p {
    margin-top: calc(20px * var(--content-spacing-factor, 1));
}

/* A larger margin before/after dividers, blockquotes and embeds */
.gh-content > :is(hr, blockquote, iframe) {
    position: relative;
    margin-top: calc(48px * var(--content-spacing-factor, 1)) !important;
}

.gh-content > :is(hr, blockquote, iframe) + * {
    margin-top: calc(48px * var(--content-spacing-factor, 1)) !important;
}

/* Now the content typography styles */
.gh-content h1 {
    font-size: calc(2.2em * var(--factor, 1));
    letter-spacing: -0.02em;
}

.gh-content h2 {
    font-size: calc(1.6em * var(--factor, 1));
    letter-spacing: -0.02em;
}

.gh-content h3 {
    font-size: calc(1.3em * var(--factor, 1));
    letter-spacing: -0.017em;
}

.gh-content a {
    color: var(--color-link-primary);
    text-decoration: underline;
    font-family: var(--font-serif);
    font-weight: 400;
}

.gh-content .kg-callout-card .kg-callout-text,
.gh-content .kg-toggle-card .kg-toggle-content > :is(ul, ol, p) {
    font-size: 0.95em;
}

.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 > ol,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-content > ul,
.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 > p,
.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 > ul,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-content .kg-toggle-content > p {
    font-family: var(--font-serif-alt);
}

.gh-content :is(ul, ol) {
    padding-left: 28px;
}

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

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

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

.gh-content hr {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    border: 0;
}

.gh-content .gh-table {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

.gh-content .gh-table table {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 1.5rem;
    white-space: nowrap;
    vertical-align: top;
    border-spacing: 0;
    border-collapse: collapse;
}

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

.gh-content .gh-table table :is(th, td),
.gh-content .gh-table table td {
    padding: 6px 12px;
    border-bottom: 1px solid var(--color-border);
}

.gh-content .gh-table table :is(th, td):first-child {
    padding-left: 0;
}

.gh-content .gh-table table :is(th, td):last-child {
    padding-right: 0;
}

.gh-content pre {
    overflow: auto;
    padding: 16px;
    font-size: 1.5rem;
    line-height: 1.5em;
    background: var(--color-grey-100);
    border-radius: 6px;
    font-family: var(--font-mono);
}

.gh-content :not(pre) > code {
    vertical-align: baseline;
    padding: 0.15em 0.4em;
    font-weight: 400;
    font-size: 0.95em;
    line-height: 1em;
    background: var(--color-grey-100);
    border-radius: 0.25em;
    font-family: var(--font-mono);
}

/* 16. Cards
/* ---------------------------------------------------------- */

/* Add extra margin before/after any cards, except for when immediately preceeded by a heading */

.gh-content :not(.kg-card):not(table):not([id]) + :is(.kg-card, table) {
    margin-top: calc(48px * var(--content-spacing-factor, 1));
}

.gh-content :is(.kg-card, table) + :not(.kg-card):not(table):not([id]) {
        margin-top: 16px;
}

.gh-content :not(.kg-card):not([id]) + .kg-card.kg-width-full {
    margin-top: calc(68px * var(--content-spacing-factor, 1));
}

.gh-content .kg-card.kg-width-full + :not(.kg-card):not([id]) {
    margin-top: calc(68px * var(--content-spacing-factor, 1));
}

/* Image */

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

/* Embed */

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

/* Gallery */

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

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

/* Toggle */

.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(--font-serif);
}

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

/* Callout */

.kg-callout-card.kg-card {
    border-radius: 0.25em;
}

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

/* Blockquote */

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

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

/* Button */

.kg-card.kg-button-card .kg-btn {
    height: unset;
    padding: .6em 1.2em;
    text-align: center;
    font-size: 1em;
    line-height: 1.2em;
}

/* Header */

.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(--font-serif);
}

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

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

/* Category Grid */

.gh-header.category-listing .category-title {
    grid-column: 1 / 13;
    width: 75%;
}

.gh-header.is-highlight.category-listing .gh-card::before {
    content: none;
}

/* Bookmark */

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

.kg-bookmark-card .kg-bookmark-container:hover {
    opacity: 1;
}

.kg-bookmark-card a.kg-bookmark-container,
.kg-bookmark-card a.kg-bookmark-container:hover {
    background: var(--background-color) !important;
    color: var(--color-grey-900) !important;
}

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

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

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

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

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

/* Product */

.kg-product-card.kg-card .kg-product-card-image {
    margin-bottom: 12px;
}

.kg-product-card.kg-card a.kg-product-card-button {
    height: 2.8em;
    margin-top: 12px;
}

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

.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .kg-product-card.kg-card .kg-product-card-title {
    font-family: var(--font-mono);
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .kg-product-card-description :is(p, ul, ol) {
    font-family: var(--font-serif-alt);
}

/* File */

.kg-file-card.kg-card .kg-file-card-container {
    padding: 0.6em;
}

.kg-file-card.kg-card .kg-file-card-contents {
    margin: 4px 8px 6px;
}

.kg-file-card.kg-card .kg-file-card-metadata {
    font-size: 0.9em;
}

.kg-file-card.kg-card .kg-file-card-filesize::before {
    margin-right: 6px;
    margin-left: 6px;
}

/* Caption */

figcaption {
    margin-top: 12px;
    font-size: 1.4rem;
    text-align: center;
}

.kg-card.kg-width-full figcaption {
    padding: 0 16px;
}

figcaption a {
    color: var(--ghost-accent-color);
    text-decoration: underline;
}

/* 17. Comments
/* ---------------------------------------------------------- */

.gh-comments {
    margin-top: 48px;
}

/* 18. Recent posts
/* ---------------------------------------------------------- */

.post-template .gh-container {
    margin-top: 120px;
}

.post-template .gh-container-inner {
    display: block;
}

.post-template .gh-container.is-grid .gh-feed {
    grid-template-columns: repeat(4, 1fr);
}

.post-template .gh-container .gh-container-title {
    display: block;
}

/* 19. Archive
/* ---------------------------------------------------------- */

.gh-archive {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    gap: var(--grid-gap);
    margin-block: 80px 24px;
}

.gh-archive.has-image {
    margin-top: 48px;
}

.gh-archive-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    grid-column: 1 / -1;
    padding-bottom: clamp(40px, 2.73vw + 29.09px, 64px);
    border-bottom: 1px solid var(--color-border);
}

.gh-archive.has-image .gh-archive-inner {
    align-items: center;
    grid-column: 1 / -1;
}

.gh-archive:not(.has-sidebar):not(.has-image) .gh-archive-inner {
    grid-column: 3 / span 12;
}

.gh-archive .gh-article-image {
    grid-column: auto;
    margin-top: 0;
}

:is(.tag-template, .author-template) .gh-container {
    margin-top: 0;
}

.gh-author-header {
    display: flex;
    align-items: center;
    gap: 20px;
    grid-column: 1 / -1;
    padding-bottom: 24px;
}

.gh-author-header-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.gh-author-header-info .category-title {
    margin-bottom: 4px;
}

.gh-author-header-bio {
    font-size: 1.5rem;
    color: var(--color-secondary-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.gh-author-header .gh-author-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.gh-author-header .gh-author-social svg {
    width: 18px;
    height: 18px;
}

.gh-author-header .gh-author-social-link {
    color: var(--color-secondary-text);
}

@media (max-width: 767px) {
    .gh-author-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.gh-author-meta {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    font-size: 1.5rem;
    font-weight: 550;
    color: var(--color-secondary-text);
}

.gh-author-meta a {
    color: inherit;
}

.gh-author-social {
    display: flex;
    gap: 16px;
    align-items: center;
    padding-left: 3px;
}

.gh-author-social svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 1199px) {
    .gh-archive {
        display: block;
    }
}

@media (max-width: 767px) {
    .gh-archive-inner {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .author-template .gh-archive-inner {
        flex-direction: column-reverse;
    }
}

/* 20. Design settings
/* ---------------------------------------------------------- */

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) {
    --factor: 1.15;
}

.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) {
    --factor: 1.1;
}

.has-sans-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) :is(.is-title, .gh-content :is(h2, h3)) {
    font-family: var(--gh-font-heading, var(--font-sans));
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) :is(.is-title, .gh-content :is(h2, h3)) {
    font-family: var(--gh-font-heading, var(--font-serif));
    font-weight: 550;
}

.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) :is(.is-title, .gh-content :is(h2, h3)) {
    font-family: var(--gh-font-heading, var(--font-mono));
}

.has-sans-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .is-body {
    font-family: var(--gh-font-body, var(--font-sans));
}

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

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-header.is-classic .gh-header-title {
    font-weight: 550;
    letter-spacing: -0.015em;
}

.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-header.is-classic .gh-header-title {
    letter-spacing: -0.01em;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-form {
    border-radius: 0;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-card-title {
    line-height: 1.15;
    letter-spacing: -0.006em;
    font-size: calc(2.0rem*var(--factor, 1))
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-featured-feed .gh-card-title {
    font-size: calc(1.6rem*var(--factor, 1))
}

.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-featured-feed .gh-card-title {
    font-size: calc(1.5rem*var(--factor, 1));
    letter-spacing: 0;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-header.is-highlight .gh-featured-feed .gh-card-title {
    font-size: clamp(1.6rem, 0.23vw + 1.51rem, 1.8rem);
}

.has-mono-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-card-title {
    font-size: calc(1.8rem*var(--factor, 1));
    line-height: 1.2;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-about-title {
    letter-spacing: -0.009em;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-footer-signup-header {
    letter-spacing: -0.019em;
}

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

.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) {
    --content-font-size: 1.9rem;
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-card-excerpt {
    font-size: 1.65rem;
    line-height: 1.4;
    letter-spacing: 0.0005em;
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-header.is-magazine .gh-header-inner > .gh-card .gh-card-excerpt,
.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-header.is-highlight .gh-card:first-child .gh-card-excerpt {
    font-size: 1.8rem;
    letter-spacing: -0.001em;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-header.is-magazine .gh-header-inner>.gh-card .gh-card-title,
.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-header.is-highlight .gh-header-left .gh-card-title {
    font-weight: 550;
    font-size: clamp(3.2rem,1.82vw + 2.47rem,4.9rem)
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-about-description {
    font-size: 1.6rem;
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-article-excerpt {
    letter-spacing: 0;
}

.has-serif-body:not([class*=" gh-font-body"]):not([class^="gh-font-body"]) .gh-footer-signup-subhead {
    letter-spacing: 0;
}

:is(.has-serif-title,.has-mono-title):not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) :is(.gh-button, .gh-form, .gh-form-input),
body[class*=" gh-font-heading"]:not(.gh-font-heading-fira-sans):not(.gh-font-heading-inter):not(.gh-font-heading-manrope):not(.gh-font-heading-noto-sans):not(.gh-font-heading-nunito):not(.gh-font-heading-poppins):not(.gh-font-heading-roboto):not(.gh-font-heading-space-grotesk) :is(.gh-button, .gh-form, .gh-form-input) {
    border-radius: 0;
}

.has-serif-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .gh-cta-title {
    font-size: 4.8rem;
}

/* 21. Footer
/* ---------------------------------------------------------- */

.gh-footer {
    margin-top: 16vw;
    font-size: 1.5rem;
    color: var(--color-grey-900);
    padding-top: 33px;
}

.gh-footer a:not(.gh-button) {
    color: inherit;
}

/* 21.1 Footer styles */

.gh-footer,
.gh-footer.has-accent-color {
    background-color: var(--color-grey-700);
}

.gh-footer.has-accent-color .gh-footer-bar {
    border-top: 0;
}

.gh-footer .gh-footer-bar .logo-text-pair {
    display: flex;
    flex-direction: column;
    gap: 23px;
    align-self: start;
}

@media (min-width: 991px) {
    .gh-footer .gh-footer-bar .logo-text-pair,
    .gh-footer .gh-footer-bar .gh-footer-menu {
        width: 100%;
    }

    .gh-footer .gh-footer-bar .logo-text-pair {
        gap: 48px;
    }
}

@media (min-width: 1200px) {
    .gh-footer .gh-footer-bar .logo-text-pair {
        width: 30vw;
        max-width: 533px;
    }
    .gh-footer .gh-footer-bar .gh-footer-menu {
        width: 60vw;
        max-width: 811px;
    }
}

.gh-footer.has-accent-color .gh-button {
    background-color: #fff;
    color: #15171a;
}

/* 21.2. Footer bar */

.gh-footer-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 32px;
    margin-bottom: 45px;
    padding-block: 19px;
    font-weight: 550;
}

@media (min-width: 991px) {
    .gh-footer-bar {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-block-start: 50px;
        padding-block-end: 0px;
    }
}

.gh-footer-logo {
    position: relative;
    font-family: var(--gh-font-heading, var(--font-sans));
    font-size: calc(2.4rem * var(--factor, 1));
    font-weight: 725;
    letter-spacing: -0.015em;
    white-space: nowrap;
}

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

@media (min-width: 991px) {
    .gh-footer-logo img {
        max-height: 47px;
    }
}

.gh-footer-menu .nav {
    display: flex;
    justify-content: center;
    gap: 8px 28px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.gh-footer-copyright {
    text-align: right;
}

.gh-footer-copyright a {
    text-decoration: underline;
}

/* 21.3. Footer signup */

.gh-footer-signup {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 25px 83px 25px ;
    text-align: center;
    background-color: var(--color-background-accent);
    margin-bottom: 44px;
    border-radius: var(--border-radius-medium);
}

.category-page-header-content .gh-footer-signup {
    margin-top: 15px;
    border-radius: 0;
    margin-bottom: 0;
}

.has-sans-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) .category-listing :is(.is-title.gh-footer-signup-header,
.gh-content .category-listing :is(h2.gh-footer-signup-header)) {
    width: 100%;
    padding: 0;
    text-align: center;
    font-size: 2.0rem;
    letter-spacing: 0;
}

.category-page-header-content .gh-footer-signup button {
    font-family: var(--font-sans);
}

.category-page-header-content .gh-footer-signup .footer-signup-wrapper {
    flex-direction: column;
    gap: 20px;
    max-width: 530px;
}

.footer-signup-wrapper .gh-button span {
    font-family: var(--font-sans);
}

.gh-content :is(h2.gh-footer-signup-header.is-title) {
    width: 100%;
}

.gh-footer-signup-header {
    font-size: calc(clamp(2.8rem,1.36vw + 2.25rem,4rem) * var(--factor, 1));
    font-weight: 700;
    letter-spacing: -0.03em;
}

.has-sans-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) :is(.is-title.gh-footer-signup-header, .gh-content :is(h2.gh-footer-signup-header)) {
    font-family: var(--font-serif);
    color: var(--color-white);
    font-weight: 600;
    font-size: 2.4rem;
}

.gh-footer-signup-subhead {
    margin-top: 12px;
    max-width: 640px;
    font-size: 1.8rem;
    font-weight: 450;
    line-height: 1.4;
    letter-spacing: -0.014em;
    opacity: 0.75;
}

.gh-footer-signup .gh-form {
    margin-top: 12px;
    background: none;
}

@media (min-width: 767px) {
    .category-listing .gh-footer-signup .gh-form {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .category-listing .gh-footer-signup .gh-form button {
        left: 0;
        width: 100%;
    }
}

@media (min-width: 1200px) {

    .category-listing .gh-footer-signup .gh-form {
        flex-direction: row;
    }

    .category-listing .gh-footer-signup .gh-form button {
        width: auto;
    }
}

.gh-footer .gh-footer-menu {
    width: 100%;
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper {
    color: var(--color-white);
    margin-top: 19px;
}

@media (min-width: 991px) {
    .gh-footer .gh-footer-menu .footer-menu-items-wrapper {
        display: flex;
        align-items: baseline;
    }
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper .footer-menu-items {
    border-bottom: 1px solid var(--color-grey-500);
    padding-bottom: 10px;
}

@media (min-width: 991px) {
    .gh-footer .gh-footer-menu .footer-menu-items-wrapper .footer-menu-items {
        width: 100%;
        margin-top: 55px;
    }
    .gh-footer .gh-footer-menu .footer-menu-items-wrapper .footer-menu-items {
        border: 0;
    }
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper .footer-menu-items:not(:first-child) {
    padding-top: 24px;
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper ul {
    padding-left: 0;
    font-size: 1.6rem;
    font-weight: 400;
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper ul li {
    margin-bottom: 12px;
    list-style-type: none;
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper ul li a,
 .gh-footer .gh-footer-copyright,
 .gh-footer .gh-footer-copyright a {
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-white);
}

.gh-footer .gh-footer-copyright {
        display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    max-width: 221px;
    margin: auto;
}

.gh-footer .gh-footer-copyright a {
    text-decoration: none;
}

@media (min-width: 991px) {
    .gh-footer .gh-footer-copyright {
        flex-direction: row;
        max-width: none;
        text-align: left;
        width: 100%;
        align-items: baseline;
        margin-top: 67px;
        border-top: 1px solid var(--color-grey-500);
        padding-top: 30px;
    }

    .gh-footer .gh-footer-copyright a:first-of-type {
        margin-left: auto;
    }

    .gh-footer .gh-footer-copyright p {
        max-width: 350px;
    }
}

.gh-footer .gh-footer-copyright p,
.gh-footer .gh-footer-copyright a {
    color: var(--color-grey-400);
    font-size: 1.6rem;
    font-weight: 400;
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper ul li.has-icon,
.gh-footer .gh-footer-menu .footer-menu-items-wrapper ul li .social-icon {
    display: flex;
    gap: 8px;
    align-items: center;
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper h5 {
    font-family: "Inter";
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-size: 1.2rem;
    color: var(--color-grey-300);
    margin-bottom: 23px;
}

.gh-footer .gh-footer-menu .footer-menu-items-wrapper ul li::marker {
    content: none;
}

@media (max-width: 991px) {
    .gh-footer-bar {
        display: flex;
        flex-direction: column;
        gap: 24px;
        align-items: start;
    }
}

.gh-footer-bar p {
    color: var(--color-white);
    line-height: 2rem;
    font-weight: 400;
    font-size: 1.4rem;
    letter-spacing: -0.4px;
}

@media (min-width: 991px) {
    .gh-footer-bar p {
        font-size: 1.6rem;
    }
}

@media (min-width: 767px) {

    .gh-footer {
        padding-top: 65px;
        margin-top: 80px;
    }

    .gh-footer-signup {
        flex-direction: row;
        justify-content: center;
        padding-bottom: 32px;
    }

    .gh-footer-signup .footer-signup-wrapper {
        display: flex;
        width: 100%;
        max-width: 1055px;
        align-items: center;
    }

    .gh-footer-signup .gh-form {
        display: flex;
        gap: 12px;
        width: 100%;
        margin-top: 0;
    }
    .gh-footer-signup form input {
        position: relative;
        flex: 1 1 auto;
        height: 63px;
    }

    .category-listing .gh-footer-signup form input,
    .category-listing .gh-footer-signup form .gh-button {
        height: 47px;
    }

    .category-listing .gh-footer-signup form input {
        max-width: none;
    }

    .category-listing .gh-footer-signup form button span {
        white-space: nowrap;
    }

    .gh-footer-signup form .gh-button {
        position: relative;
        top: 0;
        left: 0;
        flex: 0 0 auto;
        width: 125px;
        height: 62px;
    }

    .has-sans-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) :is(.is-title.gh-footer-signup-header, .gh-content :is(h2.gh-footer-signup-header)) {
        width: 50%;
        text-align: left;
        padding-right: 37px;
    }

}

@media (min-width: 767px) and (max-width: 1199px) {
    .gh-footer-signup .footer-signup-wrapper {
        justify-content: center;
    }

    .has-sans-title:not([class*=" gh-font-heading"]):not([class^="gh-font-heading"]) :is(.is-title.gh-footer-signup-header, .gh-content :is(h2.gh-footer-signup-header)) {
        width: auto;
        flex: 0 0 auto;
        padding-right: 24px;
    }

    .gh-footer-signup .gh-form {
        flex: 1 1 auto;
        max-width: 400px;
        min-width: 300px;
    }
}

/* 22. Lightbox
/* ---------------------------------------------------------- */

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

.pswp img {
    max-width: none;
}

.pswp--animate_opacity {
    opacity: 0.001;
    transition: opacity 333ms cubic-bezier(0.4, 0, 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 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: opacity;
}

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

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

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

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

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

.pswp__item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.pswp__img {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
}

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

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

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

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

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

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

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

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

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

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

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

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
    .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 {
    display: none;
    background-position: -88px 0;
}

.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 {
    position: absolute;
    top: 50%;
    width: 70px;
    height: 100px;
    margin-top: -50px;
    background: none;
}

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

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

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

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

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

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

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

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

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

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

.pswp__caption--empty {
    display: none;
}

.pswp__caption--fake {
    visibility: hidden;
}

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

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

.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 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

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

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

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

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

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

    100% {
        transform: rotate(360deg);
    }
}

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

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

    100% {
        transform: rotate(0);
    }
}

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

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

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
    backface-visibility: hidden;
    transition: opacity 333ms cubic-bezier(0.4, 0, 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__top-bar {
    opacity: 0;
}

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

.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
    opacity: 0.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;
}

.full-width-ad-spot,
.comments-section {
    margin-top: 32px;
    margin-bottom: 32px;
    grid-column: 1 / 12;
}

.full-width-ad-spot,
.full-width-ad-spot.tall {
    grid-column: none;
    background: #f2f2f2;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 25px 0;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-width-ad-spot.skinny {
    min-height: 75px;
}

@media (min-width: 1024px) {
    .full-width-ad-spot.skinny {
        min-height: 90px;
    }
}

.comments-section {
    height: 500px;
    grid-column: main;
}

@media (max-width: 1200px) {
    .full-width-ad-spot {
        margin-top: 40px;
        margin-bottom: 7px;
    }

    .gh-article .full-width-ad-spot {
        margin-top: 23px;
    }
}

.full-width-ad-spot .fullwidth-ad {
    width: 970px;
    height: 250px;
    max-width: 100%;
}

.full-width-ad-spot .fullwidth-ad-skinny {
    width: 728px;
    height: 90px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .full-width-ad-spot,
    .full-width-ad-spot.skinny {
        height: auto;
        min-height: auto;
    }

    .full-width-ad-spot .fullwidth-ad,
    .full-width-ad-spot .fullwidth-ad-skinny {
        width: 300px;
        height: 250px;
        max-width: none;
    }
}

.gh-header.is-highlight.editors-picks {
    margin-top: 33px;
}

.editors-picks.gh-header.is-highlight .gh-header-inner {
    gap: calc(var(--container-gap) - 13px);
}

.post-card-inline-noExcerpt .gh-card-link {
    padding-bottom: 20px;
}

.editors-picks .category-title {
    grid-column: 1 / 12;
}

.gh-header.is-highlight.editors-picks .gh-header-middle li {
    list-style-type: none;
}

@media (min-width: 767px) {
    
    .gh-header.is-highlight.editors-picks .gh-header-middle {
        display: grid;
        grid-column: 1 / 13;
        grid-template-columns: repeat(12, 1fr);
        column-gap: 32px;
    }

    .gh-header.is-highlight.editors-picks .gh-header-inner .gh-header-middle::after {
        content: none;
    }

    .gh-header.is-highlight.editors-picks .gh-header-middle .column-left,
    .gh-header.is-highlight.editors-picks .gh-header-middle .column-right {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .gh-header.is-highlight.editors-picks .gh-header-middle .column-left {
        grid-column: 1 / 7;
    }

    .gh-header.is-highlight.editors-picks .gh-header-middle .column-right {
        grid-column: 7 / 13;
    }

    .editors-picks .post-card-inline-noExcerpt .gh-card-link {
        padding-top: 16px;
        border-bottom: 1px solid var(--color-border);
    }
}

@media (min-width: 1200px) {

    .gh-header.is-highlight.editors-picks {
        margin-top: 47px;
    }

    .editors-picks li .post-card-inline-noExcerpt .gh-card-link:after {
        font-size: 80px;
        margin-top: 0;
        margin-right: 53px;
    }

    .editors-picks .post-card-inline-noExcerpt .gh-card-link {
        margin: 0;
    }

    .editors-picks.gh-header.is-highlight .gh-header-inner {
        row-gap: calc(var(--container-gap) - 42px);
    
    }

    .editors-picks .post-card-inline-noExcerpt .gh-card-link .is-title {
        max-width: 331px;
    }

}

.latest-stories {
    grid-column: main;
}

.latest-stories .tags {
    padding-top: 16px;
}

.latest-stories .tags p {
    white-space: nowrap;
}

.latest-stories .tags p,
.latest-stories .gh-featured-feed .tags ul li a {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
}

.latest-stories .gh-featured-feed .tags ul li a {
    text-decoration: underline;
}

.latest-stories .gh-featured-feed .gh-card::before {
    content: none;
}

.latest-stories .gh-featured-feed .tags {
    display: flex;
    grid-column: 1 / 12;
    align-items: baseline;
    margin-top: -10px;
}

.latest-stories .gh-featured-feed .tags ul {
    padding-left: 0;
    width: 100%;
    display: flex;
}
.latest-stories .gh-featured-feed .tags ul li {
    list-style-type: none;
    padding-left: 2px;
}

.latest-stories .post-card-inline-noExcerpt .gh-card-link .gh-card-title {
    max-width: 80%;
}

@media (min-width: 720px) {

    .latest-stories .tags p,
    .latest-stories .gh-featured-feed .tags ul li a {
        font-size: 1.4rem;
    }

    .latest-stories .post-card-inline-noExcerpt .gh-card-link .gh-card-title {
        font-size: 1.8rem;
    }
}


.latest-stories .gh-card-link {
    color: var(--color-grey-700);
    text-decoration: none;
}

.latest-stories-bottom .gh-featured-feed {
    gap: 0;
}

.latest-stories-bottom .gh-featured-feed .tags {
    margin-bottom: 12px;
}

.latest-stories-bottom .gh-featured-feed .bullet-wrapper {
    margin-bottom: 12px;
}

.latest-stories-bottom .post-card-inline-noExcerpt .gh-card-link {
    flex-direction: row;
    padding-bottom: 10px;
    padding-top: 0;
    margin-top: 0 !important;
}

.latest-stories-bottom .post-card-inline-noExcerpt:not(:first-of-type) .gh-card-link {
    padding-top: 8px;
}

.latest-stories-bottom .post-card-inline-noExcerpt .gh-card-link .gh-card-image {
    width: 140px;
    max-width: 140px;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .latest-stories .gh-card-link {
        margin: 0;
    }
}

.latest-stories-mid .gh-card-image {
    display: none;
}

.latest-stories-mid .gh-featured-feed {
    gap: 0;
}

.latest-stories-mid .gh-featured-feed .bullet-wrapper {
    margin-bottom: 10px;
}

.latest-stories-mid .post-card-inline-noExcerpt .gh-card-link {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 0;
}

.latest-stories-mid .post-card-inline-noExcerpt .gh-card-wrapper {
    display: flex;
    align-items: first baseline;
    gap: 8px;
}

.latest-stories-mid .post-card-inline-noExcerpt .gh-card-wrapper::before {
    content: '';
    display: inline-flex;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M256 8c137 0 248 111 248 248S393 504 256 504 8 393 8 256 119 8 256 8zm-28 385c9.4 9.4 24.6 9.4 33.9 0l112-112c9.4-9.4 9.4-24.6 0-33.9l-112-112c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l71 71H140c-13.3 0-24 10.7-24 24s10.7 24 24 24h159l-71 71c-9.4 9.4-9.4 24.6 0 33.9z' fill='%23e9751f'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(2px);
}

/*Custom Tables*/
@media (min-width: 1200px) {
    .table-group {
        padding: 0 max(4vmin, 24px);

    }
}

.custom-table.gh-outer {
    padding: 0;
}

.custom-table .table {
    background-color: var(--color-grey-100);
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.custom-table .table .table-body {
    padding-left: 24px;
    padding-right: 20px;
}

.custom-table .table .table-header,
.custom-table .table .table-title-wrapper,
.custom-table .table .table-tabs-wrapper,
.custom-table .table .table-contents .table-row,
.custom-table .table .table-tabs-wrapper .tab {
    display: flex;
}

.custom-table .table .table-tabs-wrapper,
.custom-table .table .table-header,
.custom-table .table .table-contents .table-row {
    justify-content: space-between;
}

.custom-table .table .table-title-wrapper,
.custom-table .table .table-tabs-wrapper,
.custom-table .table .table-contents {
    /* padding-left: 24px;
    padding-right: 24px; */
}

.custom-table .table .table-header {
    min-height: 60px;
    background-color: var(--color-grey-700);
    color: white;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 20px;
    align-items: center;
    padding-left: 24px;
}

.custom-table .table .table-header img {
    width: 36px;
    height: 36px;
}

.custom-table .table .table-title-wrapper {
    flex-direction: column;
    margin-top: 17px;
}

.custom-table .table .table-title-wrapper .race-round,
.custom-table .table .table-title-wrapper .race-date,
.custom-table .table .table-title-wrapper .race-name,
.custom-table .table .table-tabs-wrapper .tab {
    font-family: var(--font-sans);
    
}

.custom-table .table .table-title-wrapper .race-round,
.custom-table .table .table-title-wrapper .race-date,
.custom-table .table .table-tabs-wrapper .tab,
.custom-table .table .table-contents .table-labels {
    font-weight: 500;
}

.custom-table .table .table-tabs-wrapper .tab {
    color: var(--color-grey-500);
    border-top: 1px solid var(--color-border);
}

.custom-table .table .table-title-wrapper .race-name,
.custom-table .table .table-tabs-wrapper .tab.active {
    font-weight: 700;
}

.custom-table .table .table-tabs-wrapper .tab {
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.custom-table .table .table-tabs-wrapper .tab.active {
    border-bottom: 3px solid var(--color-background-accent);
}

.custom-table .table .table-title-wrapper .race-name {
    font-size: 2.8rem;
    margin-top: -3px;
    margin-bottom: 17px;
    line-height: 1.17em;
}

.custom-table .table .table-title-wrapper .race-round,
.custom-table .table .table-contents .table-labels {
    font-size: 1.2rem;  
}

.custom-table .table .table-title-wrapper .race-date,
.custom-table .table .table-header h3 {
    font-size: 2.0rem;
}

.custom-table .table .table-tabs-wrapper .tab {
    width: 50%;
    justify-content: center;
    font-size: 1.6rem;
    padding-top: 10px;
    padding-bottom: 11px;
}

.custom-table .table .table-contents {
    font-family: var(--font-mono);
    margin-top: 30px;
    margin-bottom: 11px;
}

.custom-table .table .table-contents .table-labels,
.custom-table .table .table-contents .table-values {
    letter-spacing: -0.24px;
    text-transform: uppercase;
}

.custom-table .table .table-contents .table-labels {
    margin-bottom: 11.5px;
}

.custom-table .table .table-contents .table-values {
    font-size: 1.4rem;
    letter-spacing: -0.28px;
    font-weight: 600;
}

.custom-table .table .table-contents .table-values {
    border-bottom: 1px solid var(--color-border);
    padding-top: 8px;
    padding-bottom: 8px;
}

.custom-table .table .table-contents .table-values:nth-child(2) {
    padding-top: 0;
}

.custom-table .table .table-contents .table-values:last-of-type {
    border-bottom: 0;
}

.custom-table .table .table-contents .table-labels .table-column,
.custom-table .table .table-contents .table-values .table-column {
    width: 33%;
}

.custom-table .table.table-standard .table-contents .table-labels .table-column:nth-child(1),
.custom-table .table.table-standard .table-contents .table-values .table-column:nth-child(1) {
    width: 10%;
}

.custom-table .table.table-standard .table-contents .table-labels .table-column:nth-child(2),
.custom-table .table.table-standard .table-contents .table-values .table-column:nth-child(2) {
    width: 50%;
}

.custom-table .table.table-standard .table-contents .table-labels .table-column:nth-child(3) span,
.custom-table .table.table-standard .table-contents .table-values .table-column:nth-child(3) span {
    width: 100%;
    display: inline-block;
    text-align: right;
}

.custom-table .table.table-standard .table-contents .table-value .table-column:nth-child(3) {
    width: fit-content;
}

.custom-table .gh-button {
    width: 100%;
    display: block;
    margin: auto;
    background-color: var(--color-grey-700);
    font-size: 1.6rem;
    font-family: var(--font-sans);
    font-weight: 700;
    display: flex;
    min-height: 46px;
}

.custom-table .gh-button.outline {
    background-color: transparent;
    border: 1px solid var(--color-grey-700);
    color: var(--color-grey-700);
    letter-spacing: -0.32px;
}

@media (min-width: 768px) {}

@media (min-width: 768px) {

}

@media (min-width: 1200px) {
    .table-group {
        display: flex;
        width: 100%;
        gap: var(--grid-gap);
    }

    .custom-table .table .table-header img {
        width: 36px;
        height: 36px;
    }

    .table-group .custom-table {
        width: 33%;
    }

    .custom-table .table .table-body,
    .custom-table .table .table-header {
        padding-left: 44px;
        padding-right: 44px;
    }

    .custom-table .table .table-header {
        min-height: 88px;
    }

    .custom-table .table .table-header img {
        width: 60px;
        height: 60px;
    }

    .custom-table .table .table-title-wrapper .race-date,
    .custom-table .table .table-header h3 {
        font-size: 2.4rem;
    }

    .custom-table .table .table-title-wrapper .race-round,
    .custom-table .table .table-contents .table-labels {
        font-size: 1.8rem;
    }

    .custom-table .table .table-title-wrapper .race-date {
        font-size: 3.2rem;
    }

    .custom-table .table .table-title-wrapper .race-name {
        font-size: 4.0rem;
        line-height: 1.175em;
    }

    .custom-table .table .table-tabs-wrapper .tab {
        font-size: 1.8rem;
    }

    .custom-table .table .table-contents .table-values {
        font-size: 1.6rem;
    }

    .custom-table .table .table-contents .table-labels {
        font-size: 1.2rem;
    }
}

@media (min-width: 1200px) {
    .latest-from-category .gh-header-inner {
        overflow: visible;
    }

    .latest-from-category .sticky-ad {
        display: block;
        grid-column: 10 / 13;
        grid-row-start: 2;
        position: sticky;
        top: 80px;
        align-self: start;
    }
}

.table-tabs-wrapper .tab {
    cursor: pointer;
}

.table-title-full-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    .table-title-wrapper {
        margin-top: 0 !important;
    }
    img {
        width: 60px;
        height: 60px;
    }
}

.schedule-page-header-content {
    margin-top: 0 !important;
    .schedule-inner {
        display: flex !important;
        justify-content: space-between;
        flex-direction: column;
        gap: 10px !important;
        padding-bottom: 0 !important;
        .category-title {
            flex: 1 1 100%;
        }
        .button-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            button {
                font-weight: 700;
                font-family: var(--font-sans);
                background-color: var(--background-color);
                border: 1px solid var(--color-grey-500);
                color: var(--color-grey-500);
            }
            button.active {
                background-color: var(--color-grey-500);
                color: var(--background-color);
            }
        }
    }
}

@media (max-width: 767px) {
    .schedule-page-header-content .schedule-inner {
        gap: 8px !important;
    }

    .schedule-page-header-content .button-wrapper {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
    }

    .schedule-page-header-content .button-wrapper .buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }

    .schedule-page-header-content .button-wrapper .buttons select[name="standings-filter"] {
        width: 100%;
        padding-right: 40px;
    }

    .schedule-page-header-content .button-wrapper .buttons .button-divider {
        display: none;
    }

    .schedule-page-header-content .button-wrapper .buttons button {
        flex: 1;
        padding: 1rem 1.2rem;
        font-size: 1.3rem;
    }

    .schedule-page-header-content .button-wrapper p {
        font-size: 1.3rem;
    }

    .timezone-heading {
        font-size: 1.3rem;
    }

    .schedule-body-inner {
        flex-direction: column;
    }

    .schedule-body-inner > .gh-outer {
        flex: 0 0 100%;
    }
}

.schedule-body-inner {
    display: flex;
    gap: var(--grid-gap);
    flex-wrap: wrap;
    > .gh-outer {
        flex: 0 0 calc((100% - (var(--grid-gap)*2))/3);
    }
}

.timezone-heading {
    width: 100%;
    margin-top: 10px;
}

.podcast-list.gh-header.is-highlight .gh-header-inner {
    display: flex;
    flex-direction: column;
    .description {
        max-width: 1200px;
    }
    .gh-header-middle {
        flex-direction: column;
        .gh-card.is-podcast {
            width: 100%;
        }
    }
}

.about-page {
    figure {
        margin: 0;
        height: 576px;
        overflow: hidden;
        background-color: black;
        margin-top: 32px;
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            mask-image: linear-gradient(to bottom, black, transparent);
        }
    }
    .members-card-desktop {
        display: block;
        mask-image: none;
    }
    .members-card-mobile {
        display: none;
        object-fit: contain;
        object-position: left;
        mask-image: linear-gradient(to right, black, transparent);
    }
    @media (max-width: 1200px) {
        .members-card-desktop {
            display: none;
        }
        .members-card-mobile {
            display: block;
        }
    }
    @media (max-width: 767px) {
        figure {
            height: 350px;
        }
        figure img {
            object-position: center center;
        }
    }
    .hero-image-caption {
        margin: 0 !important;
        position: absolute;
        color: #fff;
        text-align: center;
        bottom: 70px;
        left: 0;
        right: 0;
        .about-subtitle {
            font-size: 12px;
            text-transform: uppercase;
        }
        .about-title {
            font-size: 48px;
            max-width: 675px;
            margin: auto;
            @media (max-width: 768px) {
                font-size: 28px;
                max-width: 300px;
            }
        }
    }
    .intro-section {
        text-align: center;
        margin: 80px auto !important;
        max-width: 1250px;
        @media (max-width: 768px) {
            font-size: 20px;
        }
    }
    .latest-story-list {
        padding: 0 max(4vmin, 24px);
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        .category-title {
            flex-basis: 100%;
        }
        .gh-header-middle {
            padding-top: 10px;
            padding-left: 0 !important;
            flex-direction: row;
            width: 100%;
            article {
                justify-content: space-around;
                overflow: hidden;
                a {
                    padding: 0;
                    height: 100%;
                    width: 100%;
                    position: relative;
                    .gh-card-image {
                        height: 100%;
                        width: 100%;
                    }
                    .gh-card-wrapper {
                        position: absolute;
                        bottom: 30px;
                        display: flex;
                        justify-content: space-between;
                        width: 100%;
                        align-items: center;
                        padding: 0 24px;
                    }
                }
                .gh-card-tag {
                    margin: 0;
                    display: revert;
                    color: #fff;
                    font-size: 20px;
                    text-transform: capitalize;
                    text-align: center;
                    letter-spacing: -0.5px;
                }
                /* @media (max-width: 1200px) {
                    flex: 1 1 calc((100% - (var(--grid-gap)*2))/);
                } */
            }
            @media (max-width: 1200px) {
                flex-direction: column;
            }
        }
        .gh-card.about-latest {
            height: 420px;
            figure {
                max-width: 100%;
                height: revert;
                @media (max-width: 768px) {
                    margin: 0;
                }
            }
            @media (max-width: 768px) {
                height: 180px;
            }
        }
    }
    .about-header-section {
        display: flex;
        position: relative;
        padding: 0 max(4vmin, 24px);
        figure {
            width: 100%;
        }
    }
    .text-section {
        max-width: 1400px;
        margin: 0 auto;
        text-align: center;
        @media (max-width: 768px) {
            font-size: 20px;
        }
    }
    .gh-content:has(.contact-card-group) {
        padding: 0 max(4vmin, 24px);
        display: flex;
        flex-direction: column;
    }
    .contact-card-group {
        display: flex;
        gap: 32px;
        width: 100%;
        .contact-card {
            display: flex;
            flex-direction: column;
            padding: 40px;
            flex: 1;
            background-color: var(--color-grey-700);
            color: #fff;
            p {
                margin-bottom: auto;
            }
            a {
                margin-top: 40px;
            }
        }
        @media (max-width: 768px) {
            flex-direction: column;
        }
    }
    .about-members {
        .gh-card-wrapper {
            @media (max-width: 1200px) {
                bottom: 0;
                top: 0;
                right: auto;
                left: 45%;
                max-width: 40%;
                align-items: start;
                padding-top: 12px;
                p {
                    text-align: left !important;
                }
            }
            @media (max-width: 768px) {
                left: 30%;
                max-width: 60%;
            }
            @media (max-width: 400px) {
                height: 100%;
            }
        }
        .gh-card-image {
            @media (max-width: 1200px) {
                img {
                    object-fit: cover;
                }
            }
            @media (max-width: 768px) {
                img {
                    object-fit: contain;
                }
            }
        }
    }
}

.race-standings-page {
    margin-top: 40px;
    .custom-table .table .table-contents .table-values {
        padding-bottom: 0;
        border-bottom: none;
        .table-column {
            padding-bottom: 8px;
            border-bottom: 1px solid var(--color-border);
        }
    }
    .table-contents {
        overflow-y: scroll;
        scrollbar-gutter: stable;
    }
    .custom-table .table .table-contents .table-labels .table-column,
    .custom-table .table .table-contents .table-values .table-column {
        flex: 0 0 10%;
        span {
            text-align: left !important;
        }
    }
    .custom-table .table.table-standard .table-contents .table-labels .table-column:nth-child(1),
    .custom-table .table.table-standard .table-contents .table-values .table-column:nth-child(1) {
        flex: 0 0 5%;
    }
    .custom-table .table.table-standard .table-contents .table-labels .table-column:nth-child(2),
    .custom-table .table.table-standard .table-contents .table-values .table-column:nth-child(2) {
        flex: 0 0 15%;
    }
    .custom-table .table.table-standard .table-contents .table-labels .table-column:nth-child(3),
    .custom-table .table.table-standard .table-contents .table-values .table-column:nth-child(3) {
        flex: 0 0 20%;
    }
        .custom-table .table .table-contents .table-row {
            min-width: 1400px;
            justify-content: start;
        }

}

.team-standings-table {
    display: none;
}
.session-results-table {
    display: none;
}

.postcard-number-wrapper {
    width: 100px;
    @media (max-width: 992px) {
        width: 55px;
        display: none;
    }
}

.post-card-inline-noExcerpt .gh-card-link {
    @media (max-width: 768px) {
        margin-top: 20px;
    }
}

/* Cookiebot styling overrides */
#CybotCookiebotDialogHeader {
  order: 1;
}
#CybotCookiebotDialogTabContent {
  order: 2;
}
#CybotCookiebotDialogNav {
  order: 3;
}
#CybotCookiebotDialogFooter {
  order: 4;
}
#CybotCookiebotDialogPoweredbyImage {
  display: none;
}
#CybotCookiebotDialogPoweredbyLink:after {
  content: ' ';
  background: transparent url(https://storage.googleapis.com/the-race-com.appspot.com/1/the-race-logo-full-black.png) no-repeat;
  background-size: contain;
  height: 43px;
  width: 200px;
}
#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
  border-top: 3px solid var(--ghost-accent-color) !important;
  border-bottom: none !important;
  color: var(--ghost-accent-color) !important;
}
#CybotCookiebotDialog input:checked+.CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: var(--ghost-accent-color) !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  border: 2px solid var(--ghost-accent-color);
  border-radius: 4px;
  padding: 0.5em;
}
#CybotCookiebotDialog #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonCustomSubscribe {
  background-color: rgb(56, 125, 211);
  border-color: rgb(56, 125, 211);
  color: white;
  margin-bottom: .5em;
}
#CybotCookiebotDialog #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonCustomSubscribe:hover {
  background-color: black;
  border-color: black;
  text-decoration: none;
}
#CybotCookiebotDialog {
  border-radius: 0 !important;
  overflow: visible !important;
}
#CybotCookiebotDialog::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300vmax;
  height: 300vmax;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.1);
  z-index: -1;
  pointer-events: all;
}
.CybotCookiebotDialogContentWrapper {
  position: relative !important;
  z-index: 1 !important;
  background-color: #ffffff !important;
}
#CybotCookiebotDialog h2 {
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
}
#CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonDescription,
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton,
#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink {
  font-family: "Roboto Flex", sans-serif !important;
  font-weight: 900 !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonsSelectPane {
  padding: 0.5em 0;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonWrapper {
  padding: 0.33em 1em;
}
#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
  color: var(--ghost-accent-color) !important;
}
#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentCookieContainerButton:hover,
#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentIABv2Tab:hover,
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount):hover {
  color: var(--ghost-accent-color) !important;
}
button#CybotCookiebotDialogBodyLevelButtonCustomize:hover,
button#CybotCookiebotDialogBodyButtonDecline:hover,
button#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:hover {
  color: var(--ghost-accent-color) !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover {
  opacity: 1 !important;
  background-color: #000 !important;
  border-color: #000 !important;
}
#CybotCookiebotDialog #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize .CybotCookiebotDialogArrow {
  transform: translateY(-2px) rotate(45deg);
}
#CybotCookiebotDialog #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize:hover .CybotCookiebotDialogArrow {
  border-color: var(--ghost-accent-color);
}
#CybotCookiebotDialog #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  background-color: var(--ghost-accent-color);
}
#CybotCookiebotDialog #CybotCookiebotDialogBody .CybotCookiebotScrollContainer {
  max-height: 20em;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyContent {
  flex: 1;
  padding-bottom: 1.125rem;
  border: 1px solid #d6d6d6;
  border-width: 0 0 1px 0;
  min-height: 9em;
}
#CybotCookiebotDialog #CybotCookiebotDialogBodyContent .CybotCookiebotFader {
  bottom: calc(50% - 0.15em);
}
#CybotCookiebotDialog #CybotCookiebotMembersClubText {
  flex: 1;
  padding: 1.125rem;
  min-height: 9em;
}
#CybotCookiebotDialog .CybotCookiebotDialogBodyBottomWrapper {
  order: -1;
}
#CybotCookiebotDialogBody .CybotCookiebotScrollArea {
  scrollbar-color: transparent transparent;
  overflow-y: scroll;
}
#CybotCookiebotDialogBody .CybotCookiebotScrollArea:hover {
  scrollbar-color: #000 #000;
}
#CybotCookiebotDialog #CybotCookiebotMembersClubText p.price {
  font-family: "Roboto Flex", sans-serif;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: .5em;
  font-weight: 500;
  letter-spacing: 0.5px;
}
#CybotCookiebotDialog #CybotCookiebotMembersClubText ul {
  list-style-position: outside;
}
#CybotCookiebotDialog #CybotCookiebotMembersClubText ul li {
  margin-left: 1.2em;
}
@media screen and (min-width: 601px) {
  #CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonsSelectPane {
    padding: 1em 0;
  }
  #CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonsSelectPane .CybotCookiebotDialogBodyLevelButtonWrapper {
    padding: 1em;
  }
  #CybotCookiebotDialog #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
    padding: 1em;
  }
  #CybotCookiebotDialog #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonCustomSubscribe {
    margin-left: .5em;
    margin-bottom: 0;
  }
  #CybotCookiebotDialog #CybotCookiebotDialogBody .CybotCookiebotScrollContainer {
    flex-direction: row;
  }
  #CybotCookiebotDialog #CybotCookiebotDialogBodyContent {
    flex: 2;
    border-width: 0 1px 0 0;
    margin-right: 1.125rem;
  }
  #CybotCookiebotDialog #CybotCookiebotMembersClubText {
    flex: 1;
  }
  #CybotCookiebotDialog #CybotCookiebotDialogBodyContent .CybotCookiebotFader {
    width: calc(66.6666% - 2em);
    bottom: 0;
  }
  #CybotCookiebotDialog #CybotCookiebotMembersClubText .CybotCookiebotFader {
    width: calc(33.3333% + 1.5em);
    right: 1px;
    left: auto;
  }
}

/* Cookie table styling */
.CookieDeclarationTableCell {
  background-color: white;
  border: 1px solid black;
  white-space: inherit;
}
.CookieDeclarationTableHeader {
  border: 1px black solid;
}

#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText a,
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonIABHeaderViewPartnersLink,
#CybotCookiebotDialog #CybotCookiebotDialogDetailBulkConsentList dt a,
#CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a,
#CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonIABDescription a,
#CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieLink,
#CybotCookiebotDialogDetailBodyContentTextAbout a,
#CookiebotWidget .CookiebotWidget-consent-details button {
  color: var(--ghost-accent-color) !important;
}

#CookiebotWidget .CookiebotWidget-body .CookiebotWidget-consents-list li.CookiebotWidget-approved svg {
  fill: var(--ghost-accent-color) !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-change {
  background-color: var(--ghost-accent-color) !important;
  border: 2px solid var(--ghost-accent-color) !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-change:hover {
  opacity: 1 !important;
  background-color: #000 !important;
  border-color: #000 !important;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-withdraw {
  border: 2px solid var(--ghost-accent-color) !important;
  border-radius: 4px !important;
  transition: none;
}

#CookiebotWidget #CookiebotWidget-buttons #CookiebotWidget-btn-withdraw:hover {
  color: var(--ghost-accent-color) !important;
}

/* Missing content boxes for marketing cookie refusal */
#disqus-blocked-banner,
.youtube-blocked-banner,
.x-blocked-banner,
.megaphone-blocked-banner {
  background-color: #f9f9f9;
  border-radius: 20px;
  display: flex;
  padding: 20px 24px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 20px;
}
.cookies-not-accepted-header {
  margin-bottom: 8px;
  color: #343434;
  font-style: normal;
  font-weight: 700;
}
.cookies-not-accepted-button {
  background-color: var(--ghost-accent-color);
  font-family: "Roboto Flex", sans-serif !important;
  font-weight: 900 !important;
  color: #fff;
  font-size: 15px;
}
.cookies-not-accepted-button:hover {
  color: #fff !important;
  background-color: #000;
}
.cookies-not-accepted__text,
.cookies-not-accepted-header {
  padding-right: 15px;
}
#x-blocked-banner svg {
  margin-left: -4px;
}

#CookiebotWidget {
  bottom: 22px !important;
}

#CookiebotWidget {
  display: none;
}

#ghost-portal-root > div {
  z-index: 2147483632 !important;
}

#CybotCookiebotDialogBodyLevelButtonCustomize {
  display: none !important;
}

.CookiebotCustomTab {
  display: flex;
  flex-direction: row !important;
  padding-top: 10px !important;
}
.CookiebotCustomTab > .IllegalSplitter {
  display: flex;
  flex-basis: 50%;
  flex-direction: column;
  padding: 1.125em !important;
  line-height: 20px;
  > .text {
    padding: 0px 50px 10px 50px !important;
    font-family: Georgia, sans-serif !important;
    margin-bottom: 0 !important;
    > p a {
      color: #e9751f !important;
    }
  }
}

#CybotCookiebotDialog * .IllegalButton {
  display: flex;
  flex-direction: column !important;
  align-items: center;
  margin-top: 10px;
  > button {
    border: none;
    background-color: var(--ghost-accent-color);
    font-family: "Roboto Flex", sans-serif;
    font-weight: 800;
    color: white;
    border-radius: 4px;
    font-size: 16px;
    padding: 10px 50px;
    width: 75%;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-bottom: 15px;
    &:hover {
      background-color: black;
    }
    &:not(:first-child) {
      background-color: transparent;
      border: 2px solid black;
      color: black;
      &:hover {
        color: var(--ghost-accent-color);
      }
    }
  }
}

@media (max-width: 470px) {
  #CybotCookiebotDialogHeaderLogosWrapper {
    width: 80%;
    #CybotCookiebotDialogPoweredbyLink {
      padding-top: 5px;
    }
  }
}

@media (max-width: 992px) {
  .CookiebotCustomTab {
    flex-direction: column !important;
  }
  .CookiebotCustomTab > .IllegalSplitter > .text {
    width: 75%;
    padding: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    &:not(:first-child) {
      margin-top: 10px !important;
    }
  }
  .CookiebotCustomTab > .IllegalSplitter > .IllegalButton {
    margin-bottom: 0 !important;
  }
}

#CybotCookiebotDialogBodyButtonsWrapper {
  #CybotCookiebotDialogBodyButtonDecline {
    display: none;
  }
}

#CybotCookiebotDialogFooter {
  display: none;
  .CybotCookiebotDialogBodyButton {
    flex: 1;
  }
  #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
    display: none;
  }
  #CybotCookiebotDialogBodyButtonCustomSubscribe {
    display: none;
  }
}

.CybotCookiebotBannerCloseButton {
  display: none !important;
}

/* ---------------------------------------------------------- */
/* App view (trm_app_new)                                     */
/* ---------------------------------------------------------- */

.trm-app-new .gh-burger {
    display: none !important;
}

.trm-app-new .gh-navigation-members {
    display: none;
}

.trm-app-new .mobile-only-button {
    display: none !important;
}

/* ---------------------------------------------------------- */
/* End                                                     */
/* ---------------------------------------------------------- */

@media (max-width: 767px) {
    .footer-signup-wrapper {
        button {
            width: 100%;
        }
    }
}

/* Hub posts */

.hub-hero {
    width: 100%;
    height: 360px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, var(--color-grey-900));
}

.hub-profile {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    padding: 0 max(4vmin, 24px) 32px;
    border-bottom: 1px solid var(--color-border);
}

.hub-profile-image-wrapper {
    flex-shrink: 0;
}

.hub-profile-image {
    width: 160px;
    height: 160px;
    border-radius: var(--border-radius-medium);
    background-size: cover;
    background-position: center top;
    background-color: var(--color-grey-100);
    border: 4px solid var(--color-white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hub-profile-info {
    padding-top: 104px;
}

.hub-profile-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hub-profile-name h1 {
    font-family: var(--font-sans);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-grey-900);
}

.hub-flag {
    height: 24px;
    width: auto;
}

.hub-subtitle {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-secondary-text);
    margin-top: 4px;
}

.hub-attributes {
    display: flex;
    gap: 32px;
    margin-top: 16px;
}

.hub-attribute {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hub-attribute-label {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-grey-400);
}

.hub-attribute-value {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-grey-900);
}

.hub-content {
    display: flex;
    gap: 40px;
    padding: 40px max(4vmin, 24px);
}

.hub-stats-wrapper {
    flex: 1;
    min-width: 0;
}

.hub-ad-sidebar {
    flex-shrink: 0;
    width: 300px;
}

/* Driver stats from cloud function */

.hub-stats-wrapper .driver-stats {
    width: 100%;
}

.hub-stats-wrapper .driver-stats h2 {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-grey-900);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-background-accent);
}

.hub-stats-wrapper .driver-stats-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-grey-100);
}

.hub-stats-wrapper .driver-stats-row div:first-child {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    color: var(--color-secondary-text);
    text-transform: capitalize;
}

.hub-stats-wrapper .driver-stats-row div:last-child {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-grey-900);
}

.hub-stats-wrapper .driver-stats-row a {
    color: var(--color-link-primary);
    text-decoration: none;
}

.hub-stats-wrapper .driver-stats-row a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .hub-ad-sidebar {
        display: none;
    }
}

@media (max-width: 767px) {
    .hub-hero {
        height: 240px;
    }

    .hub-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-top: -60px;
    }

    .hub-profile-image {
        width: 120px;
        height: 120px;
    }

    .hub-profile-info {
        padding-top: 0;
    }

    .hub-profile-name {
        justify-content: center;
    }

    .hub-profile-name h1 {
        font-size: 2.4rem;
    }

    .hub-attributes {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hub-content {
        flex-direction: column;
        padding: 24px max(4vmin, 24px) 40px;
    }
}