.channels-list {
  display: grid;
  gap: 40px;
  width: min(1456px, 85%);
}

.channel-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
  color: #111;
  gap: 16px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  padding: 36px 0px;
}

.channel-item-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.channel-item-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 12px;
  background: #f9f9f9;
  border-radius: 50%;
}

.channel-item-headings {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.channel-item-heading {
  font-family: 'Sen';
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.channel-item-tagline {
  font-weight: 200;
  font-family: 'Inter';
  font-size: 14px;
  margin: 0;
}

.channel-item-desc {
  font-family: 'Inter';
  font-size: 14px;
  font-weight: 400;
  width: 80%;
  line-height: 175%;
}

.channel-item-see-more {
  outline: none;
  border: none;
  background: none;
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter';
  color: #333;
}

.channel-item-see-more.link {
  cursor: pointer;
}

.channels-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
}
