.c-card-testimonial__text:before,
.kg-blockquote-alt:before,
blockquote:before {
  content: "„" !important;
}

.c-card-testimonial__text:after {
  content: "“" !important;
}

.c-card-testimonial__text,
.kg-blockquote-alt,
blockquote {
  font-size: 26px !important;
}

@media (max-width: 640px) {
  .c-card-testimonial__text,
  .kg-blockquote-alt,
  blockquote {
    font-size: 22px !important;
  }
}

/* POST CARD */

.post-card {
  width: 30%;
  display: flex;
  flex-direction: column;
}
.post-card__image-box {
  height: 300px;
  overflow: hidden;
}

.post-card__image-box:hover img {
  transform: scale(1.05);
}

.post-card__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;

  transition: all 0.4s;
}
.post-card__title {
  margin: 5px 0 20px;
  font-size: 28px;

  transition: all 0.2s;
}
.post-card__title:hover {
  color: rgba(0, 0, 0, 0.6);
}
.post-card__tags {
  margin-top: 10px;
  width: max-content;
  color: rgba(0, 0, 0, 0.5);
}
.post-card__tags a {
  border-bottom: 1px solid transparent;
  font-size: 18px;

  transition: all 0.2s;
}
.post-card__tags a:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.post-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}
.post-card__read-more {
}
.post-card__date {
}

/* BLOG PAGE */

.post-feed {
  margin: 0 auto;
  max-width: 1280px;
  display: flex;
  padding: 0 24px;

  flex-wrap: wrap;

  gap: 30px;
}

@media (max-width: 1080px) {
  .post-card {
  }

  .post-card__image-box {
    height: 200px;
  }
}

@media (max-width: 1024px) {
  .post-feed {
    column-gap: 0;
    justify-content: space-between;
  }

  .post-card {
    width: 48%;
  }

  .post-card__image-box {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .post-card {
    width: 100%;
  }

  .post-card__image-box {
    height: 400px;
  }
}

@media (max-width: 400px) {
  .post-card__image-box {
    height: 300px;
  }
}

.c-page-header .o-grid {
  align-items: center;
}

/* TOC Styles */

.post-page {
  position: relative;
}

.post-page > article.c-content {
  position: relative;
  z-index: 1;
}

.toc-sidebar {
  margin: 0;
  padding: 0;
  position: absolute;
  left: 2rem;
  width: 20rem;
  top: 0;
  height: 100%;
  z-index: 0;
}

.toc-sidebar h2 {
	display: none;
}

.toc-sidebar > .gh-toc {
  position: sticky;
  top: 2rem;
}

.toc-sidebar > .gh-toc::before {
  background-color: #eee;
  content: " ";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  width: 2px;
}

.toc-sidebar ul,
.toc-sidebar ol {
  list-style-type: none;
}

.gh-toc a {
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  padding-left: 10px;
  display: inline-block;
}

.gh-toc .is-active-link::before {
	background-color: #000;
}

.gh-toc a:hover {
  text-decoration: underline;
}

/* .gh-toc .toc-list {
	padding-left: 20px;
} */

.gh-toc ol {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  padding: 0;
}

.gh-toc li > ol {
  margin-top: 6px;
}

.gh-toc li > ol a {
  padding-left: 20px;
}

@media (max-width: 1440px) {
  .gh-toc a {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .toc-sidebar {
    width: 15rem;
  }
}

@media (max-width: 1280px) {
  .toc-sidebar {
    left: 24px;
  }

  .gh-toc a {
    font-size: 16px;
  }

  .gh-toc ol {
    row-gap: 4px;
  }

  .gh-toc li > ol {
    margin-top: 4px;
  }

  /* .gh-toc .toc-list {
		padding-left: 12px;
	} */
}

@media (max-width: 1240px) {

	.gh-toc {
		margin: 1rem 0 2rem;
	}

  .toc-sidebar {
    margin: 0;
    padding: 0;
    position: static;
    left: unset;
    width: 100%;
    top: unset;
    height: max-content;
    z-index: 1;

	margin: 0 auto;
    padding: 0 var(--grid-margin);
    max-width: var(--content-width);
  }

  .toc-sidebar h2 {
	display: block;
}
}
