/* Roshni's Yog Studio — blog styles (shared) */
:root {
  --cream: #F6F1E7; --sand: #EAE0CE; --sage: #8A9B7C; --forest: #4A5D43;
  --terra: #B4713F; --ink: #2A2622; --charcoal: #1C1A17;
  --line: rgba(42,38,34,0.16);
  --font: 'Jost', system-ui, sans-serif;
  --font-head: 'Cormorant Garamond', Georgia, serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: var(--font); font-weight: 300; color: var(--ink);
  background: var(--cream); line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
.bnav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.8rem clamp(1.25rem, 5vw, 6rem);
  border-bottom: 1px solid var(--line);
  background: rgba(246,241,231,0.94); position: sticky; top: 0; z-index: 10;
}
.bnav a { text-decoration: none; color: var(--ink); }
.bnav__logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-size: 1.05rem; letter-spacing: 0.06em; }
.bnav__logo img { width: 40px; height: 40px; }
.bnav__logo em { font-style: normal; color: var(--terra); }
.bnav__cta {
  background: linear-gradient(135deg, var(--terra), #C98B57); color: #FFF8EC;
  padding: 0.55rem 1.2rem; border-radius: 999px; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
main { max-width: 46rem; margin: 0 auto; padding: 3.5rem 1.25rem 5rem; }
.crumb { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; margin-bottom: 1.6rem; }
.crumb a { color: var(--terra); text-decoration: none; }
h1 { font-family: var(--font-head); font-weight: 600; font-size: clamp(2rem, 5.5vw, 3rem); line-height: 1.12; margin-bottom: 0.9rem; }
.byline { font-size: 0.88rem; opacity: 0.75; margin-bottom: 2.4rem; }
.byline b { color: var(--forest); font-weight: 500; }
article h2 { font-family: var(--font-head); font-weight: 600; font-size: 1.7rem; margin: 2.4rem 0 0.8rem; }
article h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; margin: 1.8rem 0 0.5rem; }
article p { margin-bottom: 1.1rem; }
article ul, article ol { margin: 0 0 1.2rem 1.4rem; }
article li { margin-bottom: 0.45rem; }
article blockquote {
  font-family: var(--font-head); font-style: italic; font-size: 1.25rem; color: var(--forest);
  border-left: 3px solid var(--terra); padding-left: 1.1rem; margin: 1.6rem 0;
}
.callout {
  background: var(--sand); border-radius: 12px; padding: 1.2rem 1.4rem; margin: 1.8rem 0;
  border: 1px solid var(--line);
}
.callout a { color: var(--terra); font-weight: 500; }
.faq h3 { font-family: var(--font); font-weight: 500; font-size: 1.05rem; color: var(--forest); margin-top: 1.4rem; }
.author {
  display: flex; gap: 1rem; align-items: center; margin-top: 3.5rem;
  background: var(--sand); border-radius: 14px; padding: 1.3rem 1.4rem; border: 1px solid var(--line);
}
.author img { width: 56px; height: 56px; border-radius: 50%; }
.author p { font-size: 0.92rem; margin: 0; }
.postlist { list-style: none; margin: 0; display: grid; gap: 1.2rem; }
.postlist a {
  display: block; text-decoration: none; color: var(--ink);
  background: #FDFBF6; border: 1px solid var(--line); border-radius: 14px;
  padding: 1.5rem 1.6rem; transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.postlist a:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(42,38,34,0.12); }
.postlist h2 { font-family: var(--font-head); font-weight: 600; font-size: 1.45rem; margin-bottom: 0.4rem; }
.postlist p { font-size: 0.95rem; opacity: 0.85; }
.postlist small { color: var(--terra); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.7rem; }
.bfooter {
  background: var(--charcoal); color: var(--cream); text-align: center;
  padding: 2.6rem 1.25rem; font-size: 0.85rem;
}
.bfooter a { color: var(--cream); }
.bfooter .motto { font-family: var(--font-head); color: var(--terra); font-size: 1.05rem; margin-bottom: 0.8rem; }
