.resources-page .resource-download-card:first-child {
  min-height: 132px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  column-gap: 24px;
  align-items: center;
  text-align: left;
}

.resources-page .resource-download-card:first-child > span {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: start;
}

.resources-page .resource-download-card:first-child h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: start;
  margin: 0;
}

.resources-page .resource-download-card:first-child a {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  margin: 0;
}

@media (max-width: 760px) {
  .resources-page .resource-download-card:first-child {
    min-height: 190px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 18px;
    align-content: center;
  }

  .resources-page .resource-download-card:first-child > span,
  .resources-page .resource-download-card:first-child h3,
  .resources-page .resource-download-card:first-child a {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .resources-page .resource-download-card:first-child a {
    width: 100%;
    text-align: center;
  }
}
