a.component-card-post-type {
  padding: 0px;
  overflow: hidden;
  display: block;
  position: relative;
  padding-bottom: 40px;
  width: 100%;
  cursor: pointer;
}
a.component-card-post-type.card-arrow {
  padding-bottom: inherit;
}
a.component-card-post-type.card-arrow .card-content .cta-container {
  display: none !important;
}
a.component-card-post-type.card-arrow:hover .title:after {
  transform: translateX(5px) translateY(-5px);
}
a.component-card-post-type.card-arrow:hover .card-image img {
  transform: scale(1.04);
}
a.component-card-post-type.card-arrow .title {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: start;
}
a.component-card-post-type.card-arrow .title h4 {
  width: calc(100% - 50px);
}
a.component-card-post-type.card-arrow .title:after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9ImFycm93X291dHdhcmQiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNOC4xMjUgNi44NzVWOS4zNzVIMTguODYyNUw2Ljg3NSAyMS4zNjI1TDguNjM3NSAyMy4xMjVMMjAuNjI1IDExLjEzNzVWMjEuODc1SDIzLjEyNVY2Ljg3NUg4LjEyNVoiIGZpbGw9IndoaXRlIi8+CjwvZz4KPC9zdmc+Cg==");
  background-position: center;
  background-size: contain;
  height: 30px;
  width: 30px;
  transition: 0.25s ease-in-out;
}
a.component-card-post-type .card-image {
  background-color: var(--primary);
  overflow: hidden;
  aspect-ratio: 16/9;
}
a.component-card-post-type .card-image img {
  transition: all 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
a.component-card-post-type.hidden {
  display: none;
}
a.component-card-post-type .card-content {
  padding: 20px;
  width: 100%;
  position: static;
  color: white;
}
a.component-card-post-type .card-content .labels {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
a.component-card-post-type .card-content .label {
  width: fit-content;
  top: 16px;
  left: 16px;
  z-index: 4;
  background-color: var(--background-primary);
  color: var(--primary);
  padding: 8px 16px;
  border: 1px solid #323A44;
  border-radius: 999px;
  line-height: 16px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: var(--spacing-s);
}
a.component-card-post-type .card-content .title {
  margin-bottom: var(--spacing-s);
}
a.component-card-post-type .card-content .title h4 {
  margin: 0px;
}
a.component-card-post-type .card-content .cta-container {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
a.component-card-post-type .card-content .cta-container span {
  color: var(--primary);
  font-weight: 500;
}