/* Recipe Blog Card — warm & vibrant + inline citation styling */
.my-recipe-card {
  --bg: #fff7f0;
  --accent: #ff6b35;
  --accent-2: #ffa62b;
  --text: #2a2a2a;
  --muted: #6b7280;
  background: linear-gradient(180deg, var(--bg), #fff);
  border: 2px solid rgba(255,107,53,0.15);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(255, 107, 53, 0.12), 0 4px 10px rgba(0,0,0,0.06);
  margin: 28px 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}
.my-recipe-card .mrc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.my-recipe-card .mrc-title {
  font-size: 1.25rem; font-weight: 800;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.my-recipe-card .mrc-print {
  border: none; border-radius: 9999px;
  padding: 8px 14px; font-weight: 700;
  background: var(--accent);
  color: #fff; cursor: pointer;
  box-shadow: 0 8px 14px rgba(255,107,53,0.35);
  transition: transform .06s ease, box-shadow .2s ease;
}
.my-recipe-card .mrc-print:hover { transform: translateY(-1px); box-shadow: 0 10px 18px rgba(255,107,53,0.45); }

.my-recipe-card .mrc-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.my-recipe-card .mrc-meta > div {
  background: #fff;
  border: 1px solid rgba(255,166,43,0.25);
  border-radius: 12px; padding: 10px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(255,166,43,0.12);
}
.my-recipe-card .mrc-meta span { color: #6b7280; font-size: .82rem; display: block; }
.my-recipe-card .mrc-meta strong { font-size: 1.05rem; }

.my-recipe-card .mrc-columns {
  display: grid; gap: 18px;
  grid-template-columns: 1fr 1fr;
}
.my-recipe-card .mrc-col {
  background: #fff;
  border: 1px solid rgba(255,166,43,0.25);
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 16px rgba(255,166,43,0.14);
}
.my-recipe-card h4 {
  margin: 0 0 8px 0;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .2px;
}
.my-recipe-card .mrc-list,
.my-recipe-card .mrc-steps {
  margin: 0; padding-left: 18px;
}
.my-recipe-card .mrc-notes {
  margin-top: 14px;
  background: linear-gradient(180deg, #fff2e8, #fff);
  border: 1px dashed rgba(255,107,53,0.35);
  padding: 12px; border-radius: 12px;
}

@media (max-width: 720px) {
  .my-recipe-card .mrc-meta { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .my-recipe-card .mrc-columns { grid-template-columns: 1fr; }
}
.my-recipe-featured { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 12px 24px rgba(0,0,0,.08); margin-bottom: 14px; }
.my-recipe-summary { background:#fff; border:1px solid rgba(255,166,43,0.25); padding:10px 12px; border-radius:12px; margin: 14px 0; }
.my-recipe-toc { background:#fff; border:1px solid rgba(255,166,43,0.25); padding:10px 12px; border-radius:12px; margin: 16px 0; }
.my-recipe-toc ul { margin:6px 0 0 20px; }

/* Inline citation style inside text */
.mrc-cite { color: #6b7280; font-size: .9em; }
.mrc-cite a { color: #ff6b35; text-decoration: underline; }
