.thoughts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thoughts-header {
  width: 100%;
  height: 60px;
  border-radius: 16px;
  border: 1px solid var(--dark-color-10);
  background-color: var(--dark-color-60);
  padding: 12px 12px 12px 24px;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  font-family: "Kaushan Script", cursive;
  font-weight: 400;
  font-size: 18px;
  color: var(--white-color);
  display: flex;
}

.view-all {
  width: fit-content;
  height: 36px;
  border-radius: 8px;
  padding: 8px 18px;
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark-pink-90);
  background: none;
  transition: all 0.2s ease-in-out;
  display: flex;
  gap: 8px;
  text-decoration: none;
}

.view-all:hover {
  background-color: var(--dark-pink-10);
  transition: all 0.2s ease-in-out;
}

.thoughts-content {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 16px;
  border: 1px solid var(--dark-color-10);
  background-color: var(--dark-color-60);
  padding: 24px;
}

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

.thoughts-item-header{
  font-family: "Geist", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--white-color);
}

.thoughts-item-info{
  font-family: "Geist", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--white-color-70);
  display: flex;
  gap: 6px;

  .thoughts-item-dot{
    color: var(--white-color-20);
  }
}