.profile-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  max-width: 180px;
}

.profile-chip img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.profile-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recommendation-section {
  width: min(1200px, calc(100% - 32px));
  margin: 32px auto;
}

@media (max-width: 774px) {
  .profile-chip span {
    display: none;
  }

  .recommendation-section {
    width: calc(100% - 20px);
    margin: 20px auto;
  }
}
