/* Recipe Tips Styling */
.recipe-tips {
  margin: 2.5rem 0;
  position: relative;
}

.recipe-tips h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gray-800);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 1.75rem;
}

.recipe-tips h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  transform: none;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ff7f32' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 13.87A4 4 0 0 1 7.41 6a5.11 5.11 0 0 1 1.05-1.54 5 5 0 0 1 7.08 0A5.11 5.11 0 0 1 16.59 6 4 4 0 0 1 18 13.87V21H6Z'%3E%3C/path%3E%3Cline x1='6' y1='17' x2='18' y2='17'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.cooking-tip {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  position: relative;
  border-left: 4px solid var(--primary-color);
}

.cooking-tip::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  line-height: 1;
  color: var(--primary-color);
  opacity: 0.15;
  font-family: Georgia, serif;
}

.cooking-tip-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--gray-300);
}

.cooking-tip p {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}

.cooking-tip p:last-child {
  margin-bottom: 0;
}

.cooking-tip ul,
.cooking-tip ol {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.cooking-tip li {
  margin-bottom: 0.5rem;
}

.cooking-tip li:last-child {
  margin-bottom: 0;
}

/* Highlighted tips */
.cooking-tip.highlighted {
  background-color: rgba(255, 127, 50, 0.05);
}

/* Multiple tips styling */
.cooking-tips-list .cooking-tip {
  margin-bottom: 1.25rem;
}

.cooking-tips-list .cooking-tip:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .recipe-tips h2 {
    font-size: 1.25rem;
  }

  .cooking-tip {
    padding: 1.25rem;
  }

  .cooking-tip-title {
    font-size: 1rem;
  }
}

/* Print styles */
@media print {
  .cooking-tip {
    border: 1px solid #ddd;
    box-shadow: none;
    break-inside: avoid;
  }

  .cooking-tip::before {
    display: none;
  }
}