.links-page {
  min-height: 100vh;
  padding: 42px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary);
}

.links-card {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

.links-home {
  display: inline-block;
  margin-bottom: 28px;
  font-family: "Source Serif 4", 'Times New Roman', Times, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}

.links-author-image {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
}

.links-title {
  margin: 0;
  font-family: "Source Serif 4", 'Times New Roman', Times, serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
}

.links-subtitle {
  margin: 6px 0 30px;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: var(--white);
  opacity: 70%;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.links-list a {
  display: block;
  padding: 14px 20px;
  border: 2px solid var(--white);
  border-radius: 5px;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--primary);
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.links-list a:hover {
  background-color: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.links-footer-link {
  display: inline-block;
  margin-top: 30px;
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  opacity: 70%;
}

.links-footer-link:hover {
  opacity: 100%;
}

@media screen and (min-width: 768px) {
  .links-page {
    padding: 60px 24px;
  }

  .links-title {
    font-size: 46px;
  }

  .links-list a {
    font-size: 22px;
  }
}