    /* GENEL YORUM ALANI DARALTMA VE MERKEZLEME */
    #comments { 
        max-width: 100%; 
        margin-top: 40px; 
        padding: 25px; 
        background: #f8fafc; 
        border-radius: 24px; 
        border: 1px solid #e2e8f0; 
        font-family: 'Montserrat', sans-serif;
    }

    /* BAŞLIK TASARIMI */
    .comments-title { 
        font-size: 20px !important; 
        font-weight: 800; 
        margin-bottom: 30px; 
        color: #0f172a;
        border-left: 5px solid #e30a17;
        padding-left: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* YORUM LİSTESİ - YATAY VE GENİŞ GÖRÜNÜM */
    .comment-list { list-style: none; padding: 0; margin: 0 0 40px 0; }
    
    .comment-body { 
        background: #ffffff; 
        padding: 20px 25px !important; 
        margin-bottom: 15px !important; 
        border-radius: 16px; 
        border: 1px solid #edf2f7; 
        display: flex; /* İçeriği yan yana getirir */
        gap: 20px;
        transition: 0.3s ease;
        position: relative;
    }

    .comment-body:hover { 
        border-color: #e30a17; 
        box-shadow: 0 10px 25px rgba(0,0,0,0.04); 
    }

    /* AVATAR DÜZENİ */
    .comment-meta { flex-shrink: 0; }
    .comment-meta img { 
        width: 50px !important; 
        height: 50px !important; 
        border-radius: 50%; 
        border: 2px solid #f8fafc;
    }

    /* YORUM İÇERİĞİ */
    .comment-content-wrap { flex-grow: 1; }
    
    .comment-author cite { 
        font-style: normal; 
        font-weight: 800; 
        font-size: 16px; 
        color: #0f172a; 
    }
    
    .comment-metadata { 
        font-size: 12px; 
        color: #94a3b8; 
        margin-bottom: 8px; 
        font-weight: 600;
    }

    .comment-content p { 
        font-size: 15px !important; 
        line-height: 1.6 !important; 
        color: #475569; 
        margin: 5px 0 !important; 
    }

    /* YANITLA BUTONU - SAĞ ÜSTTE VEYA ALTTA ŞIK DURUŞ */
    .reply { margin-top: 10px; }
    .comment-reply-link { 
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 18px !important; 
        background: #f1f5f9;
        color: #0f172a;
        font-size: 12px !important; 
        font-weight: 800;
        text-decoration: none;
        border-radius: 50px;
        transition: 0.3s;
    }
    .comment-reply-link:hover { background: #e30a17; color: #fff; }

    /* YORUM FORMU (RESPOND) - LİSTENİN ALTINDA */
    #respond { 
        padding: 25px !important; 
        background: #ffffff; 
        border-radius: 18px; 
        border: 1px solid #e2e8f0;
    }

    #reply-title { font-size: 18px !important; font-weight: 800; margin-bottom: 20px !important; color: #0f172a; }

    .comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .comment-form-comment { grid-column: span 2; }
    
    .comment-form input, .comment-form textarea {
        width: 100%; 
        background: #f8fafc; 
        border: 1px solid #e2e8f0; 
        padding: 12px 18px !important; 
        border-radius: 12px; 
        font-size: 14px !important;
        font-family: inherit;
        transition: 0.3s;
    }
    
    .comment-form input:focus, .comment-form textarea:focus {
        border-color: #e30a17;
        background: #fff;
        outline: none;
    }

    .form-submit { grid-column: span 2; margin-top: 5px; }
    .form-submit input#submit {
        background: #0f172a; 
        color: #fff; 
        border: none; 
        padding: 12px 35px !important; 
        border-radius: 50px; 
        font-weight: 800; 
        font-size: 14px !important;
        cursor: pointer;
        transition: 0.3s;
        width: auto;
    }
    .form-submit input#submit:hover { 
        background: #e30a17; 
        transform: translateY(-2px); 
        box-shadow: 0 8px 20px rgba(227, 10, 23, 0.2);
    }

    @media (max-width: 768px) {
        .comment-body { flex-direction: column; gap: 10px; }
        .comment-form { grid-template-columns: 1fr; }
        .comment-form-comment, .form-submit { grid-column: span 1; }
    }
    