.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: unset !important;
}
.hero .swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.hero .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero .swiper .swiper-wrapper .swiper-slide .background {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: rgba(0,0,0,0.6);
  background-blend-mode: overlay;
  filter: blur(2px);
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent {
  width: fit-content;
  max-width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent .title {
  color: #fff;
  text-align: center;
  font-size: 2.3rem;
  font-weight: 400;
  font-family: serif;
  letter-spacing: 4px;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent .description {
  display: inline-block;
  color: var(--neutralColor);
  text-align: center;
  font-size: 0.8em;
  font-family: Poppins, sans-serif;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent .description.typing {
  line-height: 0;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent span:not(.typed-cursor) {
  margin-top: 1em;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent span:not(.typed-cursor) .button {
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border: 1px solid var(--themeColor);
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  transition: 300ms ease-in-out;
  font-size: 1em;
  font-family: Poppins, sans-serif;
  color: var(--themeColor);
  background-color: transparent;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent span:not(.typed-cursor) .button:hover,
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent span:not(.typed-cursor) .button:focus-within {
  box-shadow: 0 0 20px var(--themeColor);
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent span:not(.typed-cursor) .button svg path {
  fill: var(--themeColor);
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent .scrollDown {
  --buttonMargin: 4em;
  margin-top: var(--buttonMargin);
  display: none;
  width: 3em;
  height: 5em;
  border: 1px solid var(--themeColor);
  border-radius: 1em;
  cursor: pointer;
  z-index: 2;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent .scrollDown span {
  margin: 0 auto;
  display: block;
  width: 1em;
  height: 1em;
  border-bottom: 3px solid var(--themeColor);
  border-right: 3px solid var(--themeColor);
  transform: rotate(45deg);
  animation: scroll 2s ease-in-out infinite;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent .scrollDown span:nth-child(2) {
  animation-delay: -0.2s;
}
.hero .swiper .swiper-wrapper .swiper-slide .swiperContent .scrollDown span:nth-child(3) {
  animation-delay: -0.4s;
}
@-moz-keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(100%, 100%);
  }
}
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(100%, 100%);
  }
}
@-o-keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(100%, 100%);
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(100%, 100%);
  }
}
@media screen and (orientation: landscape) {
  .hero .swiper .swiper-wrapper .swiper-slide .swiperContent .scrollDown {
    --buttonMargin: 0;
  }
}
.hero .swiper .swiper-pagination,
.hero .swiper .swiper-button-next,
.hero .swiper .swiper-button-prev {
  display: none;
  z-index: 2 !important;
  opacity: 0.3;
}
.hero .swiper .swiper-button-disabled {
  opacity: 0.15;
}
.hero .swiper .swiper-pagination {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.6em;
  width: auto;
  border-radius: 2em;
  transition: 300ms ease-in-out;
  opacity: 1;
}
.hero .swiper .swiper-pagination:hover {
  background-color: var(--hoverColor);
}
.hero .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.6em;
  height: 0.6em;
}
.hero .wave {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  transform: rotate(180deg);
  z-index: 1;
}
.hero .wave svg {
  position: absolute;
  width: 200%;
  transform: translateX(0);
}
.hero .wave svg path {
  filter: drop-shadow(0 -5px 10px var(--shadowColor));
}
.hero .wave svg.wave-1 {
  left: 0;
  animation: rightwave 120s linear infinite;
}
.hero .wave svg.wave-2 {
  right: 0;
  animation: leftwave 90s linear infinite;
}
.hero .wave svg.wave-3 {
  left: 0;
  animation: rightwave 60s linear infinite;
}
@-moz-keyframes rightwave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes rightwave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-o-keyframes rightwave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes rightwave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-moz-keyframes leftwave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
@-webkit-keyframes leftwave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
@-o-keyframes leftwave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
@keyframes leftwave {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
.recommendedArticles .recommendedContainer {
  padding: 1em;
  width: 100%;
  background-color: var(--secondaryColor);
  border-radius: 10px;
  box-shadow: 0 5px 8px rgba(0,0,0,0.15);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 1em;
}
.recommendedArticles .recommendedContainer .title {
  margin-bottom: 1em;
  word-break: normal;
  font-size: 1.5em;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  color: var(--textColor);
  font-weight: 700;
  margin-bottom: 0;
}
.recommendedArticles .recommendedContainer .postCard {
  padding: 1em;
  width: 100%;
  background-color: var(--secondaryColor);
  border-radius: 10px;
  box-shadow: 0 5px 8px rgba(0,0,0,0.15);
  padding: 0.5em;
  max-width: 15em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  overflow: hidden;
}
.recommendedArticles .recommendedContainer .postCard .postHeader {
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
  align-items: center;
}
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo {
  display: flex;
  gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
}
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .authorImage {
  width: 1.5em;
  height: 1.5em;
  border-radius: 0.75em;
}
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .authorMeta,
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .textSection {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .authorMeta .authorName,
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .textSection .authorName {
  word-break: normal;
  font-size: 0.5em;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  color: var(--themeColor);
}
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .authorMeta .publishDate,
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .textSection .publishDate,
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .authorMeta .postPeriod,
.recommendedArticles .recommendedContainer .postCard .postHeader .authorInfo .textSection .postPeriod {
  word-break: normal;
  font-size: 0.3em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
}
.recommendedArticles .recommendedContainer .postCard .postHeader .postImage {
  height: 3em;
  width: 3em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
}
.recommendedArticles .recommendedContainer .postCard .contentContainer .text {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.recommendedArticles .recommendedContainer .postCard .contentContainer .text .postTitle {
  word-break: normal;
  font-size: 0.7em;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  color: var(--textColor);
}
.recommendedArticles .recommendedContainer .postCard .contentContainer .text .postContent {
  word-break: normal;
  font-size: 0.5em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
}
.recommendedArticles .recommendedContainer .postCard .postFooter {
  display: flex;
  gap: 0.25em;
  align-items: center;
  justify-content: space-between;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .actionIcons {
  padding: 0.33em;
  display: flex;
  gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .actionIcons .actionItem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .actionIcons .actionItem .icon {
  display: flex;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .actionIcons .actionItem .icon svg {
  height: calc(var(--iconSize) / 2);
  width: calc(var(--iconSize) / 2);
}
.recommendedArticles .recommendedContainer .postCard .postFooter .actionIcons .actionItem .total {
  word-break: normal;
  font-size: 0.8em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer {
  padding: 0 1em;
  margin-bottom: 1em;
  display: flex;
  gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .icon {
  display: flex;
  align-self: flex-start;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .icon svg {
  height: calc(var(--iconSize) / 1.5);
  width: calc(var(--iconSize) / 1.5);
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .categories-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .categories-list > .categories-list-item:not(:first-child)::before {
  content: '>';
  margin: 0 0.5em 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5em;
  color: var(--textColor);
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .categories-list .categories-list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .categories-list .categories-list-item .categories-list-link {
  margin-inline-end: 0.5em;
  font-size: 0.5em;
  font-family: Poppins, sans-serif;
  color: var(--themeColor);
  text-decoration: underline;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .categories-list .categories-list-item .categories-list-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .categories-list .categories-list-item .categories-list-child .categories-list-item::before {
  content: '>';
  margin: 0 0.5em 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5em;
  color: var(--textColor);
}
.recommendedArticles .recommendedContainer .postCard .postFooter .categoriesContainer .categories-list .categories-list-count {
  font-weight: bold;
}
.postsContainer {
  padding: 2em var(--sitePadding);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: auto;
  grid-gap: 1.5em;
  justify-content: center;
  overflow: hidden;
}
.postsContainer noscript .post {
  margin: auto;
}
.postsContainer noscript .post:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.postsContainer .post {
  padding: 1em;
  width: 100%;
  background-color: var(--secondaryColor);
  border-radius: 10px;
  box-shadow: 0 5px 8px rgba(0,0,0,0.15);
  position: relative;
  max-width: 24em;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  transition: 300ms ease-in-out;
  overflow: hidden;
}
.postsContainer .post .content {
  padding: 1em;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  overflow: hidden;
}
.postsContainer .post .content > * {
  overflow: hidden;
}
.postsContainer .post .content .author {
  width: 100%;
  min-height: 10%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}
.postsContainer .post .content .author .authorinfo {
  display: flex;
  gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
}
.postsContainer .post .content .author .authorinfo .authorImage {
  width: 2.5em;
  height: 2.5em;
  border-radius: 1.25em;
}
.postsContainer .post .content .author .authorinfo .authorMeta,
.postsContainer .post .content .author .authorinfo .textSection {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
.postsContainer .post .content .author .authorinfo .authorMeta .authorName,
.postsContainer .post .content .author .authorinfo .textSection .authorName {
  word-break: normal;
  font-size: 0.7em;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  color: var(--themeColor);
}
.postsContainer .post .content .author .authorinfo .authorMeta .publishDate,
.postsContainer .post .content .author .authorinfo .textSection .publishDate,
.postsContainer .post .content .author .authorinfo .authorMeta .postPeriod,
.postsContainer .post .content .author .authorinfo .textSection .postPeriod {
  word-break: normal;
  font-size: 0.5em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
}
.postsContainer .post .content .author .categories {
  padding: 0 1em;
  margin-bottom: 1em;
  display: flex;
  gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
}
.postsContainer .post .content .author .categories .icon {
  display: flex;
  align-self: flex-start;
}
.postsContainer .post .content .author .categories .icon svg {
  height: calc(var(--iconSize) / 1.5);
  width: calc(var(--iconSize) / 1.5);
}
.postsContainer .post .content .author .categories .categories-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.postsContainer .post .content .author .categories .categories-list > .categories-list-item:not(:first-child)::before {
  content: '>';
  margin: 0 0.5em 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5em;
  color: var(--textColor);
}
.postsContainer .post .content .author .categories .categories-list .categories-list-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.postsContainer .post .content .author .categories .categories-list .categories-list-item .categories-list-link {
  margin-inline-end: 0.5em;
  font-size: 0.6em;
  font-family: Poppins, sans-serif;
  color: var(--themeColor);
  text-decoration: underline;
}
.postsContainer .post .content .author .categories .categories-list .categories-list-item .categories-list-child {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.postsContainer .post .content .author .categories .categories-list .categories-list-item .categories-list-child .categories-list-item::before {
  content: '>';
  margin: 0 0.5em 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5em;
  color: var(--textColor);
}
.postsContainer .post .content .author .categories .categories-list .categories-list-count {
  font-weight: bold;
}
.postsContainer .post .content .postTitle {
  width: 100%;
}
.postsContainer .post .content .postTitle a {
  display: inline;
  font-size: 1em;
  font-family: Poppins, sans-serif;
  color: var(--textColor);
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}
.postsContainer .post .content .postTitle a:hover,
.postsContainer .post .content .postTitle a:focus-within {
  color: var(--themeColor);
  text-decoration: underline;
}
.postsContainer .post .content .description {
  width: 100%;
}
.postsContainer .post .content .description .descriptionText {
  word-break: normal;
  font-size: 1em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
}
.postsContainer .post .content .readTimeSection {
  padding: 0 0;
  margin-bottom: margin;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.postsContainer .post .content .readTimeSection input[name="showReadTime"] {
  display: none;
}
.postsContainer .post .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeList {
  opacity: 1;
  transform: translateX(0);
}
.postsContainer .post .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea {
  background-color: var(--hoverColor);
}
.postsContainer .post .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon {
  display: flex;
}
.postsContainer .post .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon svg path {
  fill: var(--textColor);
}
.postsContainer .post .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .readTime {
  color: var(--textColor);
}
.postsContainer .post .content .readTimeSection .readTimeList {
  display: flex;
  align-items: center;
  gap: 0.7em;
  transition: 300ms ease-in-out;
  transform: translateX(1em);
  opacity: 0;
}
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text .icon {
  display: flex;
}
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text .icon svg {
  height: calc(var(--iconSize) / 2);
  width: calc(var(--iconSize) / 2);
}
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text .icon svg path {
  fill: var(--neutralColor);
}
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text .wordCount,
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text .charCount,
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text .imgCount,
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text .vidCount,
.postsContainer .post .content .readTimeSection .readTimeList .readTimeData .text .cbCount {
  word-break: normal;
  font-size: 0.6em;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.postsContainer .post .content .readTimeSection .readTimeArea {
  padding: 0.5em 1em;
  border-radius: 5px;
  cursor: pointer;
}
.postsContainer .post .content .readTimeSection .readTimeArea .text {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.postsContainer .post .content .readTimeSection .readTimeArea .text .icon {
  display: flex;
}
.postsContainer .post .content .readTimeSection .readTimeArea .text .icon svg {
  height: calc(var(--iconSize) / 2);
  width: calc(var(--iconSize) / 2);
}
.postsContainer .post .content .readTimeSection .readTimeArea .text .icon svg path {
  fill: var(--neutralColor);
}
.postsContainer .post .content .readTimeSection .readTimeArea .text .readTime {
  word-break: normal;
  font-size: 0.7em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.postsContainer .post .content .readTimeSection .readTimeArea:hover,
.postsContainer .post .content .readTimeSection .readTimeArea:focus-within {
  background-color: var(--hoverColor);
}
.postsContainer .post .content .readTimeSection .readTimeArea:hover .text .icon,
.postsContainer .post .content .readTimeSection .readTimeArea:focus-within .text .icon {
  display: flex;
}
.postsContainer .post .content .readTimeSection .readTimeArea:hover .text .icon svg path,
.postsContainer .post .content .readTimeSection .readTimeArea:focus-within .text .icon svg path {
  fill: var(--textColor);
}
.postsContainer .post .content .readTimeSection .readTimeArea:hover .text .readTime,
.postsContainer .post .content .readTimeSection .readTimeArea:focus-within .text .readTime {
  color: var(--textColor);
}
.postsContainer .post .content .tags {
  padding: 0 0;
  margin-bottom: 0;
  width: 100%;
  display: flex;
  gap: 1em;
  justify-content: flex-start;
  align-items: center;
}
.postsContainer .post .content .tags .icon {
  display: flex;
  align-self: flex-start;
}
.postsContainer .post .content .tags .icon svg {
  height: var(--iconSize);
  width: var(--iconSize);
}
.postsContainer .post .content .tags .tagsContainer {
  display: flex;
  gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.postsContainer .post .content .tags .tagsContainer .tagItem .tag {
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  border: 1px solid var(--themeColor);
  border-radius: 5px;
  cursor: pointer;
  overflow: hidden;
  transition: 300ms ease-in-out;
  font-size: 0.6em;
  font-family: Poppins, sans-serif;
  color: var(--themeColor);
  background-color: transparent;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: unset;
}
.postsContainer .post .content .tags .tagsContainer .tagItem .tag:hover,
.postsContainer .post .content .tags .tagsContainer .tagItem .tag:focus-within {
  box-shadow: 0 0 20px var(--themeColor);
}
.postsContainer .post .content .tags .tagsContainer .tagItem .tag svg path {
  fill: var(--themeColor);
}
.postsContainer .post .content .tags .tagsContainer .tagItem .tag:hover,
.postsContainer .post .content .tags .tagsContainer .tagItem .tag:focus-within {
  color: #fff;
  background-color: var(--neutralColor);
  box-shadow: unset;
}
.postsContainer .post .postImage {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.postsContainer .post .postImage a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.postsContainer .post .postImage a .background {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 16em;
  flex-grow: 1;
  transition: 300ms ease-in-out;
}
.postsContainer .post .postImage a .background:hover,
.postsContainer .post .postImage a .background:focus {
  transform: scale(1.1);
}
.postsContainer .post .postAction {
  padding: 0.25em 1em;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.postsContainer .post .postAction .actionIcons {
  padding: 0.33em;
  display: flex;
  gap: 0.5em;
  justify-content: flex-start;
  align-items: center;
}
.postsContainer .post .postAction .actionIcons .actionItem {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.postsContainer .post .postAction .actionIcons .actionItem .icon {
  display: flex;
}
.postsContainer .post .postAction .actionIcons .actionItem .icon svg {
  height: var(--iconSize);
  width: var(--iconSize);
}
.postsContainer .post .postAction .actionIcons .actionItem .total {
  word-break: normal;
  font-size: 0.8em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.postsContainer .post .postAction .postTime {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.postsContainer .post .postAction .postTime .icon {
  display: flex;
  align-items: center;
}
.postsContainer .post .postAction .postTime .icon svg {
  height: calc(var(--iconSize) * 0.6);
  width: calc(var(--iconSize) * 0.6);
}
.postsContainer .post .postAction .postTime .icon svg path {
  fill: #868688 !important;
}
.postsContainer .post .postAction .postTime .date {
  word-break: normal;
  font-size: 0.8em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.postsContainer .skeletonContainer {
  padding: 1em;
  width: 100%;
  background-color: var(--secondaryColor);
  border-radius: 10px;
  box-shadow: 0 5px 8px rgba(0,0,0,0.15);
  padding: 0;
  margin: 0 auto;
  max-width: 24em;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  overflow: hidden;
}
.postsContainer .skeletonContainer.archive {
  width: 100%;
  padding: 0.2em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  background-color: unset;
  box-shadow: unset;
}
.postsContainer .skeletonContainer.archive .skeletonDate {
  height: 0.8ch;
  width: 8ch;
  border-radius: 0.5ch;
  background-color: rgba(163,184,194,0.6);
}
.postsContainer .skeletonContainer.archive .skeletonTitle {
  --arrowLeftSpace: 8%;
  flex-grow: 1;
  padding: 0.5em;
  padding-left: var(--arrowLeftSpace);
  background-color: var(--secondaryColor);
  border-radius: 5px;
  clip-path: polygon(100% 0%, 100% 100%, var(--arrowLeftSpace) 100%, 0% 50%, var(--arrowLeftSpace) 0%);
}
.postsContainer .skeletonContainer.archive .skeletonTitle .skeleton {
  height: 0.8ch;
}
.postsContainer .skeletonContainer .skeletonHeader {
  padding: 1em;
  display: flex;
}
.postsContainer .skeletonContainer .skeletonHeader .skeletonAuthImg {
  --imageSize: 2.5em;
  width: var(--imageSize);
  height: var(--imageSize);
  margin-right: 0.5em;
  border-radius: calc(var(--imageSize) / 2);
  background-color: rgba(163,184,194,0.6);
}
.postsContainer .skeletonContainer .skeletonHeader .skeletonAuthDetails {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.postsContainer .skeletonContainer .skeletonHeader .skeletonAuthDetails .skeletonAuthName {
  display: inline-block;
  width: 15ch;
  height: 1ch;
  margin-bottom: 0.5em;
  border-radius: 5px;
  background-color: rgba(163,184,194,0.6);
}
.postsContainer .skeletonContainer .skeletonHeader .skeletonAuthDetails .skeletonPeriod {
  display: inline-block;
  width: 10ch;
  height: 0.8ch;
  border-radius: 5px;
  background-color: rgba(163,184,194,0.6);
}
.postsContainer .skeletonContainer .skeletonTitle {
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.postsContainer .skeletonContainer .skeletonTitle span {
  width: 100%;
  height: 1.4ch;
  margin-bottom: 0.5em;
  border-radius: 5px;
  background-color: rgba(163,184,194,0.6);
}
.postsContainer .skeletonContainer .skeletonTitle span:last-of-type {
  width: 80%;
  margin-bottom: 0;
}
.postsContainer .skeletonContainer .skeletonDesc {
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.postsContainer .skeletonContainer .skeletonDesc span {
  width: 100%;
  height: 1ch;
  margin-bottom: 0.5em;
  border-radius: 5px;
  background-color: rgba(163,184,194,0.6);
}
.postsContainer .skeletonContainer .skeletonDesc span:last-of-type {
  width: 80%;
  margin-bottom: 0;
}
.postsContainer .skeletonContainer .skeletonImg {
  display: inline-block;
  width: 100%;
  height: 15em;
  background-color: rgba(163,184,194,0.6);
}
.postsContainer .skeletonContainer .skeletonAction {
  padding: 0.5em 1em;
}
.postsContainer .skeletonContainer .skeletonAction .skeletonButton {
  display: inline-block;
  height: 1em;
  width: 3em;
  border-radius: 0.5em;
  background-color: rgba(163,184,194,0.6);
}
.postsContainer .skeletonContainer .skeletonAction .skeletonButton:not(:last-of-type) {
  margin-right: 0.5em;
}
.postsContainer .skeletonContainer .skeleton {
  animation: skeletonAnimation 1s linear infinite alternate;
}
@-moz-keyframes skeletonAnimation {
  0% {
    background-color: rgba(163,184,194,0.6);
  }
  100% {
    background-color: #f0f3f5;
  }
}
@-webkit-keyframes skeletonAnimation {
  0% {
    background-color: rgba(163,184,194,0.6);
  }
  100% {
    background-color: #f0f3f5;
  }
}
@-o-keyframes skeletonAnimation {
  0% {
    background-color: rgba(163,184,194,0.6);
  }
  100% {
    background-color: #f0f3f5;
  }
}
@keyframes skeletonAnimation {
  0% {
    background-color: rgba(163,184,194,0.6);
  }
  100% {
    background-color: #f0f3f5;
  }
}
@media screen and (min-width: 769px) {
  .postsContainer .skeletonContainer {
    max-width: 100%;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+1) {
    grid-column: span 2;
    grid-template-columns: 30% 1fr;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+1) .skeletonHeader {
    grid-column: 2/3;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+1) .skeletonTitle {
    grid-column: 2/3;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+1) .skeletonDesc {
    grid-column: 2/3;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+1) .skeletonImg {
    height: 100%;
    grid-row: 1/5;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+1) .skeletonAction {
    grid-column: 2/3;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+0) {
    grid-column: unset;
    grid-template-columns: repeat(1, 1fr);
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+0) .skeletonHeader {
    grid-column: unset;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+0) .skeletonTitle {
    grid-column: unset;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+0) .skeletonDesc {
    grid-column: unset;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+0) .skeletonImg {
    height: 15em;
    grid-row: unset;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+0) .skeletonAction {
    grid-column: unset;
  }
}
@media screen and (min-width: 1439px) {
  .postsContainer .skeletonContainer {
    max-width: 100%;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+3) {
    grid-column: span 2;
    grid-template-columns: 30% 1fr;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+3) .skeletonHeader {
    grid-column: 2/3;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+3) .skeletonTitle {
    grid-column: 2/3;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+3) .skeletonDesc {
    grid-column: 2/3;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+3) .skeletonImg {
    height: 100%;
    grid-row: 1/5;
  }
  .postsContainer .skeletonContainer:nth-of-type(n+3) .skeletonAction {
    grid-column: 2/3;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+2) {
    grid-column: unset;
    grid-template-columns: repeat(1, 1fr);
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+2) .skeletonHeader {
    grid-column: unset;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+2) .skeletonTitle {
    grid-column: unset;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+2) .skeletonDesc {
    grid-column: unset;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+2) .skeletonImg {
    height: 15em;
    grid-row: unset;
  }
  .postsContainer .skeletonContainer:nth-of-type(-n+2) .skeletonAction {
    grid-column: unset;
  }
}
@media screen and (min-width: 769px) {
  .postsContainer {
    grid-template-columns: repeat(2, 1fr);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(n+1) {
    grid-column: span 2;
    grid-template-columns: 30% 1fr;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(n+1) .content {
    grid-column: 2/3;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(n+1) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(n+1) .postAction {
    grid-column: 2/3;
  }
  .postsContainer[data-direction="right"] .post:nth-of-type(n+1) {
    grid-column: span 2;
    grid-template-columns: 1fr 30%;
  }
  .postsContainer[data-direction="right"] .post:nth-of-type(n+1) .content {
    grid-column: 1/2;
  }
  .postsContainer[data-direction="right"] .post:nth-of-type(n+1) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .postsContainer[data-direction="right"] .post:nth-of-type(n+1) .postAction {
    grid-column: 1/2;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+1) {
    grid-column: span 2;
    grid-template-columns: 30% 1fr;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+1) .content {
    grid-column: 2/3;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+1) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+1) .postAction {
    grid-column: 2/3;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+2) {
    grid-column: span 2;
    grid-template-columns: 1fr 30%;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+2) .content {
    grid-column: 1/2;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+2) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+2) .postAction {
    grid-column: 1/2;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0),
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0),
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) {
    padding: 1em;
    width: 100%;
    background-color: var(--secondaryColor);
    border-radius: 10px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.15);
    position: relative;
    max-width: 24em;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    transition: 300ms ease-in-out;
    overflow: hidden;
    grid-column: unset;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
    max-width: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content {
    padding: 1em;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content > *,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content > *,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content > * {
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author {
    width: 100%;
    min-height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo {
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorImage,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorImage,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorImage {
    width: 2.5em;
    height: 2.5em;
    border-radius: 1.25em;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .authorName,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .authorName,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .authorName,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .authorName,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .authorName,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .authorName {
    word-break: normal;
    font-size: 0.7em;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    color: var(--themeColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .publishDate,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .publishDate,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .publishDate,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .publishDate,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .publishDate,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .publishDate,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .postPeriod,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .postPeriod,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .authorMeta .postPeriod,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .postPeriod,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .postPeriod,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .authorinfo .textSection .postPeriod {
    word-break: normal;
    font-size: 0.5em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories {
    padding: 0 1em;
    margin-bottom: 1em;
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .icon {
    display: flex;
    align-self: flex-start;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .icon svg {
    height: calc(var(--iconSize) / 1.5);
    width: calc(var(--iconSize) / 1.5);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .categories-list,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .categories-list,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .categories-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .categories-list > .categories-list-item:not(:first-child)::before,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .categories-list > .categories-list-item:not(:first-child)::before,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .categories-list > .categories-list-item:not(:first-child)::before {
    content: '>';
    margin: 0 0.5em 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5em;
    color: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-link,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-link,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-link {
    margin-inline-end: 0.5em;
    font-size: 0.6em;
    font-family: Poppins, sans-serif;
    color: var(--themeColor);
    text-decoration: underline;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-child,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-child,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-child {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-child .categories-list-item::before,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-child .categories-list-item::before,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-item .categories-list-child .categories-list-item::before {
    content: '>';
    margin: 0 0.5em 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5em;
    color: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-count,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-count,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .author .categories .categories-list .categories-list-count {
    font-weight: bold;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .postTitle,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .postTitle,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .postTitle {
    width: 100%;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .postTitle a,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .postTitle a,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .postTitle a {
    display: inline;
    font-size: 1em;
    font-family: Poppins, sans-serif;
    color: var(--textColor);
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .postTitle a:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .postTitle a:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .postTitle a:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .postTitle a:focus-within,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .postTitle a:focus-within,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .postTitle a:focus-within {
    color: var(--themeColor);
    text-decoration: underline;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .description,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .description,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .description {
    width: 100%;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .description .descriptionText,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .description .descriptionText,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .description .descriptionText {
    word-break: normal;
    font-size: 1em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection {
    padding: 0 0;
    margin-bottom: margin;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"],
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"],
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"] {
    display: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeList,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeList,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeList {
    opacity: 1;
    transform: translateX(0);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea {
    background-color: var(--hoverColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon svg path {
    fill: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .readTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .readTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .readTime {
    color: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList {
    display: flex;
    align-items: center;
    gap: 0.7em;
    transition: 300ms ease-in-out;
    transform: translateX(1em);
    opacity: 0;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text {
    display: flex;
    align-items: center;
    gap: 0.3em;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon svg {
    height: calc(var(--iconSize) / 2);
    width: calc(var(--iconSize) / 2);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .icon svg path {
    fill: var(--neutralColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .wordCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .wordCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .wordCount,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .charCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .charCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .charCount,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .imgCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .imgCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .imgCount,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .vidCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .vidCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .vidCount,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .cbCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .cbCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeList .readTimeData .text .cbCount {
    word-break: normal;
    font-size: 0.6em;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea {
    padding: 0.5em 1em;
    border-radius: 5px;
    cursor: pointer;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text {
    display: flex;
    align-items: center;
    gap: 0.3em;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon svg {
    height: calc(var(--iconSize) / 2);
    width: calc(var(--iconSize) / 2);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .icon svg path {
    fill: var(--neutralColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .readTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .readTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea .text .readTime {
    word-break: normal;
    font-size: 0.7em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within {
    background-color: var(--hoverColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .icon,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .icon svg path,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .icon svg path {
    fill: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .readTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .readTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:hover .text .readTime,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .readTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .readTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .readTimeSection .readTimeArea:focus-within .text .readTime {
    color: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags {
    padding: 0 0;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    gap: 1em;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .icon {
    display: flex;
    align-self: flex-start;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .icon svg {
    height: var(--iconSize);
    width: var(--iconSize);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .tagsContainer,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .tagsContainer,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .tagsContainer {
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag {
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    border: 1px solid var(--themeColor);
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: 300ms ease-in-out;
    font-size: 0.6em;
    font-family: Poppins, sans-serif;
    color: var(--themeColor);
    background-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:focus-within,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:focus-within,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:focus-within {
    box-shadow: 0 0 20px var(--themeColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag svg path {
    fill: var(--themeColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:focus-within,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:focus-within,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content .tags .tagsContainer .tagItem .tag:focus-within {
    color: #fff;
    background-color: var(--neutralColor);
    box-shadow: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postImage,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postImage,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postImage {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postImage a,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postImage a,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postImage a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postImage a .background,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postImage a .background,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postImage a .background {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 16em;
    flex-grow: 1;
    transition: 300ms ease-in-out;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postImage a .background:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postImage a .background:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postImage a .background:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postImage a .background:focus,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postImage a .background:focus,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postImage a .background:focus {
    transform: scale(1.1);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction {
    padding: 0.25em 1em;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .actionIcons,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .actionIcons,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .actionIcons {
    padding: 0.33em;
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .icon svg {
    height: var(--iconSize);
    width: var(--iconSize);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .total,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .total,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .actionIcons .actionItem .total {
    word-break: normal;
    font-size: 0.8em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .postTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .postTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .postTime {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .postTime .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .postTime .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .postTime .icon {
    display: flex;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .postTime .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .postTime .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .postTime .icon svg {
    height: calc(var(--iconSize) * 0.6);
    width: calc(var(--iconSize) * 0.6);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .postTime .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .postTime .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .postTime .icon svg path {
    fill: #868688 !important;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction .postTime .date,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction .postTime .date,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction .postTime .date {
    word-break: normal;
    font-size: 0.8em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .content,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .content,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .content {
    grid-column: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postImage,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postImage,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postImage {
    height: auto;
    grid-row: unset;
    grid-column: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+0) .postAction,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+0) .postAction,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+0) .postAction {
    grid-column: unset;
  }
  .postsContainer .post {
    max-width: 100%;
  }
  .postsContainer .post:nth-of-type(n+1) {
    grid-column: span 2;
    grid-template-columns: 30% 1fr;
  }
  .postsContainer .post:nth-of-type(n+1) .content {
    grid-column: 2/3;
  }
  .postsContainer .post:nth-of-type(n+1) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .postsContainer .post:nth-of-type(n+1) .postAction {
    grid-column: 2/3;
  }
}
@media screen and (min-width: 1439px) {
  .postsContainer[data-direction="left"] .post:nth-of-type(n+3) {
    grid-column: span 2;
    grid-template-columns: 30% 1fr;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(n+3) .content {
    grid-column: 2/3;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(n+3) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(n+3) .postAction {
    grid-column: 2/3;
  }
  .postsContainer[data-direction="right"] .post:nth-of-type(n+3) {
    grid-column: span 2;
    grid-template-columns: 1fr 30%;
  }
  .postsContainer[data-direction="right"] .post:nth-of-type(n+3) .content {
    grid-column: 1/2;
  }
  .postsContainer[data-direction="right"] .post:nth-of-type(n+3) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .postsContainer[data-direction="right"] .post:nth-of-type(n+3) .postAction {
    grid-column: 1/2;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+3) {
    grid-column: span 2;
    grid-template-columns: 30% 1fr;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+3) .content {
    grid-column: 2/3;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+3) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+3) .postAction {
    grid-column: 2/3;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+4) {
    grid-column: span 2;
    grid-template-columns: 1fr 30%;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+4) .content {
    grid-column: 1/2;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+4) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 2/3;
  }
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(2n+4) .postAction {
    grid-column: 1/2;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2),
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2),
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) {
    padding: 1em;
    width: 100%;
    background-color: var(--secondaryColor);
    border-radius: 10px;
    box-shadow: 0 5px 8px rgba(0,0,0,0.15);
    position: relative;
    max-width: 24em;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    transition: 300ms ease-in-out;
    overflow: hidden;
    grid-column: unset;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
    max-width: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content {
    padding: 1em;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content > *,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content > *,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content > * {
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author {
    width: 100%;
    min-height: 10%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo {
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorImage,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorImage,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorImage {
    width: 2.5em;
    height: 2.5em;
    border-radius: 1.25em;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .authorName,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .authorName,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .authorName,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .authorName,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .authorName,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .authorName {
    word-break: normal;
    font-size: 0.7em;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    color: var(--themeColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .publishDate,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .publishDate,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .publishDate,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .publishDate,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .publishDate,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .publishDate,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .postPeriod,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .postPeriod,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .authorMeta .postPeriod,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .postPeriod,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .postPeriod,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .authorinfo .textSection .postPeriod {
    word-break: normal;
    font-size: 0.5em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories {
    padding: 0 1em;
    margin-bottom: 1em;
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .icon {
    display: flex;
    align-self: flex-start;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .icon svg {
    height: calc(var(--iconSize) / 1.5);
    width: calc(var(--iconSize) / 1.5);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .categories-list,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .categories-list,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .categories-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .categories-list > .categories-list-item:not(:first-child)::before,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .categories-list > .categories-list-item:not(:first-child)::before,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .categories-list > .categories-list-item:not(:first-child)::before {
    content: '>';
    margin: 0 0.5em 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5em;
    color: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-link,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-link,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-link {
    margin-inline-end: 0.5em;
    font-size: 0.6em;
    font-family: Poppins, sans-serif;
    color: var(--themeColor);
    text-decoration: underline;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-child,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-child,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-child {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-child .categories-list-item::before,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-child .categories-list-item::before,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-item .categories-list-child .categories-list-item::before {
    content: '>';
    margin: 0 0.5em 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5em;
    color: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-count,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-count,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .author .categories .categories-list .categories-list-count {
    font-weight: bold;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .postTitle,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .postTitle,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .postTitle {
    width: 100%;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .postTitle a,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .postTitle a,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .postTitle a {
    display: inline;
    font-size: 1em;
    font-family: Poppins, sans-serif;
    color: var(--textColor);
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .postTitle a:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .postTitle a:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .postTitle a:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .postTitle a:focus-within,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .postTitle a:focus-within,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .postTitle a:focus-within {
    color: var(--themeColor);
    text-decoration: underline;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .description,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .description,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .description {
    width: 100%;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .description .descriptionText,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .description .descriptionText,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .description .descriptionText {
    word-break: normal;
    font-size: 1em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection {
    padding: 0 0;
    margin-bottom: margin;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"],
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"],
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"] {
    display: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeList,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeList,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeList {
    opacity: 1;
    transform: translateX(0);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea {
    background-color: var(--hoverColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .icon svg path {
    fill: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .readTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .readTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection input[name="showReadTime"]:checked ~ .readTimeArea .text .readTime {
    color: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList {
    display: flex;
    align-items: center;
    gap: 0.7em;
    transition: 300ms ease-in-out;
    transform: translateX(1em);
    opacity: 0;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text {
    display: flex;
    align-items: center;
    gap: 0.3em;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon svg {
    height: calc(var(--iconSize) / 2);
    width: calc(var(--iconSize) / 2);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .icon svg path {
    fill: var(--neutralColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .wordCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .wordCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .wordCount,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .charCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .charCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .charCount,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .imgCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .imgCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .imgCount,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .vidCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .vidCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .vidCount,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .cbCount,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .cbCount,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeList .readTimeData .text .cbCount {
    word-break: normal;
    font-size: 0.6em;
    font-weight: 600;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea {
    padding: 0.5em 1em;
    border-radius: 5px;
    cursor: pointer;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text {
    display: flex;
    align-items: center;
    gap: 0.3em;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon svg {
    height: calc(var(--iconSize) / 2);
    width: calc(var(--iconSize) / 2);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .icon svg path {
    fill: var(--neutralColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .readTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .readTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea .text .readTime {
    word-break: normal;
    font-size: 0.7em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within {
    background-color: var(--hoverColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .icon,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .icon svg path,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .icon svg path {
    fill: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .readTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .readTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:hover .text .readTime,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .readTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .readTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .readTimeSection .readTimeArea:focus-within .text .readTime {
    color: var(--textColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags {
    padding: 0 0;
    margin-bottom: 0;
    width: 100%;
    display: flex;
    gap: 1em;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .icon {
    display: flex;
    align-self: flex-start;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .icon svg {
    height: var(--iconSize);
    width: var(--iconSize);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .tagsContainer,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .tagsContainer,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .tagsContainer {
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag {
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    border: 1px solid var(--themeColor);
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: 300ms ease-in-out;
    font-size: 0.6em;
    font-family: Poppins, sans-serif;
    color: var(--themeColor);
    background-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:focus-within,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:focus-within,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:focus-within {
    box-shadow: 0 0 20px var(--themeColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag svg path {
    fill: var(--themeColor);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:focus-within,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:focus-within,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content .tags .tagsContainer .tagItem .tag:focus-within {
    color: #fff;
    background-color: var(--neutralColor);
    box-shadow: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postImage,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postImage,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postImage {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postImage a,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postImage a,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postImage a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postImage a .background,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postImage a .background,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postImage a .background {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 16em;
    flex-grow: 1;
    transition: 300ms ease-in-out;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postImage a .background:hover,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postImage a .background:hover,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postImage a .background:hover,
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postImage a .background:focus,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postImage a .background:focus,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postImage a .background:focus {
    transform: scale(1.1);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction {
    padding: 0.25em 1em;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .actionIcons,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .actionIcons,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .actionIcons {
    padding: 0.33em;
    display: flex;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .icon {
    display: flex;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .icon svg {
    height: var(--iconSize);
    width: var(--iconSize);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .total,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .total,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .actionIcons .actionItem .total {
    word-break: normal;
    font-size: 0.8em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .postTime,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .postTime,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .postTime {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .postTime .icon,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .postTime .icon,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .postTime .icon {
    display: flex;
    align-items: center;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .postTime .icon svg,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .postTime .icon svg,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .postTime .icon svg {
    height: calc(var(--iconSize) * 0.6);
    width: calc(var(--iconSize) * 0.6);
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .postTime .icon svg path,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .postTime .icon svg path,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .postTime .icon svg path {
    fill: #868688 !important;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction .postTime .date,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction .postTime .date,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction .postTime .date {
    word-break: normal;
    font-size: 0.8em;
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: var(--neutralColor);
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .content,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .content,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .content {
    grid-column: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postImage,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postImage,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postImage {
    height: auto;
    grid-row: unset;
    grid-column: unset;
  }
  .postsContainer[data-direction="left"] .post:nth-of-type(-n+2) .postAction,
  .postsContainer[data-direction="right"] .post:nth-of-type(-n+2) .postAction,
  .postsContainer[data-direction="shuffle"] .post:nth-of-type(-n+2) .postAction {
    grid-column: unset;
  }
  .postsContainer .post {
    max-width: 100%;
  }
  .postsContainer .post:nth-of-type(n+3) {
    grid-column: span 2;
    grid-template-columns: 30% 1fr;
  }
  .postsContainer .post:nth-of-type(n+3) .content {
    grid-column: 2/3;
  }
  .postsContainer .post:nth-of-type(n+3) .postImage {
    height: 100%;
    grid-row: 1/3;
    grid-column: 1/2;
  }
  .postsContainer .post:nth-of-type(n+3) .postAction {
    grid-column: 2/3;
  }
}
.endOfPostsImg {
  width: 100%;
}
.endOfPostsImg .image {
  width: 100%;
  display: flex;
}
.endOfPostsImg .image svg {
  margin: 0;
  width: 100%;
}
.paginatorContainer {
  position: relative;
  padding: 0 var(--sitePadding) 1em;
  width: 100%;
}
.paginatorContainer .paginator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
}
.paginatorContainer .paginator.twoPages {
  justify-content: center;
  gap: 0;
}
.paginatorContainer .paginator.twoPages .navigateButton {
  border-radius: 5px 0 0 5px;
}
.paginatorContainer .paginator.twoPages .navigateButton:last-child {
  border-radius: 0 5px 5px 0;
}
.paginatorContainer .paginator.twoPages .navigateButton.disabled .text {
  display: none;
}
.paginatorContainer .paginator.twoPages + .scrollHint {
  display: none;
}
.paginatorContainer .paginator .navigateButton {
  padding: 0.3em;
  display: flex;
  align-items: center;
  border-radius: 5px;
  border: 1px solid var(--themeColor);
}
.paginatorContainer .paginator .navigateButton.disabled {
  border-color: var(--disabledColor);
}
.paginatorContainer .paginator .navigateButton.disabled .icon svg path {
  fill: var(--disabledColor);
}
.paginatorContainer .paginator .navigateButton.disabled .text {
  color: var(--disabledColor);
}
.paginatorContainer .paginator .navigateButton:hover:not(.disabled),
.paginatorContainer .paginator .navigateButton:focus-within:not(.disabled) {
  background-color: var(--themeColor);
}
.paginatorContainer .paginator .navigateButton:hover:not(.disabled) .icon svg path,
.paginatorContainer .paginator .navigateButton:focus-within:not(.disabled) .icon svg path {
  fill: var(--primaryColor);
}
.paginatorContainer .paginator .navigateButton:hover:not(.disabled) .text,
.paginatorContainer .paginator .navigateButton:focus-within:not(.disabled) .text {
  color: var(--primaryColor);
}
.paginatorContainer .paginator .navigateButton .icon {
  display: flex;
  padding: 0 0.3em;
}
.paginatorContainer .paginator .navigateButton .icon svg {
  height: calc(var(--iconSize) * 0.65);
  width: calc(var(--iconSize) * 0.65);
}
.paginatorContainer .paginator .navigateButton .icon svg path {
  fill: var(--themeColor);
}
.paginatorContainer .paginator .navigateButton .text {
  word-break: normal;
  font-size: 0.8em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--themeColor);
}
.paginatorContainer .paginator .pagesCount {
  --numSpaces: 0.5em;
  padding: 0 1em;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}
.paginatorContainer .paginator .pagesCount .numGroup {
  margin: 0 var(--numSpaces);
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.paginatorContainer .paginator .pagesCount .numGroup .pageNumber:not(:last-child) {
  margin-right: var(--numSpaces);
}
.paginatorContainer .paginator .pagesCount .numGroup::-webkit-scrollbar {
  height: 1px;
  background-color: var(--primaryColor);
}
.paginatorContainer .paginator .pagesCount .separator,
.paginatorContainer .paginator .pagesCount .pageNumber {
  word-break: normal;
  font-size: 1.25em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--neutralColor);
}
.paginatorContainer .paginator .pagesCount .separator.active,
.paginatorContainer .paginator .pagesCount .pageNumber.active {
  word-break: normal;
  font-size: 1.8em;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  color: var(--themeColor);
}
@media screen and (orientation: landscape) and (pointer: coarse) {
  .paginatorContainer .paginator .pagesCount {
    --numSpaces: 1em !important;
  }
}
.paginatorContainer .scrollHint {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
}
.paginatorContainer .scrollHint .scrollSect {
  display: flex;
  align-items: center;
}
.paginatorContainer .scrollHint .scrollSect .hint {
  display: flex;
}
.paginatorContainer .scrollHint .scrollSect .hint .arrow {
  display: inline-block;
  height: calc(var(--iconSize) / 6);
  width: calc(var(--iconSize) / 6);
  border-left: 1px solid var(--disabledColor);
  border-bottom: 1px solid var(--disabledColor);
  transform: rotate(45deg);
  animation: leftHint 2s ease-in-out infinite;
}
.paginatorContainer .scrollHint .scrollSect .hint .arrow:nth-child(2) {
  animation-delay: 0.2s;
}
.paginatorContainer .scrollHint .scrollSect .hint .arrow:nth-child(3) {
  animation-delay: 0.4s;
}
.paginatorContainer .scrollHint .scrollSect .hint.rightHint .arrow {
  border-right: 1px solid var(--disabledColor);
  border-top: 1px solid var(--disabledColor);
  border-left: unset;
  border-bottom: unset;
  animation-name: rightHint;
}
.paginatorContainer .scrollHint .scrollSect .hint.rightHint .arrow:nth-child(1) {
  animation-delay: 0.4s;
}
.paginatorContainer .scrollHint .scrollSect .hint.rightHint .arrow:nth-child(2) {
  animation-delay: 0.2s;
}
.paginatorContainer .scrollHint .scrollSect .hint.rightHint .arrow:nth-child(3) {
  animation-delay: 0s;
}
@-moz-keyframes leftHint {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(-100%, 100%);
  }
}
@-webkit-keyframes leftHint {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(-100%, 100%);
  }
}
@-o-keyframes leftHint {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(-100%, 100%);
  }
}
@keyframes leftHint {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(-100%, 100%);
  }
}
@-moz-keyframes rightHint {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(100%, -100%);
  }
}
@-webkit-keyframes rightHint {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(100%, -100%);
  }
}
@-o-keyframes rightHint {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(100%, -100%);
  }
}
@keyframes rightHint {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(100%, -100%);
  }
}
.paginatorContainer .scrollHint .scrollSect .text {
  word-break: normal;
  font-size: 0.6em;
  font-weight: 400;
  font-family: Poppins, sans-serif;
  color: var(--disabledColor);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
html[dir="rtl"] .postsContainer .post .content .readTimeSection .readTimeList {
  transform: translateX(-1em);
}
