/* Hidden Gem Alert Styles */
.hidden-gem-alert {
  padding: 1.5rem;
  background: #fff9e6; /* Softer yellow for a premium feel */
  border-left: 6px solid #f97b5f; /* Subtle accent line */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s;
}

.hidden-gem-alert-content {
  text-align: left; /* Align content to the left for a clean layout */
}

.hidden-gem-alert-content .handwriting {
  font-size: 2rem;
  color: #f97b5f;
  font-weight: 600;
  line-height: 1.3;
}

.hidden-gem-alert-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
  color: #2a2a2a;
}

.hidden-gem-alert-content p {
  font-size: 1rem;
  color: #525252; /* Neutral text color for body */
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.hidden-gem-alert .btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #ff6b6b; /* Vibrant call-to-action */
  color: white;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.hidden-gem-alert .btn-discover:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.hidden-gem-alert .btn-discover i {
  font-size: 1rem;
}
