.snk-post-image {
  margin-bottom: 24px;
}
.snk-post-image img {
  width: 100%;
  max-height: 646px;
  object-fit: cover;
  aspect-ratio: 4/6;
}
.snk-post-date {
  font-size: 14px;
}
.snk-post-title {
  margin: 8px 0;
}
.snk-post-title a {
  text-decoration: none !important;
  background-image: none !important;
}
.snk-post-content {
  position: relative;
  margin-bottom: 3.5rem;
}
@media (max-width: 767.98px) {
  .snk-post-content {
    margin-bottom: 5.5rem;
  }
}
.snk-post-cta {
  position: absolute;
  left: 0;
  bottom: -4.5rem;
  background: #e0fa8a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.5s ease;
}
.snk-post-cta svg {
  width: 3.6875rem;
  height: 3.6875rem;
  color: #2f313b;
  fill: #2f313b;
  transition: transform 0.5s ease, color 0.5s ease;
}
.snk-post-cta:hover svg {
  color: var(--snk-card-bg-color);
  transform: rotate(45deg);
}
.snk-post-cta:hover svg rect {
  fill: #2f313b;
}
.snk-post-cta:hover svg g {
  color: #e0fa8a;
}
.snk-post-cta:hover svg g path {
  fill: #e0fa8a;
}

.snk-post-type {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.6s ease;
  will-change: transform, opacity;
}
@media (min-width: 1024px) {
  .snk-post-type.in-viewport {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1023.98px) {
  .snk-post-type {
    opacity: 1;
    transform: translateY(0);
  }
}