/* Health for Pets — feuille de style commune */
:root {
  --blue: #007aff;
  --orange: #ff570f;
  --ink: #1c1c1e;
  --muted: #6e6e73;
  --bg: #f7f7f9;
  --card: #ffffff;
  --line: #e5e5ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

/* En-tête */
header.site {
  background: var(--card);
  border-bottom: 1px solid var(--line);
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}

header.site img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

header.site .brand {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

header.site nav {
  margin-left: auto;
  display: flex;
  gap: 16px;
  font-size: 14px;
}

/* Contenu */
main {
  padding: 40px 0 64px;
}

h1 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

h2 {
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 36px 0 10px;
}

h3 {
  font-size: 16px;
  margin: 24px 0 6px;
}

p,
li {
  font-size: 15px;
  color: var(--ink);
}

.lead {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
}

.updated {
  font-size: 13px;
  color: var(--muted);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 18px 0;
}

.card h3 {
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.button {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  margin: 6px 8px 6px 0;
}

.button:hover {
  text-decoration: none;
  opacity: 0.9;
}

.button.secondary {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}

.note {
  background: #fff8f4;
  border: 1px solid #ffd9c7;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 12px 0;
}

th,
td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--muted);
  font-weight: 600;
}

footer.site {
  border-top: 1px solid var(--line);
  background: var(--card);
  padding: 24px 0;
  font-size: 13px;
  color: var(--muted);
}

footer.site a {
  color: var(--muted);
}

.lang {
  font-size: 13px;
}
