/* Sobha Hoskote — shared blog stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #1a1f1c; --ink-soft: #4a534d; --gold: #b08a4f; --gold-deep: #8a6a36;
  --sand: #f6f2ea; --cream: #fbf9f4; --line: #e6ddcd; --green: #2f4536; --white: #fff;
  --shadow: 0 14px 40px rgba(40,32,16,.10); --radius: 14px; --max: 1180px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.8; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, .serif { font-family: 'Cormorant Garamond', Georgia, serif; }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* HEADER */
header { position: sticky; top: 0; z-index: 100; background: rgba(251,249,244,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; letter-spacing: .04em; color: var(--ink); }
.brand span { color: var(--gold); }
.nav-links { display: flex; gap: 26px; list-style: none; font-size: .88rem; font-weight: 500; }
.nav-links a { color: var(--ink-soft); }
.nav-links a:hover { color: var(--gold-deep); text-decoration: none; }
.btn { display: inline-block; background: var(--gold); color: #fff !important; padding: 12px 26px; border-radius: 50px; font-weight: 600; font-size: .88rem; border: none; cursor: pointer; transition: .25s; box-shadow: 0 8px 22px rgba(176,138,79,.35); }
.btn:hover { background: var(--gold-deep); transform: translateY(-2px); text-decoration: none; }

/* BLOG INDEX */
.blog-hero { background: var(--green); color: #fff; padding: 76px 0 64px; text-align: center; }
.blog-hero .eyebrow { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: #e3c992; font-weight: 600; margin-bottom: 14px; }
.blog-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; line-height: 1.1; margin-bottom: 16px; }
.blog-hero p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,.85); font-weight: 300; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 26px; padding: 64px 0; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: .25s; display: flex; flex-direction: column; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-5px); }
.post-card .thumb { height: 180px; background: linear-gradient(135deg, var(--green), var(--gold-deep)); display: flex; align-items: center; justify-content: center; font-size: 2.6rem; }
.post-card .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card .tag { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 10px; }
.post-card h2 { font-size: 1.35rem; font-weight: 600; line-height: 1.25; margin-bottom: 10px; }
.post-card h2 a { color: var(--ink); }
.post-card h2 a:hover { color: var(--gold-deep); text-decoration: none; }
.post-card p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.post-card .read { font-size: .82rem; font-weight: 600; color: var(--gold-deep); margin-top: auto; }

/* ARTICLE */
.article-wrap { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.breadcrumb { font-size: .8rem; color: var(--ink-soft); padding: 26px 0 0; }
.breadcrumb a { color: var(--gold-deep); }
article { padding: 18px 0 60px; }
article h1 { font-size: clamp(2rem, 4.5vw, 2.9rem); font-weight: 600; line-height: 1.12; margin: 14px 0 16px; }
.post-meta { font-size: .85rem; color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: 22px; margin-bottom: 30px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.post-meta .dot { opacity: .5; }
article h2 { font-size: 1.7rem; font-weight: 600; line-height: 1.2; margin: 38px 0 14px; color: var(--ink); }
article h3 { font-size: 1.3rem; font-weight: 600; margin: 26px 0 10px; color: var(--gold-deep); }
article p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.02rem; }
article ul, article ol { margin: 0 0 20px 22px; color: var(--ink-soft); }
article li { margin-bottom: 9px; font-size: 1.02rem; }
article strong { color: var(--ink); }
article a { font-weight: 500; }

/* AEO/GEO answer box */
.tldr { background: #fff; border-left: 4px solid var(--gold); border-radius: 10px; padding: 22px 26px; margin: 0 0 30px; box-shadow: var(--shadow); }
.tldr .label { font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 8px; }
.tldr p { font-size: 1.06rem; color: var(--ink); margin-bottom: 0; font-weight: 400; }

/* Key takeaways */
.takeaways { background: var(--sand); border-radius: var(--radius); padding: 26px 30px; margin: 34px 0; }
.takeaways h3 { margin-top: 0; color: var(--ink); font-size: 1.3rem; }
.takeaways ul { list-style: none; margin-left: 0; }
.takeaways li { padding-left: 28px; position: relative; margin-bottom: 10px; }
.takeaways li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Tables */
.tbl { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .95rem; background: #fff; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.tbl th, .tbl td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl thead { background: var(--green); color: #fff; }
.tbl th { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }
.tbl td:first-child { font-weight: 600; color: var(--ink); }
.tbl tr:last-child td { border-bottom: none; }

/* FAQ */
.post-faq { margin: 40px 0; }
.post-faq h2 { margin-bottom: 18px; }
.qa { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; background: #fff; padding: 20px 24px; }
.qa h3 { margin: 0 0 8px; font-size: 1.12rem; color: var(--ink); }
.qa p { margin: 0; font-size: .98rem; }

/* CTA */
.cta-box { background: var(--green); color: #fff; border-radius: var(--radius); padding: 38px 40px; margin: 44px 0 10px; text-align: center; }
.cta-box h3 { color: #fff; font-size: 1.7rem; margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,.85); margin-bottom: 22px; }

/* Author / share */
.author-box { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin: 34px 0; }
.author-box .av { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--green)); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-family: serif; font-size: 1.3rem; }
.author-box b { display: block; color: var(--ink); }
.author-box span { font-size: .85rem; color: var(--ink-soft); }

/* Related */
.related { background: var(--sand); padding: 50px 0; }
.related h2 { text-align: center; font-size: 1.9rem; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.related a { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 18px 20px; font-weight: 600; color: var(--ink); transition: .2s; }
.related a:hover { border-color: var(--gold); box-shadow: var(--shadow); text-decoration: none; }

/* FOOTER */
footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 50px 0 26px; font-size: .88rem; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
footer p { color: rgba(255,255,255,.72); }
footer .brand { color: #fff; margin-bottom: 14px; }
footer h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 9px; }
footer ul a { color: rgba(255,255,255,.72); }
footer ul a:hover { color: var(--gold); }
.disclaimer { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; font-size: .74rem; line-height: 1.7; opacity: .65; }
.copyright { text-align: center; margin-top: 20px; font-size: .8rem; opacity: .6; }

.float-call { position: fixed; bottom: 22px; right: 22px; z-index: 200; background: #25D366; color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 8px 24px rgba(0,0,0,.25); transition: .25s; }
.float-call:hover { transform: scale(1.08); }

@media (max-width: 760px) {
  .nav-links { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
  article h1 { font-size: 1.9rem; }
}
