/* Chidya Udd blog — basic, mobile-first stylesheet.
   Shared by every post so you never copy-paste styling. */

:root {
  --blue: #3596CB;
  --blue-dark: #2b7ba8;
  --sky: #C1EDFF;
  --sky-light: #E2F7FF;
  --ink: #16323f;
  --muted: #5a7683;
  --maxw: 680px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: 'Anek Devanagari', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sky-light);
}

/* ---------- Header ---------- */
.site-header {
  background: var(--blue);
  padding: 14px 20px;
}
.site-header a.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--maxw);
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  font-family: 'Bakbak One', system-ui, sans-serif;
  font-size: 20px;
  letter-spacing: .5px;
}
.site-header img { height: 30px; width: auto; display: block; }

/* ---------- Layout ---------- */
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px 20px 40px;
  background: #fff;
}
@media (min-width: 720px) {
  main { margin: 24px auto; border-radius: 14px; box-shadow: 0 6px 24px rgba(21,50,63,.08); }
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: 'Bakbak One', system-ui, sans-serif;
  line-height: 1.25;
  color: var(--ink);
  margin: 1.4em 0 .5em;
}
h1 { font-size: 30px; margin-top: .2em; }
h2 { font-size: 23px; }
h3 { font-size: 19px; }
p, ul, ol { margin: 0 0 1em; }
a { color: var(--blue-dark); }
.meta { color: var(--muted); font-size: 15px; margin-top: -.4em; }
hr { border: none; border-top: 1px solid var(--sky); margin: 2em 0; }

/* ---------- Images (drop a <figure> anywhere) ---------- */
figure {
  margin: 1.5em 0;
}
figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
figcaption {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

/* ---------- Play CTA ---------- */
.cta {
  margin: 2.2em 0 .5em;
  padding: 22px;
  background: var(--sky-light);
  border: 2px solid var(--sky);
  border-radius: 14px;
  text-align: center;
}
.cta p { margin: 0 0 14px; font-weight: 600; }
.btn {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-family: 'Bakbak One', system-ui, sans-serif;
  font-size: 18px;
  padding: 13px 28px;
  border-radius: 40px;
}
.btn:active { transform: translateY(1px); }

/* ---------- Post list (index) ---------- */
.post-list { list-style: none; padding: 0; margin: 1em 0 0; }
.post-list li { margin: 0 0 22px; }
.post-list a { font-family: 'Bakbak One', system-ui, sans-serif; font-size: 20px; text-decoration: none; }
.post-list p { margin: 4px 0 0; color: var(--muted); font-size: 16px; }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 26px 20px 40px;
  color: var(--muted);
  font-size: 14px;
}
.site-footer a { color: var(--muted); }
