/* ========== GENEL BLOG SAYFASI ========== */

.blog-page {
    padding-top: 120px;
    padding-bottom: 80px;
}

.blog-article {
    max-width: 860px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e9f0;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 32px 26px 32px;
}

.blog-article-header {
    margin-bottom: 26px;
}

.blog-kicker {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0f6ab8;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-title {
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    line-height: 1.2;
    font-weight: 800;
    color: #0b1120;
    margin-bottom: 14px;
}

.blog-intro {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 18px;
}

/* Meta bilgileri */

.blog-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: #64748b;
    border-left: 3px solid rgba(15, 106, 184, 0.4);
    padding-left: 12px;
}

.blog-meta-item {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-meta-label {
    font-weight: 600;
    color: #1f2933;
}

.blog-meta-value {
    color: #4b5563;
}

/* İçerik gövdesi */

.blog-content {
    margin-top: 24px;
}

.blog-section {
    margin-bottom: 32px;
}

.blog-heading {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 10px;
}

.blog-subheading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-top: 16px;
    margin-bottom: 6px;
}

.blog-section-intro {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-content p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 10px;
}

.blog-content p:last-child {
    margin-bottom: 0;
}

/* Listeler */

.blog-list {
    list-style: none;
    padding-left: 0;
    margin: 8px 0 12px;
}

.blog-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 0.96rem;
    color: #4b5563;
}

.blog-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #0f6ab8;
    font-size: 1rem;
}

/* Tablo */

.blog-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e5e9f0;
    background: #f9fafb;
    margin-top: 14px;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
    font-size: 0.9rem;
}

.blog-table thead {
    background: #0f172a;
    color: #f9fafb;
}

.blog-table th,
.blog-table td {
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.blog-table th {
    font-weight: 700;
    font-size: 0.88rem;
}

.blog-table tbody tr:nth-child(even) {
    background: #eef2f7;
}

.blog-table tbody tr:nth-child(odd) {
    background: #f9fafb;
}

.blog-table tbody tr:hover {
    background: #e0edf9;
}

/* Info box */

.info-box {
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 14px;
    border: 1px solid #fee2e2;
    background: #fef2f2;
}

.info-box--warning {
    border-color: #fee2e2;
    background: #fef2f2;
}

.info-box-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 6px;
}

.info-box-text {
    font-size: 0.9rem;
    color: #7f1d1d;
    line-height: 1.6;
}

/* FAQ */

.blog-faq {
    border-top: 1px solid #e5e9f0;
    padding-top: 18px;
}

.faq-list {
    margin-top: 10px;
}

.faq-item {
    border-radius: 10px;
    border: 1px solid #e5e9f0;
    background: #f9fafb;
    padding: 0;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-item[open] {
    background: #eef5ff;
    border-color: #3b82f6;
}

.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "▾";
    font-size: 0.8rem;
    color: #64748b;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
    color: #0f6ab8;
}

.faq-answer {
    padding: 0 14px 10px 14px;
    border-top: 1px solid #e5e9f0;
}

.faq-answer p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

/* CTA */

.blog-cta {
    border-top: 1px solid #e5e9f0;
    padding-top: 18px;
}

.blog-cta p {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Yardımcı sınıflar */

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive */

@media (max-width: 768px) {
    .blog-article {
        padding: 22px 16px 26px;
        border-radius: 12px;
    }

    .blog-title {
        font-size: 1.7rem;
    }

    .blog-table {
        min-width: 520px;
    }
}

@media (max-width: 480px) {
    .blog-article {
        padding: 18px 12px 22px;
    }

    .blog-table {
        min-width: 480px;
    }

    .blog-meta {
        border-left-width: 2px;
    }
}