* {
  box-sizing: border-box;
}

html, body {
  margin: 0px;
  padding: 0px;
}

body {
  background: var(--blush);
  color: var(--body-tone);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--rose-deep);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

a:hover {
  color: var(--plum);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--plum-dark);
  font-weight: 500;
  margin: 0px 0px 0.5em;
}

h1 {
  font-size: 3rem;
  line-height: 1.05;
}

@media (max-width: 560px) {
  h1 {
  font-size: 2.25rem;
  }
}

h2 {
  font-size: 2.25rem;
  line-height: 1.1;
}

@media (max-width: 560px) {
  h2 {
  font-size: 1.8rem;
  }
}

h3 {
  font-size: 1.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
  padding: 8px 12px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  color: var(--plum);
  z-index: 100;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.container {
  max-width: 1180px;
  margin: 0px auto;
  padding: 0px 24px;
}

.container.narrow {
  max-width: 780px;
}

.section {
  padding: 56px 0px;
}

@media (max-width: 560px) {
  .section {
  padding: 40px 0px;
  }
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.display {
  font-size: 3rem;
}

.display-hero {
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  line-height: 1.02;
}

.lead {
  font-size: 1.05rem;
  color: var(--body-tone);
  margin-top: 12px;
}

.rose {
  color: var(--rose);
}

.eyebrow {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--rose);
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgb(240, 184, 204);
}

.wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 23px;
  background: linear-gradient(90deg, var(--plum-dark), var(--rose));
  background-clip: text;
  color: transparent;
}

.wordmark-light {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 22px;
  background-image: linear-gradient(90deg, rgb(217, 138, 168), rgb(240, 184, 204));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-color: initial;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0px;
  z-index: 40;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(249, 237, 241, 0.9);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0px auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  row-gap: 26px;
  column-gap: 26px;
  font-family: var(--font-label);
  font-size: 14px;
}

@media (max-width: 900px) {
  .primary-nav {
  display: none;
  }
}

.primary-nav a {
  color: var(--body-tone);
}

.primary-nav a:hover {
  color: var(--rose);
}

.header-actions {
  display: flex;
  align-items: center;
  row-gap: 8px;
  column-gap: 8px;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(82, 40, 78, 0.2);
  border-right-color: rgba(82, 40, 78, 0.2);
  border-bottom-color: rgba(82, 40, 78, 0.2);
  border-left-color: rgba(82, 40, 78, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  cursor: pointer;
  padding: 0px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .nav-toggle {
  display: inline-flex;
  }
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--plum);
  margin: 3px auto;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 8px 24px 16px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(82, 40, 78, 0.1);
  font-family: var(--font-label);
  font-size: 15px;
}

.mobile-nav a {
  padding: 10px 12px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  color: var(--plum-dark);
}

.mobile-nav a:hover {
  background: var(--arch);
}

.mobile-nav.is-open {
  display: flex;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  min-height: 44px;
  transition-behavior: normal, normal, normal;
  transition-duration: 0.15s, 0.15s, 0.15s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-property: transform, background, color;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill-rose {
  background: var(--rose);
  color: rgb(255, 255, 255);
}

.pill-rose:hover {
  background: var(--plum);
  color: rgb(255, 255, 255);
}

.pill-outline {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: var(--plum);
  border: 1px solid var(--plum);
}

.pill-outline:hover {
  background: var(--plum);
  color: rgb(255, 255, 255);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 12px;
  margin-top: 28px;
}

.card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 28px;
}

.arch-image {
  border-top-left-radius: 190px;
  border-top-right-radius: 190px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--arch);
  aspect-ratio: 3 / 4;
}

.arch-image-tall {
  border-top-left-radius: 220px;
  border-top-right-radius: 220px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  aspect-ratio: 3 / 4;
}

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

.hero {
  padding-top: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  row-gap: 40px;
  column-gap: 40px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
  grid-template-columns: 1fr;
  }
}

.hero-image {
  height: 520px;
}

@media (max-width: 900px) {
  .hero-image {
  height: 420px;
  }
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 22px;
  column-gap: 22px;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .offerings-grid {
  grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .offerings-grid {
  grid-template-columns: 1fr;
  }
}

.offering-card {
  display: flex;
  flex-direction: column;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-behavior: normal, normal;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: transform, box-shadow;
  color: inherit;
}

.offering-card:hover {
  transform: translateY(-3px);
  box-shadow: rgba(82, 40, 78, 0.08) 0px 12px 30px;
  color: inherit;
}

.offering-card .arch-image {
  border-top-left-radius: 190px;
  border-top-right-radius: 190px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  aspect-ratio: 5 / 4;
}

.offering-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.offering-body h3 {
  margin-top: 6px;
  font-size: 1.5rem;
}

.offering-price {
  margin-top: auto;
  padding-top: 12px;
  color: var(--rose);
  font-family: var(--font-label);
  font-size: 13px;
}

.process-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  row-gap: 40px;
  column-gap: 40px;
}

@media (max-width: 900px) {
  .process-card {
  grid-template-columns: 1fr;
  }
}

.process-steps {
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

@media (max-width: 900px) {
  .process-steps {
  grid-template-columns: 1fr;
  }
}

.step-n {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--rose);
}

.step-t {
  font-family: var(--font-display);
  color: var(--plum-dark);
  font-size: 1.4rem;
  margin-top: 6px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

@media (max-width: 900px) {
  .testimonial-grid {
  grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 28px;
  margin: 0px;
  display: flex;
  flex-direction: column;
}

.testimonial-card .stars {
  color: var(--rose);
  font-family: var(--font-label);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-family: var(--font-display);
  color: var(--plum-dark);
  font-size: 1.15rem;
  margin: 0px 0px 16px;
}

.testimonial-card figcaption {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}

.featured-testimonial {
  text-align: center;
}

.featured-quote {
  font-family: var(--font-display);
  color: var(--plum-dark);
  font-size: 1.75rem;
  line-height: 1.25;
  margin: 16px auto;
}

.quote-attr {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
}

.quiet-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.cta-card {
  text-align: center;
  padding: 48px;
}

@media (max-width: 560px) {
  .cta-card {
  padding: 32px 22px;
  }
}

.cta-card h3 {
  font-size: 2rem;
}

.cta-card p {
  max-width: 40ch;
  margin: 8px auto 24px;
}

.location-strip {
  text-align: center;
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--body-tone);
  margin: 20px 0px 40px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 22px;
  column-gap: 22px;
}

.pricing-card h2 {
  margin-top: 6px;
}

.pricing-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
}

.pricing-table td {
  padding: 12px 8px;
  border-top: 1px solid var(--arch-2);
  font-size: 15px;
}

.pricing-table td:last-child {
  text-align: right;
  color: var(--rose);
  font-family: var(--font-label);
}

.pricing-plum {
  background: var(--plum);
  color: rgb(242, 217, 227);
}

.pricing-plum h2 {
  color: rgb(255, 255, 255);
}

.pricing-plum .pricing-table td {
  border-top-color: rgba(255, 255, 255, 0.15);
  color: rgb(242, 217, 227);
}

.pricing-plum .pricing-table td:last-child {
  color: rgb(248, 199, 214);
}

.confections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

.confections-grid .card {
  text-align: center;
}

.rose-price {
  margin-top: 10px;
  color: var(--rose);
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flavours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

.flavours-grid ul {
  margin: 12px 0px 0px;
  padding-left: 18px;
  font-size: 15px;
}

.portion-note {
  margin-top: 24px;
  font-size: 14px;
  text-align: center;
  color: var(--body-tone);
}

@media (max-width: 900px) {
  .pricing-grid, .confections-grid, .flavours-grid {
  grid-template-columns: 1fr;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 22px;
  column-gap: 22px;
}

.tasting-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  row-gap: 22px;
  column-gap: 22px;
}

.checklist {
  padding-left: 18px;
  margin: 14px 0px 20px;
}

.checklist li {
  margin: 6px 0px;
}

.contact-inline-links {
  display: flex;
  row-gap: 16px;
  column-gap: 16px;
  margin-top: 12px;
}

.contact-methods {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 16px;
  column-gap: 16px;
}

.contact-card {
  display: block;
  padding: 22px;
}

.contact-value {
  margin-top: 8px;
  color: var(--plum-dark);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.map {
  margin-top: 32px;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--arch);
  aspect-ratio: 16 / 9;
}

.map iframe {
  width: 100%;
  height: 100%;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

@media (max-width: 900px) {
  .contact-grid, .contact-methods, .tasting-grid {
  grid-template-columns: 1fr;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  column-gap: 12px;
}

.faq-item {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom-left-radius: 18px;
  padding: 4px 22px;
}

.faq-item summary {
  list-style-position: initial;
  list-style-image: initial;
  list-style-type: none;
  cursor: pointer;
  padding: 18px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  row-gap: 16px;
  column-gap: 16px;
  font-family: var(--font-display);
  color: var(--plum-dark);
  font-size: 1.2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  font-family: var(--font-label);
  color: var(--rose);
  font-size: 1.4rem;
  width: 24px;
  text-align: center;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: transform;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 4px 0px 20px;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

.class-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
  display: flex;
  flex-direction: column;
}

.class-card .arch-image {
  border-top-left-radius: 190px;
  border-top-right-radius: 190px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.class-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  column-gap: 8px;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.class-body h3 {
  margin: 4px 0px;
  font-size: 1.4rem;
}

.class-body .pill {
  align-self: flex-start;
  margin-top: auto;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

@media (max-width: 900px) {
  .class-grid, .value-props {
  grid-template-columns: 1fr;
  }
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  column-gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
}

.chip {
  padding: 10px 18px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(82, 40, 78, 0.2);
  border-right-color: rgba(82, 40, 78, 0.2);
  border-bottom-color: rgba(82, 40, 78, 0.2);
  border-left-color: rgba(82, 40, 78, 0.2);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: var(--plum);
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  min-height: 44px;
}

.chip.is-active {
  background: var(--plum);
  color: rgb(255, 255, 255);
  border-color: var(--plum);
}

.gallery-grid {
  column-width: auto;
  column-count: 3;
  column-height: auto;
  column-wrap: auto;
  column-gap: 16px;
}

@media (max-width: 900px) {
  .gallery-grid {
  column-width: auto;
  column-count: 2;
  column-height: auto;
  column-wrap: auto;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
  column-width: auto;
  column-count: 1;
  column-height: auto;
  column-wrap: auto;
  }
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-card {
  display: block;
  width: 100%;
  padding: 0px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  text-align: left;
  cursor: pointer;
}

.gallery-card .arch-image {
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  aspect-ratio: auto;
}

.gallery-card .arch-image img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-ref {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}

.lightbox {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 60;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  margin: 0px;
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgb(255, 255, 255);
  margin-top: 12px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.9);
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  width: 40px;
  height: 40px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--plum-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  row-gap: 40px;
  column-gap: 40px;
  align-items: start;
}

.about-portrait {
  height: 560px;
}

@media (max-width: 900px) {
  .about-portrait {
  height: 420px;
  }
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

@media (max-width: 900px) {
  .about-grid, .contact-cards {
  grid-template-columns: 1fr;
  }
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  column-gap: 22px;
}

@media (max-width: 900px) {
  .post-grid {
  grid-template-columns: 1fr;
  }
}

.post-card {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.post-card a {
  display: block;
  color: inherit;
}

.post-body {
  padding: 22px;
}

.post-body h3 {
  font-size: 1.35rem;
  margin: 6px 0px 8px;
}

.post-body time {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

.post-hero {
  margin: 24px 0px;
  height: 520px;
}

.post-meta {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
}

.ghost-content {
  color: var(--body-tone);
  font-size: 17px;
}

.ghost-content p {
  margin: 1em 0px;
}

.ghost-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 2em 0px 0.5em;
  color: var(--plum-dark);
}

.ghost-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 1.5em 0px 0.5em;
  color: var(--plum-dark);
}

.ghost-content ul, .ghost-content ol {
  padding-left: 1.5em;
  margin: 1em 0px;
}

.ghost-content a {
  color: var(--plum);
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  text-underline-offset: 3px;
}

.ghost-content img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  margin: 1.5em 0px;
}

.ghost-content blockquote {
  border-left: 3px solid var(--plum);
  padding-left: 1em;
  font-style: italic;
  color: var(--body-tone);
  margin: 1.25em 0px;
}

.site-footer {
  margin-top: 80px;
  padding: 56px 0px;
  background: var(--plum-dark);
  color: rgb(232, 204, 216);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  row-gap: 40px;
  column-gap: 40px;
}

@media (max-width: 900px) {
  .footer-grid {
  grid-template-columns: 1fr;
  row-gap: 24px;
  column-gap: 24px;
  }
}

.footer-tagline {
  margin-top: 12px;
  max-width: 34ch;
  color: rgb(207, 168, 189);
  font-size: 14.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  column-gap: 10px;
  font-family: var(--font-label);
  font-size: 14px;
}

.footer-links a {
  color: rgb(232, 204, 216);
}

.footer-links a:hover {
  color: rgb(255, 255, 255);
}

.footer-legal {
  margin-top: 32px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgb(90, 51, 85);
  font-family: var(--font-label);
  font-size: 12.5px;
  color: rgb(168, 127, 153);
}

.footer-legal a {
  color: inherit;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pagination a {
  color: var(--rose);
}

.kg-width-wide {
  position: relative;
  width: 85vw;
  max-width: 1180px;
  left: 50%;
  transform: translateX(-50%);
}

.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
}

.kg-width-full img {
  width: 100%;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.gh-canvas {
  font-family: var(--font-body);
}

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

.kg-audio-card {
  display: flex;
  width: 100%;
  min-height: 96px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 4px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  color: rgb(34, 34, 34);
  box-shadow: rgba(124, 139, 154, 0.25) 0px 0px 0px 1px inset;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.kg-audio-card + .kg-audio-card {
  margin-top: 1em;
}

.kg-audio-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  min-width: 80px;
  margin: 8px;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.kg-audio-thumbnail.placeholder {
  background: var(--ghost-accent-color);
}

.kg-audio-thumbnail.placeholder svg {
  width: 24px;
  height: 24px;
  fill: rgb(255, 255, 255);
}

.kg-audio-player-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  --seek-before-width: 0%;
  --volume-before-width: 100%;
  --buffered-width: 0%;
}

.kg-audio-title {
  width: 100%;
  margin: 8px 0px 0px;
  padding: 8px 12px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15em;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.kg-audio-player {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 8px 12px;
}

.kg-audio-current-time, .kg-audio-time {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1em;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.kg-audio-current-time {
  min-width: 38px;
  padding: 0px 4px;
}

.kg-audio-time {
  width: 56px;
  color: rgb(171, 171, 171);
}

.kg-audio-duration {
  padding: 0px 4px;
}

.kg-audio-pause-icon, .kg-audio-play-icon {
  position: relative;
  bottom: 1px;
  padding: 0px 4px 0px 0px;
  font-size: 0px;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.kg-audio-hide {
  display: none !important;
}

.kg-audio-pause-icon svg, .kg-audio-play-icon svg {
  width: 14px;
  height: 14px;
  fill: currentcolor;
}

.kg-audio-seek-slider {
  flex-grow: 1;
  margin: 0px 4px;
}

@media (max-width: 640px) {
  .kg-audio-seek-slider {
  display: none;
  }
}

.kg-audio-playback-rate {
  min-width: 37px;
  padding: 0px 4px;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1em;
  text-align: left;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

@media (max-width: 640px) {
  .kg-audio-playback-rate {
  padding-left: 8px;
  }
}

.kg-audio-mute-icon, .kg-audio-unmute-icon {
  position: relative;
  bottom: -1px;
  padding: 0px 4px;
  font-size: 0px;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

@media (max-width: 640px) {
  .kg-audio-mute-icon, .kg-audio-unmute-icon {
  margin-left: auto;
  }
}

.kg-audio-mute-icon svg, .kg-audio-unmute-icon svg {
  width: 16px;
  height: 16px;
  fill: currentcolor;
}

.kg-audio-volume-slider {
  width: 80px;
}

@media (max-width: 400px) {
  .kg-audio-volume-slider {
  display: none;
  }
}

.kg-audio-seek-slider::before, .kg-audio-volume-slider::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 4px;
  cursor: pointer;
  background-color: currentcolor;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  width: var(--seek-before-width) !important;
}

.kg-audio-volume-slider::before {
  width: var(--volume-before-width) !important;
}

.kg-audio-player-container input[type="range"] {
  position: relative;
  appearance: none;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  height: auto;
  padding: 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.kg-audio-player-container input[type="range"]:focus, .kg-video-card input[type="range"]:focus {
  outline-color: initial;
  outline-style: initial;
  outline-width: 0px;
}

.kg-audio-player-container input[type="range"]::-webkit-slider-thumb {
  appearance: none;
}

.kg-audio-player-container button, .kg-video-card button {
  display: flex;
  align-items: center;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
}

.kg-audio-player-container input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(124, 139, 154, 0.25);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.kg-audio-player-container input[type="range"]::-webkit-slider-thumb {
  position: relative;
  box-sizing: content-box;
  width: 13px;
  height: 13px;
  margin: -5px 0px 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 0px 1px, rgba(0, 0, 0, 0.24) 0px 1px 4px;
}

.kg-audio-player-container input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.2);
}

.kg-blockquote-alt {
  font-size: 1.5em;
  font-style: italic;
  line-height: 1.7em;
  text-align: center;
  padding: 0px 2.5em;
}

@media (max-width: 800px) {
  .kg-blockquote-alt {
  font-size: 1.4em;
  padding-left: 2em;
  padding-right: 2em;
  }
}

@media (max-width: 600px) {
  .kg-blockquote-alt {
  font-size: 1.2em;
  padding-left: 1.75em;
  padding-right: 1.75em;
  }
}

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

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

.kg-bookmark-card a.kg-bookmark-container, .kg-bookmark-card a.kg-bookmark-container:hover {
  display: flex;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(124, 139, 154, 0.25);
  border-right-color: rgba(124, 139, 154, 0.25);
  border-bottom-color: rgba(124, 139, 154, 0.25);
  border-left-color: rgba(124, 139, 154, 0.25);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  overflow-x: hidden;
  overflow-y: hidden;
  color: rgb(34, 34, 34);
}

.kg-bookmark-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

.kg-bookmark-thumbnail img, .kg-collection-card-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-bookmark-thumbnail img {
  top: 0px;
  left: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 0px;
}

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

.kg-button-card, .kg-button-card a.kg-btn {
  display: flex;
  position: static;
  align-items: center;
}

.kg-button-card {
  width: 100%;
  justify-content: center;
}

.kg-button-card.kg-align-left {
  justify-content: flex-start;
}

.kg-button-card a.kg-btn {
  padding: 0px 1.2em;
  height: 2.4em;
  line-height: 1em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: opacity;
}

.kg-button-card a.kg-btn:hover {
  opacity: 0.85;
}

.kg-button-card a.kg-btn-accent {
  background-color: var(--ghost-accent-color);
  color: rgb(255, 255, 255);
}

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

.kg-callout-card {
  display: flex;
  padding: 1.2em 1.6em;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.kg-callout-card-grey {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(124, 139, 154, 0.13);
}

.kg-callout-card-white {
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  box-shadow: rgba(124, 139, 154, 0.2) 0px 0px 0px 1px inset;
}

.kg-callout-card-blue {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(33, 172, 232, 0.12);
}

.kg-callout-card-green {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(52, 183, 67, 0.12);
}

.kg-callout-card-yellow {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(240, 165, 15, 0.13);
}

.kg-callout-card-red {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(209, 46, 46, 0.11);
}

.kg-callout-card-pink {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(225, 71, 174, 0.11);
}

.kg-callout-card-purple {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(135, 85, 236, 0.12);
}

.kg-callout-card-accent {
  background: var(--ghost-accent-color);
  color: rgb(255, 255, 255);
}

.kg-callout-card.kg-callout-card-accent a {
  color: rgb(255, 255, 255);
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.kg-callout-card div.kg-callout-emoji {
  padding-right: 0.8em;
  line-height: 1.25em;
  font-size: 1.15em;
}

.kg-callout-card div.kg-callout-text {
  font-size: 0.95em;
  line-height: 1.5em;
}

.kg-callout-card + .kg-callout-card {
  margin-top: 1em;
}

.kg-collection-card {
  width: 100%;
  margin-top: 6vmin;
}

.kg-collection-card + * {
  margin-top: 6vmin;
}

.kg-collection-card-title {
  margin: 0.8rem 0px 1.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

a.kg-collection-card-post-wrapper {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  color: var(--text-color);
}

a.kg-collection-card-post-wrapper:hover {
  opacity: 1;
}

.kg-collection-card-post {
  display: flex;
  row-gap: 3.2rem;
  column-gap: 3.2rem;
}

.kg-collection-card-img {
  position: relative;
  aspect-ratio: 3 / 2;
}

.kg-collection-card-img img {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

a.kg-collection-card-post-wrapper:hover img {
  opacity: 0.92;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
}

.kg-collection-card-content {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
}

h2.kg-collection-card-post-title, p.kg-collection-card-post-excerpt {
  overflow-x: hidden;
  overflow-y: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

h2.kg-collection-card-post-title {
  margin: 0px;
  font-size: 2.4rem;
}

p.kg-collection-card-post-excerpt {
  margin-top: 1.2rem;
  line-height: 1.4;
}

.kg-collection-card-post-meta {
  display: flex;
  opacity: 0.5;
  margin-top: 1.2rem;
  font-size: 1.3rem;
  font-weight: 500;
}

.kg-collection-card-list {
  display: flex;
  flex-direction: column;
  row-gap: 3.2rem;
  column-gap: 3.2rem;
}

@media (max-width: 768px) {
  .kg-collection-card-list .kg-collection-card-post {
  flex-direction: column;
  }
}

.kg-collection-card-list .kg-collection-card-img {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 30%;
}

.kg-collection-card-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0px, 1fr));
  row-gap: 2.4rem;
  column-gap: 2.4rem;
}

@media (min-width: 640px) {
  .kg-collection-card-grid:not(.columns-1) {
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid:not(.columns-1):not(.columns-2) {
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  row-gap: 3.2rem;
  column-gap: 3.2rem;
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-1 {
  row-gap: 4.8rem;
  column-gap: 4.8rem;
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-2 {
  row-gap: 4rem;
  column-gap: 4rem;
  }
}

@media (min-width: 1280px) {
  .kg-collection-card-grid:not(.columns-1):not(.columns-2):not(.columns-3) {
  grid-template-columns: repeat(4, minmax(0px, 1fr));
  }
}

.kg-collection-card-grid .kg-collection-card-post {
  flex-direction: column;
  row-gap: 1.2rem;
  column-gap: 1.2rem;
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-1 .kg-collection-card-post {
  row-gap: 2rem;
  column-gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-2 .kg-collection-card-post {
  row-gap: 1.6rem;
  column-gap: 1.6rem;
  }
}

.kg-collection-card-grid.columns-1 .kg-collection-card-img, .kg-collection-card-grid.columns-2 .kg-collection-card-img {
  aspect-ratio: 16 / 9;
}

.kg-collection-card-grid .kg-collection-card-content {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  .kg-collection-card-grid .kg-collection-card-content {
  font-size: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-1 .kg-collection-card-content {
  font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-3 .kg-collection-card-content, .kg-collection-card-grid.columns-4 .kg-collection-card-content {
  font-size: 1.5rem;
  }
}

.kg-collection-card-grid h2.kg-collection-card-post-title {
  font-size: 1.7rem;
}

@media (min-width: 640px) {
  .kg-collection-card-grid h2.kg-collection-card-post-title {
  font-size: 1.9rem;
  }
}

.kg-collection-card-grid .kg-collection-card-post-meta {
  font-size: 1.25rem;
}

@media (min-width: 640px) {
  .kg-collection-card-grid.columns-1 h2.kg-collection-card-post-title {
  font-size: 2.4rem;
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-1 h2.kg-collection-card-post-title {
  font-size: 3.6rem;
  }
}

@media (min-width: 640px) {
  .kg-collection-card-grid:not(.columns-3):not(.columns-4) .kg-collection-card-post-meta {
  font-size: 1.3rem;
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-2 h2.kg-collection-card-post-title {
  font-size: 2.4rem;
  }
}

@media (min-width: 1024px) {
  .kg-collection-card-grid.columns-1 .kg-collection-card-post-meta {
  font-size: 1.4rem;
  }
}

@media (min-width: 1280px) {
  .kg-collection-card-grid.columns-4 h2.kg-collection-card-post-title {
  font-size: 1.7rem;
  }
}

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

.kg-cta-card {
  display: flex;
  flex-direction: column;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.kg-cta-bg-grey {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(151, 163, 175, 0.14);
}

.kg-cta-bg-white {
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  box-shadow: rgba(124, 139, 154, 0.2) 0px 0px 0px 1px inset;
}

.kg-cta-bg-blue {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(33, 172, 232, 0.12);
}

.kg-cta-bg-green {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(52, 183, 67, 0.12);
}

.kg-cta-bg-yellow {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(240, 165, 15, 0.13);
}

.kg-cta-bg-red {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(209, 46, 46, 0.11);
}

.kg-cta-bg-pink {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(225, 71, 174, 0.11);
}

.kg-cta-bg-purple {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(135, 85, 236, 0.12);
}

.kg-cta-sponsor-label-wrapper {
  margin: 0px 1.5em;
  padding: 0.7em 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(124, 139, 154, 0.2);
}

@media (max-width: 600px) {
  .kg-cta-sponsor-label-wrapper {
  margin: 0px 1.25em;
  padding: 0.5em 0px;
  }
}

.kg-cta-bg-none .kg-cta-sponsor-label-wrapper {
  margin: 0px;
  padding-top: 0px;
}

.kg-cta-bg-none.kg-cta-no-dividers .kg-cta-sponsor-label-wrapper, .kg-cta-has-img .kg-cta-sponsor-label-wrapper:not(.kg-cta-bg-none .kg-cta-sponsor-label-wrapper):not(.kg-cta-minimal .kg-cta-sponsor-label-wrapper) {
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

.kg-cta-sponsor-label {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap-mode: initial;
  text-wrap-style: pretty;
}

.kg-cta-sponsor-label span:not(a span) {
  color: color-mix(in srgb, currentcolor 45%, transparent);
}

.kg-cta-sponsor-label a, .kg-cta-sponsor-label a span, .kg-cta-text a {
  color: currentcolor;
  transition-behavior: normal;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: opacity;
}

.kg-cta-sponsor-label a:hover, .kg-cta-sponsor-label a:hover span {
  color: currentcolor;
  opacity: 0.85;
}

.kg-cta-link-accent .kg-cta-sponsor-label a {
  color: var(--ghost-accent-color);
}

.kg-cta-content {
  display: flex;
  padding: 1.5em;
  row-gap: 1.5em;
  column-gap: 1.5em;
}

@media (max-width: 600px) {
  .kg-cta-content {
  padding: 1.25em;
  row-gap: 1.25em;
  column-gap: 1.25em;
  }
}

.kg-cta-has-img .kg-cta-sponsor-label-wrapper + .kg-cta-content:not(.kg-cta-bg-none .kg-cta-content):not(.kg-cta-minimal .kg-cta-content) {
  padding-top: 0px;
}

.kg-cta-bg-none .kg-cta-content {
  padding: 1.5em 0px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(124, 139, 154, 0.2);
}

@media (max-width: 600px) {
  .kg-cta-bg-none .kg-cta-content {
  padding: 1.25em 0px;
  }
}

.kg-cta-bg-none.kg-cta-no-dividers .kg-cta-content {
  padding: 0px;
  border-bottom-width: medium;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

.kg-cta-bg-none:not(.kg-cta-no-dividers) .kg-cta-content:not(.kg-cta-sponsor-label-wrapper + .kg-cta-content) {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(124, 139, 154, 0.2);
}

.kg-cta-minimal .kg-cta-content {
  flex-direction: row;
}

@media (max-width: 600px) {
  .kg-cta-minimal .kg-cta-content {
  flex-direction: column;
  row-gap: 1.6rem;
  column-gap: 1.6rem;
  }
}

.kg-cta-immersive .kg-cta-content {
  flex-direction: column;
}

.kg-cta-content-inner {
  display: flex;
  flex-direction: column;
  row-gap: 1.5em;
  column-gap: 1.5em;
}

@media (max-width: 600px) {
  .kg-cta-content-inner {
  row-gap: 1.25em;
  column-gap: 1.25em;
  }
}

.kg-cta-immersive.kg-cta-centered .kg-cta-content-inner, a.kg-cta-button {
  align-items: center;
}

.kg-cta-image-container {
  flex-shrink: 0;
}

.kg-cta-image-container img {
  width: 100%;
  height: auto;
  margin: 0px;
  object-fit: cover;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.kg-cta-minimal .kg-cta-image-container img {
  width: 64px;
  height: 64px;
}

@media (max-width: 600px) {
  .kg-cta-minimal .kg-cta-image-container img {
  width: 52px;
  height: 52px;
  }
}

.kg-cta-text p {
  margin: 0px;
  line-height: 1.5em;
  text-wrap-mode: initial;
  text-wrap-style: pretty;
}

.kg-cta-bg-none .kg-cta-text p {
  line-height: unset;
}

.kg-cta-immersive.kg-cta-centered .kg-cta-text {
  text-align: center;
}

.kg-cta-text p + p {
  margin-top: 1.25em;
}

.kg-cta-text a:hover {
  color: currentcolor;
  opacity: 0.85;
}

.kg-cta-link-accent .kg-cta-text a, .kg-file-card-icon svg, .kg-header-card h2.kg-header-card-header a, .kg-header-card h3.kg-header-card-subheader a {
  color: var(--ghost-accent-color);
}

a.kg-cta-button {
  display: flex;
  position: static;
  justify-content: center;
  padding: 0px 1em;
  height: 2.5em;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 0.95em;
  font-weight: 500;
  line-height: 1.65;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  transition-behavior: normal;
  transition-duration: 0.15s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: opacity;
  width: max-content;
}

a.kg-cta-button:hover {
  opacity: 0.85;
}

a.kg-cta-button.kg-style-accent {
  background-color: var(--ghost-accent-color);
}

.kg-cta-immersive.kg-cta-has-img a.kg-cta-button {
  width: 100%;
}

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

.kg-file-card {
  display: flex;
}

.kg-file-card a.kg-file-card-container {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 12px;
  min-height: 92px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  color: rgb(34, 34, 34);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(124, 139, 154, 0.25);
  border-right-color: rgba(124, 139, 154, 0.25);
  border-bottom-color: rgba(124, 139, 154, 0.25);
  border-left-color: rgba(124, 139, 154, 0.25);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  transition-behavior: normal;
  transition-duration: 0.35s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: all;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  width: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.kg-file-card a.kg-file-card-container:hover {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgba(124, 139, 154, 0.35);
  border-right-color: rgba(124, 139, 154, 0.35);
  border-bottom-color: rgba(124, 139, 154, 0.35);
  border-left-color: rgba(124, 139, 154, 0.35);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.kg-file-card-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 4px 8px;
  width: 100%;
}

.kg-file-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3em;
}

.kg-file-card-caption {
  font-size: 14px;
  line-height: 1.3em;
  opacity: 0.7;
}

.kg-file-card-title + .kg-file-card-caption {
  flex-grow: 1;
  margin-top: 3px;
}

.kg-file-card-metadata {
  display: inline;
  font-size: 14px;
  line-height: 1.3em;
  margin-top: 5px;
}

.kg-file-card-filename {
  display: inline;
  font-weight: 500;
}

.kg-file-card-filesize {
  display: inline-block;
  font-size: 14px;
  opacity: 0.6;
}

.kg-file-card-filesize::before {
  display: inline-block;
  content: "•";
  margin-left: 6px;
  margin-right: 6px;
}

.kg-file-card-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-width: 80px;
  height: 100%;
  min-height: 80px;
}

.kg-file-card-icon::before {
  position: absolute;
  display: block;
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: currentcolor;
  opacity: 0.06;
  transition-behavior: normal;
  transition-duration: 0.35s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: opacity;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.kg-file-card a.kg-file-card-container:hover .kg-file-card-icon::before {
  opacity: 0.08;
}

.kg-file-card-icon svg {
  width: 24px;
  height: 24px;
}

.kg-file-card-medium a.kg-file-card-container {
  min-height: 72px;
}

.kg-file-card-medium .kg-file-card-caption {
  opacity: 1;
  font-weight: 500;
}

.kg-file-card-small a.kg-file-card-container {
  align-items: center;
  min-height: 52px;
}

.kg-file-card-small .kg-file-card-metadata {
  font-size: 14px;
  margin-top: 0px;
}

.kg-file-card-small .kg-file-card-icon svg {
  width: 20px;
  height: 20px;
}

.kg-file-card + .kg-file-card {
  margin-top: 1em;
}

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

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

@media (max-width: 600px) {
  .kg-gallery-card, .kg-image-card {
  --gap: 0.6rem;
  }
}

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

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

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

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

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

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

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

.kg-header-card {
  padding: 12vmin 4em;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 640px) {
  .kg-header-card {
  padding-left: 1em;
  padding-right: 1em;
  }
}

.kg-header-card.kg-size-small {
  padding-top: 14vmin;
  padding-bottom: 14vmin;
  min-height: 40vh;
}

.kg-header-card.kg-size-large {
  padding-top: 18vmin;
  padding-bottom: 18vmin;
  min-height: 80vh;
}

.kg-header-card.kg-align-left {
  text-align: left;
  align-items: flex-start;
}

.kg-header-card.kg-style-dark {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(21, 21, 21);
  color: rgb(255, 255, 255);
}

.kg-header-card.kg-style-light {
  background-color: rgb(250, 250, 250);
}

.kg-header-card.kg-style-accent, .kg-header-card.kg-style-accent.kg-v2 {
  background-color: var(--ghost-accent-color);
}

.kg-header-card.kg-style-image {
  position: relative;
  background-color: rgb(231, 231, 231);
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
}

.kg-header-card.kg-style-image::before {
  position: absolute;
  display: block;
  content: "";
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(0deg, transparent, rgba(0, 0, 0, 0.2));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.kg-header-card h2.kg-header-card-header {
  font-size: 5em;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.01em;
  margin: 0px;
}

@media (max-width: 640px) {
  .kg-header-card h2.kg-header-card-header {
  font-size: 3.5em;
  }
}

.kg-header-card h2.kg-header-card-header strong {
  font-weight: 800;
}

.kg-header-card.kg-size-small h2.kg-header-card-header {
  font-size: 4em;
}

@media (max-width: 640px) {
  .kg-header-card.kg-size-small h2.kg-header-card-header {
  font-size: 3em;
  }
}

.kg-header-card.kg-size-large h2.kg-header-card-header {
  font-size: 6em;
}

@media (max-width: 640px) {
  .kg-header-card.kg-size-large h2.kg-header-card-header {
  font-size: 4em;
  }
}

.kg-header-card h3.kg-header-card-subheader {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.4em;
  margin: 0px;
  max-width: 40em;
}

@media (max-width: 640px) {
  .kg-header-card h3.kg-header-card-subheader {
  font-size: 1.25em;
  }
}

.kg-header-card h2 + h3.kg-header-card-subheader {
  margin: 0.35em 0px 0px;
}

.kg-header-card .kg-header-card-subheading strong, .kg-header-card h3.kg-header-card-subheader strong, .kg-signup-card .kg-signup-card-subheading strong {
  font-weight: 600;
}

.kg-header-card.kg-size-small h3.kg-header-card-subheader {
  font-size: 1.25em;
}

@media (max-width: 640px) {
  .kg-header-card.kg-size-small h3.kg-header-card-subheader {
  font-size: 1em;
  }
}

.kg-header-card.kg-size-large h3.kg-header-card-subheader {
  font-size: 1.75em;
}

@media (max-width: 640px) {
  .kg-header-card.kg-size-large h3.kg-header-card-subheader {
  font-size: 1.5em;
  }
}

.kg-header-card:not(.kg-style-light) h2.kg-header-card-header, .kg-header-card:not(.kg-style-light) h3.kg-header-card-subheader {
  color: rgb(255, 255, 255);
}

.kg-header-card.kg-style-accent h3.kg-header-card-subheader, .kg-header-card.kg-style-image h3.kg-header-card-subheader, .kg-product-card-rating-active.kg-product-card-rating-star svg {
  opacity: 1;
}

.kg-header-card.kg-style-image a.kg-header-card-button, .kg-header-card.kg-style-image h2.kg-header-card-header, .kg-header-card.kg-style-image h3.kg-header-card-subheader {
  z-index: 999;
}

.kg-header-card.kg-style-accent h2.kg-header-card-header a, .kg-header-card.kg-style-accent h3.kg-header-card-subheader a, .kg-header-card.kg-style-image h2.kg-header-card-header a, .kg-header-card.kg-style-image h3.kg-header-card-subheader a {
  color: rgb(255, 255, 255);
}

.kg-header-card a.kg-header-card-button {
  display: flex;
  position: static;
  align-items: center;
  fill: rgb(255, 255, 255);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  outline-color: initial;
  outline-style: initial;
  outline-width: 0px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  letter-spacing: 0.2px;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  text-overflow: ellipsis;
  color: rgb(21, 21, 21);
  height: 2.7em;
  padding: 0px 1.2em;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}

.kg-header-card h2 + a.kg-header-card-button, .kg-header-card h3 + a.kg-header-card-button {
  margin: 1.75em 0px 0px;
}

.kg-header-card a.kg-header-card-button:hover {
  opacity: 0.85;
}

.kg-header-card.kg-size-large a.kg-header-card-button {
  font-size: 1.1em;
  height: 2.9em;
}

.kg-header-card.kg-size-large h2 + a.kg-header-card-button, .kg-header-card.kg-size-large h3 + a.kg-header-card-button {
  margin-top: 2em;
}

.kg-header-card.kg-size-small a.kg-header-card-button {
  height: 2.4em;
  font-size: 1em;
}

.kg-header-card.kg-size-small h2 + a.kg-header-card-button, .kg-header-card.kg-size-small h3 + a.kg-header-card-button {
  margin-top: 1.5em;
}

.kg-header-card.kg-style-dark a.kg-header-card-button, .kg-header-card.kg-style-image a.kg-header-card-button {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  color: rgb(21, 21, 21);
}

.kg-header-card.kg-style-light a.kg-header-card-button {
  background: var(--ghost-accent-color);
  color: rgb(255, 255, 255);
}

.kg-header-card.kg-style-accent a.kg-header-card-button {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  color: rgb(21, 21, 21);
}

.kg-header-card.kg-v2 {
  position: relative;
  padding: 0px;
  min-height: initial;
  text-align: initial;
  box-sizing: border-box;
}

.kg-header-card.kg-v2 * {
  box-sizing: border-box;
}

.kg-header-card.kg-v2 a, .kg-header-card.kg-v2 a span, .kg-signup-card a, .kg-signup-card a span {
  color: currentcolor;
}

.kg-header-card-content {
  width: 100%;
}

.kg-layout-split .kg-header-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .kg-layout-split .kg-header-card-content {
  grid-template-columns: 1fr;
  }
}

.kg-header-card-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: min(6.4vmax, 120px) min(4vmax, 80px);
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  text-align: left;
}

.kg-width-wide .kg-header-card-text {
  padding: min(10vmax, 220px) min(6.4vmax, 140px);
}

@media (max-width: 640px) {
  .kg-width-wide .kg-header-card-text {
  padding: min(6.4vmax, 120px) min(4vmax, 80px);
  }
}

.kg-width-full .kg-header-card-text {
  padding: min(12vmax, 260px) 0px;
}

.kg-layout-split .kg-header-card-text {
  padding: min(12vmax, 260px) min(4vmax, 80px);
}

.kg-layout-split.kg-content-wide .kg-header-card-text {
  padding: min(10vmax, 220px) 0px min(10vmax, 220px) min(4vmax, 80px);
}

.kg-layout-split.kg-content-wide.kg-swapped .kg-header-card-text {
  padding: min(10vmax, 220px) min(4vmax, 80px) min(10vmax, 220px) 0px;
}

.kg-swapped .kg-header-card-text {
  grid-row-start: 1;
  grid-row-end: auto;
}

.kg-header-card-text.kg-align-center {
  align-items: center;
  text-align: center;
}

.kg-header-card.kg-style-image .kg-header-card-subheading, .kg-header-card.kg-style-image h2.kg-header-card-heading, .kg-header-card.kg-style-image.kg-v2 .kg-header-card-button {
  z-index: 999;
}

.kg-header-card > picture > .kg-header-card-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background-color: rgb(255, 255, 255);
  pointer-events: none;
}

.kg-header-card-content .kg-header-card-image {
  width: 100%;
  height: 0px;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.kg-content-wide .kg-header-card-content .kg-header-card-image {
  height: 100%;
  padding: 5.6em 0px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .kg-content-wide .kg-header-card-content .kg-header-card-image {
  padding: 1.7em 0px 0px;
  }
}

.kg-header-card h2.kg-header-card-heading, .kg-signup-card h2.kg-signup-card-heading {
  margin: 0px;
  font-size: clamp(1.7em, 4vw, 2.5em);
  font-weight: 700;
  line-height: 1.05em;
  letter-spacing: -0.01em;
}

.kg-header-card.kg-width-wide h2.kg-header-card-heading {
  font-size: clamp(1.7em, 5vw, 3.3em);
}

.kg-header-card.kg-width-full h2.kg-header-card-heading {
  font-size: clamp(1.9em, 5.6vw, 4.2em);
}

.kg-header-card.kg-width-full.kg-layout-split h2.kg-header-card-heading, .kg-signup-card.kg-width-full.kg-layout-split h2.kg-signup-card-heading {
  font-size: clamp(1.9em, 4vw, 3.3em);
}

.kg-header-card-subheading {
  margin: 0px 0px 2em;
}

.kg-header-card .kg-header-card-subheading {
  max-width: 40em;
  margin: 0px;
  font-size: clamp(1.05em, 2vw, 1.4em);
  font-weight: 500;
  line-height: 1.2em;
}

.kg-header-card h2 + .kg-header-card-subheading {
  margin: 0.6em 0px 0px;
}

.kg-header-card.kg-width-full.kg-layout-split .kg-header-card-subheading, .kg-header-card.kg-width-wide .kg-header-card-subheading {
  font-size: clamp(1.05em, 2vw, 1.55em);
}

.kg-header-card.kg-width-full .kg-header-card-subheading:not(.kg-layout-split .kg-header-card-subheading) {
  max-width: min(65vmax, 1200px);
  font-size: clamp(1.05em, 2vw, 1.7em);
}

@media (max-width: 640px) {
  .kg-header-card.kg-width-full .kg-header-card-subheading:not(.kg-layout-split .kg-header-card-subheading) {
  max-width: unset;
  }
}

.kg-header-card.kg-v2 .kg-header-card-button {
  display: flex;
  position: relative;
  align-items: center;
  height: 2.9em;
  min-height: 46px;
  padding: 0px 1.2em;
  outline-color: initial;
  outline-style: initial;
  outline-width: 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  font-size: 1em;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  letter-spacing: 0.2px;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  text-overflow: ellipsis;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}

@media (max-width: 640px) {
  .kg-header-card.kg-v2 .kg-header-card-button {
  height: 2.9em;
  }
}

.kg-header-card.kg-v2 .kg-header-card-button.kg-style-accent {
  background-color: var(--ghost-accent-color);
}

.kg-header-card.kg-v2 h2 + .kg-header-card-button, .kg-header-card.kg-v2 p + .kg-header-card-button {
  margin: 1.5em 0px 0px;
}

.kg-header-card.kg-v2 .kg-header-card-button:hover {
  opacity: 0.85;
}

.kg-header-card.kg-v2.kg-width-wide .kg-header-card-button {
  font-size: 1.05em;
}

.kg-header-card.kg-v2.kg-width-wide h2 + .kg-header-card-button, .kg-header-card.kg-v2.kg-width-wide p + .kg-header-card-button, .kg-signup-card.kg-width-wide h2 + .kg-signup-card-button, .kg-signup-card.kg-width-wide p + .kg-signup-card-button {
  margin-top: 1.75em;
}

.kg-header-card.kg-v2.kg-width-full .kg-header-card-button {
  font-size: 1.1em;
}

.kg-header-card.kg-v2.kg-width-full h2 + .kg-header-card-button, .kg-header-card.kg-v2.kg-width-full p + .kg-header-card-button, .kg-signup-card.kg-width-full h2 + .kg-signup-card-button, .kg-signup-card.kg-width-full p + .kg-signup-card-button {
  margin-top: 2em;
}

@media (max-width: 640px) {
  .kg-layout-split.kg-content-wide .kg-header-card-text, .kg-layout-split.kg-content-wide.kg-swapped .kg-header-card-text {
  padding: min(9.6vmax, 180px) 0px;
  }
}

@media (max-width: 640px) {
  .kg-header-card-content .kg-header-card-image:not(.kg-content-wide .kg-header-card-content .kg-header-card-image) {
  height: auto;
  min-height: unset;
  aspect-ratio: 1 / 1;
  }
}

@media (max-width: 640px) {
  .kg-content-wide.kg-swapped .kg-header-card-content .kg-header-card-image {
  padding: 0px 0px 1.7em;
  }
}

@media (max-width: 640px) {
  .kg-header-card.kg-v2.kg-width-full .kg-header-card-button, .kg-header-card.kg-v2.kg-width-wide .kg-header-card-button {
  font-size: 1em;
  }
}

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

.kg-nft-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.kg-nft-card a.kg-nft-card-container {
  position: static;
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;
  flex-direction: column;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-family: -apple-system, BlinkMacSystemFont, "avenir next", avenir, "helvetica neue", helvetica, ubuntu, roboto, noto, "segoe ui", arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 6px -2px, rgba(0, 0, 0, 0.4) 0px 0px 1px;
  width: 100%;
  max-width: 512px;
  color: rgb(34, 34, 34);
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  transition-behavior: normal;
  transition-duration: 0s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: none;
}

.kg-nft-card * {
  position: static;
}

.kg-nft-metadata {
  padding: 20px;
  width: 100%;
}

.kg-nft-image {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  width: 100%;
}

.kg-nft-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 20px;
  column-gap: 20px;
}

.kg-nft-header h4.kg-nft-title {
  font-family: inherit;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3em;
  min-width: unset;
  max-width: unset;
  margin: 0px;
  color: rgb(34, 34, 34);
}

.kg-nft-opensea-logo {
  margin-top: 2px;
  width: 100px;
  object-fit: scale-down;
}

.kg-nft-card p.kg-nft-description, .kg-nft-creator {
  font-family: inherit;
  line-height: 1.4em;
  margin: 4px 0px 0px;
  color: rgb(171, 171, 171);
}

.kg-nft-creator span {
  font-weight: 500;
  color: rgb(34, 34, 34);
}

.kg-nft-card p.kg-nft-description {
  font-size: 14px;
  margin: 20px 0px 0px;
  color: rgb(34, 34, 34);
}

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

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

.kg-product-card-container {
  display: grid;
  grid-template-columns: auto min-content;
  align-items: center;
  row-gap: 16px;
  max-width: 550px;
  padding: 20px;
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  color: rgb(34, 34, 34);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: rgba(124, 139, 154, 0.25) 0px 0px 0px 1px inset;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.kg-product-card-image {
  grid-column-start: 1;
  grid-column-end: 3;
  justify-self: center;
  height: auto;
}

.kg-product-card-title-container {
  grid-column-start: 1;
  grid-column-end: 2;
}

@media (max-width: 400px) {
  .kg-product-card-title-container {
  grid-column-start: 1;
  grid-column-end: 3;
  }
}

.kg-product-card h4.kg-product-card-title {
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  font-weight: 600;
  font-size: 21px;
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 1.15em;
}

.kg-product-card-description {
  grid-column-start: 1;
  grid-column-end: 3;
}

.kg-product-card .kg-product-card-description ol, .kg-product-card .kg-product-card-description p, .kg-product-card .kg-product-card-description ul {
  font-size: 14px;
  line-height: 1.5em;
  opacity: 0.7;
  margin-bottom: 0px;
}

.kg-product-card .kg-product-card-description p:first-of-type {
  margin-top: -4px;
}

.kg-product-card .kg-product-card-description ol, .kg-product-card .kg-product-card-description p:not(:first-of-type), .kg-product-card .kg-product-card-description ul {
  margin-top: 0.95em;
}

.kg-product-card .kg-product-card-description li + li, .kg-toggle-card li + li {
  margin-top: 0.5em;
}

.kg-product-card-rating {
  display: flex;
  align-items: center;
  grid-column-start: 2;
  grid-column-end: 3;
  align-self: start;
  justify-self: end;
  padding-left: 16px;
}

@media (max-width: 400px) {
  .kg-product-card-rating {
  grid-column-start: 1;
  grid-column-end: 3;
  justify-self: start;
  margin-top: -15px;
  padding-left: 0px;
  }
}

.kg-product-card-rating-star {
  height: 20px;
  width: 20px;
}

.kg-product-card-rating-star svg {
  width: 16px;
  height: 16px;
  fill: currentcolor;
  opacity: 0.15;
}

.kg-product-card a.kg-product-card-button {
  justify-content: center;
  grid-column-start: 1;
  grid-column-end: 3;
  display: flex;
  position: static;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1em;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  width: 100%;
  height: 38px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 0px 12px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: opacity;
}

.kg-product-card a.kg-product-card-btn-accent {
  background-color: var(--ghost-accent-color);
  color: rgb(255, 255, 255);
}

.kg-signup-card {
  position: relative;
}

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

.kg-signup-card.kg-style-accent {
  background-color: var(--ghost-accent-color);
}

.kg-layout-split .kg-signup-card-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 640px) {
  .kg-layout-split .kg-signup-card-content {
  grid-template-columns: 1fr;
  }
}

.kg-signup-card-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding: min(4vmax, 80px);
  background-size: cover;
  background-position-x: center;
  background-position-y: center;
  text-align: left;
}

.kg-width-wide .kg-signup-card-text {
  padding: min(6.4vmax, 120px);
}

@media (max-width: 640px) {
  .kg-width-wide .kg-signup-card-text {
  padding: min(6.4vmax, 120px) min(4vmax, 80px);
  }
}

.kg-width-full .kg-signup-card-text {
  padding: min(12vmax, 260px) 0px;
}

.kg-layout-split .kg-signup-card-text {
  padding: min(12vmax, 260px) min(4vmax, 80px);
}

.kg-layout-split.kg-content-wide .kg-signup-card-text {
  padding: min(10vmax, 220px) 0px min(10vmax, 220px) min(4vmax, 80px);
}

.kg-layout-split.kg-content-wide.kg-swapped .kg-signup-card-text {
  padding: min(10vmax, 220px) min(4vmax, 80px) min(10vmax, 220px) 0px;
}

.kg-swapped .kg-signup-card-text {
  grid-row-start: 1;
  grid-row-end: auto;
}

.kg-signup-card-text.kg-align-center {
  align-items: center;
  text-align: center;
}

.kg-signup-card.kg-style-image .kg-signup-card-button, .kg-signup-card.kg-style-image .kg-signup-card-subheading, .kg-signup-card.kg-style-image h2.kg-signup-card-heading {
  z-index: 999;
}

.kg-signup-card > picture > .kg-signup-card-image {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  background-color: rgb(255, 255, 255);
  pointer-events: none;
}

.kg-signup-card-content .kg-signup-card-image {
  width: 100%;
  height: 0px;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.kg-content-wide .kg-signup-card-content .kg-signup-card-image {
  height: 100%;
  padding: 5.6em 0px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .kg-content-wide .kg-signup-card-content .kg-signup-card-image {
  padding: 1.7em 0px 0px;
  }
}

.kg-signup-card.kg-width-wide h2.kg-signup-card-heading {
  font-size: clamp(1.7em, 5vw, 3.3em);
}

.kg-signup-card.kg-width-full h2.kg-signup-card-heading {
  font-size: clamp(1.9em, 5.6vw, 4.2em);
}

.kg-signup-card-subheading {
  margin: 0px 0px 2em;
}

.kg-signup-card .kg-signup-card-subheading {
  max-width: 40em;
  margin: 0px;
  font-size: clamp(1.05em, 2vw, 1.4em);
  font-weight: 500;
  line-height: 1.2em;
}

.kg-signup-card h2 + .kg-signup-card-subheading {
  margin: 0.6em 0px 0px;
}

.kg-signup-card.kg-width-full.kg-layout-split .kg-signup-card-subheading, .kg-signup-card.kg-width-wide .kg-signup-card-subheading {
  font-size: clamp(1.05em, 2vw, 1.55em);
}

.kg-signup-card.kg-width-full .kg-signup-card-subheading:not(.kg-layout-split .kg-signup-card-subheading) {
  max-width: min(65vmax, 1200px);
  font-size: clamp(1.05em, 2vw, 1.7em);
}

@media (max-width: 640px) {
  .kg-signup-card.kg-width-full .kg-signup-card-subheading:not(.kg-layout-split .kg-signup-card-subheading) {
  max-width: unset;
  }
}

.kg-signup-card-form {
  position: relative;
  display: flex;
  flex-shrink: 0;
  width: 100%;
}

.kg-align-center .kg-signup-card-form {
  justify-content: center;
}

.kg-signup-card-heading + .kg-signup-card-form, .kg-signup-card-subheading + .kg-signup-card-form {
  margin: min(2.4vmax, 48px) 0px 0px;
}

.kg-width-wide .kg-signup-card-heading + .kg-signup-card-form, .kg-width-wide .kg-signup-card-subheading + .kg-signup-card-form {
  margin: min(3.2vmax, 64px) 0px 0px;
}

.kg-width-full .kg-signup-card-heading + .kg-signup-card-form, .kg-width-full .kg-signup-card-subheading + .kg-signup-card-form {
  margin: min(4vmax, 80px) 0px 0px;
}

.kg-signup-card-fields {
  display: flex;
  width: 100%;
  padding: 3px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: rgb(230, 230, 230);
  border-right-color: rgb(230, 230, 230);
  border-bottom-color: rgb(230, 230, 230);
  border-left-color: rgb(230, 230, 230);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.kg-width-full .kg-signup-card-fields, .kg-width-wide .kg-signup-card-fields {
  width: 100%;
  max-width: 500px;
}

.kg-signup-card-input {
  width: 100%;
  height: 2.9em;
  min-height: 46px;
  margin: 0px 3px 0px 0px;
  padding: 12px 16px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  font-size: 1.1em;
}

@media (max-width: 640px) {
  .kg-signup-card-input {
  height: 2.9em;
  padding: 6px 12px;
  font-size: 1em;
  }
}

.kg-signup-card-input:focus, .kg-signup-card-input:focus-visible {
  outline-color: initial;
  outline-style: initial;
  outline-width: 0px;
}

.kg-signup-card-button {
  display: flex;
  position: relative;
  align-items: center;
  min-height: 46px;
  height: 100%;
  padding: 0px 1.2em;
  outline-color: initial;
  outline-style: initial;
  outline-width: 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  font-size: 1em;
  font-weight: 600;
  line-height: 1em;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  letter-spacing: 0.2px;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
  text-overflow: ellipsis;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
  cursor: pointer;
}

@media (max-width: 640px) {
  .kg-signup-card-button {
  height: 2.9em;
  }
}

.kg-signup-card-button.kg-style-accent {
  background-color: var(--ghost-accent-color);
}

.kg-signup-card h2 + .kg-signup-card-button, .kg-signup-card p + .kg-signup-card-button {
  margin: 1.5em 0px 0px;
}

.kg-signup-card .kg-signup-card-button:hover {
  opacity: 0.85;
}

.kg-signup-card.kg-width-wide .kg-signup-card-button {
  font-size: 1.05em;
}

.kg-signup-card.kg-width-full .kg-signup-card-button {
  font-size: 1.1em;
}

.kg-signup-card-error, .kg-signup-card-form.success .kg-signup-card-fields, .kg-signup-card-success {
  display: none;
}

.kg-signup-card-form.success .kg-signup-card-success {
  display: flex;
  align-items: center;
  height: 3em;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.4em;
}

.kg-signup-card-form.error .kg-signup-card-fields {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: red;
  border-right-color: red;
  border-bottom-color: red;
  border-left-color: red;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  box-shadow: rgba(255, 0, 0, 0.2) 0px 0px 0px 1px inset;
}

.kg-signup-card-form.error .kg-signup-card-error {
  position: absolute;
  bottom: calc(-1.6em - 1rem);
  display: block;
  font-size: inherit;
}

.kg-signup-card-button-loading {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  align-items: center;
  justify-content: center;
  display: none;
}

.kg-signup-card-form.loading .kg-signup-card-button-default {
  color: transparent;
}

.kg-signup-card-form.loading .kg-signup-card-button-loading {
  display: flex;
}

.kg-signup-card-disclaimer {
  margin: 1rem 0px 0px;
}

.kg-signup-card-form.error + .kg-signup-card-disclaimer, .kg-signup-card-form.success + .kg-signup-card-disclaimer {
  visibility: hidden;
}

@media (max-width: 640px) {
  .kg-layout-split.kg-content-wide .kg-signup-card-text, .kg-layout-split.kg-content-wide.kg-swapped .kg-signup-card-text {
  padding: min(9.6vmax, 180px) 0px;
  }
}

@media (max-width: 640px) {
  .kg-signup-card-content .kg-signup-card-image:not(.kg-content-wide .kg-signup-card-content .kg-signup-card-image) {
  height: auto;
  min-height: unset;
  aspect-ratio: 1 / 1;
  }
}

@media (max-width: 640px) {
  .kg-content-wide.kg-swapped .kg-signup-card-content .kg-signup-card-image {
  padding: 0px 0px 1.7em;
  }
}

@media (max-width: 640px) {
  .kg-signup-card.kg-width-full .kg-signup-card-button, .kg-signup-card.kg-width-wide .kg-signup-card-button {
  font-size: 1em;
  }
}

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

.kg-toggle-card {
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  box-shadow: rgba(124, 139, 154, 0.25) 0px 0px 0px 1px inset;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 1.2em;
}

.kg-toggle-card[data-kg-toggle-state="close"] .kg-toggle-content {
  height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-behavior: normal, normal;
  transition-duration: 0.5s, 0.35s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: opacity, top;
  opacity: 0;
  top: -0.5em;
  position: relative;
}

.kg-toggle-content {
  height: auto;
  opacity: 1;
  transition-behavior: normal, normal;
  transition-duration: 1s, 0.35s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-property: opacity, top;
  top: 0px;
  position: relative;
}

.kg-toggle-card[data-kg-toggle-state="close"] svg {
  transform: unset;
}

.kg-toggle-heading {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.kg-toggle-card h4.kg-toggle-heading-text {
  font-size: 1.15em;
  font-weight: 700;
  line-height: 1.3em;
  margin-top: 0px;
  margin-bottom: 0px;
}

.kg-toggle-content p:first-of-type {
  margin-top: 0.5em;
}

.kg-toggle-card .kg-toggle-content ol, .kg-toggle-card .kg-toggle-content p, .kg-toggle-card .kg-toggle-content ul {
  font-size: 0.95em;
  line-height: 1.5em;
  margin-top: 0.95em;
  margin-bottom: 0px;
}

.kg-toggle-card-icon {
  height: 24px;
  width: 24px;
  align-items: center;
  margin-left: 1em;
  padding: 0px;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
}

.kg-toggle-heading svg {
  width: 14px;
  color: rgba(124, 139, 154, 0.5);
  transition-behavior: normal;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: all;
  transform: rotate(-180deg);
}

.kg-toggle-heading path {
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  fill-rule: evenodd;
}

.kg-toggle-card + .kg-toggle-card {
  margin-top: 1em;
}

.kg-toggle-card-icon, .kg-transistor-card {
  display: flex;
  justify-content: center;
}

.kg-transistor-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.4rem;
  column-gap: 2.4rem;
  width: 100%;
  max-width: 100%;
  padding: 3rem 2.4rem;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: solid;
  border-right-style: solid;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: color-mix(in srgb, currentcolor 14%, transparent);
  border-right-color: color-mix(in srgb, currentcolor 14%, transparent);
  border-bottom-color: color-mix(in srgb, currentcolor 14%, transparent);
  border-left-color: color-mix(in srgb, currentcolor 14%, transparent);
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: color-mix(in srgb, currentcolor 4%, transparent);
  color: inherit;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  .kg-transistor-placeholder {
  row-gap: 1.6rem;
  column-gap: 1.6rem;
  padding: 2.4rem 1.8rem;
  }
}

.kg-transistor-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  background: var(--ghost-accent-color, #b8a5ac);
  color: rgb(255, 255, 255);
}

@media (max-width: 640px) {
  .kg-transistor-icon {
  width: 88px;
  height: 88px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  }
}

.kg-transistor-icon svg {
  display: block;
  width: 56px;
  height: 56px;
}

@media (max-width: 640px) {
  .kg-transistor-icon svg {
  width: 44px;
  height: 44px;
  }
}

.kg-transistor-content {
  min-width: 0px;
  max-width: 640px;
}

.kg-transistor-title {
  margin: 0px;
  color: inherit;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .kg-transistor-title {
  font-size: 1.8rem;
  }
}

.kg-transistor-description {
  margin-top: 1.6rem;
  color: inherit;
  font-size: 1.6rem;
  line-height: 1.5;
  opacity: 0.65;
}

@media (max-width: 640px) {
  .kg-transistor-description {
  margin-top: 1rem;
  font-size: 1.45rem;
  }
}

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

.kg-video-card {
  position: relative;
  --seek-before-width: 0%;
  --volume-before-width: 100%;
  --buffered-width: 0%;
}

.kg-video-card video {
  display: block;
  max-width: 100%;
  height: auto;
}

.kg-video-container {
  position: relative;
  height: 0px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.kg-video-container video {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kg-video-large-play-icon, .kg-video-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: opacity;
}

.kg-video-overlay {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3) 0px, transparent 70%, transparent 100%);
  z-index: 999;
}

.kg-video-large-play-icon {
  width: 72px;
  height: 72px;
  padding: 0px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 0, 0, 0.5);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}

.kg-video-large-play-icon svg {
  width: 20px;
  height: auto;
  margin-left: 2px;
  fill: rgb(255, 255, 255);
}

.kg-video-player-container {
  position: absolute;
  bottom: -1px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 80px;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  z-index: 999;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: opacity;
}

.kg-video-player {
  position: absolute;
  bottom: 0px;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 9999;
  padding: 12px 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(0, 0, 0, 0.5);
}

.kg-video-current-time, .kg-video-time {
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4em;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

.kg-video-current-time {
  min-width: 38px;
  padding: 0px 4px;
  color: rgb(255, 255, 255);
}

.kg-video-time {
  color: rgba(255, 255, 255, 0.6);
}

.kg-video-duration {
  padding: 0px 4px;
}

.kg-video-pause-icon, .kg-video-play-icon {
  position: relative;
  padding: 0px 4px 0px 0px;
  font-size: 0px;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

.kg-video-hide {
  display: none !important;
}

.kg-video-hide-animated {
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
  transition-property: opacity;
  cursor: initial;
  opacity: 0 !important;
}

.kg-video-pause-icon svg, .kg-video-play-icon svg {
  width: 14px;
  height: 14px;
  fill: rgb(255, 255, 255);
}

.kg-video-seek-slider {
  flex-grow: 1;
  margin: 0px 4px;
}

@media (max-width: 520px) {
  .kg-video-seek-slider {
  display: none;
  }
}

.kg-video-playback-rate {
  min-width: 37px;
  padding: 0px 4px;
  color: rgb(255, 255, 255);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4em;
  text-align: left;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  white-space-collapse: collapse;
  text-wrap-mode: nowrap;
}

@media (max-width: 520px) {
  .kg-video-playback-rate {
  padding-left: 8px;
  }
}

.kg-video-mute-icon, .kg-video-unmute-icon {
  position: relative;
  bottom: -1px;
  padding: 0px 4px;
  font-size: 0px;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
}

@media (max-width: 520px) {
  .kg-video-mute-icon, .kg-video-unmute-icon {
  margin-left: auto;
  }
}

.kg-video-mute-icon svg, .kg-video-unmute-icon svg {
  width: 16px;
  height: 16px;
  fill: rgb(255, 255, 255);
}

.kg-video-volume-slider {
  width: 80px;
}

@media (max-width: 300px) {
  .kg-video-volume-slider {
  display: none;
  }
}

.kg-video-seek-slider::before, .kg-video-volume-slider::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 4px;
  cursor: pointer;
  background-color: rgb(235, 238, 240);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  width: var(--seek-before-width) !important;
}

.kg-video-volume-slider::before {
  width: var(--volume-before-width) !important;
}

.kg-video-card input[type="range"] {
  position: relative;
  appearance: none;
  background-image: initial;
  background-position-x: 0px;
  background-position-y: 0px;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: initial;
  height: auto;
  padding: 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
}

.kg-video-card input[type="range"]::-webkit-slider-thumb {
  appearance: none;
}

.kg-video-card input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  cursor: pointer;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgba(255, 255, 255, 0.2);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.kg-video-card input[type="range"]::-webkit-slider-thumb {
  position: relative;
  box-sizing: content-box;
  width: 13px;
  height: 13px;
  margin: -5px 0px 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  cursor: pointer;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 0px 1px, rgba(0, 0, 0, 0.24) 0px 1px 4px;
}

.kg-video-card input[type="range"]:active::-webkit-slider-thumb {
  transform: scale(1.2);
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}

.gh-post-upgrade-cta-content, .gh-post-upgrade-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
  font-size: 16px;
}

.gh-post-upgrade-cta-content {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 40px 4vw;
}

.gh-post-upgrade-cta h2 {
  color: rgb(255, 255, 255);
  font-size: 28px;
  letter-spacing: -0.2px;
  margin: 0px;
  padding: 0px;
}

.gh-post-upgrade-cta p {
  margin: 20px 0px 0px;
  padding: 0px;
}

.gh-post-upgrade-cta small {
  font-size: 16px;
  letter-spacing: -0.2px;
}

.gh-post-upgrade-cta a {
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-weight: 500;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a:hover {
  color: rgb(255, 255, 255);
  opacity: 0.8;
  box-shadow: none;
  text-decoration-line: underline;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
}

.gh-post-upgrade-cta a.gh-btn {
  display: block;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(255, 255, 255);
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  margin: 28px 0px 0px;
  padding: 8px 18px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-size: 16px;
  font-weight: 600;
}

.gh-post-upgrade-cta a.gh-btn:hover {
  opacity: 0.92;
}