  @media screen and (min-width: 768px) {
  .plant-card__container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; } }

.plant-card__card {
  display: flex;
  flex-direction: row;
  margin-bottom: 25px; }
  @media screen and (min-width: 768px) {
    .plant-card__card {
      padding-right: 25px;
      flex: 0 0 50%; } }
  @media screen and (min-width: 1024px) {
    .plant-card__card {
      flex: 0 0 33.333%; } }
  @media screen and (min-width: 1200px) {
    .plant-card__card {
      flex: 0 0 25%; } }

.plant-card__image {
  height: 90px;
  margin-right: 25px;
  max-width: 90px;
  overflow: hidden;
  width: 90px; }
  .plant-card__image img {
    display: block;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%; }

.plant-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(100% - 115px); }

.plant-card__common-name,
.plant-card__scientific-name,
.plant-card__link {
  font-weight: 600;
  line-height: 1;
  font-size: 1rem; }

.plant-card__common-name {
  margin-bottom: 8px; }

.plant-card__link {
  color: #018375;
  text-decoration: none; }
  .plant-card__link:hover, .plant-card__link:focus {
    text-decoration: underline; }
