/* Nutem PVC — SEO dostu başlıklar (tüm sayfalarda) + Bilgi Merkezi */
/* text-anime-style-2 yerine kullanılır; harf harf bölünme olmaz, tek metin kalır */
.page-header__title {
    display: block;
}

/* Nutem PVC — Bilgi Merkezi / 81 İl SEO Blog */

.blog-list-page,
.blog-post {
    padding: 2rem 0 3rem;
}

.page-hero.bilgi-hero {
    text-align: center;
    margin-bottom: 2rem;
}

.page-hero.bilgi-hero h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.page-hero.bilgi-hero p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.bilgi-search {
    margin-bottom: 2rem;
}

.bilgi-search input {
    width: 100%;
    max-width: 400px;
    padding: 0.6rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.section-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.featured-section {
    margin-bottom: 2.5rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}

.cards-grid--featured {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.post-card {
    display: block;
    padding: 1.25rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.post-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.post-card--featured {
    padding: 1.5rem;
    background: #f8f9fa;
}

.card-badge {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.post-card h3,
.post-card h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.card-excerpt,
.card-iklim {
    font-size: 0.9rem;
    color: #555;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.card-link {
    font-size: 0.9rem;
    color: #0d6efd;
    font-weight: 500;
}

.region-group {
    margin-bottom: 2rem;
}

.region-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

/* ——— Blog post (show) ——— */

.blog-breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.blog-breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.blog-breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.35rem;
    color: #999;
}

.blog-breadcrumb a {
    color: #0d6efd;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
}

.post-content .post-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.post-intro {
    margin-bottom: 1.5rem;
}

.post-intro p,
.post-section p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.toc {
    background: #f8f9fa;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.toc-title {
    font-size: 1rem;
    margin: 0 0 0.75rem;
}

.toc-list {
    margin: 0;
    padding-left: 1.25rem;
}

.toc-list li {
    margin-bottom: 0.35rem;
}

.toc-list a {
    color: #0d6efd;
    text-decoration: none;
}

.toc-list a:hover {
    text-decoration: underline;
}

.post-section {
    margin-bottom: 2rem;
}

.post-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-section .faq-list {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    flex-shrink: 0;
    margin-left: 0.5rem;
    transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    background: #fafafa;
}

.faq-answer p {
    margin: 0;
    font-size: 0.95rem;
    color: #444;
}

.cta-box {
    background: #e7f1ff;
    border: 1px solid #b6d4fe;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.cta-box h3 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}

.cta-box p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cta-buttons .btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    background: #0d6efd;
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
    color: #fff;
}

.btn-secondary {
    background: #fff;
    color: #0d6efd;
    border: 1px solid #0d6efd;
}

.btn-secondary:hover {
    background: #f8f9fa;
    color: #0b5ed7;
}

/* Sidebar */

.post-sidebar {
    position: sticky;
    top: 1rem;
}

.sidebar-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.sidebar-card--cta {
    background: #e7f1ff;
    border: 1px solid #b6d4fe;
}

.card-title {
    font-size: 1rem;
    margin: 0 0 0.75rem;
}

.info-list {
    margin: 0;
}

.info-list dt {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.info-list dt:first-child {
    margin-top: 0;
}

.info-list dd {
    margin: 0.15rem 0 0;
    font-size: 0.95rem;
}

.ilce-list,
.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.ilce-list li,
.related-list li {
    padding: 0.25rem 0;
    border-bottom: 1px solid #eee;
}

.ilce-list li:last-child,
.related-list li:last-child {
    border-bottom: none;
}

.related-list a {
    color: #0d6efd;
    text-decoration: none;
}

.related-list a:hover {
    text-decoration: underline;
}

.btn--full {
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

.btn--full.mt-2 {
    margin-top: 0.5rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #0d6efd;
    color: #0d6efd;
}

.btn-outline:hover {
    background: #f8f9fa;
    color: #0b5ed7;
}
