/* hero for recommend */
.recommendation-hero {
  background: linear-gradient(270deg, #7f42a7, #5300a0);
  background-size: 400% 400%;
  animation: backgroundLoop 6s ease infinite;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.recommendation-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.recommendation-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: white;
  margin: 1rem auto 1.5rem auto;
  border-radius: 2px;
}

.recommendation-hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* Main Recommend Section */
.recommendation-section {
  padding: 4rem 2rem;
  text-align: center;
  background: #fff;
}

.recommendation-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #5300a0;
}

.recommendation-section p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
  align-items: left;
}

.recommendation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.recommendation-grid-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.recommend-card {
  background: linear-gradient(135deg, #f5f5ff, #eeeaff);
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 2rem;
  text-align: flex;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommend-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #5300a0;
}
.recommend-card p {
  font-size: 1.02rem;
  color: #555;
  line-height: 1.6;
}

.recommend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

@keyframes backgroundLoop {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


@media (max-width: 768px) {
  .recommendation-hero-content h1 {
    font-size: 2.2rem;
  }
}

/* Recommend with 2 option */
.notes-grid {
  max-width: 1300px;
  margin: 3rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 2fr));
  gap: 3rem;
  
}

.note-group {
  background-color: #eeeaff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-left: 5px solid #5300a0;
}

.note-group h2 {
  margin-bottom: 1rem;
  color: #5300a0;
  font-size: 1.5rem;
}

.note-group ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.note-group li {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}

.note-group li strong {
  color: #000;
}

.notes-blindbuy footer{
  margin-top: 5rem;
}

@media (max-width: 768px) {
  .notes-grid {
    grid-template-columns: 1fr; 
    padding: 0 1rem;
    gap: 2rem;
  }

  .note-group {
    padding: 1.5rem;
  }

  .note-group h2 {
    font-size: 1.3rem;
  }

  .note-group li {
    font-size: 0.95rem;
  }
}
