/* ===== Blog detail page + extra block variants (Ayşegül Baktimur) ===== */
.post-hero { padding: 130px 0 60px; background: linear-gradient(180deg, var(--color-bg-cream) 0%, #fff 100%); border-bottom: 1px solid var(--color-border); }
.post-hero .container { max-width: 880px; }
.post-hero .meta-row { display: flex; gap: 14px; align-items: center; font-size: 12px; color: var(--color-primary); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; flex-wrap: wrap; }
.post-hero .cat-tag { background: var(--color-accent); color: #fff; padding: 4px 14px; border-radius: 50px; }
.post-hero h1 { color: var(--color-primary-dark); font-size: clamp(34px, 4.6vw, 52px); margin-bottom: 16px; }
.post-hero p.lede { font-size: 18px; color: var(--color-text-muted); line-height: 1.75; max-width: 720px; }

.post-cover { padding: 30px 0 0; }
.post-cover .container { max-width: 1100px; }
.post-cover img { width: 100%; aspect-ratio: 16/7; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

.post-body { padding: 70px 0 80px; }
.post-body .container { max-width: 820px; }
.post-body h2 { font-size: clamp(26px, 3vw, 36px); margin: 38px 0 14px; color: var(--color-primary-dark); }
.post-body h3 { font-size: 22px; margin: 26px 0 10px; color: var(--color-primary); }
.post-body p { font-size: 17px; line-height: 1.85; color: var(--color-text); margin: 14px 0; }
.post-body ul, .post-body ol { margin: 14px 0 18px 22px; }
.post-body li { font-size: 16.5px; line-height: 1.8; color: var(--color-text); margin-bottom: 8px; }
.post-body li strong { color: var(--color-primary-dark); }
.post-body .divider { display: block; width: 60px; height: 2px; background: var(--color-accent); margin: 36px auto; border: 0; }
.post-body .callout { background: var(--color-bg-cream); border-left: 4px solid var(--color-accent); padding: 22px 28px; border-radius: 12px; margin: 28px 0; font-size: 15.5px; color: var(--color-text-muted); line-height: 1.8; }
.post-body .callout strong { color: var(--color-primary-dark); }

.post-aside { background: var(--color-bg-cream); padding: 70px 0; border-top: 1px solid var(--color-border); }
.post-aside .container { max-width: 1100px; }
.post-aside .head { text-align: center; margin-bottom: 36px; }
.post-aside h2 { font-size: 28px; color: var(--color-primary-dark); }
.post-aside .related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-aside .related-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.post-aside .related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-aside .related-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.post-aside .related-card .body { padding: 18px 20px 22px; }
.post-aside .related-card .cat { font-size: 11px; color: var(--color-accent); font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 6px; }
.post-aside .related-card h3 { font-family: var(--font-heading); font-size: 18px; color: var(--color-primary-dark); line-height: 1.3; }
@media (max-width: 900px) { .post-aside .related-grid { grid-template-columns: 1fr; } }

.blog-grid-full { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-grid-full .blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; display: flex; flex-direction: column; }
.blog-grid-full .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-grid-full .blog-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.blog-grid-full .blog-card .body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-grid-full .blog-card .cat { font-size: 11px; color: var(--color-accent); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.blog-grid-full .blog-card h3 { font-family: var(--font-heading); font-size: 22px; color: var(--color-primary-dark); line-height: 1.3; margin-bottom: 10px; }
.blog-grid-full .blog-card p { color: var(--color-text-muted); font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 14px; }
.blog-grid-full .blog-card .more { color: var(--color-primary); font-weight: 600; font-size: 13px; border-bottom: 1px solid var(--color-accent); padding-bottom: 2px; align-self: flex-start; }
@media (max-width: 900px) { .blog-grid-full { grid-template-columns: 1fr; gap: 22px; } }

.approach-section { padding: 110px 0; background: var(--color-bg-cream); }
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 50px; }
.approach-card { background: #fff; padding: 32px 26px; border-radius: var(--radius); border: 1px solid var(--color-border); position: relative; }
.approach-card .step-num { font-family: var(--font-heading); font-size: 56px; font-weight: 400; color: var(--color-accent); line-height: 1; margin-bottom: 12px; }
.approach-card h3 { color: var(--color-primary-dark); font-size: 19px; margin-bottom: 8px; font-family: var(--font-heading); }
.approach-card p { color: var(--color-text-muted); font-size: 14.5px; line-height: 1.7; }
@media (max-width: 900px) { .approach-grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 600px) { .approach-grid { grid-template-columns: 1fr; } }

.values-section { padding: 110px 0; background: var(--color-bg); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.value-card { background: #fff; padding: 38px 32px; border-radius: var(--radius); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.value-card .v-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--color-accent-light); color: var(--color-primary-dark); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.value-card h3 { color: var(--color-primary-dark); margin-bottom: 12px; font-family: var(--font-heading); font-size: 22px; }
.value-card p { color: var(--color-text-muted); font-size: 15px; line-height: 1.85; }
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }

.topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.topic-pill { background: #fff; padding: 22px 26px; border-radius: 14px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 16px; transition: transform .2s; border: 1px solid var(--color-border); }
.topic-pill:hover { transform: translateY(-3px); border-color: var(--color-accent); }
.topic-pill .icon { width: 44px; height: 44px; border-radius: 50%; background: var(--color-accent-light); color: var(--color-primary-dark); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.topic-pill .label { font-family: var(--font-heading); font-size: 18px; color: var(--color-primary-dark); }
@media (max-width: 900px) { .topics-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .topics-grid { grid-template-columns: 1fr; } }

.quote-band { padding: 90px 0; background: var(--color-bg-cream); text-align: center; }
.quote-band blockquote { max-width: 760px; margin: 0 auto; font-family: var(--font-heading); font-size: clamp(24px, 3vw, 34px); font-weight: 500; color: var(--color-primary-dark); line-height: 1.4; font-style: italic; }
.quote-band cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--font-body); font-size: 14px; color: var(--color-text-muted); letter-spacing: 0.16em; text-transform: uppercase; }
.quote-band .arabic { font-family: 'Amiri', 'Scheherazade', serif; font-size: 28px; color: var(--color-primary); margin-bottom: 14px; line-height: 1.6; direction: rtl; }

.split-band { padding: 100px 0; background: #fff; }
.split-band .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-band.reverse .container > div:first-child { order: 2; }
.split-band img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-band h2 { color: var(--color-primary-dark); margin-bottom: 14px; }
.split-band p { color: var(--color-text-muted); font-size: 16px; line-height: 1.85; margin: 12px 0; }
.split-band ul { list-style: none; margin-top: 18px; }
.split-band li { display: flex; align-items: start; gap: 12px; font-size: 15px; color: var(--color-text); margin-bottom: 10px; line-height: 1.7; }
.split-band li i { color: var(--color-accent); flex-shrink: 0; margin-top: 5px; font-size: 14px; }
@media (max-width: 900px) { .split-band .container { grid-template-columns: 1fr; gap: 40px; } .split-band.reverse .container > div:first-child { order: 0; } }

/* Hero variant (full-width banner with overlay text) */
.banner-hero { position: relative; min-height: 580px; display: flex; align-items: center; padding: 120px 0 80px; color: #fff; overflow: hidden; }
.banner-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(31,90,64,0.86) 0%, rgba(46,125,91,0.55) 70%, rgba(46,125,91,0.2) 100%); z-index: 1; }
.banner-hero .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.banner-hero .container { position: relative; z-index: 2; max-width: 1180px; }
.banner-hero h1 { color: #fff; max-width: 820px; }
.banner-hero h1 .accent { color: var(--color-accent-light); font-style: italic; }
.banner-hero .hero-sub { color: rgba(255,255,255,0.92); max-width: 600px; }
.banner-hero .hero-badge { background: rgba(255,255,255,0.18); color: #fff; }
.banner-hero .hero-notes span { color: rgba(255,255,255,0.85); }
.banner-hero .hero-notes i { color: var(--color-accent-light); }

/* hide social with empty/# href */
footer .social-row a[href=""], footer .social-row a:not([href]),
footer .social-row a[href="#"] { display: none; }

/* Mobile: prevent horizontal overflow from off-screen fixed nav */
html, body { overflow-x: hidden; max-width: 100vw; }
@media (max-width: 900px) {
  .nav-links { width: 84% !important; }
}

/* Home blog section: "View all" CTA below the layout */
.blog-section .blog-more { text-align: center; margin-top: 40px; }
