.catcard {
  --border-radius: 6px;
  --primary-color: #7257fa;
  --secondary-color: #3c3852;
  width: 210px;
  height:210px;
  font-family: "Open Sans";
  padding: 1rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  background: #f1f1f3;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
  position: relative;
  margin: 1px;  
}

@media (max-width: 992px) {
  .catcard {
  --border-radius: 6px;
  --primary-color: #7257fa;
  --secondary-color: #3c3852;
  width: 210px;
  height:210px;
  font-family: "Open Sans";
  padding: 1rem;
  cursor: pointer;
  border-radius: var(--border-radius);
  background: #f1f1f3;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
  position: relative;
  margin: 1px;  
}
}

.catcard > * + * {
  margin-top: 1.1em;
}

.catcard .catcard__content {
  color: var(--secondary-color);
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
}

.catcard .catcard__title {
  padding: 0;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.catcard .catcard__date {
  color: #6e6b80;
  font-size: 0.8rem;
}

.catcard .catcard__arrow {
  position: absolute;
  background: #6b8dae;
  padding: 0.4rem;
  border-top-left-radius: 6px;
  border-bottom-right-radius: 6px;
  bottom: 0;
  right: 0;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.catcard svg {
  transition: 0.9s;
}

/* hover */
.catcard:hover .catcard__title {  
  text-decoration: underline;
}

.catcard:hover .catcard__arrow {
  background: #587d9f;
}

.catcard:hover .catcard__arrow svg {
  transform: translateX(3px);
}