/* ==========================================
   BUTTONS
   ========================================== */

/* Read more button */
.read-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: rgba(138, 43, 226, 0.3);
  color: rgb(238, 168, 255);
  border: 2px solid rgb(238, 168, 255);
  border-radius: 25px;
  font-family: "Great Vibes", cursive;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
  outline: none;
}

.read-more-btn:hover {
  background: rgba(138, 43, 226, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
}

.read-more-btn:active {
  transform: translateY(0);
}

/* Link button */
.link-button {
  background: none;
  border: none;
  color: rgb(255, 215, 0);
  text-decoration: underline;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  padding: 0;
  transition: color 0.3s ease;
}

.link-button:hover {
  color: rgb(238, 168, 255);
}
