/* Recent Recipes sidebar: card list with thumbnail, title and excerpt (soft card) */
/* Sidebar widget: blend with page bg instead of solid white */
.recipes-widget {
  background: transparent !important;
  padding: 16px;
  border-radius: 12px;
  box-shadow: none !important;
  border: 1px solid rgba(15, 23, 42, 0.02) !important;
}

.recipes-widget h4 {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: var(--rcard3-primary);
  font-weight: 700;
}

.recipes-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.recipes-item {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: 10px;
  transition: box-shadow 0.12s ease, transform 0.08s ease;
  background: transparent;
}

.recipes-item:hover {
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.06);
  transform: translateY(-2px);
}

.recipes-thumb {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
  flex: 0 0 84px;
}

.recipes-meta {
  font-size: 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.recipes-title {
  font-weight: 700;
  margin: 0;
  color: #0b1220;
  font-size: 0.95rem;
}

.recipes-by {
  color: #6b7280;
  font-size: 0.85rem;
  max-height: 3.4rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Responsive: Tablet and below */
@media (max-width: 880px) {
  .recipes-widget {
    order: 2;
    width: 100% !important;
  }

  .recipes-thumb {
    width: 64px;
    height: 52px;
  }

  .recipes-item {
    padding: 8px;
  }
}
