.tfmg-sitelinks {
  display: grid;
  gap: 18px;
}

.tfmg-sitelink {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.tfmg-sitelink:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.tfmg-sitelink__media {
  width: 180px;
  aspect-ratio: 16 / 9;
  background: #f3f3f3;
  overflow: hidden;
}

.tfmg-sitelink__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tfmg-sitelink__body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.tfmg-sitelink__description {
  color: #555;
  line-height: 1.55;
}

.tfmg-sitelink__description > :last-child {
  margin-bottom: 0;
}

.tfmg-sitelink__action {
  justify-self: end;
}

.tfmg-sitelink__button,
.tfmg-sitelink__button:visited {
  border-color: #d8642c;
  background-color: #d8642c;
  color: #fff;
}

.tfmg-sitelink__button:hover,
.tfmg-sitelink__button:focus {
  border-color: #bf5523;
  background-color: #bf5523;
  color: #fff;
}

@media (max-width: 767.98px) {
  .tfmg-sitelink {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tfmg-sitelink__media {
    width: 100%;
  }

  .tfmg-sitelink__action {
    justify-self: start;
  }
}
