/* Modern & Professional Blog Styles (True Black Dark Mode) */
:root {
    --blog-font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --blog-heading: 'Inter', sans-serif;

    /* Semantic Colors for Dark Mode */
    --blog-bg: #000000;
    /* Pure Black Background */
    --blog-bg-sec: #111111;
    /* Dark Gray for Cards */
    --blog-bg-hover: #1a1a1a;
    /* Hover state bg */

    --blog-text-main: #ffffff;
    /* Primary Text (White) */
    --blog-text-sec: #cccccc;
    /* Secondary Text (Light Gray) */
    --blog-text-muted: #888888;
    /* Muted Text (Gray) */
    --blog-gray: #888888;
    /* Added for consistency */
    --blog-dark-gray: #444444;
    /* Added for consistency */
    --blog-light-gray: #161616;
    /* Subtle light gray for dark mode sections */

    --blog-border: #333333;
    /* Border Color */
    --blog-accent: #ffffff;
    /* Accent Color */
}

body {
    font-family: var(--blog-font);
    color: var(--blog-text-sec);
    background-color: var(--blog-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

/* Blog Navigation */


.blog-nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scrollbar-width: none;
    white-space: nowrap;
}

.blog-nav-container::-webkit-scrollbar {
    display: none;
}

.blog-nav-link {
    color: var(--blog-text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    flex-shrink: 0;
}

.blog-nav-link:hover {
    color: var(--blog-text-main);
    background-color: var(--blog-bg-sec);
}

.blog-nav-link.active {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
    font-weight: 700;
}

/* Blog Layout - Shopify Style (Dark Mode Refinement) */
.blog-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    box-sizing: border-box;
}

/* Showcase Section */
.blog-showcase {
    margin-bottom: 20px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Main Feature (Left) - Split Style (Image Top, Text Bottom) */
.main-feature-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
    border: none;
    background: transparent;
    box-shadow: none;
}

.main-feature-link {
    text-decoration: none;
    display: contents;
}

/* <picture> sarmalı: wrapper'ı tam doldur ki içteki img'in width/height:100% kuralı bozulmasın */
.main-feature-img-wrapper picture,
.blog-card-image-wrapper picture,
.side-article-img picture {
    display: block;
    width: 100%;
    height: 100%;
}

.main-feature-img-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
}

.main-feature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-feature-card:hover .main-feature-img-wrapper img {
    transform: scale(1.03);
}

.main-feature-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blog-text-main);
    background: transparent;
    padding: 0;
    letter-spacing: 0.5px;
}

.main-feature-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--blog-text-main);
    margin: 0;
    text-decoration: none !important;
}

.main-feature-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--blog-text-sec);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-feature-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--blog-text-muted);
    font-weight: 500;
    margin-top: 10px;
}

.meta-author {
    color: var(--blog-text-sec);
}

.meta-sep {
    margin: 0 8px;
}

/* Side Column (Right) */
.side-feature-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Side CTA Box */
.side-cta-box {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
}

.side-cta-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.side-cta-box p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.side-cta-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.side-cta-form input {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #333;
    background: #000;
    color: white;
    font-size: 0.9rem;
}

.side-cta-form button {
    width: 100%;
    padding: 12px;
    border-radius: 4px;
    border: none;
    background: white;
    color: black;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.side-cta-form button:hover {
    opacity: 0.9;
}

/* Side List */
.side-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.side-header {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blog-text-main);
    border-bottom: 1px solid var(--blog-border);
    padding-bottom: 15px;
    margin-bottom: 0;
}

.side-article {
    border: none;
    background: transparent;
    padding: 0;
}

.side-article-link {
    display: flex;
    gap: 20px;
    /* Space between text and image */
    text-decoration: none;
    align-items: flex-start;
    justify-content: space-between;
}

.side-article-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.side-cat-sm {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--blog-text-muted);
}

.side-title-sm {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blog-text-main);
    line-height: 1.4;
    margin: 0;
}

.side-date-sm {
    font-size: 0.75rem;
    color: var(--blog-text-muted);
    margin-top: 4px;
}

.side-article-img {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.side-article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Posts Grid - Clean Style */
.section-header {
    border-bottom: 1px solid var(--blog-border);
    padding-bottom: 20px;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blog-text-main);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    height: auto;
}

.blog-card-image-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.03);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .card-overlay {
    opacity: 1;
}

.blog-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-category {
    color: var(--blog-text-main);
    background: transparent;
    padding: 0;
    text-transform: uppercase;
}

.post-date {
    color: var(--blog-text-muted);
    font-weight: 400;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.blog-card-title a {
    text-decoration: none;
    color: var(--blog-text-main);
    transition: color 0.2s;
}

.blog-card-title a:hover {
    color: var(--blog-text-sec);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--blog-text-sec);
    line-height: 1.6;
    margin-bottom: 0;
}

/* No Content State */
.no-content {
    text-align: center;
    padding: 100px 20px;
    background: var(--blog-bg-sec);
    border-radius: 12px;
    margin: 40px 0;
}

.no-content p {
    font-size: 1.2rem;
    color: var(--blog-text-sec);
    margin-bottom: 30px;
}

.btn-back {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blog-bg-sec);
    color: var(--blog-text-main);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--blog-border);
    transition: all 0.2s;
}

.page-link:hover,
.page-link.active {
    background: var(--blog-accent);
    color: #000;
    border-color: var(--blog-accent);
}

.page-prev,
.page-next {
    width: auto;
    padding: 0 16px;
    border-radius: 18px;
    gap: 4px;
}

.page-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    color: var(--blog-text-sec, #888);
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    background-color: var(--blog-bg-sec);
    border-top: 1px solid var(--blog-border);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--blog-heading);
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: white;
}

.newsletter-text {
    color: var(--blog-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 4px;
    border: 1px solid var(--blog-border);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    outline: none;
}

.newsletter-form input:focus {
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--blog-accent);
}

.newsletter-form button {
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    background: #ffffff;
    /* White button */
    color: #000000;
    /* Black text */
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: #e5e5e5;
}

/* Blog Detail Page Styles */
.blog-detail-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 20px;
}

.blog-breadcrumb {
    font-size: 0.85rem;
    color: var(--blog-gray);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-breadcrumb a {
    text-decoration: none;
    color: var(--blog-gray);
    transition: color 0.2s;
}

.blog-breadcrumb a:hover {
    color: var(--blog-text-main);
}

.blog-breadcrumb .sep {
    font-size: 0.7rem;
    color: #ddd;
}

.blog-breadcrumb .current {
    color: var(--blog-text-main);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-header {
    text-align: center;
    margin-bottom: 50px;
}

.article-meta-top {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blog-gray);
    margin-bottom: 15px;
    font-weight: 600;
}

.article-meta-top .article-cat {
    background: #ffffff;
    color: #000000;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 15px;
    font-weight: 700;
}

.article-title {
    font-family: var(--blog-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--blog-text-main);
    margin-bottom: 25px;
}

.article-meta-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.95rem;
    color: var(--blog-dark-gray);
}

.author-info {
    font-weight: 500;
    color: var(--blog-text-sec);
}

.article-image-container {
    width: 100%;
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--blog-text-main) !important;
    margin-bottom: 60px;
}

.article-content p {
    margin-bottom: 25px;
    color: #ffffff !important;
}

.article-content h2,
.article-content h3 {
    font-family: var(--blog-heading);
    color: #ffffff !important;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.article-content h2 {
    font-size: 2rem;
    color: var(--blog-text-main) !important;
}

.article-content h3 {
    font-size: 1.6rem;
    color: var(--blog-text-main) !important;
}

.article-content ul,
.article-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
    color: #ffffff !important;
}

.article-content li {
    margin-bottom: 10px;
    color: var(--blog-text-main) !important;
}

.article-content a {
    color: #60a5fa !important;
    text-decoration: underline;
}

.article-content a:hover {
    color: #93c5fd !important;
}

.article-content strong,
.article-content b {
    color: #ffffff !important;
}

.article-content em,
.article-content i {
    color: #e5e5e5 !important;
}

.article-content blockquote {
    border-left: 4px solid #ffffff;
    padding-left: 20px;
    margin: 40px 0;
    font-style: italic;
    font-size: 1.4rem;
    color: #cccccc !important;
}

.article-footer {
    border-top: 1px solid var(--blog-border);
    padding-top: 30px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-buttons span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--blog-text-main);
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

.share-btn:hover {
    border-color: var(--blog-text-main);
    background: var(--blog-text-main);
    color: #000;
}

/* Related Posts */
.related-section {
    border-top: 1px solid var(--blog-border);
    padding-top: 60px;
    margin-bottom: 60px;
}

.related-title {
    font-family: var(--blog-heading);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-card {
    text-decoration: none;
}

.related-image {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-card-title {
    font-family: var(--blog-heading);
    font-size: 1.1rem;
    color: var(--blog-text-main);
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    transition: color 0.2s;
}

.related-card:hover .related-card-title {
    color: #555;
}

/* Mini Newsletter */
.newsletter-section-mini {
    background: var(--blog-light-gray);
    padding: 60px 20px;
    text-align: center;
}

.newsletter-section-mini h4 {
    font-family: var(--blog-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter-section-mini p {
    color: var(--blog-gray);
    margin-bottom: 25px;
}

.newsletter-section-mini .newsletter-form {
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .main-feature-card {
        min-height: 400px;
    }

    .side-list {
        display: grid;
        grid-template-columns: 1fr;
    }

    .side-article {
        border: none;
        border-bottom: 1px solid var(--blog-border);
        padding: 0 0 20px 0;
    }

    .side-article:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    .blog-detail-container {
        margin: 40px auto;
    }

    .main-feature-title {
        font-size: 1.8rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .related-grid,
    .blog-grid,
    .trending-grid-visual {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* =========================================
   Blog Page Header Overrides (Dark Theme)
   ========================================= */
body.is-blog-page .header {
    background-color: rgba(0, 0, 0, 0.95) !important;
    /* Dark background */
    border-bottom: 1px solid #333 !important;
    backdrop-filter: blur(10px);
}

body.is-blog-page .nav-logo .logo-text {
    color: var(--blog-text-main);
}

body.is-blog-page .nav-logo .logo-text-light {
    color: var(--blog-text-sec);
}

body.is-blog-page .nav-link,
body.is-blog-page .nav-dropdown-btn span {
    color: #e0e0e0;
    /* Light text */
}

body.is-blog-page .nav-dropdown-btn svg {
    stroke: #e0e0e0;
}

body.is-blog-page .nav-link:hover,
body.is-blog-page .nav-dropdown-btn:hover span {
    color: #ffffff;
}

/* Specific for active blog links */
body.is-blog-page .nav-link.active {
    color: #ffffff !important;
}

/* User Menu & Buttons */
body.is-blog-page .nav-buttons .nav-link {
    color: #e0e0e0;
}

body.is-blog-page .user-name {
    color: #ffffff;
}

body.is-blog-page .user-email {
    color: #aaaaaa;
}

body.is-blog-page .user-menu-arrow {
    color: #e0e0e0;
}

/* Adjust Content Spacing for Fixed Header */
.blog-container {
    padding-top: 40px !important;
    /* Extra space since header is fixed */
    margin-top: 40px !important;
}

/* Fix: Hide mobile elements on desktop for blog page */
@media (min-width: 1025px) {

    body.is-blog-page .nav-mobile,
    body.is-blog-page .mobile-menu {
        display: none !important;
    }

    body.is-blog-page .nav-buttons {
        display: flex;
        align-items: center;
        gap: 25px;
        height: 100%;
    }

    body.is-blog-page .nav-menu-desktop {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}

/* User Menu Alignment Fix in Dark Header */
body.is-blog-page .user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    cursor: pointer;
}

body.is-blog-page .user-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.is-blog-page .user-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

body.is-blog-page .user-email {
    color: #aaaaaa;
    font-size: 0.75rem;
    line-height: 1.2;
}

/* Adjust logo size and alignment on blog page */
body.is-blog-page .logo-img {
    height: 32px;
    width: auto;
}


/* Search Modal Styles */
.blog-search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    padding: 20px;
}

.search-modal-content {
    max-width: 600px;
    width: 100%;
    position: relative;
    text-align: center;
}

.search-modal-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.search-modal-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.search-modal-form {
    display: flex;
    gap: 15px;
}

.search-modal-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.search-modal-form input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.search-modal-form button {
    background: white;
    color: black;
    border: none;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.search-modal-form button:hover {
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .search-modal-form {
        flex-direction: column;
    }

    .search-modal-form button {
        padding: 15px;
    }
}

/* ===== Blog ana sayfa SEO/GEO: H1 + açıklama + kategori nav + FAQ ===== */
.blog-hero-head { margin-bottom: 28px; }
.blog-hero-head .blog-breadcrumb { margin-bottom: 12px; }
.blog-h1 {
    font-size: clamp(1.6rem, 3.2vw, 2.3rem);
    line-height: 1.2;
    color: var(--blog-text-main, #111);
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.blog-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--blog-gray, #555);
    max-width: 760px;
    margin: 0 0 18px;
}
.blog-cat-nav { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-cat-nav .cat-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.18s;
}
.blog-cat-nav .cat-pill:hover { background: #e2e8f0; color: #1e293b; }
.blog-cat-nav .cat-pill.active {
    background: var(--blog-accent, #2563eb);
    color: #fff;
    border-color: var(--blog-accent, #2563eb);
}

.blog-faq { max-width: 860px; margin: 10px auto 50px; padding: 0 20px; }
.blog-faq-title {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 800;
    color: var(--blog-text-main, #111);
    margin: 0 0 18px;
    text-align: center;
}
.blog-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}
.blog-faq-item summary {
    cursor: pointer;
    padding: 15px 44px 15px 18px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1e293b;
    list-style: none;
    position: relative;
}
.blog-faq-item summary::-webkit-details-marker { display: none; }
.blog-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 18px; top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--blog-accent, #2563eb);
}
.blog-faq-item[open] summary::after { content: '\2212'; }
.blog-faq-item .blog-faq-a {
    padding: 0 18px 16px;
    color: var(--blog-gray, #555);
    line-height: 1.7;
    font-size: 0.92rem;
}
@media (max-width: 600px) {
    .blog-faq { padding: 0 14px; }
    .blog-cat-nav .cat-pill { font-size: 0.8rem; padding: 5px 12px; }
}