/* Guides hero gradient */
.guides-hero { background: linear-gradient(135deg, #1A6B5A 0%, #2D9B6B 100%); }

/* Guide card colored top-border accent */
.guide-card { border-top: 4px solid transparent; }
.guide-card-primary { border-top-color: #58BB48; }   /* herbal green */
.guide-card-flavor  { border-top-color: #F5A523; }   /* citrus orange */
.guide-card-sensory { border-top-color: #9B6BAB; }   /* floral purple */

/* Guide card icon square */
.guide-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* Resource card */
.resource-card {
  background: white;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: box-shadow 0.15s, border-color 0.15s;
  text-decoration: none;
}
.resource-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  border-color: #D1D5DB;
}
.resource-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
