/* Service card */
.service-card {
  display: grid;
  grid-template-rows: calc(250px - 48px - 30px) 48px 30px;

  height: 250px;

  background: white;
  border-radius: 5px;

  -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.service-card__img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.service-card__img > img {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
  object-fit: cover;
}

.service-card > p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 10px;
}

.service-card__meta {
  padding: 0 10px;
  gap: 6px;
  justify-content: center;
  text-decoration: none;
  align-items: center;
}

.service-card__meta > span > img {
  width: 14px;
  height: 14px;
}

.service-card__meta-img {
  align-items: center;
  gap: 4px;
  height: 14px;
}

/* Service group card */
.service-group-card {
  display: grid;
  grid-template-rows: calc(227px - 78px) 78px;

  width: 100%;
  height: 227px;

  background: white;
  border-radius: 5px;

  -webkit-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.service-group-card > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.service-group-card > div > img {
  width: 100%;
  height: 100%;
  border-radius: 5px 5px 0 0;
  object-fit: cover;
}

.service-group-card > p {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  text-decoration: none;
}

/* common */

.service-link {
  text-decoration: none;
}
