.cards-list__title {
  font-size: 20px;
  line-height: normal;
  margin-top: 3rem;
}

.cards-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 94%;
  margin: 1rem auto 30px;
  align-items: center;
  max-width: 1130px;
}
.card-item {
  display: flex;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  padding: 10px;
  width: 100%;
  max-width: 364px;
  transition: box-shadow 0.3s ease;
}

.card-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card-item__image {
  width: 85px;
  height: 73px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}

.card-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-item__content {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

.card-item__link {
  color: #0072CE;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.4;
}

.card-item__link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cards-list {
    flex-direction: row;
    justify-content: space-between;
    margin: 1rem auto 60px;
  }
}