/* Estils compartits del blog de Catfy (índex + articles).
   Paleta: granat #69001b/#8b1a2e, groc #e6a800, fons #fdf8f7 (la mateixa de la landing). */
* { box-sizing: border-box; }
body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  background: #fdf8f7;
  color: #1a1c1c;
  margin: 0;
  line-height: 1.7;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 24px 64px; }
header.site {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 20px 0; margin-bottom: 8px;
  border-bottom: 1px solid rgba(139, 26, 46, 0.15);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.brand span { color: #69001b; font-weight: 800; font-size: 20px; }
.brand span em { color: #e6a800; font-style: normal; }
.app-btn {
  background: #69001b; color: #fff; font-weight: 700; font-size: 14px;
  padding: 9px 20px; border-radius: 999px; text-decoration: none;
  display: inline-flex; align-items: center; min-height: 44px;
}
.crumb { font-size: 14px; color: #8a7172; margin: 16px 0 0; }
.crumb a { color: #69001b; text-decoration: none; }
h1 { font-size: 32px; letter-spacing: -0.01em; line-height: 1.25; margin: 8px 0 6px; }
.meta { color: #8a7172; font-size: 14px; margin-bottom: 20px; }
.lead { font-size: 18px; color: #574142; margin-top: 0; }
h2 { color: #69001b; margin-top: 2em; font-size: 22px; }
h3 { color: #1a1c1c; margin-top: 1.5em; font-size: 17px; }
a { color: #69001b; }
.table-scroll { overflow-x: auto; margin: 16px 0; }
table { border-collapse: collapse; width: 100%; font-size: 15px; background: #fff; }
th, td { border: 1px solid #debfc0; padding: 8px 12px; text-align: left; vertical-align: top; }
th { background: rgba(139, 26, 46, 0.06); }
.note {
  background: rgba(230, 168, 0, 0.12); border-left: 4px solid #e6a800;
  padding: 12px 16px; border-radius: 0 8px 8px 0; font-size: 15px; margin: 20px 0;
}
.cta {
  background: rgba(105, 0, 27, 0.05); border: 1px solid #debfc0; border-radius: 16px;
  padding: 28px 24px; text-align: center; margin-top: 44px;
}
.cta p { margin: 0 0 16px; }
.cta a.button {
  display: inline-block; background: #69001b; color: #fff; font-weight: 700;
  padding: 12px 28px; border-radius: 999px; text-decoration: none;
}
/* Targetes de l'índex */
.card {
  display: block; background: #fff; border: 1px solid rgba(139, 26, 46, 0.12);
  border-radius: 16px; padding: 22px 24px; margin-top: 20px; text-decoration: none;
  color: inherit; transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: 0 12px 32px rgba(139, 26, 46, 0.14); transform: translateY(-2px); }
.card h2 { font-size: 21px; margin: 0 0 6px; }
.card p { margin: 0 0 8px; color: #574142; font-size: 15px; }
.card .meta { font-size: 13px; }
footer.site {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(139, 26, 46, 0.15);
  color: #574142; font-size: 14px;
}
footer.site a { color: #69001b; }
