.diary-card {
  max-width: 41.625rem;
  position: relative;

  @media (width > 666px) {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 20.125rem 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  a {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}

.diary-card__image {
  width: 100%;

  img {
    border-radius: 2.8125rem;
    margin-bottom: 2rem;
    border: 0.375rem solid #F0F4FD;
    aspect-ratio: 306 / 316;
    object-fit: cover;
    width: 100%;
    box-shadow: var(--shadow-large);

    @media (width > 666px) {
      margin-bottom: 0;
    }

    @media (width > 760px) {
      border-radius: 3.75rem;
      border: 0.5rem solid #F0F4FD;
    }
  }
}

.diary-card__date {
  font-size: 1.25rem;
  line-height: 1.1;
  font-family: "DIN Next LT Pro Medium Condensed";
  font-weight: 500;
  margin-bottom: 12px;
}

.diary-card__title h2,
.diary-card__title h3,
.diary-card__title h4 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.diary-card__content,
.diary-card__content p {
  line-height: 1.35;
  font-size: 1.25rem;
}