.post-card {
  box-shadow: 0 2.8px 16px 0 rgba(0, 0, 0, 0.08),
    0 14px 98px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 150ms ease;
}

.post-card__body {
  padding: 30px 40px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--white-c);
}

.post-card__description {
  margin-top: 30px;
}

.post-card__description,
.post-card__title {
  color: var(--text-c);
}

.post-card__link {
  display: block;
  margin-top: 32px;
  color: var(--bondi-c);
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 700;
  transition: all 150ms ease;
}

.post-card__link::before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.post-card:hover .post-card__link {
  color: var(--blue-c);
}

.post-card__link svg * {
  transition: all 150ms ease;
}

.post-card:hover .post-card__link svg path:first-child {
  fill: var(--blue-c);
}

.post-card:hover .post-card__link svg path:last-child {
  stroke: var(--blue-c);
}

.post-card:hover {
  box-shadow: 0 2.8px 16px 0 rgba(0, 0, 0, 0.08);
}

.post-card__description--wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

@media (max-width: 768px) {
  .post-card__link {
    margin-top: 30px;
  }

  .post-card__body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
