.diary-card {
  position: relative;

  a {
    text-decoration: none !important;
    color: var(--Alias-Secondary-500) !important;
  }

  a:hover {

    h2,
    h3,
    h4,
    h5 {
      color: var(--Alias-Primary-500);
    }

    img {
      box-shadow: 0 0 34px 0 rgba(106, 122, 147, 0.6);
    }
  }
}

.diary-card__image {
  margin-bottom: 1.25rem;

  @media screen and (min-width: 1024px) {
    margin-bottom: 1.5rem;
  }

  img {
    border-radius: 1rem;
    aspect-ratio: 460 / 320;
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    box-shadow: 0 0 34px 0 rgba(106, 122, 147, 0);
    transition: 0.3s;
  }
}

.diary-card__title {

  h2,
  h3,
  h4,
  h5 {
    font-size: var(--heading-sm-font-size);
    line-height: var(--heading-sm-line-height);
    letter-spacing: var(--heading-sm-letter-spacing);
    margin-bottom: 0.75rem;
    transition: 0.3s;

    @media screen and (min-width: 1440px) {
      font-size: var(--heading-xsm-font-size);
      line-height: var(--heading-xsm-line-height);
      letter-spacing: var(--heading-xsm-letter-spacing);
      margin-bottom: 1rem;
    }
  }
}

.diary-card__content {
  @media screen and (min-width: 1440px) {
    padding: 0 0.75rem;
  }
}

.diary-card__exerpt {
  font-weight: normal !important;

  span {
    color: var(--Alias-Secondary-500) !important;
    font-family: var(--font-family) !important;
    font-size: 1.25rem !important;
    font-weight: normal !important;
  }
}