.comment-form .title {
	font: 700 24px / 28px 'Gilroy', sans-serif;
    padding: 0px 0px 10px 0px;
}

.article-comments { margin: 30px 0; }
    .comments-list { margin-bottom: 30px; }
    .comment-item { 
        border: 1px solid #e0e0e0; 
        padding: 20px; 
        margin-bottom: 20px; 
        border-radius: 8px;
        background: #f9f9f9;
    }
    .comment-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        margin-bottom: 10px; 
        padding-bottom: 10px;
        border-bottom: 1px solid #e0e0e0;
    }
    .comment-date { 
        color: #666; 
        font-size: 0.9em; 
    }
    .comment-rating { 
        margin-bottom: 10px; 
        font-size: 16px;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .comment-text { 
        line-height: 1.5;
        color: #333;
    }
    .form-group { 
        margin-bottom: 20px; 
    }
    .form-control { 
        width: 100%; 
        padding: 12px; 
        border: 1px solid #ddd; 
        border-radius: 6px; 
        font-size: 14px;
        box-sizing: border-box;
    }
    .form-control:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
    }
    .form-control.error {
        border-color: #dc3545;
        box-shadow: 0 0 0 2px rgba(220,53,69,0.25);
    }
    .rating-images { 
        display: flex; 
        gap: 10px; 
        margin-top: 5px;
    }
    .image-label { 
        cursor: pointer; 
        position: relative;
        transition: transform 0.2s ease;
    }
    .image-label:hover {
        transform: scale(1.1);
    }
    .image-label input { 
        display: none; 
    }
    .rating-icon {
        transition: opacity 0.2s ease;
    }
    .rating-images.error-flash {
        animation: flashError 0.5s ease 2;
    }
    @keyframes flashError {
        0%, 100% { background-color: transparent; }
        50% { background-color: rgba(220,53,69,0.1); }
    }
    .comment-form {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }
    .comment-form h4 {
        margin-bottom: 20px;
        color: #333;
    }