#news-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  text-decoration: none;
  cursor: pointer;
}

#news-tile:hover .news-title {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: 5.5%;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

#news-tile:hover .read-more .read-more-text {
  color: #335ccc;
}

#news-tile:hover .read-more svg {
  fill: #335ccc;
}

#news-tile:active .read-more .read-more-text {
  color: #141d52;
  font-weight: 600;
}

#news-tile:active .read-more svg {
  fill: #141d52;
}

#news-tile .news-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

#news-tile .news-date {
  color: #3b485e;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

#news-tile .news-title {
  max-height: 124px;
  align-self: stretch;
  color: #2d3748;
  font-family: "FK Display";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

#news-tile .read-more {
  display: flex;
  gap: 8px;
  align-items: center;
  width: fit-content;
}

#news-tile .read-more .read-more-text {
  color: #141d52;
  font-family: Figtree;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.32px;
}

#news-tile .read-more svg {
  fill: #141d52;
  width: 12px;
  height: 12px;
}
