/* File: css/ys_story_emotions.css */

.ys-story-emotions {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 0;
    background: #ffffff;
    justify-content: space-evenly;
}

.ys-story-emotions::-webkit-scrollbar {
  display: none;
}

.ys-emotion-item {
  display: flex;
  align-items: center;
  gap: 10px;
  /*background: #f3f3f3;
  border-radius: 999px;*/
  padding: 4px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  flex-shrink: 0;
}

.ys-emotion-item:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

/*
.ys-emotion-item.active {
	background: #ffffff;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.08);
}
*/
.ys-emotion-icon {
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ys-emotion-count {
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	color: #222;
}

@media (max-width: 768px) {

  .ys-story-emotions {
    gap: 10px;
  }

  .ys-emotion-item {
    padding: 9px 6px;
		flex-direction: column;
  }

  .ys-emotion-icon {
    font-size: 20px;
  }

  .ys-emotion-count {
    font-size: 16px;
  }

}