.channel-main {
  width: 100%;
  height: 100%;
  display: block;
}
.channel-main .channel-content {
  padding: 0 1rem;
}
.channel-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
  .channel-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-item {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  border-bottom: 0.1em solid #ccc;
  padding: 1em;
  gap: 0.5em;
  text-decoration: none;
  box-sizing: border-box;
}

.grid-item .image {
  width: 100%;
  aspect-ratio: 5 / 7;
  overflow: hidden;
}
.grid-item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease-in-out;
}
.grid-item:hover .image img {
  transform: scale(1.1);
}

.grid-item .name {
  width: 100%;
  height: 2rem;
  color: #fff;
  font-size: 1em;
  line-height: 2rem;
  text-align: left;
  color: #5c5c5c;
}
.grid-item .surname {
  color: rgba(6, 62, 115, 1);
  font-size: 0.8em;
}
.grid-item .major {
  color: rgba(200, 117, 240, 1);
  font-size: 0.8em;
  font-weight: bold;
}
.grid-item .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 0.8em;
  color: #767676;
}