@import "@tryghost/shared-theme-assets/assets/css/screen.css";
@import "fonts.css";

:root {
    --font-sans: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
    /* stylelint-disable-line value-keyword-case */
    --font-serif: Lora, Georgia, Times, serif;
    /* stylelint-disable-line value-keyword-case */
    --head-nav-gap: 32px;
    --color-primary-text: var(--color-darker-gray);
    --h1-size: 4.4rem;
    --color-secondary: #f9da49;
    --content-width: 676px;
}

/* Custom styles */

.gh-outer {
    padding-left: var(--gap);
  padding-right: var(--gap);
}
.gh-article-share {
    margin-top: 2rem;
    display: flex;
    gap: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gh-article-share-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--ghost-accent-color);
}

.gh-article-share span {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.gh-article-share a {
    display: inline-flex;
}

.gh-article-share svg {
    width: 24px;
    height: 24px;
    color: var(--ghost-accent-color);
    transition: opacity 0.2s ease;
    will-change: opacity;
}

.gh-article-share svg:hover {
    opacity: 0.9;
}

.gh-head-btn.gh-btn {
    background-color: var(--color-secondary);
    color: var(--color-darker-gray);
}

.gh-card {
    position: relative;
}

.gh-card-comments-link {
    display: flex;
    align-items: center;
    color: inherit;
    gap: 6px;
    z-index: 10000;
}

.gh-article-link {
    position: absolute;
    inset: 0;
    z-index: 1000;
}

.gh-head-inner>.gh-head-menu {
    display: none;
}

.gh-head-menu-inner {
    margin: 0 auto;
    max-width: 1200px;
}

.gh-article-tags {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    color: var(--ghost-accent-color);
}

.gh-article-footer {
    margin-top: 20px;
}

.gh-article-footer .gh-pagehead {
    max-width: none;
}

.gh-article-footer .gh-pagehead-title {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
}

.gh-article-footer .gh-pagehead-title::after {
    flex-grow: 1;
    height: 1px;
    margin-left: 1.6rem;
    content: "";
    background-color: var(--color-light-gray);
}

.gh-article-footer .gh-article-tag {
    margin-bottom: 0;
}

.gh-article-footer .gh-article-meta-sep:last-of-type {
    display: none;
}

.reading-progress {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 5px;
    /* Progress bar height */
    background-color: #c5d2d9;
    /* Progress bar background color */
    appearance: none;
}

.reading-progress::-webkit-progress-bar {
    background-color: transparent;
}

.reading-progress::-webkit-progress-value {
    background-color: var(--ghost-accent-color);
    /* Progress bar progress color */
}

figcaption {
    font-size: 1.3rem;
    text-align: left;
}

figcaption a {
    text-decoration: underline !important;
}

.gh-content {
    margin-top: 3rem;
}

.gh-content>*+* {
    margin-top: 2.2rem;
}

.gh-content > .kg-card + [id] {
    margin-top: 4.8rem !important;
}

.gh-content .kg-card + :not(.kg-card):not([id]),
.gh-content :not(.kg-card):not([id])+.kg-card {
    margin-top: 2.2rem;
}

.has-full-image figcaption {
    padding: 0 16px;
}

.gh-btn {
    font-weight: 500;
}

.gh-head-description,
.nav {
    letter-spacing: -0.006em;
}

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

.is-head-transparent .gh-head-logo img:first-of-type:not(:only-child) {
    display: none;
}

.social-media-menu {
    list-style: none;
    display: flex;
    gap: 1em;
    margin: 0;
    padding: 0;
}
.social-media-menu li {
    margin-right: 1rem;
}

.gh-head-actions {
    gap: 1em;
}

.gh-head-actions svg {
    width: 1.8em;
    height: 1.8em;
}

.social-media-icon {
    display: flex;
}

.social-media-icon svg {
    width: 1.8em;
    fill: var(--color-white);
}

/* Styles specific to grid style sections */

.gh-topic-grid+.gh-topic-grid {
    margin-top: 80px;
}

.gh-topic-grid .gh-topic-name {
    margin-bottom: 40px;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.gh-topic-grid .gh-topic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
}

body:not(.home-template) .gh-topic-grid .gh-topic-content {
    row-gap: 48px;
    justify-items: center;
}

.gh-topic-footer {
    padding-top: 20px;
    margin-top: 48px;
    text-align: right;
    border-top: 1px solid var(--color-light-gray);
}

.gh-topic-grid .gh-card .icon-comment-bubble {
    width: 20px;
    height: 20px;
}

.gh-topic-grid .gh-card.large.featured {
    order: -1;
}

.gh-topic-grid .gh-card.large,
body:not(.home-template) .gh-topic-grid .gh-card {
    grid-column: 1 / 3;
}

.gh-topic-grid .gh-card:not(.large) {
    width: 100%;
    max-width: 720px;
}

.gh-topic-grid :is(.gh-card.large, .gh-card:only-child) {
    width: 100%;
}

.gh-topic-grid .gh-card:not(:only-child).large {
    padding-bottom: 48px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-light-gray);
}

.gh-topic-grid .gh-card-link {
    display: flex;
    gap: 24px;
}

.gh-topic-grid .gh-article-link:hover~.gh-card-link {
    opacity: 1 !important;
}

.gh-topic-grid .gh-article-link:hover~.gh-card-link .gh-card-title {
    opacity: 0.8;
}

body:not(.home-template) .gh-topic-grid :is(.gh-card.large, .gh-card:only-child) .gh-card-link, .gh-topic-grid :is(.gh-card.large, .gh-card:only-child):not(.gh-card.large~.gh-card.large) .gh-card-link {
    gap: 40px;
}

body:not(.home-template) .gh-topic-grid :is(.gh-card.large, .gh-card:only-child) .gh-card-link>*, .gh-topic-grid :is(.gh-card.large, .gh-card:only-child):not(.gh-card.large~.gh-card.large) .gh-card-link>* {
    flex: 1;
}

.gh-topic-grid .gh-card-image {
    position: relative;
    flex-shrink: 0;
    width: 128px;
    height: 100%;
}

.gh-topic-grid .gh-card-image::before {
    display: block;
    padding-bottom: 66.66%;
    content: "";
}

body:not(.home-template) .gh-topic-grid :is(.gh-card.large, .gh-card:only-child) .gh-card-image::before, .gh-topic-grid :is(.gh-card.large, .gh-card:only-child):not(.gh-card.large~.gh-card.large) .gh-card-image::before {
    padding-bottom: 66.66%;
}

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

.gh-topic-grid .gh-card-wrapper {
    margin-top: -3px;
}

.gh-topic-grid .gh-card-title {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

body:not(.home-template) .gh-topic-grid :is(.gh-card.large, .gh-card:only-child) .gh-card-title,
.gh-topic-grid :is(.gh-card.large, .gh-card:only-child):not(.gh-card.large~.gh-card.large) .gh-card-title {
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

body:not(.home-template).gh-topic-grid .gh-card.no-image.large .gh-card-title,
.gh-topic-grid .gh-card.no-image.large:not(.gh-card.large~.gh-card.large) .gh-card-title {
    font-size: 4.2rem;
    line-height: 1.2;
}

body:not(.home-template) .gh-topic-grid .gh-card:not(.large) .gh-card-excerpt {
    display: -webkit-box;
    margin-top: 4px;
    overflow-y: hidden;
    font-size: 1.5rem;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

body.home-template .gh-topic-grid :is(.gh-card:not(.large, :only-child), .gh-card.large~.gh-card.large) .gh-card-excerpt {
    display: none;
}

.gh-topic-grid .gh-card-excerpt {
    margin-top: 12px;
    font-size: 1.7rem;
}

body:not(.home-template).gh-topic-grid .gh-card.no-image.large .gh-card-excerpt,
.gh-topic-grid .gh-card.no-image.large:not(.gh-card.large~.gh-card.large) .gh-card-excerpt {
    max-width: 720px;
}

.gh-card-footer {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-secondary-text);
    text-transform: uppercase;
}

.gh-card:not(.large) .gh-card-footer {
    margin-top: 12px;
}

.gh-card-footer-sep {
    width: 2px;
    height: 2px;
    background-color: currentColor;
    border-radius: 50%;
}
/* Styles for CTA header */

.header-cta {
    display: flex;
    padding-block: 160px;
}
.header-cta .has-image {
    margin-top: 0;
}
.gh-header-image {
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.gh-header-image img {
    -o-object-fit: cover;
  object-fit: cover;
}
.gh-header .gh-header-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: auto;
  max-width: 1020px;
  overflow: unset;
  text-align: center;
}
.gh-header-inner {
    position:relative;
    overflow:hidden;
}
.gh-form {
  align-items: center;
  background-color: var(--color-lighter-gray);
  border-radius: 40px;
  display: flex;
  font-size: 1.7rem;
  font-weight: 450;
  height: 56px;
  letter-spacing: -.008em;
  max-width: 560px;
  position: relative;
  transition: background-color .2s ease;
  width: 100%;
}
.gh-form-input {
    color: #15171a;
  background-color: transparent;
  border: 0;
  border-radius: 40px;
  font-size: inherit;
  height: 100%;
  inset: 0;
  letter-spacing: inherit;
  line-height: 1.1;
  outline: none;
  padding-inline: 26px;
  position: absolute;
  transition: .3s ease-in-out;
  width: 100%;
}
.gh-button {
  align-items: center;
  background-color: var(--ghost-accent-color);
  border: 0;
  border-radius: 100px;
  color: var(--color-white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 600;
  gap: .4em;
  justify-content: center;
  letter-spacing: -.004em;
  line-height: 2;
  padding: .8em 1.4em;
}
.gh-form .gh-button {
  font-size: inherit;
  height: 44px;
  padding-inline: 32px;
  position: absolute;
  right: 6px;
}
.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] {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 10px;
  position: absolute;
  top: 100%;
  width: 100%;
  color: #fff;
}
.gh-header.is-classic .gh-header-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: auto;
  max-width: 1020px;
  overflow: unset;
  text-align: center;
}

.gh-header.is-classic .gh-header-title {
  font-size: calc(clamp(3rem, 1.82vw + 2.27rem, 4.6rem)*var(--factor, 1));
  letter-spacing: -.028em;
  line-height: 1.1;
  color: #fff;
}
.gh-header.is-classic.has-image {
  margin-top: 0;
}

/* Styles specific to header trending items */

.gh-head-trending-menu {
    background-color: var(--color-secondary);
    display: flex;
    justify-content: center;
    padding: 1rem 1.2rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.gh-head-trending-menu .nav li {
    position: relative;
}

.gh-head-trending-menu .nav li:first-child {
    padding-right: calc(var(--head-nav-gap) / 2);
}

.gh-head-trending-menu .nav li+li {
    padding-left: calc(var(--head-nav-gap) / 2);
    padding-right: calc(var(--head-nav-gap) / 2);
}

.gh-head-trending-menu .nav li+li::before {
    content: "";
    background-color: var(--color-darker-gray);
    width: 1px;
    height: 60%;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    position: absolute;
    left: 0;
}

.gh-head-trending-menu .nav li:last-child {
    margin-right: 0;
}

.gh-head-trending-menu .nav li a {
    color: var(--color-darker-gray);
    text-decoration: underline;
}

/* Styles specific to list style sections */

.gh-topic-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 80px 48px;
    margin-top: 120px;
}

.gh-topic-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 24px;
    /* border-bottom: 1px solid var(--color-light-gray); */
}

.gh-topic-header .gh-topic-name {
    font-size: 2rem;
    letter-spacing: -0.015em;
}

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

.gh-topic-minimal .gh-card {
    max-width: 720px;
}

.gh-topic-minimal .gh-card-link {
    display: block;
}

.gh-topic-minimal .gh-card-title {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.gh-topic-minimal .gh-card+.gh-card {
    margin-top: 16px;
}

/* Global elements used for both grid and list style sections */

.gh-topic-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: -0.011em;
}

.gh-topic-link svg {
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

/* Article */

.gh-article-header {
    position: relative;
    justify-items: start;
}

.gh-article-tag {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.gh-article-excerpt {
    font-size: 1.9rem;
    color: var(--color-darker-gray);
    margin-top: 1rem;
}

.has-full-image .gh-article-excerpt {
    margin-bottom: -8px;
}

.gh-article-image {
    margin-top: 2rem;
    grid-column: main-start / main-end;
    width: 100%;
}

.has-wide-image .gh-article-image {
    grid-column: wide-start / wide-end;
}

.gh-article-sidebar {
    position: absolute;
    left: 0;
    grid-column: wide-start/main-start;
    padding-right: 32px;
    left: -16px;
}

.has-wide-image .gh-article-sidebar {
    top: calc(100% + 40px);
}

.has-full-image .gh-article-sidebar {
    top: 40px;
}

.gh-author-image {
    position: relative;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 50%;
}

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

.gh-author-icon {
    background-color: var(--color-light-gray);
}

.gh-author-name {
    font-size: 1.8rem;
    letter-spacing: -0.01em;
}

.gh-article-meta {
    display: flex;
    align-items: center;
    margin-top: 6px;
    font-size: 1.3rem;
    color: var(--color-secondary-text);
    letter-spacing: -0.003em;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-transform: uppercase;
}

.gh-article-meta svg {
    color: var(--color-secondary-text);
}

.gh-article-date {
    white-space: nowrap;
}

.gh-article-meta-sep {
    width: 2px;
    height: 2px;
    margin: 0 6px;
    background-color: currentColor;
    border-radius: 50%;
}

.gh-read-next {
    margin-top: 80px;
}

.gh-read-next .gh-pagehead {
    max-width: none;
    margin-bottom: 48px;
}

.gh-read-next .gh-pagehead-title {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
}

.gh-read-next .gh-pagehead-title::after {
    flex-grow: 1;
    height: 1px;
    margin-left: 1.6rem;
    content: "";
    background-color: var(--color-light-gray);
}

/* Comments */

.gh-comments {
    margin-top: 8rem;
}

.gh-loop-comments-count {
    line-height: 20px;
}

.gh-post-comments-count {
    line-height: 20px;
}

.gh-article-meta-comments {
    display: flex;
    flex-direction: row;
    gap: 3px;
    align-items: center;
    align-self: flex-start;
    color: var(--color-secondary-text);
}

.gh-article-meta-comments svg.icon-comment-bubble {
    width: 20px;
    height: 20px;
}

/* Product card as Aside box */

.kg-product-card-container {
    box-shadow: none !important;
    display: block !important;
    max-width: unset !important;
    padding: 0 !important;
}

.kg-product-card-image,
.kg-product-card-title-container {
    background-color: #f1f3f5;
    /* Change it later */
    padding: 1rem;
    max-width: 200px;
    float: left;
    clear: left;
    margin-right: 1.6rem;
}

.kg-product-card-title-container {
    padding-top: 0.6rem;
    margin-bottom: 0.6rem;
    width: 100%;
}

.kg-product-card h4.kg-product-card-title {
    font-size: 1.3rem !important;
    font-weight: 400 !important;
    text-align: left;
}

.kg-product-card .kg-product-card-description p {
    color: var(--color-primary-text) !important;
    opacity: 1 !important;
    font-family: var(--font-serif) !important;
    font-size: var(--content-font-size, 1.8rem) !important;
    letter-spacing: var(--content-letter-spacing, 0) !important;
}

/* Full screen cover */

.gh-cover {
    --cover-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.post-template .gh-cover {
    --cover-height: 100vh;

    align-items: flex-end;
    padding-top: 120px;
    padding-bottom: 0;
    background-color: transparent;
}

.post-template .gh-cover::before {
    position: absolute;
    inset: 0;
    content: "";
    background-color: var(--color-black);
    opacity: 0.3;
    transition: opacity 1.5s ease;
}

.post-template .gh-cover.loading::before {
    opacity: 1;
}

.post-template .gh-cover-image {
    transition: transform 1.5s ease;
    transform: scale(1);
}

.post-template .gh-cover.loading .gh-cover-image {
    transform: scale(1.02);
}

.gh-cover-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 720px;
    text-align: center;
}

.post-template .gh-cover-content {
    position: sticky;
    bottom: 80px;
    align-items: flex-start;
    max-width: 1200px;
    margin-bottom: 64px;
    text-align: left;
}

.gh-cover-content .gh-article-tag {
    color: var(--color-white);
}

.gh-cover-title {
    font-size: 7.2rem;
    color: var(--color-white);
    text-transform: uppercase;
}

.tag-template .gh-cover-title {
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
}

.post-template .gh-cover-title {
    text-transform: none;
}

.gh-cover-description {
    margin-top: 20px;
    font-size: 1.9rem;
    color: var(--color-white);
}

.has-serif-body .gh-cover-description {
    font-family: var(--font-serif);
}

/* Page head */

.gh-pagehead {
    display: flex;
    flex-direction: column;
    max-width: 560px;
    margin-bottom: 20px;
}

.gh-pagehead-title {
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.gh-pagehead-description {
    margin-top: 12px;
    font-size: 1.7rem;
    color: var(--color-darker-gray);
}

.has-serif-body .gh-pagehead-description {
    font-family: var(--font-serif);
}

/* Subscription banner */

.gh-subscribe {
    margin-bottom: 80px;
    text-align: center;
}

.gh-subscribe-title {
    font-size: 4.4rem;
    color: var(--color-white);
}

.has-serif-title .gh-subscribe-title {
    font-family: var(--font-serif);
}

.gh-subscribe-description {
    margin-top: 16px;
    font-size: 2rem;
}

.has-serif-body .gh-subscribe-description {
    font-family: var(--font-serif);
}

.gh-subscribe-btn {
    margin-top: 40px;
    color: var(--color-darker-gray);
    letter-spacing: -0.011em;
    background-color: var(--color-white);
}

.gh-subscribe-btn:hover {
    opacity: 0.9;
}

.gh-subscribe-btn svg {
    margin-right: 6px;
}

/* Site footer */

.gh-foot {
    padding-top: 120px;
    padding-bottom: 40px;
    margin-top: 120px;
    background-color: var(--color-darker-gray);
}

.gh-foot,
.gh-foot a,
.gh-foot a:hover {
    color: var(--color-white);
}

.gh-foot-inner {
    display: flex;
    flex-direction: column;
    font-size: 1.7rem;
}

.footer-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 6rem;
}

.footer-site-info {
    width:35%;
}
.footer-site-info p {
    padding-bottom: 1.5rem;
    padding-top: 2.0rem;
}
.footer-title {
    color: var(--color-white);
    padding-bottom: 1.2rem;
}

#footer-cta {
    padding-bottom: 2.0rem;
}
.footer-logo {
    padding: 0px 40px 20px 0px;
}
.gh-foot-menu {
    display: flex;
    justify-content:space-between;
    width: 65%;
    padding: 0px 0px 0px 20px;
    text-align: left;
    
}
.gh-foot-menu .nav {
    gap: 32px;
    font-weight: 500;
}

.gh-foot-menu .nav li+li::before {
    display: none;
}
.foot-menu-col-1, .foot-menu-col-2, .foot-menu-col-3 {
    width:33.33%;
}
.foot-menu-list {
    list-style-type: none;
    margin-top: 0px;
}
.foot-menu-list li {
    padding-bottom: 1.8rem;
}
.gh-copyright {
    color: var(--color-secondary-text);
    letter-spacing: -0.006em;
    text-align: left;
}
.gh-copyright a {
    color: var(--color-secondary-text);
}

.gh-main {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
}
.signup {
    background-color: var(--color-secondary);
    display:flex;
    padding: 40px;
    margin-top: 30px;
    margin-bottom: 60px;
}
.signup-text {
    color: var(--color-black);
}
.signup-text h2 {
    margin-bottom: 1rem;
}
.signup-text h3 {
    font-size: 2.0rem;
}
.signup-box {
    min-height: 58px; 
    max-width: 440px;
    width: 100%;
    align-self:center;
    margin-left:auto;
}

/* Media queries */

@media (max-width: 767px) {
    .gh-cover-content {
        margin-top: 40px;
    }

    .post-template .gh-cover-content {
        bottom: 32px;
        margin-bottom: 32px;
    }

    .gh-cover-title {
        font-size: 3.2rem;
    }

    .gh-cover-description {
        font-size: 1.7rem;
    }

    .gh-topic-grid .gh-topic-content {
        row-gap: 32px !important;
    }

    .gh-topic-grid .gh-card:not(:only-child).large:not(.gh-card.large~.gh-card.large) {
        padding-bottom: 36px;
        margin-bottom: 4px;
    }

    .gh-topic-grid .gh-card-link {
        gap: 16px;
    }

    .gh-topic-grid :is(.gh-card.large, .gh-card:only-child):not(.gh-card.large~.gh-card.large) .gh-card-link {
        gap: 32px;
    }

    .gh-topic-grid .gh-card-image {
        width: 100px;
    }

    .gh-topic-grid .gh-card-title {
        font-size: 1.6rem;
    }

    .gh-topic-grid .gh-card:not(.large) .gh-card-excerpt {
        display: none !important;
    }

    .gh-card:not(.large) .gh-card-footer {
        margin-top: 8px;
    }

    .gh-topic-grid .gh-card:not(.large) :where(.gh-card-author, .gh-card-footer-sep) {
        display: none;
    }

    .gh-topic-minimal .gh-card+.gh-card {
        margin-top: 12px;
    }

    .gh-topic-minimal .gh-card-title {
        font-size: 1.5rem;
    }

    .gh-read-next {
        margin-top: 64px;
    }

    .gh-foot {
        padding-top: 64px;
        padding-bottom: 120px;
        margin-top: 64px;
    }
    .footer-site-info {
        width:100%;
    }
    .gh-footer-inner {
        text-align: left;
    }
    .footer-container {
        display:block;
    }
    .footer-logo {
        padding: 20px;
    }
    .gh-subscribe {
        margin-bottom: 64px;
    }

    .gh-subscribe-title {
        font-size: 3.2rem;
    }

    .gh-subscribe-description {
        font-size: 1.7rem;
    }

    .gh-foot-menu {
        padding: 24px 0;
        width:100%;
    }
    .foot-menu-list {
        margin:0;
    }
    .gh-foot-menu .nav {
        gap: 12px;
    }
    .social-media-menu {
        justify-content: space-evenly;
        width: 70%;
        margin: auto;
    }

    .gh-copyright {
        font-size: 1.4rem;
    }

    .kg-product-card .kg-product-card-description p {
        font-size: 1.7rem !important;
    }
    .signup {
        flex-direction:column;
        padding:35px;
    }
    .signup-text {
        margin-bottom: 2.5rem;
    }
}
@media (max-width: 460px) {
    .gh-foot-menu {
        display:block;
        text-align: center;
    }
    .foot-menu-list {
        padding: 0;
    }
    .foot-menu-col-1, .foot-menu-col-2, .foot-menu-col-3 {
        width:100%;
    }
}
@media (min-width: 768px) {
    body:not(.home-template) .gh-topic-grid .gh-card:not(.large) .gh-card-image {
        width: 160px;
    }
}

@media (max-width: 991px) {
    .gh-head-inner>.gh-head-menu {
        display: block;
    }

    .gh-head>.gh-head-menu {
        display: none !important;
    }

    .gh-head-logo img:first-of-type {
        display: none;
    }

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

    .is-head-open {
        overflow-y: hidden;
    }

    .is-head-open #gh-head .gh-head-actions,
    .is-head-open #gh-head .gh-head-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .gh-head-description {
        display: none;
    }

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

    .gh-topic-grid :is(.gh-card.large, .gh-card:only-child):not(.gh-card.large~.gh-card.large) {
        grid-column: auto;
    }

    .gh-topic-grid .gh-card.large:not(.large~.large) .gh-card-link, body:not(.home-template) .gh-topic-grid .gh-card:not(.featured).large .gh-card-link {
        flex-direction: column;
    }

    .gh-topic-grid :is(.gh-card.large, .gh-card:only-child):not(.gh-card.large~.gh-card.large) .gh-card-link>*, body:not(.home-template) .gh-topic-grid .gh-card.large .gh-card-link>* {
        width: 100%;
    }
    .gh-form {
        max-width: 400px;
    }
    .gh-form .gh-button {
        padding-inline: 20px;
    }
    
}

.gh-head-brand .gh-search {
    margin-right: 12px;
    margin-left: 18px;
}

.gh-head-inner {
    padding: 1.6rem 0;
}

@media (min-width: 992px) {
    .gh-head-logo img:last-of-type {
        display: none;
    }

    .gh-head-brand .gh-search {
        display: none;
    }

    .is-head-b--a_n .gh-head-inner {
        grid-template-columns: 1fr auto 1fr;
        row-gap: 0;
    }

    .gh-head-inner,
    .gh-head-menu {
        padding: 0;
        font-size: 1.4rem;
        font-weight: 500;
    }

    .is-head-b--a_n .gh-head-menu {
        grid-column: 1 / 4;
        justify-content: center;
    }

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

    .is-head-b--a_n .gh-head-logo {
        font-size: 3rem;
    }

    .gh-head-btn.gh-btn {
        font-size: 1.4rem;
    }

    .gh-head-btn.gh-btn:hover {
        opacity: 0.95 !important;
    }

    .gh-head-menu {
        height: 56px;
        background-color: var(--ghost-accent-color);
        /* margin-left: calc(var(--gap) * - 1);
        margin-right: calc(var(--gap) * - 1); */
        padding-left: var(--gap);
        padding-right: var(--gap);
    }



    .gh-head-menu a {
        color: var(--color-lighter-gray);
    }

    body:not(.is-head-b--a_n) .gh-head-menu::after {
        display: none;
    }

    .has-full-image .gh-article-excerpt {
        margin-top: 36px;
        font-size: 2.4rem;
    }
}

@media (max-width: 1199px) {
    .gh-article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: auto 1fr;
        grid-column: main-start / main-end;
        column-gap: 12px;
        align-items: center;
        padding-right: 0;
        margin-top: 24px;
    }

    .gh-article-sidebar .gh-author-image {
        grid-row: 1 / 3;
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }

    .gh-article-meta {
        margin-top: 0;
        line-height: 1;
    }
}
