.masters-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.masters-item {
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  line-height: 20px;
  transition: all 0.3s;
  text-decoration: none;
  color: #626262;
  border-radius: 16px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.1));
}

.masters-item:hover {
  border-color: #BD0C1E;
}

.masters-item__header {
  min-height: 70px;
  padding: 10px 20px;
  border-bottom: 1px solid #CDCDCF;
}

.masters-item__logo {
  width: 100%;
  height: 100%;
  max-height: 50px;
  object-fit: contain;
  object-position: left;
}

.masters-item__body {
  padding: 24px 20px;
}

.masters-item__type {
  margin-bottom: 16px;
}

.masters-item__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 8px;
  color: #121217;
}

.masters-item__footer {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 20px 20px;
  color: #BD0C1E;
}

.masters-list__pagination {
  opacity: 0;
  width: 0;
  height: 0;
}

.masters-list__empty{
  grid-column: span 3;
  font-size: 20px;
  text-align: center;
}

@media (max-width: 900px) {
  .masters-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
}