/* Post Comments Styling */
.comments-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--heading-color);
    font-weight: 600;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.comment-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comment-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.comment-content {
    flex-grow: 1;
}

.comment-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.commenter-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.comment-date {
    font-size: 14px;
    color: #777;
}

.comment-text p {
    margin-bottom: 10px;
    color: var(--text-color);
    line-height: 1.6;
}

.commenter-website {
    margin-top: 10px;
}

.commenter-website a {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.commenter-website a:hover {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 767px) {
    .comment-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-avatar {
        margin-bottom: 15px;
    }
    
    .comment-info {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-date {
        margin-top: 5px;
    }
}
