@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

.new-blog-wrapper {
    font-family: 'Poppins', sans-serif !important;
    background-color: #fcfcfc;
    padding: 50px 0;
}


.new-blog-container {
    max-width: 1350px; 
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 0 15px;
}

.new-blog-content {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    min-width: 0; 
    overflow: hidden; 
}


.new-blog-img-wrapper img,
.new-blog-body img,
.new-blog-body iframe {
    max-width: 100% !important; 
    height: auto !important;
    border-radius: 12px;
    display: block; 
    margin: 15px 0; 
}

.new-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.new-blog-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-blog-meta a {
    color: #558cff;
    font-weight: 500;
    text-decoration: none;
}

.new-blog-title {
    font-size: 38px;
    font-weight: 650;
    color: #111;
    margin-bottom: 15px; 
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.new-blog-body {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
}

.new-blog-body p {
    margin-bottom: 20px;
}

.new-blog-body h2, .new-blog-body h3, .new-blog-body h4 {
    color: #222;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.new-blog-tags-area {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.new-blog-tags-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111;
}

.new-blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.new-blog-tag-item {
    background: #f4f4f4;
    color: #555;
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.new-blog-tag-item:hover {
    background: #558cff;
    color: #fff;
}

.new-blog-social {
    display: flex;
    gap: 10px;
    margin-top: 20px; 
}

.new-blog-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f4f4f4;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.new-blog-social a:hover {
    background: #558cff;
    color: #fff;
    transform: translateY(-3px);
}

.new-blog-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.new-sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 30px;
}

.new-sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f4f4f4;
    position: relative;
}

.new-sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 40px;
    background: #558cff;
}

.new-popular-post {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f4f4f4;
}

.new-popular-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.new-popular-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.new-popular-text a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.new-popular-text a:hover {
    color: #558cff;
}

.commentfull-div-main {
    margin-top: 50px;
    font-family: 'Poppins', sans-serif;
}
.module_comment_form_area input, .module_comment_form_area textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    border-radius: 6px !important; 
}

@media (max-width: 991px) {
    .new-blog-container {
        flex-direction: column;
    }
    .new-blog-sidebar {
        width: 100%;
    }
    .new-blog-content {
        padding: 20px;
    }
    .new-blog-title {
        font-size: 24px;
    }
}


.new-blog-header-area {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.new-blog-title {
    font-size: 38px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.new-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #777;
}

.new-blog-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.new-blog-meta a {
    color: #558cff;
    font-weight: 500;
    text-decoration: none;
}


.new-blog-toc {
    background: #fbfbfb;
    border: 1px solid #eaeaea;
    border-left: 4px solid #f27a1a;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.new-blog-toc-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.new-blog-toc-title i {
    color: #f27a1a;
}

.new-blog-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.new-blog-toc ul li {
    margin-bottom: 12px;
    padding-bottom: 12px; 
    border-bottom: 1px solid #f4f4f4; 
    position: relative;
}

.new-blog-toc ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.new-blog-toc ul li.toc-main {
    font-weight: 500;
    font-size: 15px;
}

.new-blog-toc ul li.toc-sub {
    padding-left: 20px;
    font-size: 14px;
}

.new-blog-toc ul li.toc-sub::before {
    content: '-';
    position: absolute;
    left: 5px;
    color: #aaa;
}

.new-blog-toc a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.new-blog-toc a:hover {
    color: #f27a1a;
}

/* Scroll Ayarı */
html {
    scroll-behavior: smooth;
}


.new-blog-faq {
    margin-top: 50px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.faq-header-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
}

.faq-question {
    padding: 18px 20px;
    background: #fdfdfd;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8faff;
    color: #558cff;
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background: #fff;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    padding: 15px 20px;
    max-height: 500px; 
    border-top: 1px solid #eee;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}