/* Table image Component */
/* Media query breakpoints */
.table-image {
  display: flex;
  align-items: center;
  max-width: 996px;
  width: 100%;
  height: auto;
  margin-bottom: -1px;
  padding: 15px 0;
  background-color: var(--white);
  border-bottom: solid 1px var(--blue200);
  border-top: solid 1px var(--blue200);
}
.table-image__content {
  display: flex;
  align-items: center;
}
.table-image__content-left {
  width: 60px;
  height: 60px;
  margin-right: 24px;
}
.table-image__content-left img {
  max-width: 60px;
  height: auto;
  width: 100%;
}
.table-image__content-right {
  max-width: calc(100% - 84px);
  width: 100%;
}
.table-image__text {
  margin: 5px;
  color: var(--blue500);
  font-size: 1rem;
  line-height: 1.75rem;
}
.table-image__text .title {
  color: var(--blue500);
  font-weight: 700;
}
.table-image__text a {
  color: var(--info);
  font-family: "Prelo book", sans-serif;
  font-weight: bold;
  text-decoration: underline;
}
.table-image__text a:hover {
  color: var(--blue-hover);
  text-decoration: none;
}
.table-image:hover {
  background-color: var(--darkGrayishBlue100);
}
/*# sourceMappingURL=table-image.css.map */
