:root {
  --color-grey: rgb(94, 94, 94);
  --color-light-grey: rgb(150, 150, 150);
  --color-lighter-grey: rgb(202, 202, 202);
  --color-lightest-grey: rgb(235, 235, 235);
}

@font-face {
  font-family: 'Suisse Medium';
  src:
    url('/assets/fonts/suisseintl-medium-webfont.woff2') format('woff2'),
    url('/assets/fonts/suisseintl-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse';
  src:
    url('/assets/fonts/suisseintl-regular-webfont.woff2') format('woff2'),
    url('/assets/fonts/suisseintl-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Suisse Bold';
  src:
    url('/assets/fonts/suisseintl-bold-webfont.woff2') format('woff2'),
    url('/assets/fonts/suisseintl-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

::selection {
  color: white;
  background: black;
}

h2 {
  font-family: "Suisse Bold", sans-serif;
  color: black;
}

.has-cover .site-header-content {
  background-color: transparent;
}

.gh-head-menu .nav a {
  color: var(--color-grey);
  font-family: "Suisse Medium", sans-serif;
}

.dark-mode .gh-head-menu .nav a {
  color: white;
}

.has-cover .gh-head-button {
  background: black;
  color: white;
  transition: all 0.2s ease;
}

.dark-mode .has-cover .gh-head-button {
  background: white;
  color: black;
}

.has-cover .gh-head-button:hover {
  margin-top: -5px;
}

.has-cover .site-description {
  color: black;
  font-family: "Suisse", sans-serif;
  font-size: 35px;
}

.dark-mode .has-cover .site-description {
  color: white;
}

/* .has-cover :is(.site-logo,.site-title)+.site-description {
    font-size: 35px;
    margin-top: 10px;

} */

:is(.home-template,.paged:not(.tag-template):not(.author-template)).has-cover .gh-head {
  color: black;
}

.dark-mode :is(.home-template,.paged:not(.tag-template):not(.author-template)).has-cover .gh-head {
  color: white;
}

.site-logo {
  border-radius: 20%;
  max-height: 200px;
}

.rainbow,
.subscribe_c2a a:hover {
  color: transparent;
  background: linear-gradient(270deg, #1e5799, #2ce0bf, #76dd2c, #dba62b, #ff1493, #1e5799);
  animation: rainbow 180s linear infinite;
  background-size: 80% 100%;
  -webkit-background-clip: text;
  text-align: center;
}

@keyframes rainbow {
  0% { background-position-x: 0; }
  to { background-position-x: 10240px; }
}

.gh-theme-toggle {
  background-image: url('/assets/images/moon.webp');
  background-color: transparent;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
}

.dark-mode .gh-theme-toggle {
  background-image: url('/assets/images/sun.webp');
}

.gh-search svg {
  color: black;
}

.dark-mode .gh-search svg {
  color: white;
}

.post-card-clean {
  overflow: hidden;
  width: 100%;

  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  background-size: cover;
  word-break: break-word;
  margin: 0 auto;
  transition: all 1s ease;
  transition: margin-top 0.3s ease;
  max-height: 500px;
  max-width: 300px;
  margin-bottom: 50px;
}

.post-card-clean:hover {
  opacity: 85%;
  box-shadow: 0 0 30px black;
  top: -5px;
}

.sub_cat .post-card-clean:hover {
  box-shadow: 0 0 30px white;
}

.dark-mode .post-card-clean:hover {
  box-shadow: 0 0 30px black;
}

.dark-mode .post-card-clean {
  /* From https://css.glass */
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.post-card-meta {
  margin-left: 20px;
  margin-bottom: 20px;
}

.post-card-content-link {
  color: white;
  margin-left: 20px;
}

html.dark-mode .post-card-title {
  color: white;
}

html.dark-mode :is(.post-card-tags,.post-card-meta,.article-tag a,.byline-meta-content,.pagination .page-number) {
  color: var(--color-grey);
}

.post-card-primary-tag {
  color: var(--color-lighter-grey);
}

.post-card-excerpt {
  color: var(--color-light-grey);
}

.post-card-image-link {
  height: fit-content;
  width: 100%;
  min-height: fit-content;
}

.post-card-image {
  position: relative;
}

.yt-feed .post-card-image {
  position: absolute;
}

.more {
  float: right;
  transition: all 0.2s ease;
}

.more:hover {
  margin-right: 5px;
}

.more-link {
  padding: 10px;
  background-color: white;
  color: black;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 30px var(--color-grey);
}

.more-link:hover {
  background-color: black;
  color: white;
}

.dark-mode .more-link {
  background-color: black;
  color: white;
  box-shadow: 0 0 30px black;
}

.dark-mode .more-link:hover {
  background-color: white;
  color: black;
}

.sub_cat {
  padding: 50px;
  width: 100%;
  height: 100%;
  border-radius: 25px;

  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
}

/*
@media (max-width: 1150px){
    .post-feed-art {
        grid-template-columns: repeat(4,1fr);
    }
    .pagination {
        grid-column: 4;
    }
}

@media (max-width: 1920px){

    .pagination {
        grid-column: 6;
    }
}


@media (max-width: 750px){
    .post-feed-art {
        grid-template-columns: repeat(1,1fr);
    }
    .pagination {
        grid-column: 1;
        width: auto;
        margin: 0 auto;
    }
}

@media (min-width: 1920px){
    .post-feed-art {
        grid-template-columns: repeat(8,1fr);
    }

    .pagination {
        grid-column: 8;
    }

} */

.gh-head {
  position: relative;
  z-index: 999;
}

.has-cover:not(.home-template) .gh-head {
  background-color: unset;
}

.gh-head-logo img {
  border-radius: 10px;
}

.pagination {
  display: block;
  width: 100%;
  height: fit-content;
  height: 100px;
}

.pagination a {
  background-color: black;
  width: fit-content;
  border-radius: 45px;
  padding: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  height: fit-content;
  float: right;
  margin-left: 20px;
  display: block;
  text-align: left;
  color: white;
}

.pagination .page-number{
  position: absolute;
  right: 80px;
  margin-top: 60px;
}

.pagination .older-posts {
  position: absolute;
  margin-top: 0;
  right: 60px;
}

.pagination .newer-posts {
  position: absolute;
  margin-top: 0;
  right: 230px;
}

@media (max-width: 767px) {
  .pagination .page-number {
      display: block;
      right: 20px;
  }

  .pagination .older-posts {
    right: 10px;
  }
  
  .pagination .newer-posts {
    right: 180px;
  }
}

@media (max-width: 475px) {
  .pagination {
    width: 200px;
  }

  .pagination .page-number {
    margin-top: 120px;
  }

  .pagination .older-posts {
    right: 10px;
    margin-top: 60px;
  }

  .pagination .newer-posts {
    right: 10px;
  }
}

.gh-head-link {
  color: black;
}

.dark-mode .gh-head-link {
  color: white;
}

h1 {
  font-size: 5em;
  font-family: "Suisse", sans-serif;
  margin-bottom: 0;
  width: 100%;
  border-bottom: 1px dashed white;
  color: white;
}

.custom-page-h1 {
  padding-left: 10%;
  color: black;
  margin-top: 50px;
  width: 100%;
  border-bottom: 1px dashed var(--color-grey);
}

.dark-mode .custom-page-h1 {
  color: white;
}

.gh-canvas .article-image img {
  max-height: 80vh;
  width: auto;
  border-radius: 25px;
}

.inner {
  max-width: unset;
}

.video-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* min-height: 100%; */
}

.post-feed-index {
  width: 100%;
  overflow-y: hidden;
  display: inline-flex;
  overflow-x: hidden;
  gap: unset;
}

.sub_cat article {
  min-width: 300px;
  margin-right: 30px;
  margin-left: 0;
  position: relative;
}

.post-card-excerpt {
  padding-right: 20px;
}

.sub_cat h2 {
  color: white;
}

.sub_cat .post-card-excerpt {
  color: var(--color-lightest-grey);
  padding-bottom: 20px;
}

.post-feed-art {
  display: flex;
  flex-wrap: wrap;
  padding-left: 70px;
  padding-right: 70px;
  gap: 20px;
  margin: 0 auto;
}

.post-feed-art .post-card-clean {
  min-width: 300px;
  margin-bottom: 0;
  margin-top: 50px;
  margin-left: 0;
  margin-right: 0;
}

.subscribe_c2a {
  background-color: black;
  border-radius: 25px;
  padding: 20px;
  max-width: 500px;
  margin-left: 30px;

  /* margin-top: 30px; */
  padding-bottom: 40px;
  float: left;
}

.subscribe_c2a p {
  margin-bottom: 70px;
}

.subscribe_c2a a {
  color: white;
  font-family: "Suisse Medium", sans-serif;
  font-size: 3em;
}

.site-header-inner {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.is-head-left-logo.home-template .gh-head:not(.is-header-hidden) .gh-head-menu {
  margin-left: 0;
}

@media (max-width: 840px) {
  .site-header-inner {
    display: block;
  }

  .subscribe_c2a {
    margin-top: 20px;
    margin-left: 0;
  }

  .site-header-content {
    margin-top: 50px;
  }
}

.article-title {
  border-bottom: 1px dashed black;
}

.dark-mode .article-title {
  border-bottom: 1px dashed white;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  max-width: 850px;
  margin: 0 auto;
  gap: 10px;
  margin-bottom: 100px;
}

.socials p {
  float: right;
  margin-right: 30px;
  font-family: "Suisse Medium", sans-serif;
  font-size: 4em;
  position: absolute;
  right: 0;
  bottom: 25px;
  color: white;
}

.socials > a > div {
  padding-top: 5px;
  position: relative;
  width: 400px;
  height: 300px;
  border-radius: 25px;
  transition: all 1s ease;
}

.socials img {
  margin-left: 20px;
  margin-top: 10px;
  padding: 10px;

  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.youtube {
  background: rgb(255, 0, 0);
  background: linear-gradient(120deg, rgba(255, 0, 0, 1) 0%, rgba(124, 0, 0, 1) 100%);
}

.socials > a > .youtube-hover {
  margin-left: 50px;
  margin-top: 50px;
  width: 350px;
  height: 250px;
}

.socials > a > .twitter-hover {
  margin-right: 50px;
  margin-top: 50px;
  width: 350px;
  height: 250px;
}

.socials > a > .instagram-hover {
  margin-left: 50px;
  margin-bottom: 50px;
  width: 350px;
  height: 250px;
}

.socials > a > .links-hover {
  margin-right: 50px;
  margin-bottom: 50px;
  width: 350px;
  height: 250px;
}

.twitter {
  background: rgb(29, 155, 240);
  background: linear-gradient(120deg, rgba(29, 155, 240, 1) 0%, rgba(0, 69, 115, 1) 100%);
}

.instagram {
  background: rgb(91, 81, 216);
  background: linear-gradient(120deg, rgba(91, 81, 216, 1) 0%, rgba(131, 58, 180, 1) 33%, rgba(193, 53, 132, 1) 66%, rgba(245, 96, 64, 1) 100%);
}

.links {
  background: rgb(158, 0, 252);
  background: linear-gradient(120deg, rgba(158, 0, 252, 1) 0%, rgba(0, 213, 255, 1) 100%);
}

.links img {
  border-radius: 25px;
}

.site-footer {
  height: 350px;
  padding: 0;
  max-height: 320px;
  overflow: hidden;
}

.site-footer .inner {
  border-radius: 25px;
  background-color: black;
  height: 350px;
  padding: 30px;
  display: inline-flex;
}

.dark-mode .site-footer .inner {
  background-color: white;
}

.site-footer a {
  color: white;
}

.dark-mode .site-footer a {
  color: black;
}

.dark-mode .author-list-item svg {
  background-color: white;
}

.shop-feed .post-card-title {
  margin-bottom: 20px;
}

.yt-feed .post-card-title {
  padding-right: 10px;
}

.site-footer h1 {
  color: white;
  font-size: 2em;
  border-bottom: 1px dotted white;
  margin-bottom: 20px;
  width: fit-content;
}

.site-footer h1 a {
  font-size: 1em;
}

.dark-mode .site-footer h1 {
  color: black;
  border-bottom: 1px dotted black;
}

.site-footer-nav a {
  display: block;
  font-size: 1.3em;
  margin-left: 0;
  width: fit-content;
}

.site-footer-nav ul a:hover {
  border-bottom: 1px dashed white;
}

.dark-mode .site-footer-nav ul a:hover {
  border-bottom: 1px dashed black;
}

.site-footer ul {
  justify-content: left;
  display: block;
  list-style: none;
  list-style-type: none;
}

.site-footer li {
  display: block;
}

.site-footer-nav {
  display: inline-flex;
}

.site-footer-nav > div {
  margin-right: 100px;
  width: 150px;
}

.footer_logo {
  width: 50vw;
}

.footer_logo img {
  background-color: white;
  border-radius: 25px;
  margin: 0 auto;
}

.site-footer-nav li:not(:first-child) a::before {
  background: none;
}

.footer_socials {
  margin-left: 50px;
}

@media (max-width: 1330px) {
  .footer_logo {
    display: none;
  }

  .site-footer-nav {
    margin: 0 auto;
  }
}

@media (max-width: 800px) {
  .site-footer-nav {
    display: block;
  }

  .site-footer {
    height: 920px;
    max-height: 890px;
  }

  .site-footer .inner {
    height: 920px;
    max-width: 100%;
  }

  .footer_socials {
    margin-left: 0;
  }

  .site-footer-nav > div {
    margin-top: 50px;
  }
}

@media (max-width: 830px) {
  .socials {
    display: block;
    margin-top: 100px;
    width: 220px;
  }

  .socials > a > div {
    margin: 0 auto;
    margin-top: 0;
    background: transparent;
    width: 100px;
    height: 100px;
    display: inline-block;
  }

  .socials p {
    display: none;
  }

  .socials img {
    padding: 0;
    background: transparent;
  }
}

@media (max-width: 767px) {
  .site-logo {
    max-width: unset;
  }
}

.outer {
  padding: 0;
}

.sub {
  padding: 50px;
}

.deep-space-cat {
  position: relative;
  padding: 50px;
}

.deep-space-cat img {
  position: relative;
  z-index: -1;
  min-height: 80vh;
  object-fit: cover;
  border-radius: 15px;
}

.deep-space {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  width: 50%;
  height: fit-content;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: black;
  border-radius: 25px;
  padding: 20px;
}



.dark-mode .deep-space {
  background: rgba(0, 0, 0, 0.3);
}

.deep-space button {
  border-radius: 15px;
  background-color: white;
  bottom: 20px;
  width: 50%;
  font-size: 1.4em;
  padding: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 0 0 black;
  margin-top: 50px;
  margin-bottom: 10px;
}

.deep-space button:hover {
  background-color: black;
  color: white;
  box-shadow: 0 0 20px black;
}

.dark-mode .deep-space {
  color: black;
}

.dark-mode .deep-space button {
  background-color: black;
  color: white;
}

.deep-space p {
  color: white;
  width: 80%;
  margin: 0 auto;
}

.dark-mode .deep-space button:hover {
  background-color: white;
  color: black;
}

@media (max-width: 1250px) {
  .deep-space {
    width: 70%;
    padding-left: 0;
    padding-right: 0;
  }
}


@media (max-width: 400px) {
  .deep-space-cat img {
    min-height: 90vh;
  }
}

.gh-burger {
  margin-left: 20px;
  margin-right: 30px;
}

.has-cover .gh-burger::after,
.has-cover .gh-burger::before {
  background-color: black;
}

.dark-mode .has-cover .gh-burger::after,
.dark-mode .has-cover .gh-burger::before {
  background-color: white;
}

.gh-head-actions {
  margin-right: 20px;
}

.gh-head-logo {
  margin-left: 20px;
}

@media (max-width: 767px) {
  #gh-head .gh-head-brand .gh-search {
    position: absolute;
    left: 80px;
  }

  .home-template #gh-head .gh-head-brand .gh-search {
    left: 60px;
  }

  #gh-head .gh-head-button {
    width: 80%;
  }

  .gh-head-open.has-cover #gh-head,
  .gh-head-open.has-cover #gh-head .gh-head-actions {
    background-color: white;
    overflow-y: hidden scroll;
  }

  .dark-mode .gh-head-open.has-cover #gh-head,
  .dark-mode .gh-head-open.has-cover #gh-head .gh-head-actions {
    background-color: black;
  }

  #gh-head .gh-head-brand .gh-search {
    right: 60px;
  }

  .gh-head-menu .nav a {
    color: black;
  }

  .dark-mode .gh-head-menu .nav a {
    color: white;
  }

  .gh-head-actions {
    margin-right: 0;
  }

  .has-cover .gh-head-button:hover {
    margin-top: 0;
  }
}

@media (max-width: 3640px) {
  .post-feed-art {
    width: calc((300px*10) + (20px*10) + (74px+70px));
  }
}

@media (max-width: 3320px) {
  .post-feed-art {
    width: calc((300px*9) + (20px*9) + (74px+70px));
  }
}

@media (max-width: 3000px) {
  .post-feed-art {
    width: calc((300px*8) + (20px*8) + (74px+70px));
  }
}

@media (max-width: 2680px) {
  .post-feed-art {
    width: calc((300px*7) + (20px*7) + (74px+70px));
  }
}

@media (max-width: 2360px) {
  .post-feed-art {
    width: calc((300px*6) + (20px*6) + (74px+70px));
  }
}

@media (max-width: 2040px) {
  .post-feed-art {
    width: calc((300px*5) + (20px*5) + (74px+70px));
  }
}

@media (max-width: 1720px) {
  .post-feed-art {
    width: calc((300px*4) + (20px*4) + (74px+70px));
  }
}

@media (max-width: 1400px) {
  .post-feed-art {
    width: calc((300px*3) + (20px*3) + (74px+70px));
  }
}

@media (max-width: 1080px) {
  .post-feed-art {
    width: calc((300px*2) + (20px*2) + (74px+70px));
  }
}

@media (max-width: 760px) {
  .post-feed-art {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .sub {
    padding: 40px;
  }

  .sub_cat article {
    margin-right: 0;
  }
  .post-feed-art {
    gap: 0;
    padding: 0;
  }
}

@media (max-width: 535px) {
  .subscribe_c2a {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 20px;
    float: unset;
  }
}

@media (max-width: 400px) {
  .subscribe_c2a a {
    font-size: 2em;
  }

  .socials p {
    font-size: 2em;
  }
}

.home-template .shop-feed {
  display: flex;
}

.ty-glass {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  height: fit-content;
  border-radius: 25px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.dark-mode .ty-glass {
  /* From https://css.glass */
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ty-glass p {
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.ty-glass p a {
  color: white;
  border-bottom: 1px dashed white;
}

.dark-mode .ty-glass p a {
  color: white;
  font-weight: bold;
}

.ty-glass .more {
  width: fit-content;
  margin: 0 auto;
  float: none;
  margin-top: 50px;
}

.yt-feed .post-card-clean {
  min-width: 533px;
}

.img-bg {
  display: none;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.img-bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: blur(10px);
}

@media (max-width: 800px) {
  .img-bg {
    display: block;
  }

  .video-bg {
    display: none;
  }

  .post-feed {
    display: block;
  }

  .post-feed .post-card-clean {
    margin: 0 auto;
    margin-bottom: 30px;
    min-width: 100%;
  }

  .more {
    margin-top: 50px;
  }

  .post-card-image {
    position: relative;
  }
}

@media (max-width: 650px) {
  .sub_cat h1 {
    font-size: 4em;
  }

  .sub_cat {
    padding: 20px;
  }
}

@media (max-width: 450px) {
  .custom-page-h1 {
    font-size: 3em;
  }

  .post-feed-art .post-card-clean {
    width: 90%;
    max-width: 300px;
  }

  .post-card-content {
    height: fit-content;
    margin-bottom: 10px;
  }

  .post-feed h2 {
    font-size: 1em;
    padding-right: 10px;
  }

  .post-feed .post-card-excerpt {
    font-size: 0.9em;
  }

  .sub_cat h1 {
    font-size: 2.5em;
  }

  .yt-feed .post-card-image-link::after {
    content: "";
    padding-bottom: 55%;
  }
}

@media (max-width: 1600px) and (min-width: 800px) {
  .yt-feed .post-card-clean {
    scale: 0.7;
    margin-left: -60px;
    margin-right: -60px;
  }

  .yt-feed .post-card-excerpt {
    font-size: 1.3em;
  }
}

@media (max-width: 750px) {
  .post-card-image-link {
    height: auto;
    min-height: auto;
  }
}

html.dark-mode img {
  opacity: 1;
}

/* .post-card-excerpt {
  margin-left: 90px;
} */

@media (max-width: 795px) { 
  .post-feed-art .post-card-clean {
    margin: 0 auto;
    margin-top: 50px;
  }
}

.blender-shortcuts .site-content li {
  margin-top: 30px;
  line-height: 2.1em;
}

.blender-shortcuts .site-content li a {
  background-color: #dfdfdf;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid black;
  border-bottom: 5px solid black;
  text-decoration: none;
  transition: border-bottom .2s;
}

.dark-mode .blender-shortcuts .site-content li a {
  background-color: #383838;
  border: 1px solid white;
  border-bottom: 5px solid white;
}

.blender-shortcuts .site-content li a:hover {
  border-bottom: 1px solid black;
}

.dark-mode .blender-shortcuts .site-content li a:hover {
  border-bottom: 1px solid white;
}

.tips-cat .video-bg {
  background: rgb(158,0,252);
  background: linear-gradient(120deg, rgba(158,0,252,1) 0%, rgba(255,0,80,1) 100%);
}

.yt-cat .video-bg {
  background: rgb(0,213,255);
  background: linear-gradient(120deg, rgba(0,213,255,1) 0%, rgba(158,0,252,1) 100%);
}

.shop-cat .video-bg {
  background: rgb(0,252,116);
  background: linear-gradient(120deg, rgba(0,252,116,1) 0%, rgba(0,213,255,1) 100%);
}

.art-cat .video-bg {
  background: rgb(196,0,252);
  background: linear-gradient(120deg, rgba(196,0,252,1) 0%, rgba(0,255,160,1) 100%);
}

.yt-sub-1 .video-bg {
  background: rgb(131,58,180);
  background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(252,176,69,1) 100%);
}

.yt-sub-2 .video-bg {
  background: rgb(252,176,69);
  background: linear-gradient(90deg, rgba(252,176,69,1) 0%, rgba(180,58,96,1) 100%);
}

.yt-sub-3 .video-bg {
  background: rgb(180,58,96);
  background: linear-gradient(120deg, rgba(180,58,96,1) 0%, rgba(0,96,252,1) 100%);
}

/* :is(.tag-template,.author-template) .post-feed {
  display: flex;
} */

.tag-tips-and-tricks .post-feed .post-card-clean {
  min-width: 533px;
  margin-left: 10%;
}

@media (max-width: 1200px) { 
  .tag-tips-and-tricks .post-feed .post-card-clean {
    min-width: unset;
  }
}

.inner.posts .pagination {
  padding-left: 70px;
  padding-right: 70px;
}

.post-card.post-card-large .post-card-image-link .post-card-image {
  border-radius: 50px;
  padding: 35px;
}

:is(.tag-template,.author-template) .post-card-excerpt {
  padding-left: 0;
  height: fit-content;
  overflow: visible;
  display: block;
}

.post-card-image {
  background: none;
}

.post-card-large {
  width: 100vw;
  grid-template-columns: unset;
}

.kg-video-card video {
  width: auto;
  max-height: 80vh;
}

@media (max-width: 800px) {

  .home-template .shop-feed {
    display: block;
  }
}